/* ================= TOP BAR ================= */
.top-bar {
  background: linear-gradient(90deg, #000, #1a1a1a);
  color: #fff;
  font-size: 13px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid #222;
}

.marquee {
  display: flex;
  align-items: center;
  height: 40px;
}

.marquee span {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scrollText 60s linear infinite;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Smooth scrolling animation */
@keyframes scrollText {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ================= MAIN HEADER ================= */
.main-header {
  background: linear-gradient(180deg, #ffffff, #f8f8f8);
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease;
}

/* Inner Layout */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

/* ================= LEFT / RIGHT ================= */
.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ================= ICONS ================= */
.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 16px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
  cursor: pointer;
	text-decoration: none;
}

/* Hover Effect (Premium Feel) */
.nav-icon:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ================= LOGO ================= */
.header-center {
  flex: 1;
  text-align: center;
}


.custom-logo-link {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.5px;
  position: relative;
  transition: 0.3s ease;
}

.custom-logo-link > img {
    width: 100%;
    max-width: 10rem;
    height: auto;
}
/* ================= MENU ================= */
.main-header .navbar-nav {
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-direction: row;
    border-top: 1px solid #0001;
    border-bottom: 1px solid #0001;
}

.main-header .navbar-nav a {
    color: #000;
    font-size: 1.25rem;
    text-decoration: none;
    font-weight: 300;
}

.main-header .navbar-nav li {
    padding-right: 1rem;
    border-right: 1px solid #0003;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .header-inner {
    padding: 10px 0;
  }

  .nav-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .site-logo {
    font-size: 18px;
  }

  .marquee span {
    font-size: 12px;
  }

}

/* ===============================
   HERO SECTION - Deep India Future
================================= */

.dif-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.dif-hero__wrapper {
  position: relative;
}

.dif-hero__slider {
  position: relative;
}

/* ===============================
   SLIDE
================================= */
.dif-hero__slide {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===============================
   IMAGE / MEDIA
================================= */
.dif-hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
	margin: 0;
}

.dif-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   OVERLAY
================================= */
.dif-hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* ===============================
   CONTENT
================================= */
.dif-hero__content {
    position: absolute;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    max-width: 720px;
    padding: 20px;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dif-hero__title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.2;
}

.dif-hero__description {
  font-size: 17px;
  margin-bottom: 25px;
  color: #e5e5e5;
}

/* ===============================
   BUTTON
================================= */
.dif-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dif-btn--primary {
    background-color: #9a1fad;
    color: #fff;
}

.dif-btn--primary:hover {
  background: #000000;
  color: #ffffff;
}

/* ===============================
   SLICK CUSTOM STYLING
================================= */

/* Arrows */
.dif-hero .slick-prev,
.dif-hero .slick-next {
  width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    background-color: #0000;
    border: none;
    outline: none;
}

.dif-hero .slick-prev:before,
.dif-hero .slick-next:before {
  font-size: 28px;
  color: #ffffff;
}

/* Positioning arrows */
.dif-hero .slick-prev {
  left: 20px;
}

.dif-hero .slick-next {
  right: 20px;
}

/* Dots */
.dif-hero .slick-dots {
    width: fit-content;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    list-style: none;
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 111;
}

.dif-hero .slick-dots li button {
    width: .5rem;
    height: .5rem;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    background-color: #9a1fad;
    color: #0000;
    border: none;
    outline: none;
	opacity: 0.6;
}

.dif-hero .slick-dots li.slick-active button {
  opacity: 1;
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 992px) {
  .dif-hero__title {
    font-size: 32px;
  }

  .dif-hero__description {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .dif-hero__slide {
    height: 70vh;
  }

  .dif-hero__title {
    font-size: 26px;
  }

  .dif-hero__description {
    font-size: 14px;
  }

  .dif-btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .dif-hero__slide {
    height: 60vh;
  }

  .dif-hero__title {
    font-size: 22px;
  }
}




/* ===============================
   PRODUCT CATEGORIES SECTION
================================= */
.product-categories {
    position: relative;
    background: #ffffff;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Subtle grid texture for premium feel */
.product-categories::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* ===============================
   HEADER
================================= */
.product-categories__header {
    position: relative;
    z-index: 1;
}

.product-categories__title {
    font-size: clamp(1.8rem, 2.5vw, 2.3rem);
    font-weight: 700;
    color: #111;
    letter-spacing: -0.4px;
}

.product-categories__subtitle {
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: #555;
    max-width: 520px;
    margin: 10px auto 0;
    line-height: 1.6;
}

/* ===============================
   CARD (CRISP STYLE)
================================= */
.product-categories__card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 16px;
    transition: all 0.3s ease;
    box-shadow: none;
}

/* Sharp edge hover elevation */
.product-categories__card:hover {
    transform: translateY(-6px);
    border-color: #9a1fad;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* Top accent line (brand identity) */
.product-categories__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #9a1fad;
    transition: width 0.3s ease;
}

.product-categories__card:hover::before {
    width: 100%;
}

/* ===============================
   IMAGE
================================= */
.product-categories__image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 14px;
}

.product-categories__image {
    max-height: 140px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Sharp hover scale */
.product-categories__card:hover .product-categories__image {
    transform: scale(1.05);
}

/* ===============================
   CONTENT
================================= */
.product-categories__card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
    transition: color 0.25s ease;
}

/* Title accent on hover */
.product-categories__card:hover .product-categories__card-title {
    color: #9a1fad;
}

.product-categories__card-text {
    font-size: 0.93rem;
    color: #666;
    line-height: 1.6;
}

/* ===============================
   FOCUS STATE (ACCESSIBILITY)
================================= */
.product-categories__card:focus-within {
    outline: 2px solid #9a1fad;
    outline-offset: 2px;
}

/* ===============================
   STRUCTURE ENHANCEMENT
================================= */

/* Align content vertically */
.product-categories__card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Reduce visual noise */
.product-categories__card * {
    backface-visibility: hidden;
}








/* ================================
   WHY CHOOSE - SECTION
================================ */

.why-choose {
    position: relative;
    background: #ffffff;
    padding-top: clamp(60px, 6vw, 100px);
    padding-bottom: clamp(60px, 6vw, 100px);
}

/* Subtle grid texture (sharp & premium) */
.why-choose::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none;
}

/* ================================
   HEADER
================================ */

.why-choose__header {
    position: relative;
    z-index: 1;
}

.why-choose__title {
    font-size: clamp(1.8rem, 2.5vw, 2.3rem);
    font-weight: 700;
    color: #111;
    letter-spacing: -0.3px;
    line-height: 1.3;
    margin-bottom: 0;
}

/* Sharp underline (not rounded) */
.why-choose__title::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    margin: 14px auto 0;
    background: #9a1fad;
}

/* ================================
   ITEM (CRISP CARD)
================================ */

.why-choose__item {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: clamp(20px, 2.5vw, 26px);
    transition: all 0.3s ease;
}

/* Structured hover (sharp elevation) */
.why-choose__item:hover {
    transform: translateY(-6px);
    border-color: #9a1fad;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

/* Top accent line (brand identity) */
.why-choose__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #9a1fad;
    transition: width 0.3s ease;
}

.why-choose__item:hover::before {
    width: 100%;
}

/* ================================
   ICON
================================ */

.why-choose__icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 1px solid #e5e7eb;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

/* Icon */
.why-choose__icon {
    font-size: 1.6rem;
    color: #9a1fad;
    transition: transform 0.3s ease;
}

/* Crisp hover interaction */
.why-choose__item:hover .why-choose__icon-wrapper {
    border-color: #9a1fad;
    background: #fafafa;
}

.why-choose__item:hover .why-choose__icon {
    transform: scale(1.08);
}

/* ================================
   TEXT CONTENT
================================ */

.why-choose__item-title {
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.why-choose__item-text {
    font-size: 0.93rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* ================================
   MICRO INTERACTIONS
================================ */

.why-choose__item {
    opacity: 1;
    transform: translateY(0);
}

/* Optional JS animation hook */
.why-choose__item.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
}

/* ================================
   ACCESSIBILITY
================================ */

.why-choose__item:focus-within {
    outline: 2px solid #9a1fad;
    outline-offset: 2px;
}

/* ================================
   STRUCTURE UTILITIES
================================ */

.why-choose__item-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Prevent rendering issues */
.why-choose__item * {
    backface-visibility: hidden;
}




/* ===============================
   CLIENTS SECTION
================================= */
.clients {
    position: relative;
    background: #ffffff;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Subtle structured background */
.clients::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0,0,0,0.015) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,0,0,0.015) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

/* ===============================
   HEADER
================================= */
.clients__header {
    position: relative;
    z-index: 1;
}

.clients__title {
    font-size: clamp(1.8rem, 2.4vw, 2.3rem);
    font-weight: 700;
    color: #111;
    letter-spacing: -0.3px;
}

/* Sharp underline accent */
.clients__title::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    margin: 12px auto 0;
    background: #9a1fad;
}

/* ===============================
   SLIDER WRAPPER
================================= */
.clients__slider {
    position: relative;
    margin-top: 30px;
}

/* ===============================
   SLIDE ITEM
================================= */
.clients__slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 18px;
    transition: transform 0.3s ease;
}

/* Crisp hover lift */
.clients__slide:hover {
    transform: translateY(-4px);
}

/* ===============================
   LOGO CONTAINER
================================= */
.clients__logo {
    max-height: 55px;
    width: auto;
    object-fit: contain;

    /* Clean muted look */
    filter: grayscale(100%) contrast(0.9);
    opacity: 0.65;

    transition: all 0.3s ease;
}

/* Brand activation on hover */
.clients__slide:hover .clients__logo {
    filter: grayscale(0%) contrast(1);
    opacity: 1;
    transform: scale(1.08);
}

/* ===============================
   SLICK ENHANCEMENTS (SCOPED)
================================= */

/* Remove unwanted overflow clipping issues */
.clients__slider .slick-track {
    display: flex;
    align-items: center;
}

/* Prevent slide collapse */
.clients__slider .slick-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===============================
   ACCESSIBILITY
================================= */
.clients__slide:focus-within {
    outline: 2px solid #9a1fad;
    outline-offset: 2px;
}

/* ===============================
   MICRO INTERACTIONS
================================= */

/* Smooth rendering optimization */
.clients__slide,
.clients__logo {
    backface-visibility: hidden;
    will-change: transform;
}







/* ================= PARTNERS SECTION ================= */

.partners {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f9 100%);
    overflow: hidden;
}

/* Subtle background glow */
.partners::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(182, 9, 6, 0.06), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Layer control */
.partners .container {
    position: relative;
    z-index: 1;
}

/* ================= HEADER ================= */

.partners__header {
    position: relative;
}

/* Title */
.partners__title {
    font-size: clamp(1.8rem, 2.5vw, 2.3rem);
    font-weight: 600;
    color: #111;
    letter-spacing: -0.4px;
    display: inline-block;
    position: relative;
    margin: 0;
}

/* Accent underline */
.partners__title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    border-radius: 10px;
    background: #9a1fad;
}

/* ================= GRID WRAPPER ================= */

.partners__grid {
    margin-top: 12px;
}

/* ================= ITEM CARD ================= */

.partners__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 18px;
    height: 100%;

    border-radius: 14px;
    background: rgba(255, 255, 255, 0.85);

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);

    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}

/* Soft hover glow layer */
.partners__item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(182, 9, 6, 0.08),
        transparent
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Hover elevation */
.partners__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* Glow activate */
.partners__item:hover::before {
    opacity: 1;
}

/* ================= IMAGE ================= */

.partners__image {
    max-height: 65px;
    width: auto;
    object-fit: contain;
    display: block;

    /* Premium grayscale style */
    filter: grayscale(100%) brightness(0.9);
    opacity: 0.75;

    transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
}

/* Hover reveal */
.partners__item:hover .partners__image {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.08);
}

/* ================= MICRO INTERACTIONS ================= */

/* Slight animation polish */
.partners__item:hover .partners__image {
    transition-delay: 0.05s;
}

/* ================= ACCESSIBILITY ================= */

/* Focus state */
.partners__item:focus-within {
    outline: 2px solid #9a1fad;
    outline-offset: 3px;
}

/* ================= UTILITIES ================= */

/* Optional reusable smooth transition */
.u-smooth {
    transition: all 0.3s ease;
}

/* Optional subtle shadow utility */
.u-soft-shadow {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}











/* ================= CTA SECTION ================= */

.cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f6f6f8 100%);
}

/* Subtle radial accent */
.cta::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(182, 9, 6, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Layer control */
.cta .container {
    position: relative;
    z-index: 1;
}

/* ================= HEADER ================= */

.cta__header {
    max-width: 620px;
    margin: 0 auto;
}

/* Title */
.cta__title {
    font-size: clamp(1.9rem, 2.8vw, 2.6rem);
    font-weight: 600;
    color: #111;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Accent underline */
.cta__title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #9a1fad;
    margin: 12px auto 0;
    border-radius: 10px;
}

/* Description */
.cta__description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ================= BUTTON ================= */

.cta__action {
    margin-top: 28px;
}

/* Button Base */
.cta__button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;

    color: #fff;
    background: linear-gradient(135deg, #9a1fad, #d10d0d);

    border-radius: 8px;
    text-decoration: none;
    overflow: hidden;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Button shine effect */
.cta__button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    transition: all 0.6s ease;
}

/* Hover */
.cta__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(182, 9, 6, 0.25);
}

/* Shine animation on hover */
.cta__button:hover::before {
    left: 120%;
}

/* Active click */
.cta__button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(182, 9, 6, 0.2);
}

/* ================= ACCESSIBILITY ================= */

/* Focus state */
.cta__button:focus {
    outline: 2px solid #9a1fad;
    outline-offset: 3px;
}

/* ================= MICRO INTERACTIONS ================= */

/* Slight animation polish */
.cta__button {
    will-change: transform;
}

/* ================= UTILITIES ================= */

/* Optional reusable CTA highlight */
.u-cta-glow {
    box-shadow: 0 12px 30px rgba(182, 9, 6, 0.2);
}





/* ================= CONTACT SECTION ================= */

.contact {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f9 100%);
    overflow: hidden;
}

/* Subtle background glow */
.contact::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(182, 9, 6, 0.06), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Layer fix */
.contact .container {
    position: relative;
    z-index: 1;
}

/* ================= HEADER ================= */

.contact__title {
    font-size: clamp(1.9rem, 2.7vw, 2.5rem);
    font-weight: 600;
    color: #111;
    letter-spacing: -0.4px;
    margin-bottom: 10px;
}

/* Accent underline */
.contact__title::after {
    content: "";
    display: block;
    width: 55px;
    height: 3px;
    background: #9a1fad;
    margin: 10px auto 0;
    border-radius: 10px;
}

/* Description */
.contact__description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ================= FORM ================= */

.contact__form {
    position: relative;
    padding: 28px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);

    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 2px 8px rgba(0, 0, 0, 0.03);

    backdrop-filter: blur(6px);
}

/* ================= FIELD ================= */

.contact__field {
    position: relative;
}

/* Floating-style input base */
.contact__input,
.contact__textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 0.95rem;

    border-radius: 8px;
    border: 1px solid #e0e0e0;

    background: #fff;
    color: #111;

    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

/* Focus interaction */
.contact__input:focus,
.contact__textarea:focus {
    border-color: #9a1fad;
    box-shadow: 0 0 0 3px rgba(182, 9, 6, 0.1);
    transform: translateY(-1px);
    outline: none;
}

/* Placeholder styling */
.contact__input::placeholder,
.contact__textarea::placeholder {
    color: #999;
    transition: opacity 0.2s ease;
}

/* Hide placeholder on focus (premium feel) */
.contact__input:focus::placeholder,
.contact__textarea:focus::placeholder {
    opacity: 0.4;
}

/* ================= BUTTON ================= */

.contact__action {
    margin-top: 10px;
}

/* Button */
.contact__button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px;
    font-size: 1rem;
    font-weight: 500;

    color: #fff;
    background: linear-gradient(135deg, #9a1fad, #d10d0d);

    border-radius: 8px;
    border: none;
    overflow: hidden;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Shine effect */
.contact__button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    transition: all 0.6s ease;
}

/* Hover */
.contact__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(182, 9, 6, 0.25);
}

/* Shine animation */
.contact__button:hover::before {
    left: 120%;
}

/* Active */
.contact__button:active {
    transform: translateY(0);
}

/* ================= ACCESSIBILITY ================= */

/* Focus state */
.contact__button:focus {
    outline: 2px solid #9a1fad;
    outline-offset: 3px;
}

/* ================= MICRO INTERACTIONS ================= */

.contact__input,
.contact__textarea,
.contact__button {
    will-change: transform;
}

/* ================= UTILITIES ================= */

/* Optional card shadow utility */
.u-card-soft {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}




/* ================= BASE / UTILITIES ================= */
.section-padding {
    padding: clamp(70px, 8vw, 110px) 0;
}

.text-center {
    text-align: center;
}

/* ================= ABOUT HERO ================= */
.about-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}

/* Subtle Background Accent */
.about-hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(182, 9, 6, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-hero::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(182, 9, 6, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Content Wrapper */
.about-hero .col-lg-8 {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ================= TITLE ================= */
.about-hero__title {
    font-size: clamp(2.4rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: #111;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
    position: relative;
}

/* Decorative Underline Accent */
.about-hero__title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, #9a1fad, #ff4d4d);
    border-radius: 10px;
    transition: width 0.4s ease;
}

/* Hover Interaction */
.about-hero:hover .about-hero__title::after {
    width: 90px;
}

/* ================= SUBTITLE ================= */
.about-hero__subtitle {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.7;
    color: #555;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

/* ================= MICRO INTERACTIONS ================= */
.about-hero__title,
.about-hero__subtitle {
    transition: all 0.35s ease;
}

/* Subtle Lift Effect */
.about-hero:hover .about-hero__title {
    transform: translateY(-2px);
}

.about-hero:hover .about-hero__subtitle {
    opacity: 0.9;
}

/* ================= ACCESSIBILITY ================= */
.about-hero__title:focus-visible,
.about-hero__subtitle:focus-visible {
    outline: 2px dashed #9a1fad;
    outline-offset: 4px;
}








/* ================= UTILITIES ================= */
.section-padding {
    padding: clamp(70px, 8vw, 110px) 0;
}

/* ================= ABOUT INTRO ================= */
.about-intro {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #fff6f6 100%);
    overflow: hidden;
}

/* Subtle Background Accent */
.about-intro::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(182, 9, 6, 0.12), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* ================= MEDIA ================= */
.about-intro__media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Decorative Overlay */
.about-intro__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(182, 9, 6, 0.08),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Image */
.about-intro__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    transition: transform 0.5s ease, filter 0.4s ease;
}

/* Hover Effect */
.about-intro__media:hover .about-intro__image {
    transform: scale(1.05);
    filter: brightness(1.03);
}

.about-intro__media:hover::after {
    opacity: 1;
}

/* ================= CONTENT ================= */
.about-intro__content {
    position: relative;
    z-index: 1;
    max-width: 520px;
}

/* Title */
.about-intro__title {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.25;
    color: #111;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
    position: relative;
}

/* Accent Line */
.about-intro__title::before {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    margin-bottom: 14px;
    background: linear-gradient(90deg, #9a1fad, #ff5a5a);
    border-radius: 6px;
}

/* Paragraph */
.about-intro__text {
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    line-height: 1.75;
    color: #4a4a4a;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

/* Secondary Modifier */
.about-intro__text--secondary {
    margin-bottom: 0;
}

/* ================= MICRO INTERACTIONS ================= */
.about-intro__content:hover .about-intro__text {
    color: #333;
}

/* Subtle Content Lift */
.about-intro__content:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* ================= ACCESSIBILITY ================= */
.about-intro__title:focus-visible,
.about-intro__text:focus-visible {
    outline: 2px dashed #9a1fad;
    outline-offset: 4px;
}



/* ============================= */
/* SECTION BASE */
/* ============================= */

.values {
    position: relative;
    overflow: hidden;
}

/* Subtle background layering */
.values::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(182, 9, 6, 0.06), transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(182, 9, 6, 0.05), transparent 50%);
    pointer-events: none;
}

/* ============================= */
/* HEADER */
/* ============================= */

.values__header {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.values__title {
    font-size: clamp(1.75rem, 2.5vw, 2.3rem);
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.5px;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

/* Accent underline */
.values__title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    margin: 12px auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, #9a1fad, rgba(182, 9, 6, 0.5));
}

/* ============================= */
/* CARD */
/* ============================= */

.values__card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.6rem;
    height: 100%;

    /* Depth */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    /* Smooth interaction */
    transition: transform 0.35s ease, box-shadow 0.35s ease;

    /* Prevent overflow effects */
    overflow: hidden;
}

/* Premium gradient border effect */
.values__card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(182, 9, 6, 0.4), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

/* Hover interaction */
.values__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* Soft glow on hover */
.values__card:hover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(182, 9, 6, 0.08), transparent 60%);
    opacity: 1;
}

/* ============================= */
/* CARD BODY */
/* ============================= */

.values__card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* ============================= */
/* TYPOGRAPHY */
/* ============================= */

.values__card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
}

/* Accent color on hover */
.values__card:hover .values__card-title {
    color: #9a1fad;
}

.values__card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6c757d;
}

/* ============================= */
/* MICRO-INTERACTIONS */
/* ============================= */

/* Slight lift on focus (accessibility) */
.values__card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

/* Smooth text rendering */
.values__card,
.values__card-title,
.values__card-text {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}






/* ===============================
   STATS SECTION - BASE
================================= */
.stats {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f9f9fb 100%);
    overflow: hidden;
}

/* Subtle background accent */
.stats::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(182, 9, 6, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ===============================
   GRID WRAPPER
================================= */
.stats__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* ===============================
   CARD / ITEM
================================= */
.stats__item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    padding: clamp(18px, 3vw, 26px);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);

    border: 1px solid rgba(0, 0, 0, 0.04);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.04),
        0 2px 6px rgba(0, 0, 0, 0.03);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

/* Premium hover interaction */
.stats__item:hover {
    transform: translateY(-6px) scale(1.01);

    border-color: rgba(182, 9, 6, 0.2);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.08),
        0 6px 14px rgba(182, 9, 6, 0.08);
}

/* Soft glow effect */
.stats__item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        120deg,
        rgba(182, 9, 6, 0.08),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
}

.stats__item:hover::after {
    opacity: 1;
}

/* ===============================
   NUMBER (PRIMARY FOCUS)
================================= */
.stats__number {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 700;
    line-height: 1.1;

    color: #9a1fad;

    letter-spacing: -0.5px;
    margin-bottom: 6px;

    position: relative;
}

/* Underline accent */
.stats__number::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    margin: 8px auto 0;

    background: linear-gradient(
        90deg,
        #9a1fad,
        rgba(182, 9, 6, 0.3)
    );

    border-radius: 2px;
}

/* ===============================
   LABEL
================================= */
.stats__label {
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    font-weight: 500;

    color: #5f6368;
    letter-spacing: 0.3px;

    margin: 0;
}

/* ===============================
   ACCESSIBILITY / INTERACTION
================================= */
.stats__item:focus-within {
    outline: 2px solid rgba(182, 9, 6, 0.4);
    outline-offset: 3px;
}

/* ===============================
   UTILITY (OPTIONAL REUSABLE)
================================= */
.u-text-gradient {
    background: linear-gradient(90deg, #9a1fad, #ff4d4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



/* ================= CTA SECTION ================= */
.cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #9a1fad 0%, #7a0505 100%);
    padding: clamp(3rem, 6vw, 5rem) 1rem;
    color: #ffffff;
}

/* Subtle background glow effect */
.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
    pointer-events: none;
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -40%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
    pointer-events: none;
}

/* ================= CONTENT ================= */
.cta-section__content {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ================= TITLE ================= */
.cta-section__title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

/* ================= TEXT ================= */
.cta-section__text {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* ================= BUTTON ================= */
.cta-section__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #9a1fad !important;
    background-color: #ffffff !important;
    border-color: #9a1fad !important;
    border-radius: 999px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* Hover Effect */
.cta-section__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
}

/* Active State */
.cta-section__button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Focus State (Accessibility) */
.cta-section__button:focus {
    outline: none;
    box-shadow: 
        0 0 0 3px rgba(255, 255, 255, 0.4),
        0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ================= MICRO INTERACTION ================= */
/* Soft shine animation on hover */
.cta-section__button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transform: skewX(-20deg);
    transition: all 0.5s ease;
}

.cta-section__button:hover::after {
    left: 130%;
}










/* ================= CONTACT HERO ================= */
.contact-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(3rem, 6vw, 5rem) 1rem;
    background: linear-gradient(135deg, #9a1fad 0%, #7f0505 100%);
    color: #ffffff;
}

/* Soft layered background effect */
.contact-hero::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -20%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
    pointer-events: none;
}

.contact-hero::after {
    content: "";
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
    pointer-events: none;
}

/* ================= CONTENT ================= */
.contact-hero__content {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ================= TITLE ================= */
.contact-hero__title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;

    /* subtle text depth */
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* ================= SUBTITLE ================= */
.contact-hero__subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.92;
    max-width: 520px;

    margin-bottom: 0;
}

/* ================= MICRO INTERACTION ================= */
/* Slight lift on hover for entire hero (desktop feel without media query) */
.contact-hero:hover .contact-hero__content {
    transform: translateY(-2px);
    transition: transform 0.4s ease;
}

/* ================= UTILITY ENHANCEMENT ================= */
/* Smooth rendering */
.contact-hero,
.contact-hero__content,
.contact-hero__title,
.contact-hero__subtitle {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}






/* ================= CONTACT MAIN ================= */
.contact-main {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
    position: relative;
}

/* ================= FORM CARD ================= */
.contact-form {
    background: #ffffff;
    padding: 2.2rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.04),
        0 5px 15px rgba(0, 0, 0, 0.03);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* subtle top accent */
.contact-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #9a1fad, #ff3b3b);
}

.contact-form:hover {
    transform: translateY(-4px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.06),
        0 10px 20px rgba(0, 0, 0, 0.04);
}

/* ================= FORM TITLE ================= */
.contact-form__title {
    font-size: clamp(1.5rem, 2.5vw, 1.9rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111111;
}

/* ================= FORM ================= */
.contact-form__form {
    display: flex;
    flex-direction: column;
}

/* ================= LABEL ================= */
.contact-form__label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: #444;
}

/* ================= INPUT ================= */
.contact-form__input {
    border-radius: 10px;
    border: 1px solid #e4e6eb;
    padding: 0.7rem 0.85rem;
    font-size: 0.95rem;

    transition: all 0.25s ease;
    background-color: #ffffff;
}

/* focus state */
.contact-form__input:focus {
    border-color: #9a1fad;
    box-shadow: 0 0 0 3px rgba(182, 9, 6, 0.12);
    outline: none;
}

/* textarea tweak */
textarea.contact-form__input {
    resize: none;
}

/* ================= BUTTON ================= */
.contact-form__button {
    margin-top: 0.5rem;
    padding: 0.8rem 1.8rem;

    font-size: 0.95rem;
    font-weight: 600;

    border-radius: 999px;
    border: none;

    background: linear-gradient(135deg, #9a1fad, #8e0606);
    color: #ffffff;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;

    box-shadow: 0 10px 25px rgba(182, 9, 6, 0.25);
}

/* hover */
.contact-form__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(182, 9, 6, 0.35);
}

/* active */
.contact-form__button:active {
    transform: translateY(0);
}

/* focus */
.contact-form__button:focus {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.4),
        0 10px 25px rgba(182, 9, 6, 0.25);
}

/* ================= CONTACT INFO CARD ================= */
.contact-info {
    background: #ffffff;
    padding: 2.2rem;
    border-radius: 16px;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.04),
        0 5px 15px rgba(0, 0, 0, 0.03);

    height: 100%;
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* accent border */
.contact-info::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 3px;
    background: #9a1fad;
    border-radius: 4px;
}

/* ================= INFO TITLE ================= */
.contact-info__title {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111111;
}

/* ================= LIST ================= */
.contact-info__list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* ================= ITEM ================= */
.contact-info__item {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}

/* label */
.contact-info__label {
    font-weight: 600;
    color: #111;
}

/* value */
.contact-info__value {
    display: block;
    margin-top: 2px;
}

/* links */
.contact-info__link {
    display: inline-block;
    margin-top: 2px;
    color: #9a1fad;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

/* underline animation */
.contact-info__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: #9a1fad;
    transition: width 0.3s ease;
}

.contact-info__link:hover::after {
    width: 100%;
}









/* ===============================
   FOOTER BASE
================================= */
.footer {
    background-color: #0b0b0c;
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    overflow: hidden;
}

/* Top Accent Line */
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #9a1fad, #ff3b3b);
}

/* ===============================
   TYPOGRAPHY
================================= */
.footer__title {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 14px;
    font-size: 16px;
    letter-spacing: 0.4px;
}

.footer__text {
    color: #9ca3af;
    font-size: 14px;
}

/* ===============================
   COLUMN STRUCTURE
================================= */
.footer__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ===============================
   LINKS
================================= */
.footer__links {
    margin: 0;
    padding: 0;
}

.footer__links li {
    margin-bottom: 6px;
    transition: transform 0.2s ease;
}

.footer__links li:hover {
    transform: translateX(5px);
}

.footer__link {
    color: #cbd5f5;
    text-decoration: none;
    position: relative;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Animated underline */
.footer__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background-color: #9a1fad;
    transition: width 0.3s ease;
}

.footer__link:hover {
    color: #ffffff;
}

.footer__link:hover::after {
    width: 100%;
}

/* ===============================
   CONTACT
================================= */
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__contact-item {
    font-size: 14px;
    color: #9ca3af;
}

.footer__contact-item strong {
    color: #ffffff;
    font-weight: 500;
}

/* ===============================
   NEWSLETTER
================================= */
.footer__newsletter {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Form */
.footer__form {
    display: flex;
    align-items: center;
    width: 100%;
}

/* Input */
.footer__input {
    background-color: #111827;
    border: 1px solid transparent;
    color: #ffffff;
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.footer__input::placeholder {
    color: #6b7280;
}

.footer__input:focus {
    outline: none;
    border-color: #9a1fad;
    background-color: #020617;
    box-shadow: 0 0 0 2px rgba(182, 9, 6, 0.25);
}

/* Button */
.footer__btn {
    background-color: #9a1fad;
    border: none;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 6px;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.25s ease;
}

/* Button hover */
.footer__btn:hover {
    background-color: #8f0505;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(182, 9, 6, 0.35);
}

/* ===============================
   DIVIDER
================================= */
.footer__divider {
    border-color: rgba(255,255,255,0.08);
}

/* ===============================
   BOTTOM SECTION
================================= */
.footer__bottom {
    font-size: 13px;
}

.footer__copyright {
    color: #6b7280;
}

.footer__credit {
    color: #6b7280;
}

/* ===============================
   ACCESSIBILITY
================================= */
.footer a:focus {
    outline: 2px dashed #9a1fad;
    outline-offset: 3px;
}