:root {
  --studio-text: #333;
  --studio-gray: #888;
  --studio-bg: #ffffff;
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.studio-mt-header {
  width: 100%;
  padding: 15px 4%;
  background: var(--studio-bg);
  position: fixed;
  top: 0;
  z-index: 1000;
 font-family: 'poppins', sans-serif; 
}

.studio-mt-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo Styling */
.studio-mt-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  line-height: 1.1;
  font-size: 18px;
}

.studio-mt-logo img {
  height: 40px;
}

/* Nav Menu */
.studio-mt-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 35px;
  margin: 0;
}

.studio-mt-menu a {
  text-decoration: none;
  color: var(--studio-gray);
  font-weight: 500;
  transition: 0.3s;
}

.studio-mt-menu a.studio-mt-active,
.studio-mt-menu a:hover {
  color: #000;
}

/* Dropdown Logic */
.studio-mt-dropdown {
  position: relative;
}
.studio-mt-submenu {
  position: absolute;
  top: 100%;
  right: 0px;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
  list-style: none;
  padding: 10px 0;
}

.studio-mt-dropdown:hover .studio-mt-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.studio-mt-submenu li a {
  padding: 10px 20px;
  display: block;
  font-size: 14px;
}

/* Icons & Search */
.studio-mt-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.studio-mt-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--studio-gray);
}

/* Responsive Hamburger (Mobile) */
.studio-mt-nav-toggle {
  display: none;
}
.studio-mt-hamburger {
  display: none;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .studio-mt-hamburger {
    display: block;
  }
  .studio-mt-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    border-top: 1px solid #eee;
  }
  .studio-mt-menu {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    align-items: flex-start;
  }
  .studio-mt-nav-toggle:checked ~ .studio-mt-nav {
    display: block;
  }
  .studio-mt-submenu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none;
    padding-left: 20px;
  }
  .studio-mt-dropdown:hover .studio-mt-submenu {
    display: block;
  }
  .studio-mt-icons {
  flex-direction: column;
}
}

/* Modal Styling */
.studio-mt-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.studio-mt-modal-content {
  background: rgba(255, 255, 255, 0);
  margin: 15% auto;
  padding: 40px;
  width: 50%;
  border-radius: 8px;
  position: relative;
}
.studio-mt-search-input {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  border: 1px solid #ddd;
  outline: none;
}
/* Arrow Down Icon */
.studio-mt-arrow {
  border: solid #888;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  margin-left: 5px;
  transition: 0.3s;
}

.studio-mt-dropdown:hover .studio-mt-arrow {
  transform: rotate(-135deg);
  margin-top: 5px;
}

/* Modal Overlay - Perfect Center */
.studio-mt-modal {
  display: none; 
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  align-items: center; /* Vertical center */
  justify-content: center; /* Horizontal center */
}

.studio-mt-modal-content {
  background: #ffffff00;
  padding: 40px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  position: relative;
  text-align: center;
}

.studio-mt-search-box {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.studio-mt-search-input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
}

.studio-mt-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #888;
  display: none !important;
}

/* Language List Specifics */
.studio-mt-lang-list {
  min-width: 100px;
  right: -60px;
 
}

/* Hamburger Icon Bars Styling */
.studio-mt-hamburger {
  display: none; /* Desktop pe hide rahega */
  position: relative;
  width: 30px;
  height: 20px;
  z-index: 1001;
}

.studio-mt-hamburger span,
.studio-mt-hamburger span::before,
.studio-mt-hamburger span::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  background: #333; /* Line ka color */
  border-radius: 3px;
  transition: all 0.3s ease;
}

.studio-mt-hamburger span {
  top: 50%;
  transform: translateY(-50%);
}

.studio-mt-hamburger span::before { top: -8px; }
.studio-mt-hamburger span::after { top: 8px; }

/* Media Query fix for visibility */
@media (max-width: 1024px) {
  .studio-mt-hamburger {
    display: flex; /* Mobile view mein show hoga */
    align-items: center;
  }
  
  /* Menu icon animation when clicked */
  .studio-mt-nav-toggle:checked + .studio-mt-hamburger span {
    background: transparent;
  }
  .studio-mt-nav-toggle:checked + .studio-mt-hamburger span::before {
    transform: rotate(45deg);
    top: 0;
  }
  .studio-mt-nav-toggle:checked + .studio-mt-hamburger span::after {
    transform: rotate(-45deg);
    top: 0;
  }
}

/* Liquid Glass Modal Overlay */
.studio-mt-modal {
  display: none; 
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  /* Liquid Glass Effect: Translucent background with blur */
  background: rgba(0, 0, 0, 0.351); 
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(1px) saturate(180%);
  align-items: center; 
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

/* Glass Card Content */
.studio-mt-modal-content {
  background: rgba(0, 0, 0, 0); /* Semitransparent white */
  padding: 60px 40px;
  border-radius: 30px; /* Rounded liquid edges */
  width: 90%;
  max-width: 650px;
  position: relative;
  text-align: center;
  
 
  
  transform: scale(0.9);
  animation: modalPop 0.4s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
  to { transform: scale(1); }
}

/* Close Button Liquid Style */
.studio-mt-close {
  display: none;
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 32px;
  cursor: pointer;
  color: #333;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}



/* Search Box Styling */
.studio-mt-search-box {
  display: flex;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px;
  border-radius: 50px; /* Capsule shape */
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.studio-mt-search-input {
  flex: 1;
  padding: 10px 25px;
  border: none;
  background: transparent;
  font-size: 18px;
  font-weight: 500;
  color: #222;
  outline: none;
}

.studio-mt-search-go {
  background: #000;
  color: #fff;
  border: none;
  padding: 0 35px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.studio-mt-search-go:hover {
  background: #333;
  transform: scale(1.02);
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .studio-mt-modal-content {
    padding: 50px 20px;
    width: 95%;
  }
  
  .studio-mt-search-box {
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    gap: 15px;
  }
  
  .studio-mt-search-input {
    background: #fff;
    border-radius: 30px;
    border: 1px solid #eee;
  }
  
  .studio-mt-search-go {
    padding: 15px;
  }
}

.studio-mt-submenu.studio-mt-lang-list {
    height: 250px;         
    overflow-y: auto;       
    overflow-x: hidden;     
    padding: 10px;
    list-style: none;

}

/* Scrollbar ko thoda sundar (clean) banane ke liye (Optional) */
.studio-mt-submenu.studio-mt-lang-list::-webkit-scrollbar {
    width: 10px;
}

.studio-mt-submenu.studio-mt-lang-list::-webkit-scrollbar-thumb {
    background-color: #686868;
    border-radius: 10px;
}

.studio-mt-submenu.studio-mt-lang-list::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}
/* --------- loder ---------- */


.typing-indicator {
  width: 60px;
  height: 30px;
  position: relative;
  z-index: 4;
}

.typing-circle {
  width: 8px;
  height: 8px;
  position: absolute;
  border-radius: 50%;
  background-color: #000;
  left: 15%;
  transform-origin: 50%;
  animation: typing-circle7124 0.5s alternate infinite ease;
}

@keyframes typing-circle7124 {
  0% {
    top: 20px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
  }

  40% {
    height: 8px;
    border-radius: 50%;
    transform: scaleX(1);
  }

  100% {
    top: 0%;
  }
}

.typing-circle:nth-child(2) {
  left: 45%;
  animation-delay: 0.2s;
}

.typing-circle:nth-child(3) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}

.typing-shadow {
  width: 5px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 30px;
  transform-origin: 50%;
  z-index: 3;
  left: 15%;
  filter: blur(1px);
  animation: typing-shadow046 0.5s alternate infinite ease;
}

@keyframes typing-shadow046 {
  0% {
    transform: scaleX(1.5);
  }

  40% {
    transform: scaleX(1);
    opacity: 0.7;
  }

  100% {
    transform: scaleX(0.2);
    opacity: 0.4;
  }
}

.typing-shadow:nth-child(4) {
  left: 45%;
  animation-delay: 0.2s;
}

.typing-shadow:nth-child(5) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}

/* --------- loder ---------- */
/* Background aur Layout */


.loader-container {

    text-align: center;
}

/* "believe" Text Style */
.text {
    font-size: 80px;
    font-weight: 200;
    color: rgb(163, 9, 9);
    letter-spacing: 2px;
    margin-bottom: 30px;
    /* Soft shadow text ko depth deti hai */
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Dots Animation */
.dot {
    opacity: 0;
    animation: dot-blink 1.5s infinite;
}

/* Dots ki timing alag-alag rakhi hai taaki wo sequence mein dikhen */
.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.3s; }
.dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes dot-blink {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* Enter Button Style */
.enter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: rgb(175, 25, 25);
    padding: 10px 40px;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enter-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}
/* Active link ko position relative dena zaroori hai */
.studio-mt-menu li a.studio-mt-active {
    position: relative;
    color: #000; /* Aapka active text color */
}

/* Dot create karne ke liye */
.studio-mt-menu li a.studio-mt-active::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background-color: #000;
    border-radius: 50%;
    
    /* Animation add kiya gaya hai */
    animation: studio-dot-blink 1.5s infinite ease-in-out;
}
/* Blink Animation Logic */
@keyframes studio-dot-blink {
    0% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.1; /* Halka fade hoga */
        transform: translateX(-50%) scale(0.8); /* Thoda chota hoga */
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

.logo-link-header{
  text-decoration: none !important;
  cursor: pointer;
  color: #000;
}