.seperator {
  margin: 15px 0;
  color: #e0e0e0;
  opacity: 0.2;
}

/* Header */
.cim-nav-header {
  border-bottom: 1px solid #eee;
  padding: 20px 10px;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  height: 10vh;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s ease;
}

.cim-nav-header.hide {
  transform: translateY(-100%);
  box-shadow: none;
}


.cim-nav-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo section */
.cim-nav-logo-section {
  display: flex;
  align-items: center;
  max-width: 1200px;
  justify-content: space-between;
  gap: 10px;
}

.cim-nav-logo-link {
  display: flex;
  gap: 5px;
  align-items: center;
  text-decoration: none;
}

.cim-nav-logo-img {
  width: 250px;
  height: auto;
}

.cim-nav-logo-text h1 {
  color: #111;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

/* Navigation */
.cim-nav-main {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

.cim-nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.cim-menu-nav {
  margin: 0 auto;

}
/* changing code from here for menu   */
	.cim-nav-menu li {
  position: relative;
}


.cim-nav-menu a {
  text-decoration: none;
  color: #111;
  font-weight: 700;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  transition: color 0.3s;
  white-space: nowrap;
}

.cim-nav-menu a:hover {
  color: #e22222;
}

.cim-nav-menu a::after {
  content: "";
  width: 0%;
  height: 3px;
  position: absolute;
  bottom: -4px;
  left:0px;
  background: #e22222;
  transition: width 0.3s ease;
}

.cim-nav-menu a:hover::after {
  width: 100%;

}

.cim-nav-menu li::after {
  content: "";
  width: 1px;
  height: 20px;
  background: #ccc;
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
}

/* changing upto here  ,done by dan*/
/* Red Menu button */
.cim-menu-toggle {
	background: linear-gradient(90deg, rgba(66, 0, 110, 1) 0%, rgb(255 0 0) 50%, rgba(252, 69, 69, 1) 100%);
    color: #fff;
    padding: 8px 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-left: 20px;
    border-radius: 30px;
    border: 2px solid #a70000;
}

.cim-menu-toggle:hover {
  background: #c91c1c;
}

/* Responsive */
@media (max-width: 960px) {
  .cim-nav-main {
    display: none;
    width: 100%;
  }
}

/* Navigation Bar */



/* mega-menu css */


/* Overlay */
.cim-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}

/* Mega Menu Container */
.cim-menu-container {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: white;
  z-index: 101;
  overflow-y: auto;
  padding: 20px 40px;
}

/* Close Button */
.cim-menu-close {
  font-weight: bolder;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #e22222;
  transition: all 0.3s ease;
  z-index: 102;
}


/* Menu Content Grid */
.cim-menu-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cim-menu-column {
  display: flex;
  flex-direction: column;
  opacity: 0;
  gap: 10px;
  transform: translateY(20px);
}

.cim-menu-column-title {
  font-size: 18px;
  font-weight: 600;
  color: #d21e1e;
  margin-bottom: 5px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.cim-menu-column-title::after {
  content: '>';
  font-size: 20px;
  transition: transform 0.3s ease;
  display: none;
  transform: rotate(90deg) scaleY(1.4);
}

.cim-menu-column-title.collapsed::after {
  transform: rotate(-0deg) scaleY(1.4);
}

.cim-menu-column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 500px;
  overflow: hidden;
  opacity: 1;
  transition: all 0.4s ease;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}

.cim-menu-column ul.collapsed {
  max-height: 0;
  opacity: 0;
}

.cim-menu-column ul a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.cim-menu-column ul a:hover {
  color: #d21e1e;
  padding-left: 8px;
}

/* Footer Section */
.cim-menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cim-menu-search-bar {
  position: relative;
  flex: 1;
  min-width: 200px;
  max-width: 400px;
}

.cim-menu-search-bar input {
  width: 100%;
  padding: 12px 16px;
  padding-right: 40px;
  border: 2px solid #d21e1e;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.cim-menu-search-bar input:focus {
  border-color: #d21e1e;
  box-shadow: 0 0 0 3px rgba(210, 30, 30, 0.1);
}

.cim-menu-search-bar>button {
  position: absolute;
  top: 13px;
  right: 15px;
  border: none;
  background: inherit;
  cursor: pointer;
}

.cim-menu-search-bar>button>svg {
  width: 20px;
  height: 20px;
  fill: #d21e1e;
}

.cim-menu-social-icons {
  display: flex;
  gap: 15px;
}

.cim-menu-social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.cim-menu-social-icons .facebook {
  background: #2E83FF;
}

.cim-menu-social-icons .instagram {
  background: #c10e4f;
}
.cim-menu-social-icons .youtube {
  background: #ff3019;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cim-menu-container {
    width: 100%;
    max-width: none;
    padding: 20px;
  }

  .cim-menu-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cim-menu-column-title {
    cursor: pointer;
  }

  .cim-menu-column-title::after {
    display: inline-block;
  }

  .cim-menu-footer {
    flex-direction: column;
  }

  .cim-menu-search-bar {
    max-width: 100%;
  }

}

@media (min-width: 769px) {
  .cim-menu-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    margin-top: 20px;
  }

  .cim-menu-column-title {
    cursor: auto;
    padding: 10px 0;
  }

  .cim-menu-column-title::after {
    display: none;
  }

  .cim-menu-column ul {
    max-height: 100% !important;
    opacity: 1 !important;
    border: none;
  }

  .cim-menu-column ul.collapsed {
    max-height: 100% !important;
    opacity: 1 !important;
  }
}