:root {
    --bg-dark: #0a0503;
    --bg-accent: #3d1205;
    --accent-orange: #ff4d1c;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    min-height: 100vh;
}
/* --- EXISTING HERO STYLES --- */
.hero {
    min-height: 120vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 8%;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-accent) 50%, var(--bg-dark) 100%);
}

@keyframes slideInLeft { from { opacity: 0; transform: translateX(-80px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(80px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideUpAppear { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
@keyframes iconPop { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }

.side-nav { position: absolute; right: 40px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 35px; z-index: 10; }
.side-nav a { color: var(--accent-orange); text-decoration: none; font-size: 20px; opacity: 0; animation: iconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; transition: 0.3s; }
.side-nav a:nth-child(1) { animation-delay: 0.8s; }
.side-nav a:nth-child(2) { animation-delay: 1.0s; }
.side-nav a:nth-child(3) { animation-delay: 1.2s; }
.side-nav a:nth-child(4) { animation-delay: 1.4s; }
.side-nav a:hover { color: white; transform: scale(1.3); }

.container { display: flex; justify-content: space-between; align-items: center; width: 100%; z-index: 2; gap: 40px; }
.content-left { flex: 1; animation: slideInLeft 1.2s ease-out forwards; }
.content-right { flex: 0 0 400px; display: flex; flex-direction: column; animation: slideInRight 1.2s ease-out forwards; }
.image-wrapper { display: flex; justify-content: center; align-items: center; }
.description { color: var(--text-gray); line-height: 1.7; font-size: 15px; max-width: 340px; margin-top: 25px; opacity: 0; animation: slideUpAppear 1.2s forwards; animation-delay: 1.6s; }
.hero .subtitle { color: var(--accent-orange); font-style: italic; margin-bottom: 24px; font-size: 18px; display: block; }
.hero h1 { font-size: clamp(40px, 6vw, 85px); line-height: 1.05; font-weight: 700; margin-bottom: 60px; letter-spacing: -2px; }
.highlight { position: relative; display: inline-block; padding: 0 10px; }
.highlight::after { content: ""; position: absolute; left: -5%; top: 5%; width: 110%; height: 100%; border: 2px solid var(--accent-orange); border-radius: 50%; transform: rotate(-1.5deg); }
.main-img { width: 320px; height: 360px; border-radius: 160px 160px 0 160px; object-fit: cover; }

.cta-section { display: inline-flex; align-items: center; gap: 20px; cursor: pointer; animation: softFloat 4s ease-in-out infinite; }
.arrow-btn { width: 70px; height: 70px; border-radius: 50%; background: #000; display: flex; align-items: center; justify-content: center; border: 1px solid #333; transition: 0.4s; }
.cta-section:hover .arrow-btn { background: var(--accent-orange); border-color: var(--accent-orange); }
.learn-more-btn { font-size: 28px; font-weight: 700; color: var(--text-white); text-decoration: none; transition: color 0.3s; }
.learn-more-btn:hover { color: var(--accent-orange); }

/* --- MARQUEE STYLES --- */
.marquee-section { padding: 60px 0; background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark) 40%, var(--bg-accent) 70%, var(--bg-dark) 100%); }
.marquee-container { width: 85%; max-width: 1100px; margin: 40px auto; background: #000000; border: 1px solid #333333; padding: 15px 0; overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); }
.marquee-track { display: flex; width: max-content; animation: scroll 30s linear infinite; }
.logo-card { width: 300px; height: 100px; display: flex; align-items: center; justify-content: center; border-right: 1px solid #1f1f1f; padding: 0 40px; transition: color 0.3s ease; }
.logo-card:hover { color: var(--accent-orange); }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Custom dark radial gradient to match your screenshot */
.bg-custom-dark {
    background: radial-gradient(circle at center, #2d1209 0%, #000000 100%);
}
@keyframes softFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* --- NEW SERVICES SECTION STYLES --- */
.services-section { padding: 100px 8%; background-color: var(--bg-dark); border-top: 1px solid #1a1a1a; }
.services-header-top { color: var(--accent-orange); font-size: 14px; text-decoration: underline; margin-bottom: 20px; }

.services-header-row {
    display: flex; justify-content: space-between; align-items: flex-end;
    border-top: 1px solid #222; padding-top: 30px; margin-bottom: 60px;
}

.services-header-row h2 { font-size: 56px; font-weight: 700; line-height: 1.1; }
.services-header-row h2 span { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; }
.more-about { color: var(--text-white); text-decoration: none; font-weight: 700; font-size: 24px; transition: color 0.3s ease; }
.more-about:hover { color: var(--accent-orange); }

.services-grid { display: flex; gap: 30px; align-items: flex-start; }
.services-list { flex: 1.2; }
.services-image { flex: 1; display: flex; justify-content: center; }
.slide-left { transform: translateX(-100px); }
.slide-left.active { transform: translateX(0); }
.slide-right { transform: translateX(100px); }
.slide-right.active { transform: translateX(0); }
.services-image img { width: 100%; max-width: 450px; animation: softFloat 3s ease-in-out infinite; }

.service-item { border: 1px solid #1a1a1a; padding: 30px; margin-top: -1px; cursor: pointer; transition: 0.3s; }
.service-item.active { background-color: #0c0807; }
.item-main { display: flex; align-items: center; }
.service-item i { font-size: 28px; margin-right: 25px; width: 35px; color: var(--text-white); transition: color 0.3s ease; }
.service-item h3 { font-size: 24px; flex-grow: 1; font-weight: 500; transition: color 0.3s ease; }
.item-main:hover i, .item-main:hover h3, .item-main:hover .item-num { color: var(--accent-orange); }
.item-num { font-size: 14px; font-weight: 700; transition: color 0.3s ease; }

.item-desc {
    max-height: 0; opacity: 0; overflow: hidden; margin-left: 60px;
    color: var(--text-gray); font-size: 15px; line-height: 1.6;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-item.active .item-desc { max-height: 150px; opacity: 1; margin-top: 20px; }

/* --- SCROLL ANIMATION CLASSES --- */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* --- CUSTOM ANIMATIONS FOR SERVICE PAGE --- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 1s ease-out forwards;
}

.animate-slide-left {
    animation: slideLeft 1s ease-out forwards;
}

.animate-slide-right {
    animation: slideRight 1s ease-out forwards;
}

.animate-bounce-in {
    animation: bounceIn 1s ease-out forwards;
}

/* --- TRUSTED PARTNERS SECTION STYLES --- */
.trusted-partners-section {
    background: #1a1a1a;
    padding: 80px 8%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.trusted-partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
     background: radial-gradient(circle at center, #2d1209 0%, #000000 100%);
                   
    pointer-events: none;
}

.trusted-partners-title {
    color: #ffffff;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 4rem;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.partner-item {
    flex: 1;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.partner-item:last-child {
    border-right: none;
}

.partner-item:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(8, 3, 1, 0.1);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(255, 77, 28, 0.3),
                0 0 60px rgba(255, 77, 28, 0.2);
}

.partner-item:hover .counter {
    color: var(--accent-orange);
    text-shadow: 0 0 20px rgba(255, 77, 28, 0.8);
}

.partner-item:hover .partner-label {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.counter {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.counter::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.partner-item:hover .counter::after {
    width: 100%;
}

.partner-label {
    color: #a0a0a0;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

/* Pulse animation for counters */
.counter {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.partner-item:hover .counter {
    animation: none;
}

@media (max-width: 768px) {
  .partners-grid {
    flex-direction: column;
    gap: 2rem;
  }
  .partner-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 1rem;
  }
  .partner-item:last-child {
    border-bottom: none;
  }
  .trusted-partners-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
    .services-grid { flex-direction: column; }
    .services-header-row { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* All styles prefixed with .mz-impact- to prevent mixing with your other code */
.mz-impact-section {
    background-color: #111;
    color: #ffffff;
    padding: 60px 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden;
}

.mz-impact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* Allows stacking on mobile */
    gap: 40px;
    align-items: center;
}

.mz-impact-visual, .mz-impact-content {
    flex: 1;
    min-width: 320px; /* Forces stack on very small phones */
}

/* Image & Arrow */
.mz-impact-img-holder { position: relative; }
.mz-impact-img-holder img {
    width: 100%;
    filter: grayscale(100%);
    border-radius: 4px;
    display: block;
}
.mz-impact-arrow {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 100px;
    height: 100px;
    opacity: 0.8;
}

/* Typography */
.mz-impact-tag { color: #ff5722; font-style: italic; display: block; margin-bottom: 10px; }
.mz-impact-title { font-size: clamp(24px, 5vw, 42px); line-height: 1.2; margin-bottom: 20px; }
.mz-impact-outline {
    border: 1px solid #ff5722;
    border-radius: 40px;
    padding: 2px 15px;
    display: inline-block;
}
.mz-impact-desc { color: #aaa; margin-bottom: 30px; line-height: 1.6; font-size: 15px; }

/* Horizontal Progress */
.mz-impact-skill-header { display: flex; justify-content: space-between; font-size: 12px; font-weight: bold; margin-bottom: 8px; }
.mz-impact-bar-bg { background: #333; height: 4px; width: 100%; margin-bottom: 40px; }
.mz-impact-bar-fill { background: #ff5722; height: 100%; width: 0; transition: width 2s ease-in-out; }

.mz-impact-section.mz-active .mz-impact-bar-fill {
    width: 83%;
}

/* Circles Grid */
.mz-impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 15px;
}
.mz-impact-circle-item { text-align: center; }
.mz-impact-circle-box {
    position: relative; width: 90px; height: 90px; margin: 0 auto 10px;
    display: flex; align-items: center; justify-content: center;
}
.mz-impact-circle-box svg { position: absolute; transform: rotate(-90deg); }
.mz-circle-bg { fill: transparent; stroke: #333; stroke-width: 4; }
.mz-circle-progress {
    fill: transparent; stroke: #ff5722; stroke-width: 4;
    stroke-dasharray: 251.2; stroke-dashoffset: 251.2;
    transition: stroke-dashoffset 2s ease-in-out;
}
.mz-impact-circle-txt { font-size: 18px; font-weight: bold; }
.mz-impact-circle-label { font-size: 11px; text-transform: uppercase; color: #fff; display: block; }

/* Tablet/Mobile Adjustments */
@media (max-width: 768px) {
    .mz-impact-wrapper { flex-direction: column; text-align: center; }
    .mz-impact-skill-header { justify-content: center; gap: 20px; }
    .mz-impact-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* All styles prefixed with .mz-impact- to prevent mixing with your other code */
.mz-impact-section {
    background-color: #111;
    color: #ffffff;
    padding: 60px 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden; /* Important to hide the image when it is "off-screen" */
}

.mz-impact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

/* --- IMAGE ANIMATION LOGIC --- */
.mz-impact-visual {
    flex: 1;
    min-width: 320px;
    /* Start State: Hidden and shifted left */
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1.2s cubic-bezier(0.24, 1, 0.32, 1);
}

.mz-impact-content {
    flex: 1;
    min-width: 320px;
    /* Optional: Side animation for text too */
    opacity: 0;
    transform: translateX(50px);
    transition: all 1.2s ease-out;
}

/* This class is added by JavaScript when the user scrolls to the section */
.mz-impact-section.mz-active .mz-impact-visual,
.mz-impact-section.mz-active .mz-impact-content {
    opacity: 1;
    transform: translateX(0);
}

/* Image & Arrow */
.mz-impact-img-holder { position: relative; }
.mz-impact-img-holder img {
    width: 100%;
    filter: grayscale(100%);
    border-radius: 4px;
    display: block;
}
.mz-impact-arrow {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 100px;
    height: 100px;
    opacity: 0.8;
}

/* Typography */
.mz-impact-tag { color: #ff5722; font-style: italic; display: block; margin-bottom: 10px; }
.mz-impact-title { font-size: clamp(24px, 5vw, 42px); line-height: 1.2; margin-bottom: 20px; }
.mz-impact-outline {
    border: 1px solid #ff5722;
    border-radius: 40px;
    padding: 2px 15px;
    display: inline-block;
}
.mz-impact-desc { color: #aaa; margin-bottom: 30px; line-height: 1.6; font-size: 15px; }

/* Horizontal Progress */
.mz-impact-skill-header { display: flex; justify-content: space-between; font-size: 12px; font-weight: bold; margin-bottom: 8px; }
.mz-impact-bar-bg { background: #333; height: 4px; width: 100%; margin-bottom: 40px; }

/* Modified Fill: Only fills when parent has .mz-active class */
.mz-impact-section.mz-active .mz-impact-bar-fill {
    background: #ff5722;
    height: 100%;
    width: 83%; /* This can be set via JS or data-attribute */
    transition: width 2s ease-in-out;
}

/* Circles Grid */
.mz-impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 15px;
}
.mz-impact-circle-item { text-align: center; }
.mz-impact-circle-box {
    position: relative; width: 90px; height: 90px; margin: 0 auto 10px;
    display: flex; align-items: center; justify-content: center;
}
.mz-impact-circle-box svg { position: absolute; transform: rotate(-90deg); }
.mz-circle-bg { fill: transparent; stroke: #333; stroke-width: 4; }
.mz-circle-progress {
    fill: transparent; stroke: #ff5722; stroke-width: 4;
    stroke-dasharray: 251.2;
    stroke-dashoffset: 251.2; /* Hidden initially */
    transition: stroke-dashoffset 2s ease-in-out;
}
.mz-impact-circle-txt { font-size: 18px; font-weight: bold; }
.mz-impact-circle-label { font-size: 11px; text-transform: uppercase; color: #fff; display: block; }

/* Tablet/Mobile Adjustments */
@media (max-width: 768px) {
    .mz-impact-wrapper { flex-direction: column; text-align: center; }
    .mz-impact-visual { transform: translateY(50px); } /* Slide up on mobile instead of side */
    .mz-impact-skill-header { justify-content: center; gap: 20px; }
    .mz-impact-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

:root {
    --mz-orange: #ff5722;
    --mz-bg: #111;
    --mz-card: #1a1a1a;
}

.mz-pkg-section {
    background-color: var(--mz-bg);
    color: #fff;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
}

.mz-pkg-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mz-pkg-header { text-align: center; margin-bottom: 60px; }
.mz-pkg-subtitle { color: var(--mz-orange); font-style: italic; }
.mz-pkg-title { font-size: clamp(28px, 5vw, 42px); margin-top: 10px; }

.mz-pkg-grid {
    display: flex;
    flex-wrap: nowrap; /* Keeps cards in a single line */
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.mz-pkg-card {
    background: var(--mz-card);
    padding: 50px 40px;
    border-radius: 12px;
    flex: 1;
    min-width: 300px; /* Minimum width for phone optimization */
    max-width: 380px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mz-pkg-card:hover {
    transform: translateY(-20px) scale(1.05); /* Card pops up and grows */
    border-color: var(--mz-orange);
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.2);
    z-index: 10;
}

.mz-pkg-price { font-size: 3rem; font-weight: 800; margin-bottom: 30px; }
.mz-pkg-price span { font-size: 0.9rem; color: #888; font-weight: normal; }

.mz-pkg-features { list-style: none; padding: 0; margin-bottom: 40px; text-align: left; }
.mz-pkg-features li { margin-bottom: 15px; color: #bbb; display: flex; align-items: center; }
.mz-pkg-features li.disabled { color: #555; text-decoration: line-through; }
.mz-pkg-features i { color: var(--mz-orange); margin-right: 10px; font-style: normal; }

.mz-pkg-btn {
    display: block;
    padding: 15px;
    border: 2px solid var(--mz-orange);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.mz-pkg-card:hover .mz-pkg-btn {
    background: var(--mz-orange);
}

.mz-pkg-featured {
    border-color: var(--mz-orange);
    background: #222;
}

@media (max-width: 1024px) {
    .mz-pkg-grid { gap: 20px; }
}

@media (max-width: 768px) {
    .mz-pkg-grid {
        gap: 15px;
    }
    .mz-pkg-card {
        min-width: 200px; /* Reduced to fit three in line on tablets */
        flex: 1; /* Allow equal distribution */
    }
    .mz-pkg-card:hover {
        transform: translateY(-10px); /* Smaller lift for mobile screens */
    }
}

.testi-v2-section {
  background-color: #0a0a0a; /* Dark background from video */
  color: #ffffff;
  padding: 60px 0;
  overflow: hidden;
  font-family: sans-serif;
}

.testi-v2-header { padding-left: 5%; margin-bottom: 40px; }
.testi-v2-subtitle { color: #ff3c3c; font-size: 14px; text-transform: uppercase; margin: 0; }
.testi-v2-title { font-size: clamp(2rem, 5vw, 3.5rem); margin: 10px 0; font-weight: bold; }

.testi-v2-wrapper {
  width: 100%;
  display: flex;
}

.testi-v2-track {
  display: flex;
  gap: 40px;
  animation: testiSlide 25s linear infinite; /* Control speed here */
}

@keyframes testiSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testi-v2-card {
  min-width: 380px;
  padding: 25px;
  border-bottom: 1px solid #222; /* Suble line from video */
  transition: 0.3s;
}

.testi-v2-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testi-v2-top img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-v2-quote {
  font-size: 70px;
  color: #ff3c3c;
  font-family: Georgia, serif;
  opacity: 0.4;
  line-height: 0;
}

.testi-v2-text {
  color: #a0a0a0;
  line-height: 1.7;
  margin: 25px 0;
  font-size: 16px;
}

.testi-v2-author { font-weight: bold; font-size: 18px; }
.testi-v2-author span { color: #ff3c3c; font-size: 13px; font-weight: normal; }

.testi-v2-wrapper:hover .testi-v2-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .testi-v2-card { min-width: 300px; }
  .testi-v2-track { animation-duration: 15s; } /* Moves faster for smaller screens */
}

.custom-ticker-section {
  width: 100%;
  background: #000000;
  overflow: hidden;
  padding: 35px 0;
  display: flex;
  align-items: center;
}

.custom-ticker-container {
  display: flex;
  width: max-content;
}

.custom-ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: custom-scroll-animation 20s linear infinite;
}

.custom-ticker-text {
  color: #ffffff;
  font-family: 'Arial Black', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  padding: 0 40px;
  text-transform: uppercase;
}

.custom-ticker-logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-ticker-logo svg {
  width: 100%;
  height: auto;
}

@keyframes custom-scroll-animation {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.custom-ticker-section:hover .custom-ticker-track {
  animation-play-state: paused;
}

body { font-family: 'Inter', sans-serif; background-color: #000; color: #fff; overflow-x: hidden; }

.pill-animation {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.magnetic-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
}

.service-card {
cursor: crosshair;
transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.service-card:hover {
transform: translateY(-5px);
border-color: #3f3f46;
}

.mz-pkg-name { font-weight: bold; font-size: 1.1rem; display: block; margin-bottom: 15px; }

.avtrix-contact-wrapper {
    background-color: #000;
    color: #fff;
    padding-bottom: 80px;
    font-family: 'Segoe UI', sans-serif;
}

.avtrix-top-banner {
    text-align: center;
    padding: 80px 20px;
    background: radial-gradient(circle at center, #451607 0%, #000 75%);
}

.avtrix-breadcrumbs {
    color: #666;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.avtrix-breadcrumbs span { color: #fff; font-weight: bold; }
.avtrix-main-title { font-size: clamp(40px, 8vw, 75px); font-weight: 900; }

.avtrix-content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 30px;
}

.avtrix-info-panel {
    padding: 40px 0;
}

.avtrix-section-heading { font-size: 38px; margin-bottom: 20px; }
.avtrix-text-muted { color: #888; margin-bottom: 40px; line-height: 1.6; }
.avtrix-grid-info { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.info-box strong { display: block; margin-bottom: 8px; font-size: 18px; }
.info-box p { color: #aaa; }

.avtrix-social-row { display: flex; gap: 12px; margin-top: 10px; }
.avtrix-social-row a {
    color: #666; border: 1px solid #333; width: 38px; height: 38px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: 0.3s ease;
}
.avtrix-social-row a:hover { background: #ff4d29; border-color: #ff4d29; color: #fff; transform: translateY(-3px); }

.avtrix-form-panel {
    background: #080808;
    padding: 45px;
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.avtrix-input-split { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

.avtrix-form-panel input, .avtrix-form-panel textarea {
    width: 100%; background: #111; border: 1px solid #222;
    color: #fff; padding: 18px; margin-bottom: 15px; outline: none; transition: 0.3s;
    font-family: 'Inter', sans-serif;
}
.avtrix-form-panel input:focus, .avtrix-form-panel textarea:focus, .avtrix-form-panel select:focus { border-color: #ff4d29; box-shadow: 0 0 10px rgba(255, 77, 41, 0.1); }

.avtrix-form-panel select {
    width: 100%; background: #111; border: 1px solid #222;
    color: #fff; padding: 18px; margin-bottom: 15px; outline: none; transition: 0.3s;
    font-family: 'Inter', sans-serif;
}

.payment-methods {
    margin-bottom: 20px;
}

.payment-methods p {
    margin-bottom: 15px;
    font-weight: bold;
}

.payment-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.pay-option {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #111;
    border: 1px solid #222;
    padding: 15px;
    border-radius: 5px;
    transition: 0.3s;
    cursor: pointer;
}

.pay-option:hover {
    border-color: #ff4d29;
}

.pay-option input[type="radio"] {
    margin: 0;
}

.avtrix-btn-primary {
    background: #ff4d29; color: #fff; border: none; padding: 18px 35px;
    font-weight: bold; cursor: pointer; transition: 0.3s; font-size: 16px;
}
.avtrix-btn-primary:hover { background: #e63e1c; transform: scale(1.02); }

.avtrix-status-msg {
    text-align: center;
    padding: 20px;
    transition: opacity 0.5s ease;
}
.avtrix-status-msg h3 { color: #ff4d29; font-size: 28px; margin-bottom: 10px; }
.avtrix-status-msg p { color: #aaa; font-size: 16px; }

.hidden { display: none !important; }

@media (max-width: 900px) {
    .avtrix-content-container { grid-template-columns: 1fr; }
    .avtrix-input-split { grid-template-columns: 1fr; gap: 0; }
    .avtrix-btn-primary { width: 100%; }
    .avtrix-form-panel { padding: 30px 20px; }
}

/* --- RESPONSIVE DESIGN FOR MOBILE, TABLET, LAPTOP, AND DESKTOP --- */

/* Ultra-wide Desktop: min-width 1441px */
@media (min-width: 1441px) {
  .hero {
    padding: 0 12%;
  }

  .container {
    gap: 80px;
  }

  .content-left {
    flex: 1.3;
  }

  .content-right {
    flex: 0 0 500px;
  }

  .main-img {
    width: 450px;
    height: 500px;
  }

  .services-section {
    padding: 140px 12%;
  }

  .services-header-row h2 {
    font-size: 72px;
  }

  .services-grid {
    gap: 50px;
  }

  .marquee-container {
    width: 85%;
    max-width: 1400px;
  }

  .logo-card {
    width: 400px;
    padding: 0 60px;
  }

  .trusted-partners-section {
    padding: 120px 12%;
  }

  .trusted-partners-title {
    font-size: 3.5rem;
  }

  .partners-grid {
    gap: 2.5rem;
  }

  .mz-pkg-section {
    padding: 120px 12%;
  }

  .mz-pkg-grid {
    gap: 50px;
  }

  .mz-pkg-card {
    min-width: 400px;
    max-width: 450px;
  }

  .testi-v2-section {
    padding: 100px 12%;
  }

  .testi-v2-card {
    min-width: 480px;
  }

  .custom-ticker-text {
    font-size: clamp(3.5rem, 6vw, 6rem);
  }
}

/* Desktop: min-width 1025px and max-width 1440px */
@media (min-width: 1025px) and (max-width: 1440px) {
  .hero {
    padding: 0 8%;
  }

  .container {
    gap: 60px;
  }

  .content-left {
    flex: 1.2;
  }

  .content-right {
    flex: 0 0 450px;
  }

  .main-img {
    width: 400px;
    height: 450px;
  }

  .services-section {
    padding: 120px 8%;
  }

  .services-header-row h2 {
    font-size: 64px;
  }

  .services-grid {
    gap: 40px;
  }

  .marquee-container {
    width: 90%;
    max-width: 1200px;
  }

  .logo-card {
    width: 350px;
    padding: 0 50px;
  }

  .trusted-partners-section {
    padding: 100px 8%;
  }

  .trusted-partners-title {
    font-size: 3rem;
  }

  .partners-grid {
    gap: 2rem;
  }

  .mz-pkg-section {
    padding: 100px 8%;
  }

  .mz-pkg-grid {
    gap: 40px;
  }

  .mz-pkg-card {
    min-width: 350px;
    max-width: 400px;
  }

  .testi-v2-section {
    padding: 80px 8%;
  }

  .testi-v2-card {
    min-width: 420px;
  }

  .custom-ticker-text {
    font-size: clamp(3rem, 5vw, 5rem);
  }
}

/* Laptop: min-width 769px and max-width 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    padding: 0 6%;
    min-height: 90vh;
  }

  .container {
    gap: 40px;
  }

  .content-left {
    flex: 1.1;
  }

  .content-right {
    flex: 0 0 350px;
  }

  .main-img {
    width: 320px;
    height: 360px;
  }

  .hero h1 {
    font-size: clamp(45px, 7vw, 70px);
    margin-bottom: 50px;
  }

  .description {
    font-size: 16px;
    max-width: 400px;
  }

  .cta-section {
    gap: 18px;
  }

  .arrow-btn {
    width: 65px;
    height: 65px;
  }

  .learn-more-btn {
    font-size: 26px;
  }

  .services-section {
    padding: 80px 6%;
  }

  .services-header-row h2 {
    font-size: 50px;
  }

  .services-grid {
    gap: 30px;
  }

  .service-item {
    padding: 28px;
  }

  .item-main {
    gap: 20px;
  }

  .service-item i {
    font-size: 26px;
    margin-right: 20px;
  }

  .service-item h3 {
    font-size: 22px;
  }

  .marquee-container {
    width: 92%;
    max-width: 1000px;
  }

  .logo-card {
    width: 280px;
    padding: 0 35px;
    height: 90px;
  }

  .trusted-partners-section {
    padding: 80px 6%;
  }

  .trusted-partners-title {
    font-size: 2.5rem;
  }

  .partners-grid {
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
  }

  .partner-item {
    padding: 2rem 1rem;
  }

  .counter {
    font-size: 2.8rem;
  }

  .mz-impact-section {
    padding: 70px 6%;
  }

  .mz-impact-wrapper {
    gap: 35px;
  }

  .mz-impact-title {
    font-size: clamp(32px, 5vw, 40px);
  }

  .mz-impact-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .mz-pkg-section {
    padding: 80px 6%;
  }

  .mz-pkg-grid {
    gap: 30px;
    flex-wrap: wrap;
  }

  .mz-pkg-card {
    min-width: 280px;
    max-width: 350px;
    padding: 45px 35px;
  }

  .mz-pkg-price {
    font-size: 2.8rem;
  }

  .mz-pkg-features li {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .mz-pkg-btn {
    padding: 14px 28px;
    font-size: 15px;
  }

  .testi-v2-section {
    padding: 60px 6%;
  }

  .testi-v2-card {
    min-width: 350px;
    padding: 22px;
  }

  .testi-v2-text {
    font-size: 15px;
  }

  .testi-v2-author {
    font-size: 17px;
  }

  .custom-ticker-text {
    font-size: clamp(2.5rem, 4vw, 4rem);
  }

  .custom-ticker-section {
    padding: 32px 0;
  }

  .avtrix-portfolio-section {
    padding: 70px 6%;
  }

  .avtrix-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .avtrix-portfolio-item img {
    height: 280px;
  }

  .avtrix-portfolio-content h3 {
    font-size: 22px;
  }

  .avtrix-portfolio-content p {
    font-size: 15px;
  }
}

/* Tablet: min-width 481px and max-width 768px */
@media (min-width: 481px) and (max-width: 768px) {
  .hero {
    padding: 0 4%;
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .container {
    flex-direction: column;
    gap: 30px;
  }

  .content-left {
    order: 1;
  }

  .content-right {
    order: 2;
    flex: none;
  }

  .side-nav {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
  }

  .side-nav a {
    font-size: 18px;
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
  }

  .main-img {
    width: 280px;
    height: 320px;
  }

  .hero h1 {
    font-size: clamp(32px, 8vw, 45px);
    margin-bottom: 40px;
  }

  .description {
    font-size: 14px;
    max-width: 90%;
  }

  .cta-section {
    gap: 15px;
  }

  .arrow-btn {
    width: 60px;
    height: 60px;
  }

  .learn-more-btn {
    font-size: 24px;
  }

  .services-section {
    padding: 70px 4%;
  }

  .services-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .services-header-row h2 {
    font-size: 45px;
  }

  .services-grid {
    flex-direction: column;
    gap: 25px;
  }

  .services-list {
    flex: none;
  }

  .services-image {
    flex: none;
  }

  .service-item {
    padding: 25px;
    margin-top: -1px;
  }

  .item-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .item-main i {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .item-desc {
    margin-left: 0;
    margin-top: 15px;
  }

  .marquee-container {
    width: 96%;
    max-width: 800px;
  }

  .logo-card {
    width: 220px;
    padding: 0 25px;
    height: 80px;
  }

  .trusted-partners-section {
    padding: 70px 4%;
  }

  .trusted-partners-title {
    font-size: 2.2rem;
    margin-bottom: 3.5rem;
  }

  .partners-grid {
    flex-direction: column;
    gap: 2.5rem;
  }

  .partner-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 1.5rem;
  }

  .partner-item:last-child {
    border-bottom: none;
  }

  .mz-impact-wrapper {
    gap: 30px;
  }

  .mz-impact-title {
    font-size: clamp(28px, 6vw, 38px);
  }

  .mz-impact-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .mz-pkg-section {
    padding: 70px 4%;
  }

  .mz-pkg-grid {
    gap: 25px;
    flex-direction: column;
  }

  .mz-pkg-card {
    min-width: 100%;
    max-width: none;
    padding: 35px 25px;
  }

  .mz-pkg-price {
    font-size: 2.5rem;
  }

  .mz-pkg-features li {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .mz-pkg-btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .testi-v2-section {
    padding: 50px 4%;
  }

  .testi-v2-card {
    min-width: 320px;
    padding: 20px;
  }

  .testi-v2-track {
    gap: 30px;
  }

  .testi-v2-text {
    font-size: 14px;
  }

  .testi-v2-author {
    font-size: 16px;
  }

  .custom-ticker-text {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }

  .custom-ticker-section {
    padding: 30px 0;
  }
}

/* Phone: max-width 480px */
@media (max-width: 480px) {
  .hero {
    padding: 0 5%;
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 30px;
  }

  .container {
    flex-direction: column;
    gap: 25px;
  }

  .content-left {
    order: 1;
  }

  .content-right {
    order: 2;
    flex: none;
  }

  .side-nav {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }

  .side-nav a {
    font-size: 16px;
  }

  .services-section {
    padding: 50px 5%;
  }

  .services-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .services-header-row h2 {
    font-size: 35px;
    line-height: 1.2;
  }

  .services-grid {
    flex-direction: column;
    gap: 20px;
  }

  .services-list {
    flex: none;
  }

  .services-image {
    flex: none;
  }

  .service-item {
    padding: 25px;
  }

  .item-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .item-main i {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .item-desc {
    margin-left: 0;
    margin-top: 15px;
  }

  .marquee-container {
    width: 98%;
    max-width: none;
    padding: 12px 0;
  }

  .logo-card {
    width: 180px;
    padding: 0 15px;
    height: 80px;
  }

  .trusted-partners-section {
    padding: 50px 5%;
  }

  .trusted-partners-title {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }

  .partners-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .partner-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 1rem;
    min-height: 100px;
  }

  .partner-item:last-child {
    border-bottom: none;
  }

  .counter {
    font-size: 2.5rem;
  }

  .partner-label {
    font-size: 0.8rem;
  }

  .mz-impact-section {
    padding: 40px 5%;
  }

  .mz-impact-wrapper {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .mz-impact-visual {
    order: 2;
  }

  .mz-impact-content {
    order: 1;
  }

  .mz-impact-title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .mz-impact-desc {
    font-size: 14px;
  }

  .mz-impact-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .mz-impact-circle-box {
    width: 80px;
    height: 80px;
  }

  .mz-impact-circle-txt {
    font-size: 16px;
  }

  .mz-impact-circle-label {
    font-size: 10px;
  }

  .mz-pkg-section {
    padding: 50px 5%;
  }

  .mz-pkg-header {
    margin-bottom: 40px;
  }

  .mz-pkg-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .mz-pkg-grid {
    gap: 20px;
  }

  .mz-pkg-grid {
    flex-direction: column;
    gap: 20px;
  }

  .mz-pkg-card {
    min-width: unset;
    max-width: none;
    padding: 30px 20px;
  }

  .mz-pkg-price {
    font-size: 2rem;
  }

  .mz-pkg-features li {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .testi-v2-section {
    padding: 40px 5%;
  }

  .testi-v2-header {
    padding-left: 0;
    margin-bottom: 30px;
  }

  .testi-v2-title {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }

  .testi-v2-card {
    min-width: 280px;
    padding: 20px;
  }

  .testi-v2-text {
    font-size: 14px;
  }

  .testi-v2-author {
    font-size: 16px;
  }

  .testi-v2-author span {
    font-size: 12px;
  }

  .custom-ticker-section {
    padding: 25px 0;
  }

  .custom-ticker-text {
    font-size: clamp(1.8rem, 6vw, 3rem);
    padding: 0 30px;
  }

  .custom-ticker-logo {
    width: 50px;
    height: 50px;
  }

  /* Navbar adjustments for phone */
  nav#unique-navbar {
    padding: 4px 5%;
  }

  .sidebar {
    padding: 30px;
  }

  .mobile-nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.03);
  }

  .mobile-nav-links a, .mobile-nav-links button {
    padding: 12px 0;
    font-size: 16px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 20px 0;
  }

  .gallery-item {
    aspect-ratio: 1/1;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Search overlay adjustments */
  #searchOverlay {
    padding: 0 5%;
  }

  .search-bar input {
    font-size: 2.5rem;
  }

  .search-bar button {
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* Small phones: max-width 360px */
@media (max-width: 360px) {
  .hero {
    padding: 0 4%;
    padding-top: 50px;
    padding-bottom: 25px;
  }

  .container {
    gap: 20px;
  }

  .main-img {
    width: 200px;
    height: 230px;
  }

  .services-section {
    padding: 40px 4%;
  }

  .services-header-row h2 {
    font-size: 30px;
  }

  .service-item {
    padding: 20px;
  }

  .trusted-partners-section {
    padding: 40px 4%;
  }

  .trusted-partners-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .partner-item {
    padding: 1.5rem 0.8rem;
    min-height: 80px;
  }

  .counter {
    font-size: 2rem;
  }

  .mz-impact-section {
    padding: 30px 4%;
  }

  .mz-impact-title {
    font-size: clamp(20px, 8vw, 28px);
  }

  .mz-impact-circle-box {
    width: 70px;
    height: 70px;
  }

  .mz-impact-circle-txt {
    font-size: 14px;
  }

  .mz-pkg-section {
    padding: 40px 4%;
  }

  .mz-pkg-card {
    padding: 25px 15px;
  }

  .mz-pkg-price {
    font-size: 1.8rem;
  }

  .testi-v2-section {
    padding: 30px 4%;
  }

  .testi-v2-card {
    min-width: 250px;
    padding: 15px;
  }

  .custom-ticker-text {
    font-size: clamp(1.5rem, 7vw, 2.5rem);
    padding: 0 20px;
  }

  .custom-ticker-logo {
    width: 40px;
    height: 40px;
  }
}

.ceo-dark-section {
    background-color: #000000; /* Pure Black Background */
    padding: 80px 5%;
    display: flex;
    justify-content: center;
}

.ceo-container {
    max-width: 1000px;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Image Styles and Hover Effect */
.ceo-image-box {
    flex: 0 0 350px;
}

.ceo-image-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.4s ease, border 0.4s ease, box-shadow 0.4s ease;
    border: 2px solid transparent;
}

.ceo-image-box img:hover {
    transform: scale(1.03); /* Slight zoom */
    border: 2px solid #FF8C00; /* Orange Border */
    box-shadow: 0px 0px 20px rgba(255, 140, 0, 0.5); /* Orange Glow */
}

/* Heading Styles and Hover Effect */
.ceo-info h2 {
    color: #FFFFFF; /* Initial White Color */
    font-size: 2.5rem;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    cursor: default;
}

.ceo-info h2:hover {
    color: #FF8C00; /* Turns Orange on Hover */
}

/* Description Text */
.ceo-info p {
    color: #CCCCCC; /* Light Grey for readability against black */
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ceo-container {
        flex-direction: column;
        text-align: center;
    }
    .ceo-image-box {
        flex: 0 0 auto;
        width: 80%;
    }
}

.highlight {
    display: inline-block;
    white-space: nowrap; /* Prevents the words from splitting into two lines */
    position: relative;
    color: #ff4d1c; /* Ensuring your brand orange is applied */
}

/* --- AVTRIX PORTFOLIO SECTION STYLES --- */
.avtrix-portfolio-section {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 80px 8%;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.avtrix-portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
}

.avtrix-portfolio-header {
    text-align: center;
    margin-bottom: 60px;
}

.avtrix-portfolio-subtitle {
    color: var(--accent-orange);
    font-style: italic;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.avtrix-portfolio-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.avtrix-portfolio-desc {
    color: var(--text-gray);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.avtrix-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.avtrix-portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.avtrix-portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
}

.avtrix-portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.avtrix-portfolio-item:hover img {
    transform: scale(1.1);
}

.avtrix-portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 77, 28, 0.9) 0%, rgba(61, 18, 5, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.avtrix-portfolio-item:hover .avtrix-portfolio-overlay {
    opacity: 1;
}

.avtrix-portfolio-content {
    text-align: center;
    color: var(--text-white);
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.avtrix-portfolio-item:hover .avtrix-portfolio-content {
    transform: translateY(0);
}

.avtrix-portfolio-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.avtrix-portfolio-content p {
    font-size: 16px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Modal Styles */
.avtrix-portfolio-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 5, 3, 0.95);
    backdrop-filter: blur(10px);
    animation: avtrix-modal-fade-in 0.3s ease-out;
}

.avtrix-portfolio-modal-content {
    position: relative;
    margin: 5% auto;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: avtrix-modal-scale-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.avtrix-portfolio-modal img,
.avtrix-portfolio-modal embed {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 77, 28, 0.6);
}

.avtrix-portfolio-modal-info {
    margin-top: 20px;
    text-align: center;
    color: var(--text-white);
}

.avtrix-portfolio-modal-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-orange);
}

.avtrix-portfolio-modal-info p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    line-height: 1.6;
}

.avtrix-portfolio-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--text-white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10001;
}

.avtrix-portfolio-close:hover {
    color: var(--accent-orange);
}

@keyframes avtrix-modal-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes avtrix-modal-scale-in {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .avtrix-portfolio-section {
        padding: 60px 5%;
    }

    .avtrix-portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .avtrix-portfolio-item img {
        height: 250px;
    }

    .avtrix-portfolio-content h3 {
        font-size: 20px;
    }

    .avtrix-portfolio-content p {
        font-size: 14px;
    }

    .avtrix-portfolio-modal-content {
        margin: 10% auto;
        max-width: 95%;
    }

    .avtrix-portfolio-modal img {
        max-height: 60vh;
    }

    .avtrix-portfolio-modal-info h3 {
        font-size: 24px;
    }

    .avtrix-portfolio-modal-info p {
        font-size: 16px;
    }

    .avtrix-portfolio-close {
        top: -40px;
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .avtrix-portfolio-section {
        padding: 40px 5%;
    }

    .avtrix-portfolio-title {
        font-size: 32px;
    }

    .avtrix-portfolio-desc {
        font-size: 16px;
    }

    .avtrix-portfolio-item img {
        height: 200px;
    }

    .avtrix-portfolio-overlay {
        padding: 15px;
    }
}

/* --- FEEDBACK FORM STYLES --- */

.feedback-form-wrapper {
    background: #111;
    padding: 2rem;
    border-radius: 0.5rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.feedback-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #222;
    border: 1px solid #4b5563;
    color: #fff;
    padding: 12px;
    margin-bottom: 15px;
    outline: none;
    transition: 0.3s;
    font-family: 'Inter', sans-serif;
    border-radius: 0.375rem;
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff4d29;
    box-shadow: 0 0 10px rgba(255, 77, 41, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.rating-stars {
    display: flex;
    gap: 5px;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    color: #555;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.rating-stars input:checked ~ label,
.rating-stars label:hover,
.rating-stars label:hover ~ label {
    color: var(--accent-orange);
}

.feedback-submit-btn {
    background: #ff4d29;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.feedback-submit-btn:hover {
    background: #e6441a;
    transform: scale(1.02);
}

.feedback-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 60px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.feedback-success h3 {
    color: var(--text-white);
    font-size: 24px;
    margin-bottom: 10px;
}

.feedback-success p {
    color: var(--text-gray);
    font-size: 16px;
}

/* Responsive */

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .feedback-form-wrapper {
        padding: 30px 20px;
    }
}

/* --- FEEDBACK SECTION HEADER STYLES --- */

.feedback-section {
    background-color: var(--bg-dark);
    padding: 80px 8%;
    text-align: center;
}

.feedback-container {
    max-width: 800px;
    margin: 0 auto;
}

.feedback-header {
    margin-bottom: 40px;
}

.feedback-subtitle {
    color: var(--accent-orange);
    font-style: italic;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.feedback-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.feedback-desc {
    color: var(--text-gray);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive for feedback section header */
@media (max-width: 768px) {
    .feedback-section {
        padding: 60px 5%;
    }

    .feedback-title {
        font-size: clamp(28px, 6vw, 48px);
    }

    .feedback-desc {
        font-size: 16px;
    }
}
  

