@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --playfair: "Rubik", sans-serif;
    --orange: #f05123;
}

html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

body {
    font-family: "Rubik", sans-serif;
    overflow-x: hidden;
    color: #fff;
    height: 100vh;
    overflow-y: scroll;
}

.p-80 {
    padding: 80px 0;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

/* ============== logo area ============ */
.logo-area img {
    width: 200px;
    transition: all 0.3s ease-in;
}

.call-to-area {
    display: flex;
    justify-content: end;
    gap: 40px;
    margin-bottom: 10px;
}

.call-to-area a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    font-weight: 300;
    position: relative;
}

.call-to-area a::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    width: 1px;
    height: 50%;
    background-color: #fff;
}

.grid-bar a {
    text-decoration: none;
}

.call-to-area a:last-child:after {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    justify-content: end;
}

.nav-menu li {
    position: relative;
}

.nav-menu li::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0%;
    height: 1px;
    background-color: #fff;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-menu li:hover::after {
    opacity: 1;
    width: 100%;
    transition: all 0.3s ease;
}

.nav-menu a {
    color: #585a5d;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.7;
}

.menu-bar {
    float: right;
    background: #96969640;
    color: #fff;
    border: 1px solid #aeaeae73;
    padding: 10px 25px;
    border-radius: 44px;
}

.menu-bar svg {
    margin-right: 5px;
}

.logo-fixed {
    display: none;
}

.header-active .logo-fixed {
    display: block;
}

.header-active .logo {
    display: none;
}

.header-active {
    box-shadow: 2px 7px 20px #dddddd42;
    transition: all 0.3s ease-in;
}

header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #fff;
    z-index: -1;
    transition: height 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.header-active::after{
    height: 100%;
}

.is-sticky::after {
    height: 100%;
}

.header-active .menu-bar {
    background: transparent;
    border-color: #585a5d;
    color: #585a5d;
}

.header-active .menu-bar svg {
    filter: invert(1);
}

.is-sticky .logo-fixed {
    display: block;
}

.is-sticky .logo {
    display: none;
}

.is-sticky .menu-bar {
    background: transparent;
    border-color: #585a5d;
    color: #585a5d;
}

.is-sticky .menu-bar svg {
    filter: invert(1);
}

.is-sticky .menu-bar svg:hover {
    filter: none !important;
}


.logo-fixed img {
    width: 150px;
    transition: all 0.3s ease-in;
}

.mob-view {
    display: none !important;
}

.iso-part img {
    width: 210px;
    filter: brightness(0) invert(1);
}

.iso-part {
    margin-top: 12px;
    padding-left: 20px;
    position: relative;
}

.is-sticky .iso-part p {
    margin-bottom: 3px;
    text-align: center;
    font-weight: 500;
    font-size: 13px;
    color:#000;
}

.header-active .iso-part img {
    filter: none;
}

.header-active .iso-part::after {
    background-color: #424143;
}

.is-sticky .iso-part img {
    filter: none;
}

.is-sticky .iso-part::after {
    background-color: #424143;
}
.top_mob_email {
    display: flex;
}
.header-right {
    align-items: center;
    display: flex;
    gap: 15px;
}

/* ============== mobile menu css ============ */
/* Hamburger Button */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1001;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}

/* Menu Content */
.menu-content {
    padding: 80px 0 30px;
}

.menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-link:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 30px;
}

.menu-link .arrow {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.menu-item.active>.menu-link .arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    transition: max-height 0.4s ease;
}

.menu-item.active .dropdown {
    max-height: 1000px;
}

.dropdown-item {
    padding: 15px 25px 15px 45px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: block;
    font-size: 13px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 50px;
    border-left-color: white;
}

/* Sub Dropdown */
.sub-dropdown {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.15);
    transition: max-height 0.4s ease;
}

.dropdown-item.has-sub {
    cursor: pointer;
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
}

.dropdown-item.has-sub .arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
    margin-left: auto;
    float: right;
}

.dropdown-item.active .arrow {
    transform: rotate(180deg);
}

.dropdown-item.active .sub-dropdown {
    max-height: 500px;
    margin-top: 20px;
}

.sub-dropdown-item {
    padding: 12px 25px 12px 20px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: left;
}

.sub-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 30px;
    color: white;
}

/* Backdrop */
.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

.backdrop.active {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 1;
    visibility: visible;
}

.nav-close {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    background: #fff;
    font-size: 30px;
    border: none;
    border-radius: 50%;
}




/* =========== banner area start ========== */
.banner-area {
    position: relative;
    z-index: 1;
}

.banner-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000066;
    z-index: 1;
}

.banner-item {
    position: relative;
}

.banner-item video {
    width: 100%;
    height: auto;
}

.banner-overley {
            position: absolute;
            top: 60%;
            transform: translateY(-50%);
            width: 100%;
            z-index: 11;
            /* Initial state - blurred and scaled down */
/*            filter: blur(10px);*/
            opacity: 1;
            transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        /* Animation for active slide */
        .banner-area .owl-item.active .banner-overley {
            filter: blur(0px);
            opacity: 1;
            transform: translateY(-50%) scale(1);
            transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        /* Optional: Extra effect for center item if using center mode */
        .banner-area .owl-item.active.center .banner-overley {
            filter: blur(0);
            opacity: 1;
            transform: translateY(-50%) scale(1);
        }
/* .banner-area .owl-item.active.center .banner-overley {
   transform: scale(1); 
   filter: blur(0);
   transition-delay: .5s;
} */
.section-content h1 {
    font-size: 54px;
    font-weight: 500;
    font-family: var(--playfair);
    text-transform: capitalize;
    padding: 0px 151px;
}

.banner-area .owl-nav {
    position: absolute;
    bottom: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.banner-area .owl-prev {
    width: 60px;
    height: 60px;
    background: #fff !important;
    border-radius: 50%;
    color: var(--orange) !important;
    font-size: 25px !important;
    line-height: 60px !important;
    transition: all 0.3s ease;
}

.banner-area .owl-next {
    width: 60px;
    height: 60px;
    background: #fff !important;
    border-radius: 50%;
    color: var(--orange) !important;
    font-size: 25px !important;
    line-height: 60px !important;
    transition: all 0.3s ease;
}

.banner-area .owl-prev:hover {
    background-color: var(--orange) !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.banner-area .owl-next:hover {
    background-color: var(--orange) !important;
    color: #fff !important;
    transition: all 0.3s ease;
}


/* ============= inspired sec ============= */
.section-content h2 {
    font-size: 42px;
    font-weight: 500;
    font-family: var(--playfair);
    color: #686b64;
}

.section-content p {
    font-size: 16px;
    color: #686b64;
}

.grid-item span img {
    width: 60px !important;
    height: 61px;
    object-fit: contain;
}

.theme-btn {
    padding: 7px 7px 7px 25px;
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 44px;
    text-decoration: none;
    color: #686b64;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.theme-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--orange);
    transition: 0.3s ease-out all;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.theme-btn:hover::after {
    width: 100%;
    opacity: 1;
    visibility: visible;
    transition: 0.3s ease-out all;
}

.theme-btn span {
    background: #686b64;
    width: 35px;
    height: 35px;
    display: inline-block;
    border-radius: 50%;
    line-height: 33px;
    margin-left: 15px;
    transition: 0.3s ease-out all;
}

.theme-btn:hover span {
    background-color: #fff;
    transition: 0.3s ease-out all;
}

.theme-btn:hover span svg {
    filter: invert(1);
}

.theme-btn:hover {
    color: #fff;
    border-color: var(--orange);
}

#snd-content {
    margin-top: 100px;
}

.grid-container .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.grid-container .owl-prev {
    left: -100px;
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #686b64 !important;
    color: #686b64 !important;
    transition: all 0.3s;
}

.grid-container .owl-prev:hover {
    background-color: var(--orange) !important;
    border-color: var(--orange) !important;
    color: #fff !important;
    transition: all 0.3s;
}

.grid-container .owl-next {
    right: -100px;
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #686b64 !important;
    color: #686b64 !important;
    transition: all 0.3s;
}

.grid-container .owl-next:hover {
    background-color: var(--orange) !important;
    border-color: var(--orange) !important;
    color: #fff !important;
    transition: all 0.3s;
}


/* ================ about us sec start ================= */
.section-three {
    background-image: url(../images/about.svg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
}

section.about_punit p {
    color: #585a5d;
}



.about-content {
    text-align: left !important;
}

.about-content h2 {
    color: #fff;
    margin-bottom: 20px;
}

.about-content p {
    color: #fff;
    margin-bottom: 20px;
}

.about-content .theme-btn {
    color: #ffffff;
}

.about-content .theme-btn span {
    background: var(--orange);
    text-align: center;
}

.about-content .theme-btn:hover span {
    background-color: #fff;
}

.about-img {
    transform: scale(0);
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
}

.about-img img {
    width: 100%;
}

section.active .about-img {
    opacity: 1;
    transform: scale(1);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: #f05123a8;
    text-align: center;
    line-height: 100px;
    border-radius: 50%;
}

/*================ companies area============= */
.companies-item {
    background: #fcf9f9;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #686b6445;
}

.companies-item img {
    width: 200px !important;
    height: 220px;
    margin: 0 auto;
    padding: 40px 0;
    object-fit: contain;
} 

.compaines-btn {
    padding: 15px 0 10px;
    border-top: 1px solid #686b6445;
}

.testimonial {
    margin-top: 100px;
}

/* ========== testimonial sec ======== */
.section-five {
    background-image: url(https://merakisquare.com/demo/terrashieldindia/upload/fileManager/site/director.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}



.punit_about_director {
    background: #cccccc1c;
}

section.client-about ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    text-align: center;
    margin-top: 25px;
}

section.client-about ul li {
    color: #585a5d;
    line-height: 20px;
    background: #cccccc40;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    vertical-align: middle;
    align-items: center;
}

.testimoniall {
    padding-right: 40px;
}

.testimonial h4 {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    font-family: var(--playfair);
    font-style: italic;
    margin: 30px 0 50px;
}

.author h5 {
    color: var(--orange);
    font-weight: 400;
}

.testimonial {
    transform: translateX(100px);
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
}

section.active .testimonial {
    opacity: 1;
    transform: translateY(0px);
}

/* ============== footer sec end ============= */
.contact-bgpart {
    background-image: url(../images/footer.jpg);
    background-size: cover;
    height: calc(100vh - 112px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-bgpart h2 {
    color: #fff;
    margin-bottom: 20px;
}

.contact-bgpart p {
    color: #fff;
    margin-bottom: 20px;
}

.contact-bgpart .theme-btn {
    color: #ffffff;
}

p.contact_company {
    margin-bottom: 6px;
}

.contact-bgpart .theme-btn span {
    background: var(--orange);
    text-align: center;
}

.contact-bgpart .theme-btn:hover span {
    background-color: #fff;
}

.section-six {
    flex-direction: column;
}

.footer {
    width: 100%;
    padding: 25px 0;
}

.footer .call-to-area a {
    color: #585a5d;
}

.footer .call-to-area a::after {
    background-color: #585a5d;
}

.footer .call-to-area {
    justify-content: start;
}

.copyright {
    margin: 0;
    color: #585a5d;
    font-size: 16px;
    text-align: right;
    margin-top: 12px;
}

.copyright a {
    color: #585a5d;
    text-decoration: none;
}

.follow-us {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #585a5d;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}

.social-links li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: #c3c3c3;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    font-size: 13px;
    color: #fff;
    transition: all 0.3s;
}

.social-links li a:hover {
    background-color: var(--orange);
    transition: all 0.3s;
}

.back-btn {
    padding-right: 25px;
    padding-left: 7px;
}

.back-btn span {
    color: #fff;
    text-align: center;
    padding-left: 9px;
    margin-right: 10px;
    margin-left: 0;
    line-height: 36px;
}

.back-btn:hover span {
    color: #686b64;
}

/* Custom Scrollbar for Mobile Menu */
.mobile-menu::-webkit-scrollbar {
    width: 3px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.mobile-menu::-webkit-scrollbar-thumb {
    background-color: #f05123;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Firefox support */
.mobile-menu {
    scrollbar-width: 3px;
    scrollbar-color: #f05123;
}

/* contact page  */
.contact-content {
    position: sticky;
    top: 120px;
}

.decorative-line {
    width: 60px;
    height: 2px;
    background-color: #686b64;
    margin-bottom: 10px;
}

.section-description {
    margin-top: 15px;
}

.form-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.form-control {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 0.95rem;
    color: #333;
    background-color: #fafafa;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #000;
    box-shadow: none;
    background-color: #fff;
}

.form-control::placeholder {
    color: #aaa;
    font-size: 0.95rem;
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.menu-bar {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 10px 18px;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

/* Create the fill effect (bottom → top) */
.menu-bar::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: var(--orange);
    z-index: -1;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card-content h6 {
    color: #585a5d;
    font-size: 12px;
    font-weight: 500;
}

/* On hover: fill color rises + text/icon turns white */
.menu-bar:hover::after {
    height: 100%;
}

.menu-bar:hover {
    color: #fff;
    border-color: var(--orange);
    transform: translateY(-2px);
}

.header-active .menu-bar svg {
    filter: invert(1);
    transition: filter 0.3s ease;
}

/* Apply invert (white look) only when hovered */
.header-active .menu-bar:hover svg {
    filter: none !important;
}

@keyframes bgZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}

/* Animate the background itself */
.section-three::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit; /* copies your background-image, repeat, size */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  animation: bgZoom 10s ease-in-out infinite alternate;
  z-index: 0;
}

/* Keep the actual content above the zooming background */
.section-three .container,
.section-three > * {
  position: relative;
  z-index: 2;
}


section.client-about ul li:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    box-shadow: 0 8px 20px rgba(240, 81, 35, 0.25);
    transform: translateY(-3px);
    transition: all 0.4s ease;
}
/*product section*/

section.product_section {
    padding: 50px 0px;
}

.product_area h2 {
    text-align: center;
    color: #686b64;
    padding: 20px 0px;
}
.product_area p {
    text-align: center;
    color: #686b64;
    font-size: 15px;
}



.application .grid-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid #686b6445;
    gap: 10px;
    border-radius: 20px;
    padding: 20px;
    transition: all 0.3s ease;
    min-height: 161px;
}
.application {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding-bottom: 16px;
}
.application .grid-label {
    color: #686b64;
    text-align: center;
}

.application .grid-item {
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* The animated background layer */
.application .grid-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: var(--orange);
  z-index: -1;
  transition: height 0.35s ease;
}

/* Hover Effect: Fill up */
.application .grid-item:hover::before {
  height: 100%;
}

/* Text color change */
.application .grid-item:hover {
  color: #fff !important;
}


.application .grid-item:hover img {
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}
.application .grid-item:hover .grid-label {
    color: #fff;
    transition: all 0.3s ease;
}
.features ul li {
    color: #686b64;
    line-height: 36px;
}
img.img-responsive.features {
    width: 100%;
     transition: 0.5s;
     overflow: hidden;
}
img.img-responsive.features:hover {
    transform: scale(1.1);
    overflow: hidden;
    transition: 0.5s;
}

.card-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: all .3s ease;
  margin-bottom: 20px;
}

.card-img img {
  width: 100%;
  display: block;
  border-radius: 8px;
  transition: transform 0.4s ease;
  height: 286px;
}

/* text box */
.card-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 18px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  transition: all .4s ease;
}

/* Hover Effects */
.card-box:hover .card-img img {
  transform: scale(1.07);
}

.card-box:hover .card-content {
  background: var(--orange); /* change color to your theme color */
  transform: translateY(-15px);
}
.card-content.card-content h4 {
    font-size: 18px;
    margin: 0px;
}
.modern-tabs .nav-tabs {
  border-bottom: none;
  position: relative;
}

.modern-tabs .nav-tabs .nav-link {
  border: none;
  padding: 12px 22px;
  font-size: 16px;
  color: #555;
  position: relative;
  background: transparent;
  transition: 0.3s ease;
}

.modern-tabs .nav-tabs .nav-link:hover {
  color: var(--orange);
}

.modern-tabs .nav-tabs .nav-link.active {
  color: var(--orange);
  font-weight: 500;
}

.modern-tabs .nav-tabs .nav-link.active::after, .modern-tabs .nav-tabs .nav-link::after {
    content: "";
    position: absolute;
    left: 23px;
    bottom: -4px;
    width: 70%;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform .3s ease;
}

.modern-tabs .nav-tabs .nav-link.active::after {
  transform: scaleX(1);
}

.modern-tabs.container.second {
    padding-top: 40px;
}
.modern-tabs .nav-tabs .nav-link {
    color: #686b64;
    font-weight: 500;
    cursor: pointer;
}
/* Fade animation for content */
.modern-tabs .tab-pane {
  animation: fadeIn .4s ease;
}

a.theme-btn.product {
    display: table;
    margin: auto;
}
.features {
    padding-bottom: 30px;
}

/*about*/

.iso-part::after {
    content: "";
    height: 40px;
    width: 1px;
    background-color: #fff;
    position: absolute;
    top: 16px;
    left: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Inter", Arial, sans-serif;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

table td {
  padding: 14px 18px;
  border-bottom: 1px solid #e7e7e7;
  font-size: 15px;
  color: #374151;
  transition: background 0.25s ease, color 0.25s ease;
}

/* First column style */
table td:first-child {
  background: #d9d9d9;
  border-right: 1px solid #e7e7e7;
}


/* Each td hover (not entire row) */
table td:hover {
    background: #ff7c51 !important;
    color: #ffffff;
}

/* Keep first column hover slightly darker for emphasis */

/* Remove last row border */
table tr:last-child td {
  border-bottom: none;
}
a.theme-btn.brochure {
    display: table;
    margin: auto;
}

section.section-three.active.about {
    background-image: none;
    padding-top: 50px;
}
.testimoniall h4 {
    color: #585a5d;
    padding: 28px 0px;
    font-size: 20px;
    line-height: 30px;
}
.testimoniall h5 {
    font-size: 22px;
    font-weight: 500;
}
section.about_punit {
    padding-top: 50px;
    padding-bottom: 50px;
}
.top-info {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}
.top-sep::after {
    content: "";
    height: 15px;
    width: 2px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translatex(-50%);
}
.top-sep {
    position: relative;
    width: 30px;
    height: 15px;
}
.header-active .iso-part p {
    color: #585a5d;
}

.header-active a.top-info {
    color: #585a5d !important;
}

.is-sticky .top-info
{
   color: #585a5d;

}

.is-sticky .top-sep::after {

    background-color: #000;
}

.is-sticky .iso-part p {
    filter: none;
}


.header-active .top-sep::after
{
    background-color: #585a5d;

}

.contact-area {
    padding: 60px 30px;
    background: #fff;
}
.content-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 86%;
    background-color: #eef0f6;
    z-index: -1;
}
.contact-part {
    border: 1px solid #889ea833;
    color: #000;
    text-align: center;
    min-height: 300px;
    padding: 18px 18px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    transition: all 0.3s ease-in;
}
.contact-part:hover {
    box-shadow: 1px 2px 20px #dddddda8;
    transition: all 0.3s ease-in;
}
.contact-part p {
    font-size: 16px;
    color: #686b64;
}
.contact-part a {
    font-size: 16px;
    color: #000;
    text-decoration: none;
    margin-top: 30px;
    display: inline-block;
}


/*blog*/

.blog-card {
  width: 100%;
  max-width: 350px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  position: relative;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  transition: transform .35s, box-shadow .35s;
  cursor: pointer;
}


.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.22);
}

.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform .6s ease;
}
.blog-card:hover img {
  transform: scale(1.08);
}

.blog-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #f05123);
    opacity: 0;
    transition: opacity .4s ease;
}
.blog-card:hover::before {
  opacity: 1;
}

.blog-card-content {
  padding: 18px;
  position: relative;
  z-index: 2;
}

.blog-card-content h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
  transition: color .4s;
  color: #585a5d;
}
.blog-card:hover .blog-card-content h3 {
  color: #f05123;
}

.blog-card-content p {
  color: #585a5d;
  font-size: 0.94rem;
  margin-bottom: 14px;
  transition: color .4s;
}

.blog-card-content a {
  text-decoration: none;
  color: #f05123;
  font-weight: 500;
  transition: .35s;
}

.blog-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent, #f05123);
  opacity: 0;
  transition: opacity .4s ease;
}
.blog-card:hover::before {
  opacity: 1;
}

.blog-card-content a:hover {
  color: #c4431e;

}
.blog-card:hover .blog-card-content h3,
.blog-card:hover .blog-card-content p,
.blog-card:hover .blog-card-content a {
  color: #fff !important;
}

.blog-card:hover .blog-card-content h6 {
  color: #fff !important;
}


/* Mobile Responsive */
@media (max-width: 600px) {
/*  table, tbody, tr, td {
    display: inline;
    width: 100%;
  }*/

  tr {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    border: 1px solid #f2f2f2;
  }

  table td {
    border-bottom: none;
  }

  table td:first-child {
    border-right: none;
  }

section.section-three.active.about {
    overflow: hidden;
    position: relative;
}


section.section-three.active.about .about-img img {
    width: 100%;
}

.testimoniall {
    padding-right: 0px;
}
.testimoniall h4 {
    font-size: 17px;
    line-height: 27px;
    padding: 10px 0px;
}
.testimoniall h5 {
    font-size: 17px;
}

.testimoniall img {
    width: 20%;
    margin-top: 30px;
}

section.about_punit p {
    font-size: 14px;
}

.blog_details_coloum {
    display: block !important;
}

.blog-details-sec .section-heading {
    font-size: 22px !important;
    color: #686b64;
}

.article-meta {
    font-size: 15px !important;
}

.article-excerpt {
    font-size: 15px !important;
}
.section-title-blog {
    font-size: 22px !important;

}


}


/*clients section*/

.client-section {
  padding: 60px 0;
  background: #fff;

}

.client-about {
  padding: 60px 0;
  background: #fff;
padding-bottom: 0px;

}

.iso-part p {
    margin-bottom: 3px;
    text-align: center;
    font-weight: 500;
    font-size: 13px;
}

.client-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 500;
    color: #585a5d;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
  justify-items: center;
      margin-bottom: 30px;
}

.client-card {
    width: 250px;
    height: 150px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.08);
    padding: 12px;
}

.client-section p {
    color: #585a5d;
    margin-bottom: 50px;
    text-align: center;
}

.client-about p {
    color: #585a5d;
    margin-bottom: 10px;

}
section.client-about ul li {
    color: #585a5d;
    line-height: 20px;
    transition: all 0.4s ease;
}
.client-card img {
  max-width: 100%;
  max-height: 100%;
  opacity: 0.9;
  transition: 0.4s;
}

/* Hover Effect: down to up + stronger shadow */
.client-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.client-card:hover img {
  opacity: 1;
}



@keyframes fadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}
svg.injected-svg.product_page {
    margin-left: 7px;
}

.table-responsive .theme-btn {
    display: table;
    margin: auto;
    margin-top: 30px;
}

.modern-tabs.container h4 {
    color: #686b64;
    text-align: center;
}

.tab_text {
    color: #686b64;
    text-align: center;
}

.table-responsive {
    margin-top: 25px;
}
.table-responsive table td {
    font-size: 14px;
    border: 1px solid #c9c2c2;
    padding: 12px;
    text-align: center;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card a {
  display: block;
  position: relative;
}

.gallery-card img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-card:hover img {
  transform: scale(1.1) rotate(1deg);
  filter: brightness(0.85);
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Overlay styling */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240, 81, 35, 0.85), rgba(255, 140, 0, 0.75));
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
  border-radius: 16px;
  z-index: 2;
  pointer-events: none; /* FIX: allows click-through to Fancybox */
}

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

.overlay-content {
  text-align: center;
  color: #fff;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
}

.gallery-card:hover .overlay-content {
  transform: translateY(0);
  opacity: 1;
}

.overlay-content i {
  font-size: 2rem;
  margin-bottom: 8px;
  animation: pulse 1.5s infinite alternate;
}

.overlay-content p {
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Small Pulse Icon Animation */
@keyframes pulse {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}


.img_box img {
    width: 56%;
    display: flex;
    margin: auto;
}

.dimple_pro {
    display: grid;
    grid-template-columns: 70% 30%;
}
.dimple_pro p {
    text-align: left;
}
.img_box p {
    text-align: center;
}

section.gallery-section.py-5 h2 {
    color: #585a5d;
}

strong.side_side {
    position: relative;
    left: 100px;
}
@media only screen and (min-width:320px) and (max-width:575.99px) {
    .logo-area img {
        width: 100%;
    }

    strong.side_side {
    position: relative;
    left: 57px;
}

    .dimple_pro {
    display: block;
}

.dimple_pro p {
    text-align: center;
}

    .header-right {
    gap: 36px;
}

    .section-content h1 {
        font-size: 26px;
        padding: 0px;
    }

    .section-five {
    background-position: right;
}

img.dask-view.w-100 {
    display: none;
}

section.client-about ul {
    display: inline-block;
}

section.client-about ul li {
    margin-bottom: 10px;
}
.nav-menu {
    display: none;
}
    .section-content {
        padding: 0rem !important;
    }

    .section-content p {
        font-size: 12px;
    }

    .section-content h2 {
        font-size: 25px;
        margin-bottom: 8px;
    }

    .grid-item span img {
        width: 60px !important;
    }

    .grid-label {
        font-size: 12px !important;
    }

    .section-two .mt-5 {
        margin-top: 1.5rem !important;
    }

    .about-img img {
        width: 80%;
        margin: 0 auto;
        display: table;
    }

    .about-content {
        text-align: center !important;
    }

    .section-three .row {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .section-three {
        padding-top: 65px;
    }

    .companies-sec {
        margin-top: 100px;
    }

    .companies-item img {
        width: 60% !important;
        padding: 20px 10px;
        height: 120px;
    }

    .companies-item .theme-btn {
        padding: 5px 5px 5px 25px;
        font-size: 10px;
        align-items: center;
    }

    .compaines-btn {
        padding: 15px 10px 10px;
    }

    .companies-sec .section-content {
        margin-bottom: 30px;
    }

    .testimonial {
        text-align: center;
    }

    .footer {
        padding: 25px 0 60px;
    }

    .footer .call-to-area {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }

    .follow-us {
        justify-content: center;
    }

    .follow-us p {
        display: none;
    }

    .copyright {
        text-align: center;
    }

    .footer .call-to-area a::after {
        display: none;
    }

    .companies-item {
        margin-bottom: 15px;
    }

    .nav-close {
        position: absolute;
        top: -10px;
        left: -10px;
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

@media (max-width:767px) {
    .menu-bar {
        padding: 7px 15px;
        font-size: 14px;
        margin-top: 15px;
    }

    .banner-item img,
    video {
        height: 100vh;
        object-fit: cover;
    }

    .banner-item video {
        height: 100vh;
        object-fit: cover;
    }

    .banner-area .owl-prev {
        width: 40px;
        height: 40px;
        font-size: 20px !important;
        line-height: 40px !important;
    }

    .banner-area .owl-next {
        width: 40px;
        height: 40px;
        font-size: 20px !important;
        line-height: 40px !important;
    }

    .banner-area .owl-nav {
        bottom: 70px;
    }

    .nav-dot {
        width: 5px !important;
        height: 5px !important;
    }

    .mobile-menu {
        width: 75%;
    }


    .mob-view {
        display: block !important;
    }

    .iso-part {
        display: none;
    }

    .play-btn {
        width: 50px;
        height: 50px;
        line-height: 48px;
    }

    .play-btn svg {
        width: 20px;
    }
}

@media only screen and (min-width:576px) and (max-width:991.98px) {
    .banner-item video {
        height: 100vh;
        width: 100%;
        object-fit: cover;
    }

    .about-img {
        width: 60%;
    }

    .section-content {
        padding: 1rem;
    }

    .section-content h2 {
        font-size: 25px;
    }

    .section-content p {
        font-size: 12px;
    }

    .about-content h2 {
        margin-bottom: 10px;
    }

    .grid-container .owl-nav {
        display: none;
    }

    .footer .call-to-area {
        justify-content: center;
    }

    .call-to-area a {
        font-size: 14px;
    }

    .follow-us {
        justify-content: center;
    }

    .nav-menu {
        justify-content: center !important;
        margin-top: 20px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .copyright {
        text-align: center;
    }
}

@media only screen and (min-width:992px) and (max-width:1365px) {
    .banner-item video {
        height: 100vh;
        width: 100%;
        object-fit: cover;
    }

    .section-content {
        padding: 1rem;
    }

    .section-content h2 {
        font-size: 25px;
    }

    .section-content p {
        font-size: 12px;
    }

    .about-content h2 {
        margin-bottom: 10px;
    }

    .call-to-area a {
        font-size: 14px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .copyright {
        font-size: 13px;
    }

    .grid-label {
        font-size: 11px !important;
    }

    .grid-item span img {
        width: 50px !important;
        height: 50px;
    }

    .call-to-area {
        gap: 32px;
    }

    .testimonial h4 {
        font-size: 26px;
    }

    .companies-sec {
        margin-top: 40px;
    }
    .section-content h2 {
    font-size: 35px;
}
.section-content p {
    font-size: 14px;
}
.companies-sec {
    padding-top: 60px;
}
}