/* 1) For the whole page (body) */
/* Hide browser scrollbar (Chrome, Edge, Opera, Brave, Safari) */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/* Hide scrollbar in Firefox */
html, body {
    scrollbar-width: none;

}

/* Hide scrollbar in IE/older Edge */
html, body {
    -ms-overflow-style: none;
}

/* body{
    padding-top: 79px;
 
} */

/* Homepage */
body.home {
    padding-top: 90px;
}

/* All other pages */
body{
    padding-top: 79px;
}

/* HERO SLIDER */
.hero-slider {
    position: relative;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    margin-top: -90px;    /* pull behind header */
    z-index: 1;
}

.slick-hero .slide {
    position: relative;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
}

.slick-hero .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 50%;
    left: 10%; /* moved to left side */ 
    transform: translateY(-50%);
    color: #fff;
    text-align: left;
    z-index: 2;
}

/* HEADER */
.site-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: transparent;
    padding: 20px 0;
    transition: 0.3s ease;
}

.nav-container {
    width: 100%;
/*     max-width: 1400px; */
/*     margin: auto; */
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.nav-logo img {
    height: 60px;
    width: auto;
    display: block;
}

/* TOGGLE */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 7px;
    z-index: 10001; 
    position: fixed;     /* FIXED = stays on top */
    top: 25px;           
    right: 25px;
}


.menu-toggle .bar {
    width: 28px;
    height: 3px;
    background: #fff;
    transition: .3s;
}

.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.97);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 120px;
    transform: translateX(-100%); /* hide off-screen */
    transition: transform 0.5s ease; 
    z-index: 9999;
}

.fullscreen-menu.active {
    transform: translateX(0); /* slide in */
}

.fullscreen-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
  
    align-items: start;
    padding: 40px;
}


/* MENU ITEMS */
.fullscreen-inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}
.menu-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-left ul li {
    margin: 20px 0;
}
.fullscreen-inner ul li {
    margin: 15px 0;
}

.menu-left ul li a {
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .4s ease, transform .4s ease;
}

/* animate when open */
.fullscreen-menu.active .menu-left ul li a {
    opacity: 1;
    transform: translateY(0);
}

/* Right side text */
.menu-right {
    max-width: 70%;
    color: #fff;
    font-size: 20px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .4s ease .2s, transform .4s ease .2s;
}

.fullscreen-menu.active .menu-right {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .fullscreen-inner {
        flex-direction: column;
        text-align: left;
        display: block;
    }
    .menu-right {
        max-width: 90%;
        margin-top: 20px;
    }
    .fullscreen-menu{
        padding-top: 0px;
    }
    .fullscreen-inner ul li{
        margin: 10px 0px;
       
    }
    .fullscreen-inner ul li a {
        font-size: 30px;
    }
    .contact-heading{
        font-size: 30px;
    }
    .contact-list{
        gap: 10px;
    }
    #primary-fullscreen {
    text-align: center !important;
}
}

#primary-fullscreen {
    text-align: left;
}

.fullscreen-inner ul li a {
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .4s ease, transform .4s ease;
}

.fullscreen-menu.active ul li a {
    opacity: 1;
    transform: translateY(0);
}


.menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* Fullscreen menu contact info */


.contact-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
}


.icon-wrap img {
    width: 26px;
    height: 26px;
}


/* Heading */
.contact-heading {
    font-size: 36px;
    font-weight: 500;
    color: #d6b48c;
    margin-bottom: 0px;
    margin-top: 0px;
}

.contact-divider {
    display: block;
    width: 100%;
    height: 1px;
    background: #d6b48c;
    margin-bottom: 5px;
}

/* List */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Row */
.contact-row {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Icon (NO circle, clean look) */
.contact-icon img {
    width: 10px;
    height: 10px;
    object-fit: contain;
    margin-top: 4px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    filter: brightness(0) saturate(100%) invert(80%) sepia(20%) saturate(300%);
}


/* Text */
.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #d6b48c;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
}

.site-header.scrolled {
    background-color: rgba(0, 0, 0, 1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.nav-right .nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 20px;
    margin-top: 0px !important;
}

.nav-right .nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.site-header.scrolled .nav-menu li a {
    color: #fff;
}

/* CATALOG ARCHIVE */
.catalog-archive-container {
    max-width: 1200px;
    margin: 150px auto;
    padding: 0 20px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
/* initial layout (keep your existing styles above this) */

.catalog-item {
  display: block;
  background: #e3e3e3;
  border-radius: 14px;
  text-align: center;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  /* remove animation-timeline stuff: use transition based approach */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms ease, transform 600ms ease;
}

/* visible state toggled by JS */
.catalog-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* prevent hover from fighting the entrance animation:
   move the hover transform to an inner wrapper (.catalog-inner) */
.catalog-inner {
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.catalog-item:hover .catalog-inner {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* thumb and image */
.catalog-thumb {
  width: 100%;
  overflow: hidden;
}
.catalog-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.catalog-item:hover img {
  transform: scale(1.08);
}

/* title */
.catalog-title {
  font-size: 18px;
  font-weight: 600;
  padding: 10px;
  color: #111111;
  transition: color 0.3s ease;
}
.catalog-item:hover .catalog-title {
  color: #c4996c;
}


/* Section Animation */
.fade-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Items stagger animation */
.fade-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* YOUR EXISTING CSS BELOW */
.videos-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}



.video-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}

@media (max-width: 991px) {
    

    .video-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:500px) {
    

    .video-gallery {
        grid-template-columns: repeat(1, 1fr);
    }
}

.video-item video {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}


/* SECTION */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #ece7df 100%);
    position: relative;
    overflow: hidden;
}

/* Gold gradient overlay */
.why-choose-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30%;
    width: 160%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,215,160,0.18), rgba(255,255,255,0));
    transform: skewY(-5deg);
    pointer-events: none;
}

/* Section Title */
.why-choose-us h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #412d1c;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.why-choose-us h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #d4a46a, #efc48b);
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* GRID */
.wcu-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
}

/* ITEM CARD */
.wcu-item {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px);
    border-radius: 20px;

    padding: 40px 25px;
    text-align: center;
    border: 1px solid rgba(200, 200, 200, 0.35);

    box-shadow: 0 12px 25px rgba(0,0,0,0.07);
    transition: all 0.45s ease;

    position: relative;
    overflow: hidden;

    transform: translateY(25px);
    opacity: 0;
}

/* Shine sweep effect */
.wcu-item::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -120%;
    width: 150%;
    height: 250%;
    background: linear-gradient(120deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    transform: rotate(25deg);
    transition: all 0.6s ease;
}

/* Hover Effects */
.wcu-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    border-color: rgba(0,0,0,0.08);
}

.wcu-item:hover::before {
    left: 120%;
}

/* Icon */
.wcu-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.wcu-item:hover img {
    transform: scale(1.15);
    filter: drop-shadow(0 8px 15px rgba(0,0,0,0.15));
}

/* Title */
.wcu-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #4a3624;
    letter-spacing: 0.4px;
    margin: 0;
    transition: color 0.3s ease;
}

.wcu-item:hover h4 {
    color: #d9a56b; /* Gold tone */
}

/* Fade-in Animation Triggered by JS */
.wcu-item.visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: var(--delay, 0ms);
}



.two-column-section {
    padding: 80px 0;
}

.tcs-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tcs-left h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 20px;
}

.tcs-left p {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}

.tcs-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.35s ease;
}

.tcs-right img:hover {
    transform: scale(1.03);
}

/* Responsive */
@media (max-width: 900px) {
    .tcs-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tcs-right img {
        max-width: 90%;
        margin: auto;
    }
}


/* ===== Fade Animations ===== */
.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.visible {
    opacity: 1 !important;
    transform: translate(0,0) !important;
}



/* ----------------------------- */
/* 🌟 FORM WRAPPER */
/* ----------------------------- */
#wpforms-form-64 {
    max-width: 650px;
    margin: 50px auto;
    padding: 40px 35px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.08);
    animation: formFade 0.8s ease;
}

@keyframes formFade {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ----------------------------- */
/* 🌟 FORM TITLE */
/* ----------------------------- */
#wpforms-form-64 .wpforms-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: #2A2A2A;
}

/* ----------------------------- */
/* 🌟 LABELS */
/* ----------------------------- */
#wpforms-form-64 .wpforms-field-label {
    font-size: 16px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
    display: block;
}

/* ----------------------------- */
/* 🌟 INPUT + TEXTAREA DESIGN */
/* ----------------------------- */
#wpforms-form-64 input[type="text"],
#wpforms-form-64 input[type="email"],
#wpforms-form-64 input[type="tel"],
#wpforms-form-64 textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #D7D7D7;
    background: #FAFAFA;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

#wpforms-form-64 input:focus,
#wpforms-form-64 textarea:focus {
    border-color: #c49a6c; /* subtle gold */
    background: #fff;
    box-shadow: 0 0 0 4px rgba(196,154,108,0.18);
}

/* ----------------------------- */
/* 🌟 TEXTAREA */
/* ----------------------------- */
#wpforms-form-64 textarea {
    min-height: 140px;
    resize: none;
}

/* ----------------------------- */
/* 🌟 BUTTON */
/* ----------------------------- */
#wpforms-form-64 button.wpforms-submit {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #b78b54, #d7b27d);
    color: white;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.35s ease;
    margin-top: 10px;
}

#wpforms-form-64 button.wpforms-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(183,139,84,0.45);
}

/* ----------------------------- */
/* 🌟 FIELD SPACING */
/* ----------------------------- */
#wpforms-form-64 .wpforms-field {
    margin-bottom: 20px;
}

/* ----------------------------- */
/* 🌟 FIRST/LAST NAME FIELD FIX */
/* ----------------------------- */
#wpforms-form-64 .wpforms-field-row-block {
    padding-right: 10px;
}

#wpforms-form-64 .wpforms-field-row-block:last-child {
    padding-right: 0;
}

/* ----------------------------- */
/* 🌟 PLACEHOLDER STYLE */
/* ----------------------------- */
#wpforms-form-64 input::placeholder,
#wpforms-form-64 textarea::placeholder {
    color: #999;
    opacity: 0.9;
}

.custom-hero {
    position: relative;
    width: 100%;
    height: 100vh; /* FULL SCREEN */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;      /* CENTER VERTICALLY */
    justify-content: flex-start; /* LEFT SIDE */
    padding-left: 80px;       /* SPACE FROM LEFT */
    margin-top: -80px;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: left; /* LEFT ALIGN */
    max-width: 600px;
}

/* Breadcrumb */
#breadcrumbs {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

#breadcrumbs a {
    color: #f3e9c4;
    font-weight: 600;
}

/* Title */
.hero-title {
    font-size: 60px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

/* Mobile */
@media(max-width:768px){
    .custom-hero {
        height: 60vh;
        padding-left: 20px;
    }
    .hero-title {
        font-size: 32px;
    }
}



.contact-info-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 1.5fr;
  
    align-items: flex-start;
}

.contact-info-box {
    
    padding: 15px;
    border-radius: 12px;
    text-align: left;
}

.contact-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.contact-info-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0px;
}

.contact-info-box p {
    font-size: 15px;
    line-height: 1.5;
    color: #444;
}

.contact-map-box iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-info-container {
        grid-template-columns: 1fr;
    }
}

/* Fullscreen Loader Wrapper */
#full-screen-loader {
    display: none; /* default hidden */
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: #ffffff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

/* Opacity animated layer */
#loader-opacity-layer {
    position: absolute;
    inset: 0;
    background: #430F0E;
    animation: loaderBackgroundPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes loaderBackgroundPulse {
    0%   { opacity: 1; }
    50%  { opacity: 0.7; }
    100% { opacity: 0.5; }
}

/* Loader Wrapper (spinner + logo) */
.loader-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

/* Spinning border animation */
.circle-spinner {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 6px solid #e3e3e3;  /* base track */
    border-top-color: #000;     /* spin color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 2;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Loader image / logo */
.loader-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    z-index: 3;
}



/* contact us */
.right-side-heading {
    font-size: 20px;
    color: #666;
    font-weight: normal !important;
}



/* Abous Us Page */

.about-laxira {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.about-container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT IMAGE */
.about-left {
    width: 50%;
    text-align: center;
}

.img-wrapper {
    width: 100%;
    border-radius: 260px 260px 0 0;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.size-text {
    margin-top: 20px;
    font-size: 22px;
    letter-spacing: 8px;
}

/* RIGHT CONTENT */
.about-right {
    width: 50%;
}

.badge {
    background: #C62828;
    padding: 10px 22px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    letter-spacing: 2px;
}

.about-right h2 {
    font-size: 48px;
    margin: 20px 0;
}

.desc {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

/* FEATURES GRID */
.feature-grid {
    margin: 25px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 40px;
}
.feature-grid .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #444;
}

.feature-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.feature {
    font-size: 18px;
    color: #444;
}

.feature span {
    color: #C62828;
    margin-right: 10px;
}

/* CONTACT BOX */
.contact-box {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-btn {
    background: #000000;
    padding: 14px 28px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #b8b8b8;
    color: #000;
}


.inquiry {
    display: flex;
    align-items: center;
    gap: 12px;
}

.inquiry-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.inquiry-text-group {
    display: flex;
    flex-direction: column;
}

.call-label {
    font-size: 18px;
    color: #e9932e; /* red */
    font-weight: 500;
}

.call-number {
    font-size: 22px;
    font-weight: 700;
    color: #4A4A4A;
}


/* SCROLL ANIMATION */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease-out;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width: 900px){
    .about-container{
        flex-direction: column;
        text-align: center;
    }
    .about-left, .about-right {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .fade-up {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}


/* ---- Layout ---- */
.core-values-section {
    padding: 60px 5%;
    background: #fff;
}

.core-values-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* Left side */
.core-values-left {
    flex: 1 1 500px;
}

/* Title + Badge */
.cv-title {
    font-size: 42px;
    margin: 20px 0 40px;
    font-weight: 800;
}

/* Grid */
.cv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
}

.cv-item {
    background: #e9932e;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
}

.cv-item h3 {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
}

.cv-item p {
    margin-top: 8px;
    line-height: 1.4;
    font-size: 15px;
}

/* Icons */
.cv-item .cv-icon img {
    filter: brightness(0) invert(1) !important;
    width: 35px;
    height: 35px;
}

/* Right Image Section */
.core-values-right {
    flex: 1 1 400px;
    display: flex;
}

.core-values-right img {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: cover;
    border-radius: 12px;
}

/* ---- Scroll Animation ---- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

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

/* ---------------------------------------------------------
   🌟 RESPONSIVE MEDIA QUERIES 
------------------------------------------------------------ */

/* --- Large Tablets (max 1100px) --- */
@media (max-width: 1100px) {
    .core-values-container {
        flex-direction: column;
    }

    .core-values-right img {
        max-height: 500px;
    }

    .cv-title {
        font-size: 36px;
    }
}

/* --- Tablets (max 768px) --- */
@media (max-width: 768px) {
    .cv-grid {
        grid-template-columns: 1fr; /* one card per row */
    }

    .cv-item {
        padding: 18px;
    }

    .cv-item h3 {
        font-size: 18px;
    }

    .cv-item p {
        font-size: 14px;
    }

    .core-values-right img {
        max-height: 380px;
    }

    .cv-title {
        font-size: 32px;
        text-align: left;
    }
}

/* --- Mobile (max 480px) --- */
@media (max-width: 480px) {
    .core-values-section {
        padding: 40px 4%;
    }

    .cv-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .cv-grid {
        gap: 20px;
    }

    .cv-item {
        padding: 16px;
    }

    .cv-item h3 {
        font-size: 17px;
    }

    .core-values-right img {
        max-height: 300px;
    }

    .d-inline-flex.gap-2 {
        font-size: 12px;
        padding: 5px 12px !important;
    }

    .d-inline-flex img {
        width: 14px !important;
        height: 14px !important;
    }
}



.section-strength {
    padding: 80px 0;
    background: #f4f4f4;
    background-image: repeating-linear-gradient(
        -45deg,
        #eaeaea,
        #eaeaea 10px,
        #f5f5f5 10px,
        #f5f5f5 20px
    );
}

.section-strength h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-desc {
    max-width: 900px;
    margin: auto;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.top-tag {
    background: #C62828 !important;
}

/* ----------------------------
      DESKTOP (VERTICAL)
---------------------------- */

.timeline-section,
.timeline-container,
.timeline-row,
.timeline-wrapper {
    overflow: visible !important;
    transform: none !important;
}

.timeline-section {
    padding: 80px 0;
}

.timeline-container {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.timeline-left {
    width: 45%;
    position: sticky;
    top: 66px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-left img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    transition: opacity .4s ease;
}

.timeline-right {
    width: 55%;
}

.timeline-item {
    padding: 40px 0;
    border-left: 2px solid #ccc;
    padding-left: 25px;
    margin-bottom: 80px;
    opacity: 0.4;
    transition: .3s ease;
}

.timeline-item.active {
    opacity: 1;
    border-left-color: #C62828;
}


/* --------------------------------------------
      TABLET & MOBILE — HORIZONTAL TIMELINE
--------------------------------------------- */
@media (max-width: 992px) {

    /* Change to column layout */
    .timeline-container {
        flex-direction: column;
    }

    /* Image moves on top and becomes non-sticky */
    .timeline-left {
        width: 100%;
        height: auto;
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }

    .timeline-left img {
        height: 250px;
    }

    /* Timeline becomes horizontal scroll */
    .timeline-right {
        width: 100%;
        display: flex;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
        white-space: nowrap;
    }

    .timeline-item {
        min-width: 300px;
        max-width: 300px;
        border-left: none;
        border-top: 3px solid #ccc;
        padding-left: 0;
        padding-top: 20px;
        margin-bottom: 0;
        opacity: 0.6;
        scroll-snap-align: start;
        display: inline-block;
        white-space: normal;
    }

    .timeline-item.active {
        opacity: 1;
        border-top-color: #C62828;
    }
}

/* ------------ MOBILE SMALL ------------ */
@media (max-width: 480px) {

    .timeline-left img {
        height: 200px;
    }

    .timeline-item {
        min-width: 260px;
        max-width: 260px;
        padding: 15px;
    }

    .timeline-section {
        padding: 50px 0;
    }
}



.commitment-section {
    padding: 70px 0;
    text-align: center;
}

.commitment-section h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 50px;
}

/* GRID RESPONSIVE */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-items: center;
}

/* Card */
.commitment-card {
    max-width: 320px;
    text-align: left;
    opacity: 0;                 /* animation start */
    transform: translateY(40px);
    transition: all .7s ease;
}

.commitment-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Image */
.commitment-card .card-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 6px;
}

/* Text */
.commitment-card h3 {
    font-size: 20px;
    margin-top: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.commitment-card p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

/* Button */
.view-btn {
    display: inline-block;
    margin-top: 15px;
    font-size: 14px;
    color: #000;
    position: relative;
    padding-left: 20px;
}

.view-btn:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #d72828;
    border-radius: 50%;
}

/* ---------------- RESPONSIVE BREAKPOINTS ---------------- */

@media (max-width: 1024px) {
    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .commitment-card {
        max-width: 100%;
    }

    .commitment-card .card-image img {
        height: 260px;
    }

    .commitment-section h2 {
        font-size: 28px;
    }
}

/* 🔴 Red pill */
.badge-pill {
    display: inline-flex;
    align-items: center;
    background: #e9932e;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    gap: 10px;
}
.badge-pill img {
    width: 16px;
    height: 16px;
}

/* Title */
.mi-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin: 20px 0 40px;
    line-height: 1.2;
    text-align: center;
}

/* Main row */
.mi-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

/* Images */
.left-img {
    max-width: 450px;
    width: 100%;
}
.right-img {
    max-width: 180px;
    width: 100%;
}

/* Divider line */
.mi-divider {
    height: 150px;
    width: 1px;
    background: #ddd;
}

/* Description */
.mi-description {
    max-width: 900px;
    margin: auto;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
    padding-bottom: 50px;
}

/* Fade Animation */
.fade-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}
.fade-item.visible {
    opacity: 1;
    transform: translateY(0);
}


/* -----------------------------------
        RESPONSIVE DESIGN 
-------------------------------------- */

/* Tablet (Below 992px) */
@media (max-width: 992px) {

    .mi-title {
        font-size: 36px;
    }

    .mi-row {
        gap: 25px;
    }

    .mi-divider {
        height: 120px;
    }

    .right-img {
        max-width: 150px;
    }
}

/* Mobile (Below 768px) */
@media (max-width: 768px) {

    .mi-row {
        flex-direction: column;      /* STACK IMAGES */
        gap: 25px;
    }

    .mi-divider {
        display: none;
    }

    .left-img {
        max-width: 300px;
    }

    .right-img {
        max-width: 140px;
    }

    .mi-title {
        font-size: 30px;
    }

    .mi-description {
        font-size: 15px;
        padding: 0 20px;
    }
}

/* Small Mobile (Below 480px) */
@media (max-width: 480px) {

    .mi-title {
        font-size: 26px;
    }

    .left-img {
        max-width: 250px;
    }

    .right-img {
        max-width: 120px;
    }

    .badge-pill {
        font-size: 12px;
        padding: 6px 14px;
    }

    .badge-pill img {
        width: 14px;
        height: 14px;
    }
}

.top-badge.fade-item.visible {
    text-align: center;
}


.contact-info-wrapper {
    padding: 20px 0;
}

.contact-info-heading {
    font-size: 24px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 25px;
}

/* Each row */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 28px;
}

/* Icon circle */
.contact-icon {
    width: 30px;
    height: 30px;
   
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* make it white */
}

/* Texts */
.contact-title {
    color: #e04340;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 3px;
}

.contact-description {
    color: #fff;
    font-size: 17px;
    line-height: 1.5;
}

.counter-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #420000;
    padding: 70px 80px;
    gap: 40px;
}

.counter-item {
    text-align: center;
    color: #fff;
}
/* 
.counter-item:hover {
    transform: translateY(-6px);
    box-shadow:
        0 18px 45px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.08);
} */

/* Number + Suffix */
.counter-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.counter-number {
    font-size: 54px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #d6b48c;
}

.counter-suffix {
    font-size: 40px;
    font-weight: 500;
    margin-left: 4px;
    opacity: 0.9;
}

/* Description */
.counter-desc {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    opacity: 0.95;
}


/* Responsive */
@media (max-width: 992px) {
    .counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
        padding: 60px 40px;
    }
}

@media (max-width: 576px) {
    .counter-wrapper {
        grid-template-columns: 1fr;
        padding: 50px 30px;
    }

    .counter-number {
        font-size: 48px;
    }
}
/* ===============================
   MAP SECTION
================================ */

.map-section {
    padding: 30px 0 0;
    background: #f5f5f5;
}

/* Content (inside container) */
.map-content {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.map-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
    text-transform: lowercase;
}

.map-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* ===============================
   FULL WIDTH MAP
================================ */

.map-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 600px; /* fallback */
}

/* Force map internals to fill */
.map-wrapper iframe,
.map-wrapper svg,
.map-wrapper canvas,
.map-wrapper > div,
.map-wrapper .leaflet-container {
    width: 100% !important;
    height: 100% !important;
}

/* ===============================
   SCROLL ANIMATION
================================ */

.map-section [data-animate] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s ease, transform 0.9s ease;
    will-change: opacity, transform;
}

.map-section [data-animate].active {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
    .map-title {
        font-size: 28px;
    }

    .map-description {
        font-size: 15px;
    }

    .map-wrapper {
        height: 320px;
    }
}

/* Kill plugin aspect ratio */
.map-wrapper .map_aspect_ratio {
    position: relative !important;
    padding-top: 0 !important;
    height: 450px !important; /* DESIRED HEIGHT */
}

/* Force internal containers to fill */
.map-wrapper .map_container,
.map-wrapper .map_render,
.map-wrapper svg {
    width: 100% !important;
    height: 100% !important;
}





/* SECTION */
.asia-reach {
    padding: 80px 0;
    background: #fff;
}

/* GRID */
.asia-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

/* LEFT CONTENT */
.asia-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.asia-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* FLAGS GRID */
.asia-flags {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* FLAG CARD */
.flag-card {
    text-align: center;
}

.flag-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
}

.flag-card span {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .asia-grid {
        grid-template-columns: 1fr;
    }

    .asia-flags {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* FORCE initial hidden state */
.asia-reach [data-animate] {
    opacity: 0 !important;
    transform: translateY(40px) !important;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* ACTIVE STATE */
.asia-reach [data-animate].active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}



body {
    cursor: none;
}

.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 2.5rem;
    height: 2.5rem;
    pointer-events: none;
    z-index: 999999; /* IMPORTANT */
}

.cursor div {
    position: absolute;
    display: grid;
    place-items: center;
}

.cursor div div {
    border: 1px solid #000000;
    border-radius: 50%;
    animation: pulse 2.5s linear infinite;
    box-shadow: 0 0 50px 5px #000000;
}

.cursor div:nth-child(1),
.cursor div:nth-child(2) {
    width: 100%;
    height: 100%;
}

.cursor div:nth-child(1) {
    transition: transform 0.2s ease-out;
}

.cursor div:nth-child(2) {
    transition: transform 0.1s ease-out;
}

.cursor div:nth-child(2) div {
    background: #fff;
    width: 4px;
    height: 4px;
}

/* Disable on mobile */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    .cursor {
        display: none;
    }
}





.tiles-application-section {
    padding: 100px 0;
}

.tiles-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tiles-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.tiles-content p {
    max-width: 520px;
    margin-bottom: 40px;
    color: #555;
}

.tiles-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tile-box {
    background: #e6e6e6;
    padding: 35px 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform .3s ease;
}

.tile-box:hover {
    transform: translateY(-5px);
}

.tile-box img {
    max-width: 40px;
    margin-bottom: 12px;
}

.tile-box span {
    display: block;
    font-size: 15px;
}

.tiles-image img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
}

/* Fade animation */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .tiles-grid {
        grid-template-columns: 1fr;
    }

    .tiles-icons {
        grid-template-columns: repeat(2, 1fr);
    }
}

.page{
    margin: 0px !important;
}


 .animation-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 0;
  font-family: Arial, sans-serif;
}

.animation-container svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

/* Path */
.scroll-path {
  stroke: #42100c;
  stroke-width: 4;
  fill: none;
}

/* Icon */
.icon-circle {
  fill: #42100c;
}

.icon-svg {
  position: absolute;
  pointer-events: none;
}

/* Connector */
.step-line {
  stroke: #e8932e;
  stroke-width: 2;
  stroke-dasharray: 4 4;
}

/* Labels */
.step-marker .label {
  background: #fff;
  padding: 10px 12px;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  text-align: left;
}

.step-marker .title {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}

.step-marker .desc {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

/* Ball */
.ball {
  fill: #e8932e;
  filter: url(#ballGlow);
}

/* Reveal animation base */
.step-marker {
  transform-origin: center;
}


.testimonials-seciton{
    padding: 120px 50px;
    background-size: cover;
    background-position: center;
    text-align: center;
}
.testimonial-slider {
    max-width: 1000px;
    margin: auto;
    position: relative;
}

/* BASE SLIDE */
.testimonial-slide {
    text-align: center;
    padding: 40px 20px;
    opacity: 0.35;
    transform: scale(0.85);
    transition: all 0.4s ease;
}

/* CENTER SLIDE */
.slick-center {
    opacity: 1;
    transform: scale(1);
}

/* AVATAR */
.testimonial-avatar {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
}

.testimonial-avatar img {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid #1e63c5 !important;
}

/* TEXT (HIDDEN BY DEFAULT) */
.testimonial-text-box {
    display: none;
}

/* SHOW TEXT ONLY FOR CENTER */
.slick-center .testimonial-text-box {
    display: block;
}

.testimonial-text-box p {
    max-width: 780px;
    margin: 0 auto 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.testimonial-text-box h4 {
    font-size: 18px;
    color: #4aa12f;
    margin-bottom: 4px;
}

.testimonial-text-box span {
    font-size: 14px;
    color: #555;
}

/* ARROWS */
.slick-prev,
.slick-next {
    width: 42px;
    height: 42px;
    background: #1e63c5;
    border-radius: 50%;
    z-index: 10;
}

.slick-prev {
    left: -60px;
}

.slick-next {
    right: -60px;
}

.slick-prev:before,
.slick-next:before {
    font-size: 18px;
    color: #fff;
}

/* DOTS */
.slick-dots {
    bottom: -40px;
}

.slick-arrow{
    display: none !important;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.testimonial-header p {
    font-size: 18px;
    color: #666;
    max-width: 720px;
    margin: 0 auto;
}

/* Mobile – show active slide text */
@media (max-width: 768px) {
    .testimonial-slide {
        opacity: 1;
        transform: scale(1);
    }

    .testimonial-text-box {
        display: block;
    }
}
/* =====================================================
   FOOTER BASE
===================================================== */

.site-footer {
    background: #000;
    color: #fff;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

/* =====================================================
   FOOTER GRID
===================================================== */

.site-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;

    position: relative;
    z-index: 2;
}

/* =====================================================
   FOOTER COLUMNS
===================================================== */

.site-footer .footer-col {
    display: flex;
    flex-direction: column;
}

/* =====================================================
   LOGO COLUMN
===================================================== */

.site-footer .footer-logo-col {
    align-items: flex-start;
}

.site-footer .footer-logo img {
    width: 220px;
    height: auto;
    display: block;
}

/* =====================================================
   MENU COLUMN
===================================================== */

.site-footer .footer-menu-col {
    align-items: center;
}

.site-footer .footer-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.site-footer .footer-navigation li {
    margin-bottom: 10px;
}

.site-footer .footer-navigation a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.25s ease;
}

.site-footer .footer-navigation a:hover {
    color: #c4996c;
}

/* =====================================================
   CONTACT COLUMN (FIXED)
===================================================== */

.site-footer .footer-location-col {
    align-items: flex-start;
}

.contact-info-wrapper {
    max-width: 360px;
}

.contact-info-heading {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 22px;
}

/* Each contact row */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

/* Fixed icon container */
.contact-icon {
    width: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.contact-title {
    font-size: 15px;
    font-weight: 600;
    color: #e9932e;
    margin-bottom: 2px;
}

.widget-area{
    display: none;
}

.contact-description {
    font-size: 15px;
    line-height: 1.5;
    word-break: break-word;
}

/* =====================================================
   BACKGROUND LOGO (BEHIND FOOTER)
===================================================== */

.footer-bg-logo {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
}

.footer-bg-logo img {
    width: 80%;
    max-width: 800px;
    opacity: 0.08;
}

/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .site-footer .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* =====================================================
   MOBILE RESPONSIVE (CLEAN)
===================================================== */

@media (max-width: 600px) {

    .site-footer {
        text-align: center;
        padding: 50px 0 70px;
    }

    .site-footer .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        justify-items: center;
    }

    .site-footer .footer-col {
        align-items: center;
        width: 100%;
        max-width: 360px;
    }

    .contact-info-wrapper {
        text-align: left;
        margin: 0 auto;
        padding-left: 55px;
    }

    .contact-icon img {
        width: 18px;
        height: 18px;
    }

    .footer-bg-logo img {
        opacity: 0.1;
    }
}



.menu-toggle-other {
    position: fixed;
    top: 38px;
    right: 40px;
    width: 32px;
    height: 30px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    z-index: 10001; /* IMPORTANT */
    cursor: pointer;
}


.menu-toggle-other .bar {
    height: 1px;
    width: 30px;
    background: #fff;
    border-radius: 2px;
    display: block;
}

/* Mobile only */
@media (max-width: 991px) {
    .menu-toggle-other {
        display: flex !important;
    }

    .nav-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #000;
        padding: 235px 30px;
        transition: right 0.4s ease;
        z-index: 9998;
        text-align: center;
    }

    .nav-right.active {
        right: 0;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

.make-india-sec{
    padding-bottom: 50px;
}

.page-template-blog{
    padding-top: 53px !important;
}