/* =========================
   1. IMPORT FONT (OUTFIT)
========================= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');


/* =========================
   2. GLOBAL RESET + FONT
========================= */
* {
  font-family: 'Outfit', sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}


/* =========================
   3. ROOT FONT SYSTEM
========================= */
:root {
  --fs-h1: clamp(28px, 5vw, 56px);
  --fs-h2: clamp(24px, 4vw, 44px);
  --fs-h3: clamp(20px, 3vw, 32px);
  --fs-h4: clamp(18px, 2.5vw, 28px);
  --fs-h5: clamp(16px, 2vw, 24px);
  --fs-h6: clamp(14px, 1.8vw, 20px);

  --fs-body: clamp(14px, 1.5vw, 18px);
  --fs-small: clamp(12px, 1.2vw, 14px);
  --fs-btn: clamp(14px, 1.5vw, 16px);
}


/* =========================
   4. BASE TYPOGRAPHY
========================= */
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-size: var(--fs-body);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}


/* =========================
   5. HEADINGS
========================= */
h1 {
  font-size: var(--fs-h1);
  line-height: 1.2;
  font-weight: 700;
}

h2 {
  font-size: var(--fs-h2);
  line-height: 1.25;
  font-weight: 600;
}

h3 {
  font-size: var(--fs-h3);
  font-weight: 600;
}

h4 {
  font-size: var(--fs-h4);
}

h5 {
  font-size: var(--fs-h5);
}

h6 {
  font-size: var(--fs-h6);
}


/* =========================
   6. TEXT ELEMENTS
========================= */
/* p,
span,
li,
a {
  font-size: var(--fs-body);
  line-height: 1.6;
}

small {
  font-size: var(--fs-small);
} */


/* =========================
   7. BUTTONS
========================= */
/* button,
.btn,
input[type="button"],
input[type="submit"] {
  font-size: var(--fs-btn);
  font-weight: 500;
  font-family: 'Outfit', sans-serif !important;
} */


/* =========================
   8. RESPONSIVE TWEAKS
========================= */
@media (max-width: 768px) {
  html {
    font-size: 95%;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 90%;
  }
}


/* =========================
   9. OPTIONAL: FIX LINK STYLE
========================= */
/* a {
  text-decoration: none;
  color: inherit;
} */

header.style-2 .company-logo img {
  width: 175px;
}



/* feature section modifications
 */



.backdrop-blur {
  --tw-backdrop-blur: blur(8px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.home8-contact-section .contact-wrapper .btn-area .copy-email-btn {
  text-transform: math-auto;
}

.home4-counter-section .title {
  color: var(--white-color);
  font-family: var(--font-felidae);
  font-weight: 400;
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 0;
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  gap: 35px;
  padding: 30px 0px;
}


.portfolio-dt-banner-section .portfolio-dt-page-title-area h1 {
  color: var(--title-color);
  font-family: var(--font-spaceGrotesk);
  font-weight: 500;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 0;
  text-align: center;
}

/* ===============================
DRX Glass Video Section
================================ */

.drx-video-glass-section {
  position: relative;
  height: 1080px;
  overflow: hidden;
}

/* Background Video */

.drx-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */

.drx-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.65));
}

/* Glass Card */

.drx-glass-card {

  max-width: 720px;
  padding: 50px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.2);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);

  color: #fff;

}

/* Heading */

.drx-glass-card h2 {
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 20px;

  color: inherit;
  font-family: inherit;
  font-weight: inherit;
}

/* Paragraph */

.drx-glass-card p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;

  color: inherit;
  font-family: inherit;
}

/* Button */

.drx-glass-btn {

  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;

  background: rgba(255, 255, 255, 0.2);

  border-radius: 40px;

  border: 1px solid rgba(255, 255, 255, 0.4);

  color: #fff;
  text-decoration: none;

  font-family: inherit;
  font-weight: inherit;

  transition: all 0.35s ease;

  backdrop-filter: blur(10px);
}

/* Button Hover */

.drx-glass-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

/* ===============================
Responsive
================================ */

@media (max-width:992px) {

  .drx-video-glass-section {
    height: 650px;
  }

  .drx-glass-card {
    padding: 40px;
  }

  .drx-glass-card h2 {
    font-size: 36px;
  }

}

@media (max-width:768px) {

  .drx-video-glass-section {
    height: 600px;
  }

  .drx-glass-card {
    padding: 30px;
  }

  .drx-glass-card h2 {
    font-size: 30px;
  }

  .drx-glass-card p {
    font-size: 15px;
  }

}

@media (max-width:480px) {

  .drx-video-glass-section {
    height: 520px;
  }

  .drx-glass-card {
    padding: 25px;
  }

  .drx-glass-card h2 {
    font-size: 26px;
  }

}

.home4-service-section .service-wrapper .accordion .accordion-item .accordion-header .accordion-button h2 {
  font-family: var(--font-spaceGrotesk);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to right, var(--title-color) 50%, var(--dark-text-color) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  margin-bottom: 0;
  padding-right: 50px;
}

.home4-service-section .service-wrapper .accordion .accordion-item .accordion-body .service-content {
  max-width: 45vw;
  width: 100%;
  text-align: justify;
}
@media (max-width: 991px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-body .service-content {
        max-width: unset;
    }
}

/* infra section modifications */
.home4-service-section .service-wrapper .accordion .accordion-item {
  border: unset;
  border-radius: unset;
  background-color: #ffdcca;
  padding: 30px 0px;
  margin-bottom: unset;
  /* border-bottom: solid 1px  #e85102; */
}
.home4-service-section .service-wrapper .accordion .accordion-item .accordion-header {
    padding: 0 50px 40px;
    border-bottom: 1px dotted #e85102;}
.new-bg {
    background: #ffdcca;
    padding: 80px 0px;
}

.home6-portfolio-section .porfolio-title-area h2 {
    color: #e85102;
    font-family: var(--font-tartuffo-Trial);
    font-weight: 300;
    font-size: 12rem;
    line-height: 1;
    margin-bottom: 0;
    position: relative;
    z-index: -1;
}

.home5-service-section .service-card2::before

 {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FFFFFF 50.17% 80.17%, #e6241529 100%);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: 0.5s;
}

.home5-process-section .process-wrapper .process-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: solid 0.5px #e8e8e8;
}

.home5-process-section .process-wrapper .process-list .single-process {
    border-bottom: solid 0.5px #e8e8e8;
    padding: 30px !important;
}

.home5-process-section .process-wrapper .process-list .single-process:hover {
    background: #e85102;
    color: #fff;
    transition: 0.3s;
}

.home5-process-section .process-wrapper .process-list .single-process:hover h3 {
    color: #fff;
}
.home5-process-section .process-wrapper .process-list .single-process:hover p {
    color: #fff;
}

/* ------------------------------------------------*/
/* Elements - Cursor Start */
/* ------------------------------------------------*/
:root {
  --bg-1: #090a0f;
  --bg-2: #121726;
  --text: #f3f6ff;
  --muted: #9ca8c7;
  --accent: #97f7e1;
  --stroke: rgba(255, 255, 255, 0.22);
}
.section-ban {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 3vw, 3rem);
  background:
    radial-gradient(1200px circle at 80% -10%, rgba(151, 247, 225, 0.12), transparent 50%),
    radial-gradient(900px circle at -10% 100%, rgba(150, 189, 255, 0.15), transparent 52%),
    linear-gradient(145deg, var(--bg-1), var(--bg-2));
}

.mxd-trail-transparent-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
   mix-blend-mode: difference;
}

.mxd-trail-transparent-content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mxd-trail-transparent-image {
  display: inline-block;
  position: absolute;
  object-fit: contain;
  will-change: transform, opacity, z-index;
  transform-origin: center center;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
}

.section-ban__content {
  position: relative;
  z-index: 2;
  width: min(90vw, 900px);
  text-align: center;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.section-ban__eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
  font-size: clamp(0.7rem, 1.2vw, 0.9rem);
}

.section-ban h1 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(2rem, 7.5vw, 6rem);
  line-height: 1;
  z-index: 3;
  color: #FFFFFF;
  text-align: center;
}

.section-ban h1 small {
  margin-top: 0.7rem;
  display: block;
  font-size: clamp(1rem, 2.2vw, 1.8rem);
  line-height: 1.2;
  color: var(--muted);
    text-align: center;
}

.section-ban__button {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  text-decoration: none;
    text-align: center;
  color: var(--text);
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.section-ban__button:hover {
  background-color: var(--accent);
  color: #04140f;
  border-color: var(--accent);
}

/* ------------------------------------------------*/
/* Elements - Cursor End */
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* DRX Upcoming + Expansion Sections */
/* ------------------------------------------------*/
.drx-upcoming-section,
.drx-expansion-section {
  position: relative;
  overflow: hidden;
}

.drx-upcoming-section {
  background:
    radial-gradient(1000px circle at 8% 10%, rgba(255, 107, 30, 0.22), transparent 48%),
    radial-gradient(900px circle at 90% 100%, rgba(250, 142, 82, 0.18), transparent 52%),
    linear-gradient(180deg, #0e0e0e 0%, #151515 100%);
}

.drx-expansion-section {
  background:
    radial-gradient(700px circle at 90% 14%, rgba(255, 107, 30, 0.16), transparent 52%),
    linear-gradient(180deg, #151515 0%, #0d0d0d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drx-section-heading {
  max-width: 860px;
  margin: 0 auto 55px;
}

.drx-section-heading span {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #ffb185;
  margin-bottom: 14px;
}

.drx-section-heading h2 {
  color: #ffffff;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.15;
  margin-bottom: 14px;
}

.drx-section-heading p {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 0;
  font-size: 17px;
}

.drx-ai-visual-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.35);
  transform-style: preserve-3d;
}

.drx-ai-visual-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.drx-ai-visual {
  width: 100%;
  height: auto;
  display: block;
}

.drx-ai-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: rgba(14, 14, 14, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 10px 14px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.drx-upcoming-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.drx-upcoming-card {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 24px;
  min-height: 205px;
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.drx-upcoming-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 30, 0.9);
  background: linear-gradient(170deg, rgba(255, 107, 30, 0.16), rgba(255, 255, 255, 0.06));
}

.drx-upcoming-card h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}

.drx-upcoming-card p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
  line-height: 1.65;
}

.drx-expansion-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.drx-expansion-item {
  position: relative;
  padding: 24px 24px 24px 34px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.drx-expansion-item::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 22px;
  width: 7px;
  height: calc(100% - 44px);
  border-radius: 10px;
  background: linear-gradient(180deg, #ff6b1e, #fa8e52);
}

.drx-expansion-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 30, 0.85);
}

.drx-expansion-item .phase {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffb185;
}

.drx-expansion-item h3 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 10px;
}

.drx-expansion-item p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .drx-upcoming-grid,
  .drx-expansion-timeline {
    grid-template-columns: 1fr;
  }

  .drx-section-heading {
    margin-bottom: 38px;
  }

  .drx-upcoming-card {
    min-height: unset;
  }
}

@media (max-width: 767px) {
  .drx-upcoming-section,
  .drx-expansion-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .drx-section-heading {
    text-align: center;
  }

  .drx-section-heading h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .drx-section-heading p {
    font-size: 15px;
  }

  .drx-upcoming-card,
  .drx-expansion-item {
    text-align: center;
  }

  .drx-expansion-item {
    padding-left: 24px;
  }

  .drx-expansion-item::before {
    left: 50%;
    top: 8px;
    width: 70px;
    height: 4px;
    transform: translateX(-50%);
  }

  .drx-ai-badge {
    right: 12px;
    bottom: 12px;
    font-size: 11px;
    padding: 8px 12px;
  }
}