/* ----------------------------- */
/* ---------- BODY ------------- */
/* ----------------------------- */

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
        "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    background-color: #1D1D1D !important;
    margin: 0;
    padding: 0;
}


/* Global Font */

html {
    scroll-behavior: smooth;
}

/* ----------------------------- */
/* -------- HERO SECTION ------- */
/* ----------------------------- */


.hero-section {
    min-height: 100vh;
    padding-top: 13rem;
    background: url("../images/mdox-gif.gif");
    background-size: cover;
    background-repeat: no-repeat;
}

.display-font {
    font-size: 62px;
}

/* Center hero text */
.hero-content {

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

/* Line height control */
.custom-line-height {
    line-height: 5rem;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(90deg,
            #3A93A7 30%,
            #F4B04C 42%,
            #EB7F58 50%,
            #EF4544 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* ----------------------------- */
/* ---- HERO ANIMATIONS -------- */
/* ----------------------------- */

/* Fade in and slide up animation for hero title */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradient animation for the "Digital Twin" text */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Scale and fade animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations to hero content */
.animate-hero {
    animation: scaleIn 1s ease-out;
}

/* Animated gradient text */
.animate-gradient {
    background: linear-gradient(90deg,
            #3A93A7 0%,
            #F4B04C 25%,
            #EB7F58 50%,
            #EF4544 75%,
            #3A93A7 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: gradientShift 3s ease infinite;
}

/* Fade in up with delays */
.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

/* Responsive animation adjustments */
@media (max-width: 768px) {
    .animate-hero {
        animation-duration: 0.8s;
    }

    .animate-fade-in-up {
        animation-duration: 0.6s;
    }
}

/* ---------------- NAVIGATION ---------------- */

.header-bg {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding-top: 25px;
    background: transparent;
}

/* Glass navbar */
.nav-wrapper {
    width: 100%;
    padding: 20px 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Logo */
.logo-img {
    height: 30px;
}

/* Nav links */
.nav-link {
    font-size: 20px;
    font-weight: 500;
    color: #fff !important;
}

.nav-link:hover {
    background: linear-gradient(90deg,
            #3A93A7 30%,
            #F4B04C 42%,
            #EB7F58 50%,
            #EF4544 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent !important;
}

/* Toggler icon */
.navbar-toggler-icon {
    filter: invert(1);
}

.contact-btn {
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    color: #ffffff;

    /* dark fill + gradient border */
    background:
        linear-gradient(#2a2f34, #2a2f34) padding-box,
        linear-gradient(90deg, #4cc9f0, #f4a261) border-box;

    border: 1.5px solid transparent;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    /* color: #f4a261; */
    background:
        linear-gradient(#2a2f34, #2a2f34) padding-box,
        linear-gradient(120deg, #f4a261, #4cc9f0) border-box;
    box-shadow: 0 0 20px rgba(244, 162, 97, 0.35);
}


/* ---------------- MOBILE & TABLET ---------------- */

/* iPad and Tablet Devices (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-section {
        background-position: center;
        background-size: cover;
    }

    .display-font {
        font-size: 48px;
    }

    .custom-line-height {
        line-height: 4rem;
    }

    .get-in-touch {
        min-height: 75vh !important;
    }

}

/* Tablet Portrait and Small Tablets */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        height: auto;
        padding-top: 10rem;
        background-position: center center;
    }

    .display-font {
        font-size: 42px;
    }

    .custom-line-height {
        line-height: 3.5rem;
    }

    /* Ensure navbar collapses with proper background */
    .navbar-collapse {
        /* background: rgba(29, 29, 29, 0.95); */
        padding: 15px;
        border-radius: 12px;
        margin-top: 10px;
    }
}

/* Mobile Devices */
@media (max-width: 650px) {
    .hero-section {
        min-height: 70vh;
        padding-top: 8rem;
        background-position: center;
        background-size: cover;
    }

    .hero-content {
        min-height: 40vh;
    }

    .display-font {
        font-size: 36px;
    }

    .custom-line-height {
        line-height: 3rem;
    }

    .navbar-nav {
        margin-top: 15px;
    }

    .nav-item {
        margin-bottom: 8px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 600px) {
    .nav-wrapper {
        padding: 14px 12px !important;
    }

    .hero-section {
        min-height: 60vh;
        padding-top: 7rem;
    }

    .display-font {
        font-size: 32px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-section {
        min-height: 75vh;
    }

    .display-font {
        font-size: 28px;
    }

    .custom-line-height {
        line-height: 2.5rem;
    }
}

/* ----------------------------- */
/* ---- AI-MODULES SECTION ----- */
/* ----------------------------- */
.ai-section {
    padding: 75px 0 120px;
    background: #1D1D1D;
    position: relative;
    overflow: hidden;
}

/* ----------------------------- */
/* ---- AI MODULES ANIMATIONS -- */
/* ----------------------------- */

/* Fade in from bottom animation */
@keyframes fadeInUpModule {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scale and fade animation for AI watermark */
@keyframes scaleInFade {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Initial hidden state for scroll animations */
.ai-title.scroll-animate,
.ai-center.scroll-animate,
.ai-card.scroll-animate {
    opacity: 0;
}

/* Animated title */
.ai-title.animate-in {
    animation: fadeInUpModule 0.8s ease-out forwards;
}

/* Animated AI watermark */
.ai-center.animate-in {
    animation: scaleInFade 1s ease-out forwards;
    animation-delay: 0.3s;
}

/* Animated cards with staggered delays */
.ai-card.animate-in {
    animation: fadeInUpModule 0.7s ease-out forwards;
}

/* Staggered animation delays for cards */
.ai-card.delay-1 {
    animation-delay: 0.1s;
}

.ai-card.delay-2 {
    animation-delay: 0.2s;
}

.ai-card.delay-3 {
    animation-delay: 0.3s;
}

.ai-card.delay-4 {
    animation-delay: 0.4s;
}

.ai-card.delay-5 {
    animation-delay: 0.5s;
}

.ai-card.delay-6 {
    animation-delay: 0.6s;
}

.ai-card.delay-7 {
    animation-delay: 0.7s;
}

.ai-card.delay-8 {
    animation-delay: 0.8s;
}


.ai-title {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 90px;
}

.ai-center {
    position: absolute;
    top: 57%;
    left: 47%;
    transform: translate(-50%, -50%);
    font-size: 140px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}


/* CARD */
.ai-card {
    max-width: 340px;
}

/* ICON + TITLE ROW */
.ai-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.ai-card h5 {
    font-size: 21px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.ai-card p {
    font-size: 19px;
    color: #cfcfcf;
    margin: 0;
    font-weight: 500;
}

/* ICON */
.icon-box {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(135deg, #6ee7ff, #ff6a6a);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-inner {
    width: 100%;
    height: 100%;
    border-radius: 13px;
    background: #1D1D1D;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-inner img {
    width: 29px;
}

/* MOBILE - Hide AI watermark only on small mobile devices */
@media (max-width: 650px) {
    .ai-center {
        display: none;
    }

    .ai-card {
        max-width: 100%;
    }

    .ai-title {
        font-size: 28px;
        margin-bottom: 50px;
    }
}

/* Tablet responsive */
@media (max-width: 768px) {
    .ai-title {
        font-size: 36px;
        margin-bottom: 60px;
    }
}

/* Extra small mobile */
@media (max-width: 650px) {
    .ai-title {
        font-size: 34px;
        margin-bottom: 51px;
    }
}

/* ----------------------------- */
/* ------- QUOTE SECTION ------ */
/* ---------------------------- */
.design-banner {
    min-height: 320px;
    /* or 360px */
    position: relative;
    background: url("../images/mdox_gradient.png") center / cover no-repeat;
    padding: 40px 0;
}

.quote-icon {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;

    background: linear-gradient(90deg,
            #78BBD7 0%,
            #FFE1B4 33%,
            #EB7F58 63%,
            #EF4544 83%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.banner-text {
    font-family: "Georgia", serif;
    font-size: 3rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* ----------------------------- */
/* --- QUOTE BANNER ANIMATIONS - */
/* ----------------------------- */

/* Fade in from left animation */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade in from right animation */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Initial hidden state */
.quote-icon.scroll-animate,
.banner-text.scroll-animate {
    opacity: 0;
}

/* Animated quote icon */
.quote-icon.animate-in {
    animation: fadeInLeft 0.8s ease-out forwards;
}

/* Animated banner text */
.banner-text.animate-in {
    animation: fadeInRight 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-text {
        font-size: 1.6rem;
    }

    .quote-icon {
        font-size: 3rem;
    }
}

/* ----------------------------- */
/* ---- CAROUSEL SECTION ------ */
/* ---------------------------- */
.carousel-section {
    padding: 90px 0 120px;
    background: #1D1D1D;
}

.main-heading {
    font-weight: 700;
    margin-bottom: 60px;
    font-size: 2.8rem;
    line-height: 1.2;
}

.custom-card {
    background-color: #252525;
    border-radius: 24px;
    padding: 50px 50px 36px 90px;
    border: 1px solid #333;
    overflow: hidden;
    position: relative;
}

/* ----------------------------- */
/* --- CAROUSEL ANIMATIONS ----- */
/* ----------------------------- */

/* Scale in animation for card */
@keyframes scaleInCard {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Fade in up for controls */
@keyframes fadeInUpControls {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Initial hidden state */
.main-heading.scroll-animate,
.custom-card.scroll-animate,
.carousel-controls-wrapper.scroll-animate {
    opacity: 0;
}

/* Animated heading */
.main-heading.animate-in {
    animation: fadeInUpModule 0.8s ease-out forwards;
}

/* Animated card */
.custom-card.animate-in {
    animation: scaleInCard 0.9s ease-out forwards;
    animation-delay: 0.2s;
}

/* Animated controls */
.carousel-controls-wrapper.animate-in {
    animation: fadeInUpControls 0.7s ease-out forwards;
    animation-delay: 0.4s;
}

/* --- CAROUSEL ANIMATION --- */
.carousel-item {
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.8s ease;
}

/* --- TEXT & LIST STYLING --- */
.section-title {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    gap: 14px;
}



.section-title .title-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.objective-list {
    list-style: none;
    padding-left: 0;
    position: relative;
}

.objective-list::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: #267185;
}

.objective-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px;
    font-size: 1.15rem;
    color: #cfcfcf;
}

.objective-item::before {
    content: "";
    position: absolute;
    left: 1px;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: #267185;
    border-radius: 50%;
    z-index: 2;
}

/* --- IMAGE STYLING --- */
.carousel-image-container {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item img {
    max-height: 350px;
    border-radius: 12px;
}


/* --- CONTROLS STYLING --- */
.carousel-controls-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 20px;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    margin-left: 15px;
}

.control-btn:hover {
    background-color: #fff;
    color: #121212;
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .custom-card {
        padding: 30px;
    }

    .carousel-controls-wrapper {
        justify-content: center;
        margin-top: 40px;
    }
}

/* Mobile responsive for carousel heading */
@media (max-width: 768px) {
    .main-heading {
        font-size: 2rem;
    }
}

/* @media (max-width: 480px) {
    .main-heading {
        font-size: 1.6rem;
    }
} */



/* ----------------------------- */
/* ---- OUTCOME SECTION ----- */
/* --------------------------- */

/* Page background */
.outcome-section {
    padding: 75px 0 120px;
    background: #1D1D1D;

}

/* Card base */
.outcome-card {
    position: relative;
    padding: 24px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    z-index: 1;
}

/* Gradient border */
.outcome-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 18px;
    background: linear-gradient(90deg,
            #3A93A7 30%,
            #F4B04C 42%,
            #EB7F58 90%,
            #EF4544 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Optional inner glow */
.outcome-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

/* Content safety */
.outcome-card>* {
    position: relative;
    z-index: 2;
}


/* Icon container */
.outcome-box {
    margin-bottom: 90px;
    margin-top: 29px;
}

/* Image inside icon box */
.icon-img {

    object-fit: contain;
}

.icon-img {
    filter: brightness(0) invert(1);
}


/* Text */
.outcome-card h3 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff
}

.outcome-card p {
    font-size: 22px;
    color: #fff;
    font-weight: 500;
}

.bg-img-1 {
    background: #272727 url("../images/designcycle.svg") center / contain no-repeat;
}

.bg-img-2 {
    background: #272727 url("../images/cae-turnaround.svg") center / contain no-repeat;
}

.bg-img-3 {
    background: #272727 url("../images/model-accuracy.svg") center / contain no-repeat;
}

.bg-img-4 {
    background: #272727 url("../images/design-optimization.svg") center / contain no-repeat;
}

.bg-img-5 {
    background: #272727 url("../images/physical-prototypes.svg") center / contain no-repeat;
}

.bg-img-6 {
    background: #272727 url("../images/knowledge-base.svg") center / contain no-repeat;
}


/* Hover effect */
.outcome-card:hover {
    transform: translateY(-6px);
    transition: 0.3s ease;
}

.outcome-heading {
    font-weight: 700;
    margin-bottom: 80px;
    font-size: 2.8rem;
    line-height: 1.2;
}

/* ----------------------------- */
/* --- OUTCOME ANIMATIONS ------ */
/* ----------------------------- */

/* Fade in and scale animation for cards */
@keyframes fadeInUpScale {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Initial hidden state */
.outcome-heading.scroll-animate,
.outcome-card.scroll-animate {
    opacity: 0;
}

/* Animated heading */
.outcome-heading.animate-in {
    animation: fadeInUpModule 0.8s ease-out forwards;
}

/* Animated cards */
.outcome-card.animate-in {
    animation: fadeInUpScale 0.7s ease-out forwards;
}

/* Staggered animation delays for outcome cards */
.outcome-card.delay-outcome-1 {
    animation-delay: 0.1s;
}

.outcome-card.delay-outcome-2 {
    animation-delay: 0.2s;
}

.outcome-card.delay-outcome-3 {
    animation-delay: 0.3s;
}

.outcome-card.delay-outcome-4 {
    animation-delay: 0.4s;
}

.outcome-card.delay-outcome-5 {
    animation-delay: 0.5s;
}

.outcome-card.delay-outcome-6 {
    animation-delay: 0.6s;
}

/* Enhanced hover effect with animation */
.outcome-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.outcome-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(58, 147, 167, 0.2);
}

/* Responsive outcome cards */
@media (max-width: 768px) {
    .outcome-card h3 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .outcome-card p {
        font-size: 18px;
    }

    .outcome-heading {
        font-size: 2.2rem;
        margin-bottom: 60px;
    }

    .outcome-box {
        margin-bottom: 40px;
    }
}

@media (max-width: 650px) {
    .outcome-card h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .outcome-card p {
        font-size: 16px;
    }

    .outcome-heading {
        font-size: 1.8rem;
        margin-bottom: 50px;
    }

    .outcome-box {
        margin-bottom: 30px;
    }

    .icon-img {
        width: 40px;
        height: 40px;
    }
}

/* ----------------------------- */
/* --- GET IN TOUCH  SECTION --- */
/* ----------------------------- */

.get-in-touch {
    min-height: 90vh;
    background: #1D1D1D;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-section {
    padding: 71px 0 41px;
}

/* Small top label */
.get-in-touch .small-title {
    font-size: 22px;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 34px;
    font-weight: 600;
}

/* Main heading */
.get-in-touch h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Gradient text for MDOX */
.gradient-text-touch {
    background: linear-gradient(90deg, #3A93A7 30%, #F4B04C 42%, #EB7F58 50%, #EF4544 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Bottom vehicle image */
.vehicle-img {
    max-width: 100%;
    opacity: 0.25;
}

/* ----------------------------- */
/* --- GET IN TOUCH ANIMATIONS - */
/* ----------------------------- */

/* Fade in from bottom for image */
@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 0.25;
        transform: translateY(0);
    }
}

/* Scale in for button */
@keyframes scaleInButton {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Initial hidden state */
.get-in-touch .small-title.scroll-animate,
.get-in-touch h1.scroll-animate,
.get-in-touch .contact-btn.scroll-animate,
.vehicle-img.scroll-animate {
    opacity: 0;
}

/* Animated small title */
.get-in-touch .small-title.animate-in {
    animation: fadeInUpModule 0.7s ease-out forwards;
}

/* Animated heading */
.get-in-touch h1.animate-in {
    animation: fadeInUpModule 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

/* Animated button */
.get-in-touch .contact-btn.animate-in {
    animation: scaleInButton 0.7s ease-out forwards;
    animation-delay: 0.4s;
}

/* Animated vehicle image */
.vehicle-img.animate-in {
    animation: fadeInImage 1s ease-out forwards;
    animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 768px) {
    .get-in-touch h1 {
        font-size: 2rem;
    }

    .margin-padding {
        margin-top: 35px;
    }

}

/* ----------------------------- */
/* ------ FOOTER  SECTION ------ */
/* ----------------------------- */

.footer-section {
    position: relative;
}

/* EVOX logo */
.footer-evox-logo {
    height: 32px;
}

/* ----------------------------- */
/* FOOTER BACKGROUND IMAGE */
/* ----------------------------- */
.footer-section {
    background: linear-gradient(90deg, #1D1D1D 31% 43%, #282828 100%);
}



/* -------------------------------- */
/* ROUND SOCIAL ICONS */
/* -------------------------------- */

.social-round {
    width: 35px;
    height: 35px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.35s ease;
}

.social-round i {
    font-size: 16px;
    color: #000000;
    transition: all 0.35s ease;
}


/* ================================ */
/* BRAND BACKGROUND ON HOVER */
/* ================================ */

/* Instagram */
.social-round:hover:has(.fa-instagram) {
    background: radial-gradient(circle at 30% 110%,
            #fdf497 0%,
            #fdf497 5%,
            #fd5949 45%,
            #d6249f 60%,
            #285AEB 90%);
}

.social-round:hover:has(.fa-instagram) i {
    color: #ffffff;
}


/* Facebook */
.social-round:hover:has(.fa-facebook) {
    background-color: #1877F2;
}

.social-round:hover:has(.fa-facebook) i {
    color: #ffffff;
}


/* LinkedIn */
.social-round:hover:has(.fa-linkedin) {
    background-color: #0A66C2;
}

.social-round:hover:has(.fa-linkedin) i {
    color: #ffffff;
}

/* X (Twitter) */
.social-round:hover:has(.fa-x-twitter) {
    background-color: #000000;
}

.social-round:hover:has(.fa-x-twitter) i {
    color: #ffffff;
}


/* Hover scale effect */
.social-round:hover {
    transform: scale(1.08);
}

/* -------------------------------- */
/* FOOTER LINKS */
/* -------------------------------- */

.footer-links li {
    margin-bottom: 10px;
}

/* -------------------------------- */
/* CONTACT LIST */
/* -------------------------------- */
.contact-list li {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.contact-list i {
    font-size: 18px;
    color: #ffffff;
    width: 25px;
}

/* Horizontal Contact List for Tablets */
.contact-list-horizontal {
    text-align: center;
}

.contact-list-horizontal li {
    margin-bottom: 0;
}

/* -------------------------------- */
/* DESKTOP RESPONSIVE */
/* -------------------------------- */

/* Desktop specific styles (1025px and above) */
@media (min-width: 1025px) {
    .footer-section .row {
        align-items: flex-start;
    }

    .footer-section .col-lg-4 {
        min-height: 200px;
    }
}

/* -------------------------------- */
/* TABLET RESPONSIVE (iPad & iPad Mini) */
/* -------------------------------- */

/* iPad and iPad Mini specific styles (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer-section .row.mb-4 {
        margin-bottom: 2rem !important;
    }

    .contact-list-horizontal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 2rem;
    }

    .contact-list-horizontal li {
        flex: 0 0 auto;
    }

    /* Ensure contact info is centered on tablets */
    .footer-section .col-md-12.col-lg-4 {
        margin-top: 1.5rem;
    }
}

/* -------------------------------- */
/* MOBILE RESPONSIVE */
/* -------------------------------- */

@media (max-width: 767px) {
    .footer-links {
        justify-content: center !important;
        text-align: center;
        gap: 11px !important;
    }

    .footer-links li {
        margin-right: 0;
    }

    .contact-list-horizontal {
        flex-direction: column;
        align-items: center;
    }

    .contact-list-horizontal li {
        margin-bottom: 8px;
    }

    .footer-section .row {
        text-align: center;
    }
}

.footer-text {
    font-size: 17px;
    line-height: 1.6;
    color: #e0e0e0;
    font-weight: 600;
}

/* ----------------------------- */
/* FOOTER CENTER NAV LINKS */
/* ----------------------------- */

.footer-links a {
    color: #ffffff;
    /* default white */
    font-size: 19px;
    /* font size */
    font-weight: 600;
    /* semi-bold */
    text-decoration: none;
    /* remove underline */
    transition: all 0.3s ease;
}

/* Hover gradient effect */
.footer-links a:hover {
    background: linear-gradient(90deg,
            #3A93A7 30%,
            #F4B04C 42%,
            #EB7F58 50%,
            #EF4544 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}