/************************************for the font family used*****************************************/

/*****************************************************loader***************************************************/

/* full-screen overlay */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(45deg, #1a2a6c, #b21f1f, #fdbb2d);
  /* Adjust the gradient to match your site */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  visibility: visible;
  opacity: 1;
}

/* spinner element */
.loader-spinner {
  width: 60px;
  height: 60px;
  border: 6px solid rgba(255,255,255,0.3);
  border-top: 6px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* spin animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* hide loader when page is ready */
#page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}


/************************************for the video loading*****************************************/

/* Instantly hide the offcanvas menu before scripts run */
#btb-offcanvas.pre-hide {
  display: none !important;
}

.video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

.video-wrapper video,
.video-wrapper .video-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image visible initially */
.video-fallback {
  opacity: 1;
  transition: opacity 1s ease;
  z-index: 2;
}

/* Video below image */
.video-wrapper video {
  z-index: 1;
  pointer-events: none; /* prevents pausing on click */
  filter: brightness(0.8) contrast(1.1) saturate(1.2);
}

/* Fade out image when video is ready */
.video-wrapper.loaded .video-fallback {
  opacity: 0;
  pointer-events: none;
}





/********************************************for the main seection********************************************/

:root {
  --btb-bg-overlay: rgba(0, 0, 0, 0.5);
  --btb-white: #fff;
  --btb-navy: #14204A;
}



/* Header layout */
.btb-header {
  position: relative;
  z-index: 100;
  width: 100%;
}
.btb-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
}
.btb-logo img {
  height: 68px;
  display: block;
}

/* Circular menu button on right */
.btb-menu-btn {
  width: 50px;
    height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--btb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease;
}
.btb-menu-btn:hover {
  transform: scale(1.05);
}

/* Off-canvas full overlay */
.btb-offcanvas {
display: block !important;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.btb-offcanvas.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Inner white panel (slides from right) */
.btb-offcanvas-inner {
   position: absolute;
  top: 0;
  left: 0;       /* open from LEFT */
  right: auto;   /* disable right side */
  height: 100%;
  width: 313px;
  max-width: 92vw;
  background: #fff;
  transform: translateX(-100%);   /* hidden to the left */
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 30px;
  box-shadow: 10px 0 30px rgba(0,0,0,0.2); /* subtle edge shadow */
}
.btb-offcanvas.is-open .btb-offcanvas-inner{ transform: translateX(0); }

body.no-scroll{ overflow: hidden; }

/* Close button */
.btb-close {
  background: none;
  border: none;
  align-self: flex-end;
  cursor: pointer;
  padding: 10px;
}

/* Menu items */
.btb-menu {
  list-style: none;
  margin-top: 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.btb-menu a {
  text-decoration: none;
  color: var(--btb-navy);
  font-size: 20px;
  font-weight: 600;
  transition: color 0.2s ease;
}
.btb-menu a:hover {
  color: #d1007f;
}

/* Force logo left, menu button right */
.btb-header .btb-header__inner{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important; /* start, we’ll push the button to right */
}

/* Make sure the logo comes first */
.btb-header .btb-logo{
  order:1 !important;
  margin-right:16px; /* optional spacing */
}

/* Push the menu button to the far right */
.btb-header .btb-menu-btn{
  order:2 !important;
  margin-left:auto !important;
}

/* If you had previously positioned the button absolutely, undo it */
.btb-header .btb-menu-btn{
  position:relative !important;
  right:auto !important;
  top:auto !important;
  transform:none !important;
}

/* Force menu on left and logo on right */
.btb-header .btb-header__inner{
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important; /* push logo right */
}

/* Menu button first (left) */
.btb-header .btb-menu-btn{
  order: 1 !important;
  margin-right: auto !important; /* push it to far left */
  margin-left: 0 !important;
  position: relative !important;
}

/* Logo second (right) */
.btb-header .btb-logo{
  order: 2 !important;
  margin-left: 16px !important;
  margin-right: 0 !important;
}


    /* Sticky full-page background video */
    #bgVideo {
    position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.8) contrast(1.1) saturate(1.2);
  pointer-events: none; /* prevent pausing on click */
  background-color: black; /* avoid flicker during initial load */
    }

    body {
      position: relative;
      z-index: 1;
    }

   

    .heading-outline {
      text-shadow: 0 8px 28px rgba(0,0,0,.6), 0 1px 0 rgba(0,0,0,.6);
    }

    .text-white-75 {
      color: rgba(255,255,255,.9);
    }

    .scroll-indicator {
      position: absolute;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      text-transform: uppercase;
      letter-spacing: .2em;
      opacity: .9;
      color: #fff;
    }

    /* Feature cards */
    .feature-card {
      border: none;
      border-radius: 1rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    }

    .shadow-soft {
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .text-gradient {
      background: linear-gradient(90deg, #A81E8E, #1E88E5);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
    }
    
    .glass-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.timeline {
  list-style:none;
  position:relative;
  padding-left:40px;
}
.timeline::before {
  content:"";
  position:absolute;
  left:10px;
  top:0;
  bottom:0;
  width:2px;
  background:rgba(255,255,255,0.2);
}
.timeline li {
  position:relative;
  margin-bottom:25px;
  padding-left:20px;
  font-size:1.1rem;
  color:#fff;
}
.timeline li::before {
  content:"";
  position:absolute;
  left:-30px;
  top:4px;
  width:14px;
  height:14px;
  border-radius:50%;
  background:radial-gradient(circle,#ff005c 0%,#ff9800 80%);
  box-shadow:0 0 10px rgba(255,0,92,0.8);
  animation:pulse 2s infinite;
}
@keyframes pulse {
  0%,100%{transform:scale(1);}
  50%{transform:scale(1.4);}
}
.timeline span {
  font-weight:700;
  color:#ffcc00;
  margin-right:10px;
}



      /* === Base containers === */
.container-narrow { max-width: 900px; margin-inline: auto; padding: 0 24px; }

/* === HERO === */
.btb-hero{
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-rows: auto 1fr;
  /* Use your banner/gradient/video behind this; we keep it transparent */
  background: transparent;
  overflow: hidden;
}

/* top bar */
.btb-hero__bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 20px 24px;
  position: relative;
  z-index: 2;
}
.btb-hero__logo img{ height: 60px; display:block; }

/* circular menu */
.btb-hero__menu{
  width: 74px; height: 74px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display:grid; place-items:center;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  cursor:pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btb-hero__menu:hover{ transform: translateY(-2px); box-shadow:0 16px 48px rgba(0,0,0,.3); }

/* center copy */
.btb-hero__center{
  align-self:center;
  text-align:center;
  padding: 24px;
  position: relative;
  z-index: 2;
}
.btb-hero__title{
  
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.05;
  font-size: clamp(36px, 6vw, 72px);
  color: #fff;
  text-transform: uppercase;
}
.btb-hero__sub{
  margin: 26px auto 0;
  max-width: 1000px;
  color: #fff;
  opacity: .95;
  font-size: clamp(18px, 2.2vw, 26px);
}

/* huge word bottom like the screenshot */
.btb-hero::after{
  content:"SCALE";
  position:absolute;
  bottom:-18px; left:50%;
  transform: translateX(-50%);
 
  font-weight: 900;
  letter-spacing: .02em;
  font-size: clamp(120px, 36vw, 620px);
  color: rgba(255,255,255,0.95);
  line-height: .8;
  z-index: 1;
  pointer-events:none;
}

/* creative scroll indicator */
.btb-scroll{
  position:absolute; left:28px; bottom:24vh;
  display:flex; flex-direction:column; align-items:flex-start;
  gap:14px; z-index:2; color:#fff;
}
.btb-scroll__label{
  font-size: 12px; letter-spacing: 1.5px; font-weight:700;
}
.btb-scroll__arrow{
  width: 28px; height: 44px; position: relative; display:block;
}
.btb-scroll__arrow::before, .btb-scroll__arrow::after{
  content:""; position:absolute; left:50%; transform:translateX(-50%);
  border-left:2px solid #fff;
}
.btb-scroll__arrow::before{ top:0; height: 36px; opacity:.6; }
.btb-scroll__arrow::after{
  top: 28px; height: 16px;
  border-left: none; border-bottom:2px solid #fff; border-right:2px solid #fff;
  width: 16px; transform: translateX(-50%) rotate(45deg);
  animation: nudge 1.6s infinite;
}
@keyframes nudge{
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(45deg); opacity:.9; }
  50% { transform: translateX(-50%) translateY(6px) rotate(45deg); opacity:.5; }
}

/* === Intro band (transparent) === */
.btb-intro{
  background: transparent;
  padding: 64px 0 24px;
  text-align: center;
  color: #fff;
}
.btb-kicker{
  color: #ff2d8b; text-transform: uppercase; font-weight: 800; letter-spacing: .18em;
  margin: 0 0 10px;
}
.btb-intro__h{
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  color: #fff;
  opacity: .95;
}

/* === About teaser === */
.btb-about{
  background: transparent;
  padding: 36px 0 80px;
  color: #fff;
}
.btb-about__h{ font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.btb-about__p{
  font-size: 18px; line-height: 1.75; opacity: .9;
}

/* CTA button (pill) */
.btb-btn{
  display:inline-block; padding: 12px 22px; font-weight:700; text-decoration:none;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.btb-btn--pill{
  border-radius: 999px; color: #fff;
  background: linear-gradient(90deg, #ff2d8b 0%, #6c63ff 100%);
  box-shadow: 0 12px 30px rgba(108,99,255,.25);
}
.btb-btn--pill:hover{ transform: translateY(-2px); opacity:.95; box-shadow:0 16px 40px rgba(108,99,255,.35); }



/* === Responsive tweaks === */
@media (max-width: 992px){
  .btb-scroll{ left: 16px; bottom: 18vh; }
  .btb-hero__logo img{ height: 50px; }
  .btb-hero__menu{ width:64px; height:64px; }
}


.navlinks{
    color:linear-gradient(90deg, #ff007f 0%, #6c63ff 100%);
}

.btb-menu-btn {
  background: linear-gradient(135deg, #0d88ce, #a62481, #803f95, #3357a7);
  border: none;
  border-radius: 6px;
  padding: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Optional hover effect */
.btb-menu-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* To make the SVG (menu icon) white */
.btb-menu-btn svg path {
  stroke: #fff;
}
  


.about-modern {
  background: transparent;
  position: relative;
  z-index: 2;
}

/* Gradient button */
.btn-gradient {
  background: linear-gradient(90deg, #ff007f 0%, #6c63ff 100%);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}
.btn-gradient:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}



/* Typography tweaks */
.about-modern h2 {
  line-height: 1.2;
}
.about-modern p {
  max-width: 580px;
}

.navlinks {
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, #0d88ce, #a62481, #803f95, #3357a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  transition: all 0.3s ease;
}

/* Hover effect (optional but recommended) */
.navlinks:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

/************************************************************************************about us*************************************************************************/
/******************* ABOUT US HERO SECTION ********************/
.about-hero-wrapper {
  padding: 0 20px; /* outer gap like screenshot */
  box-sizing: border-box;
}

.about-hero {
  position: relative;
  background: url('https://mettaproductions.in/assets/Metaa-About.webp') right center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 105vh; /* fits like your screenshot */
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  margin: 100px 0px 50px 0px; /* breathing space top/bottom */
}

/* --- Tablet View (768px - 991px) --- */
@media (max-width: 1024px) and (min-width: 701px) {
  .about-hero {
    background: url('https://mettaproductions.in/assets/Mobile-Banner.webp') center center/cover no-repeat !important;
  }
}

/* --- Mobile View (up to 700px) --- */
@media (max-width: 700px) {
  .about-hero {
    background: url('https://mettaproductions.in/assets/Meta 5.webp') center center/cover no-repeat !important;
  }
}

/*@media (max-width: 768px) {*/
/*  .about-hero {*/
/*    background: url('https://b2btechnews.com/metta-site-php/assets/mobile-hero.jpg') center center/cover no-repeat !important;*/
/*  }*/
/*}*/


/* Dark gradient overlay on left side */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: linear-gradient(
    90deg,
    rgba(15, 0, 28, 0.96) 0%,
    rgba(15, 0, 28, 0.82) 45%,
    rgba(15, 0, 28, 0.15) 100%
  );*/
  z-index: 1;
  border-radius: 10px;
}

.about-hero .container {
  position: relative;
  z-index: 2;
  padding: 0px;
  max-width: 1200px;
}

.about-hero .content {
  max-width: 600px;
}

/* ABOUT US label */
.about-hero h5 {
  font-family: 'FederationStarfleet', sans-serif;
  color: #ff007f;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 14px;
}

/* Main heading */
.about-hero h1 {
  font-family: 'FederationStarfleet', sans-serif;
  font-size: 45px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 25px;
  color: #fff;
  white-space: nowrap; /* keep it in one line */
  overflow: visible;
}

/* Paragraph text */
.about-hero p {
  font-family: 'FederationStarfleet', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 45px;
  color: #d9d9d9;
  text-align: justify;
  letter-spacing: 0.3px;
  max-width: 600px;
}

/* Gradient button */
.btn-gradient {
  display: inline-block;
  background: linear-gradient(90deg, #ff007f, #7b00ff);
  color: #fff;
  padding: 14px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(123, 0, 255, 0.3);
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #7b00ff, #ff007f);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 0, 127, 0.5);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .about-hero .container {
        padding: 1000px 150px 0px;
  }

}

@media (max-width: 991px) {
  .about-hero-wrapper {
    padding: 0 15px;
  }

  .about-hero {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    border-radius: 0;
    background-position: center;
    background-size: cover;
    padding: 50px
  }

  .about-hero::before {
    /*background: rgba(0, 0, 0, 0.8);*/
    border-radius: 0;
  }

  .about-hero .container {
    padding: 670px 20px 0px;
  }

  .about-hero h1 {
    font-size: 38px;
    white-space: normal;
  }

  .about-hero p {
    font-size: 15px;
    max-width: 100%;
  }

  .btn-gradient {
    font-size: 16px;
    padding: 12px 30px;
  }
}

@media screen and (max-width: 400x){
    .para{
        text-align: justify;
    }
}
/***********************************************************services section***************************************************************************/

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 30px !important; /* make arrow icons larger */
}

/* Section */
.offer-section {
  text-align: center;
    padding: 80px 20px 15px 20px;

}

.section-subtitle {
  color: #ff007f;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
      color: white;
}

/* Swiper Container */
.offer-slider {
  padding-bottom: 60px;
}

/* Cards */
.offer-card {
  background:#0000005e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  padding: 40px 30px;
  color: white;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(255, 0, 128, 0.2);
}

.offer-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
}

.offer-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.offer-card p {
  font-size: 15px;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 25px;
}

.learn-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff007f, #8b3dff);
  color: #fff;
  text-decoration: none;
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

.learn-btn:hover {
  background: linear-gradient(90deg, #ff2aa5, #a159ff);
  transform: translateY(-2px);
}

/* Swiper Controls */
.swiper-button-next,
.swiper-button-prev {
  color: #ff007f;
  transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #a159ff;
}

.swiper-pagination-bullet {
  background: #ff007f;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: #a159ff;
  opacity: 1;
}

@media (max-width: 900px) {
  .section-title {
    font-size: 28px;
  }
}



.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 66%!important;
    position: relative;
    transition-property: transform;
    display: block;
}


.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: -120px !important;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}



.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 266px)!important;
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
    display: none;
}


@media (max-width: 767px) {
  
  .order-section {
    padding: 100px 8%;
    background: linear-gradient(180deg, #0d0d17 0%, #111223 100%);
    margin-top: -250px;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 51%!important;
    position: relative;
    transition-property: transform;
    display: block;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 387px)!important;
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
}
}

/****************************************************************for vision and mission section*************************************************************/

@font-face {
  font-family: 'FederationStarfleet';
  src: url('/fonts/Federation_Starfleet_Hull_23rd.ttf') format('truetype');
  unicode-range: U+0020-007E;
}

@font-face {
  font-family: 'PunctuationFont';
  src: url('/fonts/YourPunctuationFont.ttf') format('truetype');
  unicode-range: U+0021, U+002C, U+002E, U+003A, U+003B, U+002D, U+002F;
}

body {
  font-family: 'FederationStarfleet', 'PunctuationFont', sans-serif;
  background-color: #0f101a;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* Section Layout */
.order-section {
  padding: 100px 8%;
  background: linear-gradient(180deg, #0d0d17 0%, #111223 100%);
  margin-top: -71px;
}

.order-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
}

/* Left Column */
.order-left {
  flex: 1;
  min-width: 300px;
}

.section-subtitle {
  color: #ff007f;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.section-desc {
  color: #ccc;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.discover-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff007f, #8b3dff);
  color: #fff;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 500;
  font-family: 'FederationStarfleet', 'PunctuationFont', sans-serif;
  transition: background 0.3s ease, transform 0.2s ease;
}

.discover-btn:hover {
  background: linear-gradient(90deg, #ff2aa5, #a159ff);
  transform: translateY(-2px);
}

/* Right Column (Cards) */
.order-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
  min-width: 300px;
}

.order-card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  padding: 25px 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.order-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 0, 128, 0.2);
}

.order-icon {
  width: 95px;
  height: 95px;
  margin-right: 25px;
}

.order-text h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: 'FederationStarfleet', 'PunctuationFont', sans-serif;
}

.order-text p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .order-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-right {
    width: 100%;
  }

  .section-title {
    font-size: 32px;
  }
}

/*************************************************************Why Choose Metta Productions?**************************************/

.choose-us {
  /*background-color: #12141d;*/
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.section-subtitle {
  color: #ff007a;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  line-height: 1.2;
}

.section-title span {
  color: #fff;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 boxes per row */
  gap: 30px;
  justify-content: center;
  /*max-width: 1000px;*/
  margin: 0 auto;
}

.feature-box {
  background: #0000005e;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px 20px;
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
  text-align: left;
  min-height: 180px;
}

.feature-box:hover {
  background: #242736;
  transform: translateY(-5px);
}

.feature-content h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-weight: 600;
}

.feature-content p {
  color: #bcbcbc;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr; /* Stack on smaller screens */
  }
}

/****************************************************************Leadership Team****************************************************/

.leadership-zoomcard {
  background-color: #12141d;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.section-subtitle {
  color: #ff007a;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
 /* max-width: 1100px;*/
  margin: 0 auto;
}

/* Each card */
.team-card {
  background: #1d1f29;
  border-radius: 15px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
}

.team-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 0, 122, 0.3);
}

.card-image img {
  width: 100%;

  object-fit: cover;
  display: block;
}

.card-info {
  padding: 25px;
}

.card-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.position {
  color: #ff007a;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.bio {
  color: #bcbcbc;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.social-links a {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #ff007a;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/**********************************************projects*******************************************************/

.projects-section {
  text-align: center;
  padding: 60px 20px;
}

.projects-section h2 {
  font-size: 2.5em;
  margin-top: 40px;
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

/* ==== LAYOUT ==== */
.projects-container {
  display: flex;
  justify-content: center;
  align-items: stretch; /* ✅ Same height */
  gap: 40px;
  flex-wrap: wrap;
     /* margin-top: 164px;*/
}

/* ==== PROJECT BOX ==== */
.project-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  z-index: 0;
  padding: 4px;
  flex: 1 1 45%; /* ✅ Same width for both */
  display: flex;
  flex-direction: column;
  min-height: 430px; /* ✅ Fixed equal height */
}

/* Rotating Gradient Border */
.project-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 10px;
  background: linear-gradient(135deg, #0d88ce, #a62481, #803f95, #3357a7);
  animation: rotateBorder 6s linear infinite, blink 1.5s ease-in-out infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

/* Hover Zoom-Out */
.project-box:hover {
  transform: scale(0.97);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
}

/* ==== FLEX CONTENT AREA ==== */
.content-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex: 1;
  background: rgb(0 0 0 / 31%);
  border-radius: 14px;
  padding: 20px;
  gap: 20px;
}

/* ==== IMAGE ==== */
.image-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image {
  width: 100%;
  height: 75%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.project-box:hover .project-image {
  transform: scale(1.05);
  opacity: 0.9;
}

/* ==== TEXT ==== */
.text-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.text-side h3 {
  font-size: 21px;
  color: #40baff;
  margin-bottom: 15px;
  font-weight: 600;
}

.text-side p {
  font-size: 1em;
  line-height: 1.6em;
  color: #ddd;
  text-align: justify;
}

/* ==== ANIMATIONS ==== */
@keyframes rotateBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 12px rgba(13, 136, 206, 0.8));
  }
  50% {
    opacity: 0.7;
    filter: drop-shadow(0 0 25px rgba(166, 36, 129, 1));
  }
}

/* ==== RESPONSIVE ==== */
@media (max-width: 992px) {
  .projects-container {
    flex-direction: column;
    align-items: center;
  }

  .project-box {
    flex: 1 1 100%;
    min-height: auto;
    width: 90%;
  }

  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .project-image {
    height: 300px;
  }

  .text-side {
    text-align: center;
  }
}


/* ===============================
   PROJECTS PAGE - Unique Styling
=================================*/

.projects-page {
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.projects-page-title {
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ff007f, #7b00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.projects-page-subtitle {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 70px;
}

.projects-page-container {
  display: flex;
  flex-direction: column;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-item {
  position: relative;
  overflow: hidden;
}

.project-item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 50px;
  backdrop-filter: blur(12px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-item-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 0, 127, 0.3);
}

.project-item-image {
  flex: 1;
}

.project-item-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
  transition: transform 0.5s ease;
}

.project-item-content:hover img {
  transform: scale(1.03);
}

.project-item-text {
  flex: 1;
  text-align: left;
}

.project-item-text h3 {
  background: #40baff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: 600;
}

.project-item-text p {
  color: #d9d9d9;
  line-height: 1.8;
  font-size: 16px;
  text-align: justify;
}

/* Alternate layout for variety */
.alt-left .project-item-content {
  flex-direction: row;
}

.alt-right .project-item-content {
  flex-direction: row-reverse;
}

/* Responsive design */
@media (max-width: 992px) {
  .project-item-content {
    flex-direction: column !important;
    text-align: center;
    padding: 30px;
  }

  .project-item-text {
    text-align: center;
  }

  .project-item-imagee img {
    width: 63%;
  }

  .projects-page-title {
    font-size: 2rem;
  }

  .projects-page-subtitle {
    font-size: 1rem;
  }
}



/* ================================
   SERVICES PAGE - UNIQUE STYLING
=================================*/

.services-page {
  padding: 100px 20px;
  color: #fff;
  text-align: center;
}

.services-page-title {
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ff007f, #7b00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-page-subtitle {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 80px;
}

.services-page-container {
  display: flex;
  flex-direction: column;
  gap: 90px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual Service Card */
.service-item {
  position: relative;
}

.service-item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 50px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s ease;
}

.service-item-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(255, 0, 127, 0.3);
}

.service-item-icon {
  flex: 1;
  text-align: center;
}

.service-item-icon img {
  width: 130px;
  height: auto;
  transition: transform 0.5s ease;
}

.service-item-content:hover img {
  transform: scale(1.08);
}

.service-item-text {
  flex: 2;
  text-align: left;
}

.service-item-text h3 {
 font-size: 28px;
    color: #40baff;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-item-text ul li {
  color: #ddd;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.service-item-text ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff007f;
  font-size: 20px;
}

/* Alternate Layout */
.alt-left .service-item-content {
  flex-direction: row;
}

.alt-right .service-item-content {
  flex-direction: row-reverse;
}

/* Responsive Design */
@media (max-width: 992px) {
  .service-item-content {
    flex-direction: column !important;
    text-align: center;
    padding: 35px;
  }

  .service-item-text {
    text-align: center;
  }

  .service-item-icon img {
    width: 100px;
  }

  .services-page-title {
    font-size: 2rem;
  }

  .services-page-subtitle {
    font-size: 1rem;
  }
}

/***************************************************************************************************/

/* ===============================
   CAREERS PAGE (unique namespace)
=================================*/
.careers-page { color:#fff; padding:80px 20px 120px; }

.careers-page-hero {
  border-radius: 16px;
  min-height: 60vh;
  display: grid;
  place-items: center;
  padding: 40px 24px;
  /*background:*/
  /*  radial-gradient(1200px 600px at 10% 10%, rgba(255,0,127,.18), transparent 60%),*/
  /*  radial-gradient(1200px 600px at 90% 90%, rgba(123,0,255,.18), transparent 60%),*/
  /*  rgba(255,255,255,.03);*/
  /*backdrop-filter: blur(8px);*/
  /*border:1px solid rgba(255,255,255,.1);*/
  
}

.careers-page-hero-inner { max-width: 1100px; text-align: center; }

.careers-page-title {
  font-size: clamp(36px, 6vw, 64px);
  margin: 0 0 14px;
  background: linear-gradient(90deg,#ff007f,#7b00ff);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; color:transparent;
  letter-spacing: 1.5px;
}

.careers-page-lead {
  color:#e9e9e9; max-width: 900px; margin: 0 auto 24px;
  line-height: 1.7; font-size: clamp(16px, 2.1vw, 20px);
}

.careers-page-cta {
  display:inline-block; padding:12px 24px; border-radius: 999px;
  background: linear-gradient(90deg,#ff007f,#7b00ff);
  color:#fff; text-decoration:none; font-weight:700; letter-spacing:.5px;
  box-shadow:0 10px 30px rgba(123,0,255,.25);
  transition: transform .2s ease, opacity .2s ease;
}
.careers-page-cta:hover { transform: translateY(-2px); opacity:.95; }

/* Intro band */
.careers-page-intro { padding: 40px 0 10px; }
.careers-page-intro-inner { max-width: 960px; margin: 0 auto; text-align:center; color:#d9d9d9; }

/* Roles */
.careers-page-roles { max-width: 1200px; margin: 60px auto 0; padding:0 12px; }
.careers-page-section-h { text-align:center; margin: 0 0 28px; font-size: 28px; letter-spacing:1px; }

.careers-role-card {
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 28px;
  margin: 20px 0 32px;
  backdrop-filter: blur(10px);
  transition: transform .25s ease, box-shadow .25s ease;
  flex: 1;
 /* min-width: 340px;*/
  background: linear-gradient(145deg, rgba(50, 0, 75, 0.6), #0f002345);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(255, 0, 255, 0.05);
  border-radius: 20px;
  padding: 40px 35px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}
.careers-role-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(255,0,127,.18); }

.careers-role-card__head { display:flex; flex-direction: column; gap: 12px; }
.careers-role-card__titlewrap { display:flex; align-items:center; gap:12px; flex-wrap: wrap; }
.careers-role-card__title {
  margin:0; font-size: 27px;
  background: linear-gradient(90deg,#ff007f,#7b00ff);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; color:transparent;font-weight: 600;
}
.careers-role-card__badge {
  font-size: 12px; padding:6px 10px; border-radius:999px;
  background: rgba(255,0,127,.15); border:1px solid rgba(255,0,127,.35); color:#fff; font-weight:700; letter-spacing:.4px;
}

.careers-role-card__meta { display:flex; gap:18px; padding:0; margin:0; list-style:none; color:#cfcfcf; flex-wrap:wrap; }
.careers-role-card__meta i { margin-right:6px; }

.careers-role-card__blurb { color:#e5e5e5; margin: 8px 0 12px; }

/* Accordion (details) */
.careers-jd {
  margin: 10px 0;
  background: rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 10px 14px;
}
.careers-jd > summary {
  cursor:pointer; font-weight:700; color:#fff;
  list-style:none; position:relative; padding-right:26px;
}
.careers-jd > summary::-webkit-details-marker { display:none; }
.careers-jd > summary::after {
  content: "▾"; position:absolute; right:6px; top:0; transform: rotate(0deg);
  transition: transform .2s ease;
}
.careers-jd[open] > summary::after { transform: rotate(180deg); }

.careers-jd p, .careers-jd-list { color:#d9d9d9; margin: 10px 0 6px; }
.careers-jd-list { padding-left: 18px; }
.careers-jd-list li { margin: 6px 0; line-height: 1.6; }

/* Actions */
.careers-role-card__actions { display:flex; gap:12px; flex-wrap: wrap; margin-top: 12px; }
.careers-apply-btn, .careers-secondary-btn {
  display:inline-block; padding:10px 18px; text-decoration:none; border-radius:10px; font-weight:700;
}
.careers-apply-btn { background: linear-gradient(90deg,#ff007f,#7b00ff); color:#fff; }
.careers-secondary-btn { background: rgba(255,255,255,.08); color:#fff; border:1px solid rgba(255,255,255,.15); }

/* Contact strip */
.careers-page-contact {
  margin: 40px auto 0; text-align:center; color:#dcdcdc;
}
.careers-page-contact a { color:#40baff; text-decoration:none; }
.careers-page-contact a:hover { text-decoration:underline; }

/* Responsive */
@media (max-width: 992px){
  .careers-page { padding:60px 16px 100px; }
  .careers-role-card { padding:22px; }
  .careers-page-cta { padding:10px 20px; }
}



/*****************************************footer responsive************************************/

/*****************************************footer********************************************/

/*********************** FOOTER SECTION ************************/
/* FOOTER BASE */
.gradient-footer {
     background: #0000005e;
    color: #fff;
    padding: 52px 71px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* FOOTER COLUMNS */
.footer-column {
  flex: 1 1 30%;
  min-width: 250px;
}

/* LOGO & DESCRIPTION */
.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}
.footer-description {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  max-width: 350px;
  text-align: justify;
}

/* FOLLOW US */
.footer-social h4 {
  margin: 20px 0 10px;
  background: linear-gradient(90deg, #ff007f, #7b00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.social-icons a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
  transition: transform 0.3s, color 0.3s;
}
.social-icons a:hover {
  transform: scale(1.1);
  background: linear-gradient(90deg, #ff007f, #7b00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* NAVIGATION LINKS */
.footer-links h4 {
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ff007f, #7b00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a:hover {
  background: linear-gradient(90deg, #ff007f, #7b00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CONTACT INFO */
.footer-contact h4 {
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ff007f, #7b00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-contact a {
  color: #fff;
  text-decoration: none;
}
.footer-contact a:hover {
  background: linear-gradient(90deg, #ff007f, #7b00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBSCRIBE SECTION */
.footer-subscribe {
  margin-top: 20px;
}
.footer-subscribe h4 {
  font-size: 16px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ff007f, #7b00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.subscribe-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.subscribe-form input {
  flex: 1;
  padding: 10px;
  border-radius: 5px;
  border: none;
  outline: none;
}
.subscribe-btn {
  background: linear-gradient(90deg, #ff007f, #7b00ff);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s;
}
.subscribe-btn:hover {
  transform: scale(1.05);
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  color: #ccc;
}
.footer-bottom a {
  margin: 0 5px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.footer-bottom a:hover {
  background: linear-gradient(90deg, #ff007f, #7b00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-name {
  background: linear-gradient(90deg, #ff007f, #7b00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-column {
    flex: 1 1 100%;
    max-width: 500px;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }

  .social-icons a {
    margin: 0 10px;
  }

  .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .subscribe-form {
    flex-direction: column;
  }
  .subscribe-form input,
  .subscribe-btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .footer-description {
    font-size: 13px;
  }
  .footer-bottom {
    font-size: 12px;
  }
}
.footer-links {
  text-align: center;
}

/************************************************for why choose us section**********************************************************/

/* Add only this part (overlay behavior) */
.feature-box {
  position: relative;
  overflow: hidden;
}

/* Black overlay with white text */
.feature-box::after {
  content: attr(data-info);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: inherit;
  z-index: 10;
}

/* Show black box on hover */
.feature-box:hover::after {
  opacity: 1;
  visibility: visible;
}


#btb-offcanvas.pre-hide {
  display: none !important;
  transition: none !important;
}





.metta-btn {
  display: inline-block;        /* ensures it only fits its text */
  width: auto !important;       /* override any inherited width */
  max-width: fit-content;       /* modern browsers: tight fit */
  padding: 7px 19px;
    font-weight: 700;
    font-size: 15px;
  text-decoration: none;
  text-align: center;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.metta-btn--gradient {
  color: #fff;
  background: linear-gradient(90deg, #ff2d8b 0%, #6c63ff 100%);
  box-shadow: 0 6px 16px rgba(108, 99, 255, 0.25);
}

.metta-btn--gradient:hover {
  transform: translateY(-2px);
  opacity: 0.95;
  box-shadow: 0 10px 24px rgba(108, 99, 255, 0.35);
}




/******************************************************************/

.popup-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, #ff2d8b 0%, #6c63ff 100%);
  color: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(108, 99, 255, 0.25);
  display: none;
  z-index: 9999;
  text-align: center;
  animation: fadeInOut 3s ease forwards;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translate(-50%, -60%); }
  15% { opacity: 1; transform: translate(-50%, -50%); }
  85% { opacity: 1; transform: translate(-50%, -50%); }
  100% { opacity: 0; transform: translate(-50%, -40%); }
}

