
body, html {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Base Styles & Mobile First */
.artwise-mt-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh; /* Adjust height as needed */
  padding: 20px;
  background-color: #ffffff;
  font-family: 'poppins', sans-serif; /* Example font */
  text-align: left;
}

.artwise-mt-container {
  max-width:900px;
  width: 100%;

}

.artwise-mt-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: #000000;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.artwise-mt-subtitle {
  font-size: 1.9rem;
  color: #888888;
  line-height: 1.5;
  margin-bottom: 40px;
}

/* Button Group Styling */
.artwise-mt-btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.artwise-mt-btn {
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.artwise-mt-btn:hover {
  transform: translateY(-2px);
}

.artwise-mt-btn-primary {
  background-color: #f0f0f0;
  color: #000;
  border: 1px solid #e0e0e0;
}
.artwise-mt-btn-primary:hover {
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #e0e0e0;
}

.artwise-mt-btn-secondary {
  background-color: transparent;
  color: #000;
  border: 1px solid #e0e0e0;
}
.artwise-mt-btn-secondary:hover{
 background-color: #000000;
  color: #ffffff;
  border: 1px solid #e0e0e0;
}

/* --- Media Queries --- */

/* Tablet (768px and up) */
@media (max-width: 768px) {
  .artwise-mt-title {
    font-size: 2.2rem;
  }
  .artwise-mt-subtitle {
    font-size: 1.9rem;
  }
}
@media (max-width: 425px) {
    .artwise-mt-hero {
        margin-top: 100px;
    }

}




/* Container & Background Effect */

.artwise-mt-about-section {
  position: relative;
  padding: 80px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  /* Soft premium background */
   background: radial-gradient(circle at 50% 50%, #c0bcbc, #a8a8a8);
}

/* Optional: Adding a blur overlay if you use a real image background */
.artwise-mt-about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  backdrop-filter: blur(60px); 
  -webkit-backdrop-filter: blur(60px);
  z-index: 1;
}

.artwise-mt-about-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

/* Header */
.artwise-mt-about-header {
  font-size: 7rem;
  font-weight: 300;
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
  font-family: 'poppins', sans-serif;
}

/* Grid Layout */
.artwise-mt-about-grid {
  display: flex;
  flex-direction: row; /* Mobile first */
  gap: 40px;
    align-items: start;
  justify-content: center;
}

/* Image Styling */
.artwise-mt-about-image-wrapper {
  width: 100%;
  max-width: 450px;
  position: relative;
}

.artwise-mt-about-img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Text Content */
.artwise-mt-about-text {
  color: #fff;
  max-width: 600px;
}

.artwise-mt-about-tagline {
  font-size: 2.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
}

.artwise-mt-about-description {
  font-size: 1.7rem;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Button */
.artwise-mt-about-btn {
  display: inline-block;
  padding: 12px 35px;
  background: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.artwise-mt-about-btn:hover {
  background-color: black;
  color: white;
}

/* --- Responsive Breakpoints --- */
/* --- Tablet View (max-width: 768px) --- */
@media screen and (max-width: 768px) {
  .artwise-mt-about-header {
    font-size: 5rem; /* Scaled down from 7rem */
    margin-bottom: 40px;
  }

  .artwise-mt-about-grid {
    gap: 30px;
  }

  .artwise-mt-about-tagline {
    font-size: 1.6rem;
  }

  .artwise-mt-about-description {
    font-size: 1.2rem;
  }

  .artwise-mt-about-image-wrapper {
    max-width: 350px; /* Smaller image for tablet */
  }
}

/* --- Mobile View (max-width: 425px) --- */
@media screen and (max-width: 425px) {
  .artwise-mt-about-section {
    padding: 60px 15px;
  }

  .artwise-mt-about-header {
    font-size: 3.5rem; /* Mobile-friendly size */
    margin-bottom: 30px;
  }

  .artwise-mt-about-grid {
    flex-direction: column; /* Stacks image on top of text */
    align-items: center;
    text-align: center; /* Center text for better mobile aesthetics */
  }

  .artwise-mt-about-image-wrapper {
    max-width: 100%; /* Image takes full width minus padding */
  }

  .artwise-mt-about-tagline {
    font-size: 1.4rem;
    margin-top: 10px;
  }

  .artwise-mt-about-description {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .artwise-mt-about-text {
    max-width: 100%;
  }
}
/* Card animation trigger */
.artwise-mt-container {
  opacity: 0;
  transform: translateY(-40px);
  filter: blur(12px);
  animation: artwise-mt-smokeReveal 1.2s ease-out forwards;
}
.artwise-mt-title {
  animation-delay: 0.1s;
}

.artwise-mt-subtitle {
  animation-delay: 0.25s;
}

.artwise-mt-btn-group {
  animation-delay: 0.4s;
}


/* Smoke + slide animation */
@keyframes artwise-mt-smokeReveal {
  0% {
    opacity: 0;
    transform: translateY(-40px);
    filter: blur(14px);
  }

  60% {
    opacity: 0.7;
    transform: translateY(10px);
    filter: blur(6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}



/* Container Settings */
.artwise-mt-services {
  background-color: #000;
  color: #fff;
  padding: 80px 20px;
  font-family: 'poppins', sans-serif;
}

.artwise-mt-services-container {
  max-width: 1300px;
  margin: 0 auto;
}
.artwise-mt-top-div{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 75px;
    gap: 30px;
}
.artwise-mt-services-title {
  font-size: clamp(3rem, 8vw, 6rem); /* Responsive size */
  font-weight: 300;
  /*margin-bottom: 60px;*/
}

/* Grid Layout */
.artwise-mt-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Laptop: 3 columns */
  gap: 50px;
}

/* Individual Card Styling */
.artwise-mt-service-card {
  position: relative;
  border: 1px solid #333;
  padding: 40px 30px;
  width: 400px;
  height: 400px;
  min-height: 250px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
}

/* Background Large Number */
.artwise-mt-card-num {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px #44444473; /* Outline style */
  z-index: 1;
  transition: all 0.4s ease;
}

.artwise-mt-card-content {
  position: relative;
  z-index: 2;
}

.artwise-mt-card-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #88888841; /* Dimmed text initially */
  transition: color 0.4s ease;
}

/* Button */
.artwise-mt-card-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #222;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.8rem;
  opacity: 0.6;
  transition: all 0.4s ease;
}

/* --- HOVER EFFECT (The "Light" Part) --- */
.artwise-mt-service-card:hover {
  background-color: #fff; /* White background like card 5 */
  border-color: #fff;
}



.artwise-mt-service-card:hover .artwise-mt-card-num {
  -webkit-text-stroke: 1px #000;
  color: transparent; /* Keep it outlined or change to black */
  left: -40px;
}

.artwise-mt-service-card:hover .artwise-mt-card-content h3 {
  color: #00000097; /* Text turns black */
}

.artwise-mt-service-card:hover .artwise-mt-card-btn {
  background: #ffffff;
  color: #000;
  opacity: 1;

}

/* --- Responsive Media Queries --- */

/* Tablet (max-768px) */
@media screen and (max-width: 768px) {
  .artwise-mt-services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
  }
}

/* Mobile (max-425px) */
@media screen and (max-width: 425px) {
  .artwise-mt-services-grid {
    grid-template-columns: 1fr; /* 1 column */
     place-items: center;
  }
 
  .artwise-mt-top-div {
    flex-direction: column;
    margin-bottom: 20px;
     place-items: center;
  }
  .artwise-mt-card-num {
    font-size: 7rem;
  }
  
  .artwise-mt-service-card {
    min-height: 200px;
    width: 90%;
  }
}
.artwise-mt-estimate {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  /* Simulating the blurry background in the image */
  background: radial-gradient(circle at 30% 30%, #d1d9db, #9ba5a8);
  font-family: 'poppins', sans-serif;
  overflow: hidden;
}

.artwise-mt-estimate-container {
  max-width: 1000px;
  width: 100%;
  position: relative;
}

.artwise-mt-estimate-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  gap: 100px; /* Isse dono cards ke beech 40px ka gap aayega */
  max-width: 1300px;
  margin: 0 auto;
}

/* Glass Card Base Style */
.artwise-mt-glass-card {
  background: rgba(255, 255, 255, 0.12); /* Light frosted effect */
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 50px;
  width: 450px; /* Fixed width for better control */
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  transition: transform 0.3s ease;
}

/* Position Left Card higher */
.artwise-mt-card-left {
  text-align: left;
}
/* .artwise-mt-glass-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.18);
} */
/* Position Right Card lower and slightly behind */
.artwise-mt-card-right {
  z-index: 1;
  transform: translate(-20px, 60px); /* Overlap effect */
  text-align: center;
  cursor: pointer;
}
.artwise-link-mt-Enquire{
  text-decoration: none;
}

/* Typography */
.artwise-mt-estimate-title {
  color: #000000;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.artwise-mt-divider {
  width: 100%;
  border: none;
  border-top: 3px solid #000;
  margin-bottom: 30px;
}

.artwise-mt-estimate-details {
  color: #000000;
  font-size: 1rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 1px;
}

.artwise-mt-enquire-text {
  color: #000000;
  font-size: 2.2rem;
  font-weight: 400;
}

.artwise-mt-footer-branding {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  color: #000000;
  font-size: 1.2rem;
  opacity: 0.8;
  width: 100%;
  text-align: center;
}

/* --- Responsive Media Queries --- */


/* Tablet (max-768px) */
@media screen and (max-width: 768px) {
  .artwise-mt-estimate-grid {
    gap: 25px;
  }
   .artwise-mt-card-left, .artwise-mt-card-right {
    transform: none; /* Remove overlap for cleaner tablet look */
    padding: 30px;
  }
  .artwise-mt-glass-card {
    width: 340px;
    padding: 30px;
    gap: 0px;
  }
  .artwise-mt-estimate-title {
    font-size: 1.8rem;
  }
}

/* Mobile (max-425px) */
@media screen and (max-width: 425px) {
  .artwise-mt-estimate-grid {
      grid-template-columns: 1fr; /* Stack vertically */
    flex-direction: column; /* Mobile par cards ek ke niche ek aayenge */
    gap: 30px;
  }
  .artwise-mt-glass-card {
    width: 100%; /* Mobile par full width */
    max-width: 320px;
    aspect-ratio: auto;
    min-height: 280px;
    gap: 0px;
  }

  .artwise-mt-enquire-text {
    font-size: 1.8rem;
  }
    .artwise-mt-footer-branding {
    bottom: -30px;
  }
   .artwise-mt-card-right {
    margin-top: -20px; /* Slight vertical overlap on mobile */
  }
}


.artwise-mt-stats-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 80px 20px;
  overflow: hidden;
  color: #ffffff;
  font-family: 'poppins', sans-serif;
}

/* Background Image Styling */
.artwise-mt-stats-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2; /* Keeps it behind text */
  border: none;             /* Kisi bhi default border ko hatane ke liye */
  outline: none;            /* Outline hatane ke liye */
  display: block;           /* Gap khatam karne ke liye */
  margin: 0;
  filter: brightness(0.4); /* Sirf dark rakhein */ /* Apply the blurry and dark effect */
}

/* Optional Overlay for extra readability */
.artwise-mt-stats-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0); /* Darkens the image further */
  z-index: -1;
  backdrop-filter: blur(3px); /* Modern tarika blur dene ka */
  -webkit-backdrop-filter: blur(4px);
}

.artwise-mt-stats-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.artwise-mt-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns for Desktop */
  gap: 80px;
}

.artwise-mt-stat-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  margin-left: 50px;
}

.artwise-mt-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 10px 0;
}

.artwise-mt-stat-text {
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 400;
  margin: 0;
  max-width: 250px;
}

/* --- Responsive Breakpoints --- */

/* Tablet (max-768px) */
@media screen and (max-width: 768px) {
  .artwise-mt-stats-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for Tablet */
    gap: 40px 30px;
  }
  
  .artwise-mt-stat-number {
    font-size: 1.8rem;
  }
  .artwise-mt-stat-item {
    margin-left: 0px;
  }
  
  .artwise-mt-stat-text {
    font-size: 1.1rem;
  }
}

/* Mobile (max-425px) */
@media screen and (max-width: 425px) {
  .artwise-mt-stats-section {
    padding: 60px 15px;
  }

  .artwise-mt-stats-grid {
    grid-template-columns: 1fr; /* Single column for Mobile */
    gap: 35px;
  }

  .artwise-mt-stat-item {
    text-align: center; /* Centering for better mobile look */
    align-items: center;
    margin-left: 0px;
  }

  .artwise-mt-stat-text {
    max-width: 100%;
  }
}
.artwise-mt-xt-slider-container {
  overflow: hidden;
  padding: 80px 0px 0px 0px;
  background: white;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.artwise-mt-xt-slider-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.artwise-mt-xt-slide {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
}

.artwise-mt-xt-slide img {
  max-width: 150px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.artwise-mt-xt-slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .artwise-mt-xt-slide {
    width: 150px;
  }
  .artwise-mt-xt-slide img {
    max-width: 100px;
  }
}

.artwise-mt-review {
  padding: 80px 20px;
  background: #fff;
  font-family: 'poppins', sans-serif;
  overflow: hidden;
}

.artwise-mt-review-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.artwise-mt-review-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 200;
  margin-bottom: 60px;
}

.artwise-mt-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.artwise-mt-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.artwise-mt-slide {
  min-width: 50%; /* Shows 2 cards at a time on laptop */
  padding: 30px;
  box-sizing: border-box;
  padding-top: 60px;
  cursor: pointer;
}

.artwise-mt-review-card {
  position: relative;
  padding: 60px 40px 40px;
  text-align: left;
  height: 100%;
  border: 1px solid rgb(203, 201, 201);
  transition: all 0.3s ease; /* Smooth transition */
}

.artwise-mt-review-card:hover {
  background-color: #8888883a;
  border-color: transparent; /* border smooth hide */
}

.artwise-mt-bg-gray {
  background-color: #f2f2f2;
  border: none;
}

.artwise-mt-user-img {
  position: absolute;
  top: -40px;
  left: 40px;
  width: 80px;
  height: 80px;
  border: none;
  background: #fff;
  padding: 0px;
}

.artwise-mt-user-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artwise-mt-review-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 60px;
}

.artwise-mt-reviewer-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.artwise-mt-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.artwise-mt-designation {
  font-size: 0.85rem;
  color: #666;
}

/* Nav Buttons */
.artwise-mt-nav-btns {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.artwise-mt-nav-btns button {
  background: none;
  border: none;
  font-size: 2rem;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s;
}

.artwise-mt-nav-btns button:hover {
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .artwise-mt-slide { min-width: 100%; }
}
@media (max-width: 425px) {
  .artwise-mt-review-text{
    font-size: 0.9rem;
  }
  .artwise-mt-slide {
    padding: 0px;
    padding-top: 40px;
  }
}

.artwise-mt-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000; /* Fallback */
}

/* Background Image */
.artwise-mt-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  /* Applying brightness here */
  filter: brightness(0.6);
}

/* The Blur Layer (Avoiding white edges) */
.artwise-mt-video-section::before {
  content: '';
  position: absolute;
  top: -15px; /* Overshoot to hide white bleed */
  left: -15px;
  right: -15px;
  bottom: -15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
  pointer-events: none;
}

/* Play Button Container */
.artwise-mt-video-overlay {
  position: relative;
  z-index: 3;
}

.artwise-mt-play-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.artwise-mt-play-btn:hover {
  transform: scale(1.15);
  opacity: 0.9;
}

.artwise-mt-play-btn svg {
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.3));
  width: clamp(60px, 10vw, 100px); /* Responsive size */
  height: auto;
}
.artwise-mt-video {
  height: 150px;
  width: 150px;
  filter: brightness(0) invert(1);
  cursor: pointer;
}


/* --- Responsive Adjustments --- */

@media screen and (max-width: 768px) {
  .artwise-mt-video-section {
    height: 60vh; /* Shorter for tablets */
  }
}

@media screen and (max-width: 425px) {
  .artwise-mt-video-section {
    height: 40vh; /* Standard video aspect ratio for phones */
  }
  .artwise-mt-services {
    padding: 80px 5px;
  }
}

.artwise-mt-glass-card:hover {


    
    /* 2. Soft Shadow jo glass look ko depth de */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    
    /* 3. Glass opacity badhane ke liye (agar aapne glassmorphism use kiya hai) */
    background-color: rgba(255, 255, 255, 0.225); 
    backdrop-filter: blur(12px);
}