/* instagram post  */


    .insta-section {
        padding: 40px 0;
        background: #fafafa;
    }

    .swiper {
        padding: 10px 0;
    }

    .insta-card {
        position: relative;
        border-radius: 14px;
        overflow: hidden;
        background: #000;
        aspect-ratio: 1 / 1;
    }
.sub-title {
    text-shadow: 0 2px 5px rgba(0,0,0,0.6);
}

.elet-h-56{
    position: absolute;
    font-size: 0;
    top: -100px;
}
    .insta-card img,
    .insta-card video {
        width: 100%;

        object-fit: cover;
        display: block;
    }

    .insta-card video {
        height: 535px;
    }

    /* Hover Overlay */
    .insta-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .55);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity .3s ease;
    }

    .insta-card:hover .insta-overlay {
        opacity: 1;
    }

    /* Instagram Icon */
    .insta-icon {
        width: 54px;
        height: 54px;
        fill: #fff;
    }

    /* Caption */
    .insta-caption {
        position: absolute;
        bottom: 0;
        padding: 14px;
        color: #fff;
        background: linear-gradient(to top, rgba(0, 0, 0, .6), transparent);
        width: 100%;
    }

    .insta-caption h4 {
        font-size: 15px;
        margin: 0;
    }

    .insta-caption p {
        font-size: 12px;
        margin-top: 4px;
        opacity: .85;
    }

/* instagram post end  */
.pre-header{      
      font-family: var(--body-font);
      background: unset;
      color: unset;
      font-size:unset;
      margin:unset;
      overflow: unset;
      padding: unset;
 
      word-wrap:unset;
    
    display: unset;
    margin-top:unset;
    margin-bottom: unset;
  overflow: unset;
    font-size: unset;
}


.header-logo {
    width: 60px;
    padding:  0;
}
.social-float-right {
    position: fixed;
    top: 75%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.social-float-right .social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    margin: 3px 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-float-right .social-icon:hover {
    width: 55px;
}

/* Brand Colors */
.facebook { background: #1877f2; }
.instagram { background: #e4405f; }
.twitter { background: #000000; }
.linkedin { background: #0077b5; }
.whatsapp { background: #25d366; }

.swiper {
    overflow: visible;
}
/* ================= MODAL OVERLAY ================= */
#myModal {
    position: fixed;
    inset: 0;
    background: rgb(10 11 11 / 75%);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(6px);
}
#closeModalBtn{
    color: red;
    position: absolute;
    top: 5%;
    right: 5%;
}

#myModal.active {
    display: flex;
}

/* ================= MODAL BOX ================= */
#myModal > div {
    width: 100%;
    max-width: 480px;
    padding: 15px;
}

.modal-content {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 84, 97, 0.35);
    animation: modalPop 0.35s ease;
}

/* ================= HEADER ================= */
.modal-header {
    position: relative;
    padding: 30px 20px 25px;
    text-align: center;
    background: linear-gradient(
        135deg,
        #005461,
        #0C7779,
        #249E94
    );
    color: #fff;
}

/* subtle shine */
/* .modal-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.15),
        transparent
    );
} */

/* LOGO */
.popup-logo img {
    margin-bottom: 10px;
}

/* TITLE */
.popup-text h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

/* ================= CLOSE BUTTON ================= */


.btn-close:hover {
    background: #3BC1A8;
    transform: rotate(90deg);
}

/* ================= BODY ================= */
.modal-body {
    padding: 28px 26px 30px;
}

/* INPUTS */
.contact-info input {
    width: 100%;
    padding: 13px 14px;
    margin-bottom: 16px;
    border-radius: 10px;
    border: 1.5px solid #d9eeee;
    font-size: 14px;
    transition: 0.25s ease;
}

.contact-info input:focus {
    outline: none;
    border-color: #249E94;
    box-shadow: 0 0 0 3px rgba(36, 158, 148, 0.2);
}

/* ================= BUTTON ================= */
.nws-button button {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(
        135deg,
        #0C7779,
        #3BC1A8
    );
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 193, 168, 0.45);
}

.nws-button button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(59, 193, 168, 0.6);
}

/* ================= ANIMATION ================= */
@keyframes modalPop {
    from {
        transform: scale(0.9) translateY(10px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 480px) {
    .modal-content {
        border-radius: 12px;
    }
}

@media (max-width: 1600px) {
    .marquee-elt56 {
       display: none;
    }
}
.testi-card .quote-icon
 {
    width: unset; 
    height: unset;
  background: unset;
    margin-bottom: 26px;
    transform: rotate(180deg);
}
/* ================= OPEN BUTTON ================= */
.menu-open-btn {
    background: #005461;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
}

/* ================= OVERLAY ================= */
.custom-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 84, 97, 0.6);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
    z-index: 9998;
}

.custom-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ================= SIDE MENU ================= */
.custom-side-menu {
    position: fixed;
    top: 0;
    right: -360px;
    width: 340px;
    height: 100%;
    background: linear-gradient(
        180deg,
        #005461,
        #0C7779
    );
    color: #fff;
    z-index: 9999;
    transition: 0.4s cubic-bezier(.4,0,.2,1);
    box-shadow: -20px 0 50px rgba(0,0,0,0.35);
    display: flex;
    flex-direction: column;
}

/* ACTIVE */
.custom-side-menu.active {
    right: 0;
}

/* ================= HEADER ================= */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.menu-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

/* CLOSE BUTTON */
.menu-close-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 26px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.menu-close-btn:hover {
    background: #3BC1A8;
    transform: rotate(90deg);
}

/* ================= LINKS ================= */
.menu-links {
        overflow: auto;
    list-style: none;
    padding: 20px;
    margin: 0;
}

.menu-links li {
    margin: 14px;
}

.menu-links a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    background: rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}
.th-widget-instagram .insta-thumb img {
    width: 100%;
    height: auto;
}
.menu-links button {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    width: 100%;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    background: rgba(255,255,255,0.08);
    transition: 0.3s ease;
}


/* ================= SUBMENU ================= */
.has-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow {
    transition: transform 0.3s ease;
    font-size: 14px;
}

/* Submenu hidden */
.submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    margin-left: 10px;
}

/* Submenu links */
.submenu li a {
    background: rgba(255,255,255,0.06);
    font-size: 14px;
    padding: 10px 14px;
}

/* Active submenu */
.has-submenu.active .submenu {
    max-height: 300px;
}

/* Rotate arrow */
.has-submenu.active .arrow {
    transform: rotate(180deg);
}
