.oit-header-logo img{
max-width: 200px;
height: auto;
}

.oit-header-action{
  display: flex;
  align-items: center;
  justify-items: center;
  align-content: center;
  justify-content: center;
}

@media (max-width: 1199px) {
    header {
        background-color: #000 !important;
        position: relative;
        z-index: 1000;
        padding: 100px;
    }
  }
  
/* =========================
   MAIN MENU STYLES
========================= */
.menu-main-menu-container ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0px 20px;
  margin: 0;
}

.menu-main-menu-container li {
  padding: 0px 20px;
  position: relative; /* ✅ IMPORTANT: for submenu positioning */
}

.menu-main-menu-container a {
  text-decoration: none;
  display: block;
  padding: 35px 0px;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  font-size: 16px;
}

.menu-main-menu-container a:hover {
  color: #0477BE;
}

/* =========================
   SUBMENU STYLES
========================= */

/* Submenu base (hidden state) */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 230px;
  text-align: left;
  padding: 30px 10px;
  gap: 4px;
/* Vertical layout */
  display: flex;
  flex-direction: column;
  /* Hide using animation-friendly properties */
  opacity: 0;
  visibility: hidden;
   /* Animation */
  transition: all 0.3s ease;
  transition-duration: 0.1s;
  border-radius: 5px;
  transform-origin: top;
  transform: perspective(300px) rotateX(-18deg);
  background-color: var(--mus-clr-white);
  border: 1px solid rgba(48, 48, 47, 0.1);
  box-shadow: 0px 1px 2px 1px rgba(3, 11, 30, 0.06),
              0px 1px 1px 0px rgba(3, 11, 30, 0.1);
  z-index: 9999;
  background-color: white;
}

/* Submenu list items */
.sub-menu li {
  list-style: none;
  width: 100%;
  padding: 0;
}

/* Submenu links */
.sub-menu li a {
  padding: 5px 0;
  color: black;
  position: relative;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  letter-spacing: 0.2px;
  text-transform: capitalize;
}

/* Dash before item */
.sub-menu li a::before {
  content: "—";
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
  font-size: 14px;
}

/* Hover effect */
.sub-menu li a:hover {
  padding-left: 20px;
}

/* Show dash */
.sub-menu li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* =========================
   SHOW SUBMENU
========================= */

/* Show on parent hover */
.menu-main-menu-container li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: perspective(300px) rotateX(0deg);
  padding: 30px;
  transition-duration: 0.1s;
}

/* Keep visible when hovering submenu */
.sub-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: perspective(300px) rotateX(0deg);
}





/* =======================================================
   MOBILE MENU STYLES (Max-width: 1199px)
======================================================= */
@media (max-width: 1199px) {

  .oit-header-logo img{
max-width: 200px;
height: auto;
}

.oitoffcanvas{
  z-index: 9999;
}

.oitoffcanvas__logo img{
  max-width: 200px;
}

  header {

    padding: 0px;
  }
  

  /* MAIN MENU Items Styling */
  .menu-main-menu-container ul {
    flex-direction: column;
    padding: 0;
    gap: 0;
  }

  .menu-main-menu-container li {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle divider */
  }

  .menu-main-menu-container a {
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
  }

  /* 5. Submenu Toggle Arrow Box v (Matches Image 1) */
  .menu-item-has-children > a::after {
    content: "\203A"; /* Chevron character */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 22px;
    line-height: 1;
    padding-bottom: 4px; /* Centers chevron optically */
    transition: all 0.3s ease;
  }

  /* Styling for arrow when dropdown is open */
  li.is-active > a::after {
    background: #fff;
    color: #000;
    transform: rotate(90deg);
  }

  /* 6. SUBMENU Styles (SLIDE ANIMATION) */
  .sub-menu {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    transform: none;
    background-color: #000;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    
    /* Sliding Setup */
    display: block !important; /* Override desktop hiding */
    max-height: 0;             /* Start collapsed */
    overflow: hidden;          /* Hide content outside 0 height */
    transition: max-height 0.4s ease-in-out!important; /* The smooth animation */
    opacity: 1;
    visibility: visible;
  }

  /* 7. Disable Desktop Hover Effects on Mobile */
  .menu-main-menu-container li:hover > .sub-menu,
  .sub-menu:hover {
    padding: 0 !important;       /* Prevents the menu from jumping open 60px */
    transform: none !important;  /* Stops the desktop 3D flip animation */
    transition-duration: 0.4s!important;   /* Keeps the slide timing smooth */
  }

/* 8. Submenu Hover Dash Animation for Mobile (Matches Image 3) */
  .sub-menu li a {
    position: relative;          /* Needed for the dash to position correctly */
    transition: all 0.3s ease!important;
    padding-left: 45px;
  }

    .sub-menu li a:hover {
    padding-left: 70px;          /* Pushes text to the right to make room */
    color: #0477BE;              /* Turns the text blue */
  }

  .sub-menu li a::before { 
    content: "";                 /* Empty content so we can draw a custom line */
    position: absolute;
    left: 45px;                  /* Starting horizontal position */
    top: 50%;                    /* Centers vertically */
    width: 18px;                 /* Length of the dash */
    height: 1.5px;               /* Thickness of the dash */
    background-color: #0477BE;   /* Blue color matching your desktop CSS */
    opacity: 0;
    transform: translateY(-50%) translateX(-20px); /* Starts slightly left for slide effect */
    transition: all 0.3s ease!important;
  }

}



/* LightBox Single Project start */
.project-details-thumb {
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.project-gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-gallery-image:hover {
    transform: scale(1.05);
}
/* LightBox Single Project  End*/






/* Silder Carousel Latest Projrcts Start*/

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #0c0f17;
    transition: all 0.45s ease;
}

.project-card:hover {
    /* transform: translateY(-10px); */
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .35),
        0 0 30px rgba(255, 255, 255, .05);
}

.project-card-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.project-card-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;

    /* background: linear-gradient(
        to top,
        rgba(0, 0, 0, .9) 0%,
        rgba(0, 0, 0, .3) 40%,
        transparent 100%
    ); */

    opacity: 0;
    transition: .4s;
}

.project-card:hover .project-card-image::before {
    opacity: 1;
}

.project-card-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform .7s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.12);
}

.project-card-content {
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 28px;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.project-card-left h3 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
        color: #fff;

}

.project-card-left h3 a {
    color: #fff;
    text-decoration: none;
}

.project-card-right {
    align-items: center;
    gap: 12px;
    border-radius: 999px;
    font-size: 20px;
    color: #999999;
}

.project-card-right .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
}

.latest-project-prev,
.latest-project-next {
    width: 65px;
    height: 65px;

    border: none;
    border-radius: 50%;

    background: rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    color: #fff;

    transition: .35s;
}

.latest-project-prev:hover,
.latest-project-next:hover {
    transform: scale(1.1);
    background: #fff;
    color: #000;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
.project-card-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform .7s ease;
}

.project-card-video {
    width: 100%;
    height: 100% !important;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}
}


@media (max-width: 767px) {


.pb-120 {
  padding-bottom: 0px!important;
}
}
/* Silder Carousel Latest Projrcts End*/



/*header ScrollSmoother scroll hide and show start*/

.oit-header-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: transform 0.4s ease;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0) 100%
    );
  }

.oit-header-area.header-hidden {
    transform: translateY(-100%);
}

.oit-header-area.header-visible {
    transform: translateY(0);
}
/*header ScrollSmoother scroll hide and show end*/




/* Projects Pagination style Start*/
.oit-pagination{
    margin-top:60px;
}

.oit-pagination .page-numbers{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    list-style:none;
    margin:0;
    padding:0;
}

.oit-pagination .page-numbers li{
    margin:0;
}

.oit-pagination .page-numbers a,
.oit-pagination .page-numbers span{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.12);
    border-radius:10px;
    background:transparent;
    color:#6d6d6d;
    text-decoration:none;
    font-size:18px;
    font-weight:500;
    transition:.3s ease;
}

.oit-pagination .page-numbers a:hover{
    background:#000;
    color:#fff;
    border-color:#000;
}

.oit-pagination .page-numbers .current{
    background:#000;
    color:#fff;
    border-color:#000;
}

.oit-pagination .prev,
.oit-pagination .next{
    font-size:24px;
    font-weight:700;
    color:#bdbdbd;
}

.oit-pagination .prev:hover,
.oit-pagination .next:hover{
    color:#fff;
}

.oit-pagination .dots{
    width:auto;
    border:none;
    background:none;
}
/* Projects Pagination style end */



/* Projects filter style Start */
.project-filter{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:70px;
}

.project-filter button{
    padding:10px 28px;
    border:1px solid #464646;
    border-radius:50px;
    background:#fff;
    cursor:pointer;
    transition:.3s;
}

.project-filter button.active,
.project-filter button:hover{
    background:#000;
    color:#fff;
}

.project-grid{
    margin-left:-15px;
    margin-right:-15px;
}

.project-item{
    margin-bottom:30px;
}
/* Projects filter style End */

/* Project Video thnumbail */
.project-card-video {
    width: 100%;
    height: 100% !important;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}


/* Project Gallery Slider */
.project-gallery-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    object-fit: cover;
    border-radius: 10px;


}

.project-gallery-slider .swiper-wrapper {
    display: flex;
}

.project-gallery-slider .swiper-slide {
    width: 100%;
    flex-shrink: 0;
}

.project-gallery-slider .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;

}

.project-gallery-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
        border-radius: 10px;

}