

    @font-face {
    font-family: 'Teko';
    src: url('/assets/fonts/teko/teko-regular.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

    /* Body text - Open Sans */
        body {
            font-family: 'Open Sans', sans-serif;
            font-weight: 400;
        }
        
        /* Headings - Teko */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Teko', sans-serif;
            margin: 0; /* Optional: Reset default margin for consistency */
        }
        
        /* Specific heading styles */
        h1 {
            font-weight: 700;
        }
        
        h2 {
            font-weight: 700;
        }
        
        h3 {
            font-weight: 600;
        }
        
        h4 {
            font-weight: 500;
        }
        
        h5 {
            font-weight: 500;
        }
        
        h6 {
            font-weight: 500;
        }





/********** Template CSS **********/
:root {
    --primary: #B78D65;
    --light: #F8F8F8;
    --dark: #252525;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

 p 
{
    text-align: justify;
}
/*** 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;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.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;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 20px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
    font-size: 14px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 500px;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    
}
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 200px;
    }
    .header-carousel .owl-dots 
    {
        display: none;
    }
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 200px;
        object-fit: contain;
        object-position: 70%;
    }
    .header-carousel .owl-dots 
    {
        display: none;
    }
    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
    a 
    {
        font-size: 17px;
    }
    .page-header {
        background: linear-gradient(rgba(0, 0, 0, 0.178), rgba(0, 0, 0, 0.281)), url(../img/common-background.png) center center no-repeat;
        background-size: cover;
        background-position: 75%;
    }
    .page-header-2 {
        background: linear-gradient(rgba(0, 0, 0, 0.178), rgba(0, 0, 0, 0.281)), url(../img/common-background.png) center center no-repeat;
        background-size: cover;
    }
}
@media (min-width:769px)
{
    .header-carousel .owl-dots {
        position: absolute;
        width: 60px;
        height: 100%;
        top: 150px;
        right: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.log-txt 
{
    color: #2e2d78;
}
.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}
@media (min-width:768px)
{
    .page-header {
        background: linear-gradient(rgba(0, 0, 0, 0.178), rgba(0, 0, 0, 0.281)), url(../img/main/mementos-feature.jpg) center center no-repeat;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .page-header-2 {
        background: linear-gradient(rgba(0, 0, 0, 0.178), rgba(0, 0, 0, 0.281)), url(../img/main/mementos-feature.jpg) center center no-repeat;
        background-size: cover;
    }
}


.breadcrumb-item+.breadcrumb-item::before {
    color: var(--dark);
}
/* Position the icons */
.fixed-icons {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 9999;
width: 50px;
}

/* Style the icons */
.fixed-icons a {
display: inline-block;
margin-left: 10px;
color: #ffffff;
background-color: #007bff;
border-radius: 50%;
width: 50px;
height: 50px;
text-align: center;
line-height: 50px;
font-size: 20px;
transition: all 0.3s ease;
}

.fixed-icons a:hover {
background-color: #0062cc;
}

/* Style the WhatsApp icon */
.fixed-icons a.whatsapp {
background-color: #25d366;
}

.fixed-icons a.whatsapp:hover {
background-color: #128c7e;
}

/* Style the Call icon */
.fixed-icons a.call {
background-color: #dc3545;
}

.fixed-icons a.call:hover {
background-color: #c82333;
}

/* Style the Email icon */
.fixed-icons a.email {
background-color: #ffc107;
}

.fixed-icons a.email:hover {
background-color: #e0a800;
}

/* Style the modal background */
.modal-backdrop {
background-color: rgba(0, 0, 0, 0.5) !important;
}

/* Style the modal header */
.modal-header {
background-color: #f9a01b;
color: #fff;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}

/* Style the modal title */
.modal-title {
font-size: 28px;
margin-top: 10px;
}

/* Style the close button */
.close {
color: #fff;
}

/* Style the modal body */
.modal-body {
background-color: #f7f7f7;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
padding: 20px;
}

/* Style the form labels */
.form-label {
font-size: 16px;
font-weight: bold;
color: #333;
}

/* Style the form inputs */
.form-control {
border: 2px solid #f9a01b;
border-radius: 5px;
padding: 10px;
margin-bottom: 20px;
}

/* Style the form submit button */
.btn-primary {
background-color: #f9a01b;
border-color: #f9a01b;
color: #fff;
font-size: 18px;
font-weight: bold;
border-radius: 5px;
padding: 10px 30px;
}

/* Style the form submit button on hover */
.btn-primary:hover {
background-color: #fff;
border-color: #f9a01b;
color: #f9a01b;
}

/* Style the modal copyright link */
.modal-copyright {
display: block;
text-align: right;
color: #333333;
font-size: 12px;
margin-top: 20px;
padding: 10px;
}

.modal-copyright a {
  text-decoration: none;
  color: #333333;
  font-weight: bold;
}

/* Style the modal copyright link on hover */
.modal-copyright:hover {
color: #222222;
text-decoration: none;
}

/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}


/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qual p 
{
    font-size: 16px;
}


h6 
{
    font-size:calc(1.3rem + .6vw);
}
.add 
{
    position: relative;
    left: 30px;
}
.mail 
{
    font-size: 15px;
    display: flex;
}
.foot-logo 
{
    display: flex;
}
.foot p 
{
    text-align: left;
}
.product-content h1, .product-content h2, .product-content h3
{
    font-size:30px;
    color: #041C40;
    font-weight: 700;
    
}

.text-animation {
    display: inline-block;
    animation: slide-in 1.5s ease-in-out forwards;
}
@keyframes slide-in {
    from {
        transform: translateX(-50%);
        opacity: 0;
    }
    to {
        transform: translateX(0%);
        opacity: 1;
    }
}
.btn-pro 
{
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-more {
    width: 10em;
    position: relative;
    height: 3.5em;
    border: 3px ridge red;
    outline: none;
    background-color: transparent;
    color: rgb(0, 0, 0);
    transition: 1s;
    border-radius: 0.3em;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .btn-more::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 3%;
    width: 95%;
    height: 40%;
    background-color: #ffffff;
    transition: 0.5s;
    transform-origin: center;
  }
  
  .btn-more::before {
    content: "";
    transform-origin: center;
    position: absolute;
    top: 80%;
    left: 3%;
    width: 95%;
    height: 40%;
    background-color: #fffbfb;
    transition: 0.5s;
  }
  
  .btn-more:hover::before, button:hover::after {
    transform: scale(0)
  }
  
  .btn-more:hover {
    box-shadow: inset 0px 0px 25px red;
  }
/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}
strong 
{
    color: black;
    font-weight: bolder;
}
.foot-logo h6 
{
    position: relative;
    top: 15px;
}
/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    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;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

@media (max-width:1300px)
{
    .navbar .navbar-nav .nav-link {
        margin-right: 20px;
        padding: 30px 0;
        color: var(--dark);
        font-weight: 500;
        text-transform: uppercase;
        outline: none;
        font-size: 12px;
    }
}
.foot 
{
    background-image: url(../img/bg-footer.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.foot p a
{
    color: #777777;
}
.main-add
{
    color: #777777;
}

.navbar-brand img
{
    width: 85px;
}

.main-logo-title {
    font-size: 32px;
    margin-left: -15px;
}

@media (max-width: 768px){
    .navbar-brand img
{
    width: 65px;
}
.main-logo-title {
    font-size: 19px;
    margin-left: -15px;
}
}

.quality
{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px;
}
.txt 
{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.qual 
{
    border: 2px solid peru;
    border-radius: 20px;
    box-shadow: inset 5px 10px peru;
    text-align: center;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 10px;
    padding: 10px;
}
.qual p 
{
    text-align: center;
}
@media (max-width:768px)
{
    .quality 
    {
        flex-direction: column;
    }
    .qual 
    {
        height: 300px;
    }
    .navbar .navbar-nav .nav-link {
        margin-right: 30px;
        padding: 20px 0;
        color: var(--dark);
        font-weight: 500;
        text-transform: uppercase;
        outline: none;
        font-size: 18px;
    }
    .navbar .navbar-nav
    {
        overflow: hidden;
        width: 100%;
    }
    .navbar-collapse 
    {
        width: 100%;
    }
    .product 
    {
        flex-direction: column;
    }
    .product-image 
    {
        width: 100%;
    }
    .product-image img 
    {
        width: 100%;
    }
    .sub 
    {
        flex-direction: column;
    }
}
.sub 
{
    display: flex;
    align-items: center;
    position: relative;
    top: 50px;
}
.sub-product 
{
    padding: 30px;
}
.sub-product-image img 
{
    width: 100%;
    height: 100%;
    object-fit: contain;

}
.sub-product-des 
{
    text-align: center;
}
.product 
{
    display: flex;
    box-shadow:  2px 2px 10px peru;
    align-items: center;
    
}
.product-image 
{

    padding: 30px;
}
.product-image img 
{
    width: 100%;
}
.product-des 
{
    border: 1px dotted peru;
    padding: 30px;
    
}
/* Position the icons */
.fixed-icons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    }
    
    /* Style the icons */
    .fixed-icons a {
    display: inline-block;
    margin-left: 10px;
    color: #ffffff;
    background-color: #007bff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    transition: all 0.3s ease;
    margin-top: 10px;
    }
    
    .fixed-icons a:hover {
    background-color: #0062cc;
    }
    
    /* Style the WhatsApp icon */
    .fixed-icons a.whatsapp {
    background-color: #25d366;
    }
    
    .fixed-icons a.whatsapp:hover {
    background-color: #128c7e;
    }
    
    /* Style the Call icon */
    .fixed-icons a.call {
    background-color: #dc3545;
    }
    
    .fixed-icons a.call:hover {
    background-color: #c82333;
    }
    
    /* Style the Email icon */
    .fixed-icons a.email {
    background-color: #ffc107;
    }
    
    .fixed-icons a.email:hover {
    background-color: #e0a800;
    }
    
    /* Style the modal background */
    .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.5) !important;
    }
    
    /* Style the modal header */
    .modal-header {
    background-color: #f9a01b;
    color: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    }
    
    /* Style the modal title */
    .modal-title {
    font-size: 28px;
    margin-top: 10px;
    }
    
    /* Style the close button */
    .close {
    color: #fff;
    }
    
    /* Style the modal body */
    .modal-body {
    background-color: #f7f7f7;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 20px;
    }
    
    /* Style the form labels */
    .form-label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    }
    
    /* Style the form inputs */
    .form-control {
    border: 2px solid #f9a01b;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
    }
    
    /* Style the form submit button */
    .btn-primary {
    background-color: #f9a01b;
    border-color: #f9a01b;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    padding: 10px 30px;
    }
    
    /* Style the form submit button on hover */
    .btn-primary:hover {
    background-color: #fff;
    border-color: #f9a01b;
    color: #f9a01b;
    }
    
    /* Style the modal copyright link */
    .modal-copyright {
    display: block;
    text-align: right;
    color: #333333;
    font-size: 12px;
    margin-top: 20px;
    padding: 10px;
    }
    .top-n 
    {
        height: 50px;
    }
    .modal-copyright a {
      text-decoration: none;
      color: #333333;
      font-weight: bold;
    }
    
    /* Style the modal copyright link on hover */
    .modal-copyright:hover {
    color: #222222;
    text-decoration: none;
    }
    .gallery {
        padding: 80px 0px;
    }
    img {
        max-width: 100%;
    }
    .gallery img {
        background: #fff;
        padding: 15px;
        width: 100%;
        box-shadow: 0px 0px 15px rgba(0,0,0,0.3);
        cursor: pointer;
    }
    #gallery-popup .modal-img {
        width: 100%;
        height: 300px;
        object-fit: contain;
    }
    .modal-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-around;
        transform: translateY(-50%);
    }
    .modal-nav button {
        background: rgba(255, 255, 255, 0.8);
        border: none;
        padding: 10px;
        cursor: pointer;
    }
    @media (max-width:425px)
    {
        .modal-nav button 
        {
            position: relative;
        right: 20px;
        top: 30px;
        }
    }
    .popup {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        justify-content: center;
        align-items: center;
        z-index: 999;
      }
      
      .popup-content {
        background-color: white;
        padding: 20px;
        border-radius: 5px;
        width: 300px;
        text-align: center;
      }
      .popup-content input
      {
        width: 100%;
        margin-bottom: 10px;
      }
      .popup-content textarea
      {
        width: 100%;
      }
      .close-btn {
        float: right;
        font-size: 24px;
        cursor: pointer;
      }
      
      input 
      {
        height: 40px;
        margin-top: 5px;
      }
      
      
      .popupp {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        justify-content: center;
        align-items: center;
        z-index: 999;
      }
      .popupp-content input
      {
        width: 100%;
        margin-bottom: 10px;
      }
      .popupp-content textarea
      {
        width: 100%;
      }
      .popupp-content {
        background-color: white;
        padding: 20px;
        border-radius: 5px;
        width: 300px;
        text-align: center;
      }
      .closee-btn {
        float: right;
        font-size: 24px;
        cursor: pointer;
      }
    
      .popuppp {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        justify-content: center;
        align-items: center;
        z-index: 999;
      }
      .popuppp-content input
      {
        width: 100%;
        margin-bottom: 10px;
      }
      .popuppp-content textarea
      {
        width: 100%;
      }
      .popuppp-content {
        background-color: white;
        padding: 20px;
        border-radius: 5px;
        width: 300px;
        text-align: center;
      }
      .closeee-btn {
        float: right;
        font-size: 24px;
        cursor: pointer;
      }
      
      
      .popupppp {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        justify-content: center;
        align-items: center;
        z-index: 999;
      }
      .popupppp-content input
      {
        width: 100%;
        margin-bottom: 10px;
      }
      .popupppp-content textarea
      {
        width: 100%;
      }
      .popupppp-content {
        background-color: white;
        padding: 20px;
        border-radius: 5px;
        width: 300px;
        text-align: center;
      }
      .closeeee-btn {
        float: right;
        font-size: 24px;
        cursor: pointer;
      }
      
      
   /*New CSS   */
      
.navbar-brand {
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    white-space: nowrap;
    max-width: 62% !important;
}  

/* Modal Style */
    
.img-popup {
    max-width: 380px;
    top: 10%;
}
.close {
    color: #fff;
    font-size: 50px;
    position: absolute;
    z-index: 999;
    right: 4px;
    top: -52px;
    cursor:pointer;
}

#imageModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 74%);
    justify-content: center;
    align-items: center;
    z-index: 999999999;
}

.service-block a div h3 {
    padding: 12px;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 6px;
    background-color: #070483;
    color: #fff;
}



/*====================*/


/*Side fixed iocns Start*/

#hxb-enquiry-forms .fixed-icons {
    position: fixed;
    left: 10px;
    bottom: 40%;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

#hxb-enquiry-forms .fixed-icons a {
    margin: 5px 0;
    color: #fff;
    padding: 10px 10px;
    line-height: 0px !important;
    border-radius: 10px;
    text-align: center;
    font-size: 26px;
    transition: background-color 0.3s ease;
    border: 2px solid #fff;
}  

#hxb-enquiry-forms .fixed-icons .phone-icon {
    background-color: #1321a6;
}
#hxb-enquiry-forms .fixed-icons .whatsapp-icon {
    background-color: #27d648;
}
#hxb-enquiry-forms .fixed-icons .mail-icon {
    background-color: #d90000;
}

#hxb-enquiry-forms .fixed-icons a:hover {
    background-color: #000;
}

/* Popup Form Styles */
#hxb-enquiry-forms .popup-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 10000001;
}

#hxb-enquiry-forms .form-content {
    background-color: #00000094;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    position: relative;
    margin: 0 10px;
    width: 100%;
}

#hxb-enquiry-forms .form-content h2 {
    color: #fff;
}

#hxb-enquiry-forms .close-btn {
    position: absolute;
    top: 0px;
    right: 10px;
    cursor: pointer;
    font-size: 40px;
    color: #fff;
}

#hxb-enquiry-forms .popup-form form input,
#hxb-enquiry-forms .popup-form form textarea {
    width: 100%;
    padding: 10px;
    margin: 6px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#hxb-enquiry-forms .popup-form form button {
    width: 100%;
    padding: 10px;
    background-color: #61c467;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 18px;
    transition: background-color 0.4s ease;
}

#hxb-enquiry-forms .popup-form form button:hover {
    background-color: #48914d;
}

/*Side fixed icons ends*/


/*==========================================*/


.mkt-btn-enq {
    padding: 10px 25px;
    font-size: 18px;
    font-weight: 500;
    background-color: #2e2d78;
    color: #fff;
}
.mkt-btn-enq:hover {
    background-color: #000;
    color: #fff;
}


/*==========================*/



 :root {
    --primary-hxb: #4361ee;
    --secondary-hxb: #3a0ca3;
    --success-hxb: #4cc9f0;
    --danger-hxb: #f72585;
    --light-hxb: #f8f9fa;
    --dark-hxb: #212529;
    --gray-hxb: #6c757d;
}
    .container-hxb {
            width: 100%;
            max-width: 700px;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }
        
        .header-hxb {
            background: linear-gradient(to right, var(--primary-hxb), var(--secondary-hxb));
            color: white;
            padding: 25px 30px;
            text-align: center;
        }
        
        .header-hxb h1 {
            font-size: 1.8rem;
            margin-bottom: 5px;
        }
        
        .header-hxb p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .form-container-hxb {
            padding: 30px;
        }
        
        .form-group-hxb {
            margin-bottom: 6px;
        }
        
        label {
            display: block;
            margin-bottom: 0px;
            font-weight: 600;
            color: var(--dark-hxb);
        }
        
        .required-hxb::after {
            content: " *";
            color: var(--danger-hxb);
        }
        
        input, textarea, select {
            width: 100%;
            padding: 7px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            transition: all 0.3s;
        }
        
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-hxb);
            box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
        }
        
        textarea {
            min-height: 65px;
            resize: vertical;
        }
        
        .form-row-hxb {
            display: flex;
            gap: 15px;
        }
        
        .form-row-hxb .form-group-hxb {
            flex: 1;
        }
        
        .verification-section-hxb {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 4px;
            padding: 5px;
            background-color: #f8f9fa;
            border-radius: 10px;
            border: 1px solid #e9ecef;
        }
        #refreshBtn-hxb {
            margin: 0px !important;
        }
        
        .verification-code-hxb {
            font-family: 'Courier New', monospace;
            font-size: 1.5rem;
            font-weight: bold;
            letter-spacing: 4px;
            background: linear-gradient(45deg, var(--primary-hxb), var(--secondary-hxb));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            padding: 5px 15px;
            border-radius: 8px;
            border: 1px dashed var(--primary-hxb);
            flex: 1;
            text-align: center;
            user-select: none;
        }
        
        .refresh-btn-hxb {
            background: var(--primary-hxb);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 10px 15px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .refresh-btn-hxb:hover {
            background: var(--secondary-hxb);
            transform: translateY(-2px);
        }
        
        .form-footer-hxb p {
            margin-bottom: 0px !important;
            padding: 0px;
        }
        
        .submit-btn-hxb {
            width: 100%;
            background: linear-gradient(to right, var(--primary-hxb), var(--secondary-hxb));
            color: white;
            border: none;
            border-radius: 8px;
            padding: 15px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }
        
        .submit-btn-hxb:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
        }
        
        .submit-btn-hxb:active {
            transform: translateY(0);
        }
        
        .submit-btn-hxb:disabled {
            background: var(--gray-hxb);
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        .message-hxb {
            margin-top: 15px;
            padding: 12px;
            border-radius: 8px;
            text-align: center;
            font-weight: 500;
            display: none;
        }
        
        .success-hxb {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .error-hxb {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .loading-hxb {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin-hxb 1s ease-in-out infinite;
        }
        
        @keyframes spin-hxb {
            to { transform: rotate(360deg); }
        }
        
        .form-footer-hxb {
            text-align: center;
            margin-top: 20px;
            font-size: 0.9rem;
            color: var(--gray-hxb);
        }
        
        @media (max-width: 768px) {
            .container-hxb {
                max-width: 100%;
            }
            
            .form-container-hxb {
                padding: 20px;
            }
            
            .verification-section-hxb {
                flex-direction: column;
            }
            
            .form-row-hxb {
                flex-direction: column;
                gap: 0;
            }
        }

