/********** Template CSS **********/
:root {
    /* BRAND COLORS */
    --primary: #011627;       /* Maastricht Blue (Rich "Blue-Black") */
    --secondary: #000000;     /* Pure Black */

    /* ACCENTS */
    --accent-blue: var(--primary);     /* Maastricht Blue */
    --accent-yellow: var(--secondary); /* Pure Black */

    /* BACKGROUNDS */
    --bg-dark: #000000;       /* Pure Black */
    --bg-light: #DCE4EB;      /* Cool Steel Gray (Blue undertone) */

    /* UTILITIES */
    --light: #DCE4EB;         /* Cool Steel Gray */
    --dark: #000000;          /* Pure Black */
    --text-light: #FFFFFF;    /* Pure White Text */
    --text-dark: #011627;     /* Maastricht Blue Text */
}
/*********************************
Global Styles
*********************************/

/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {  
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}

h1, h2, h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/*** Typography & Links ***/
body, p, a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
}

a, button, .btn {
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.8;
}


/*** Button ***/
.btn {
    font-family: 'Inter', 'Open Sans', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*********************************
Component Styles
*********************************/

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Open Sans', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--accent-yellow);
}

/* Active link color on transparent nav */
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--accent-blue); 
}

/* Active link color on sticky nav */
.sticky-top.navbar-dark .navbar-nav .nav-link.active {
    color: var(--accent-blue) !important;
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    /* 1. The Transparent Overlay (Before Scrolling) */
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Fixed 256 to 255 */
        z-index: 999;
        transition: all 0.3s ease; /* Adds smooth fade when switching to sticky */
    }
    
    /* 2. The Sticky Header (After Scrolling) */
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF; /* CHANGED: White background looks cleaner */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); /* Adds shadow for depth */
    }

    /* 3. Sliding Underline Effect */
    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: #FFFFFF; /* White line on transparent header */
        transition: .3s; /* Sped up from .5s for snappier feel */
    }

    /* 4. Hover State */
    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
        background: var(--accent-blue); 
    }

    /* 5. Remove underline for buttons (like "Contact Us") */
    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    /* --- COLOR CORRECTIONS FOR STICKY MODE --- */
    
    /* Change Logo to Primary Color when background is White */
    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }

    /* Change Menu Links to Dark Color when background is White */
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        color: var(--dark);
    }

    /* Change Underline to Primary Color when background is White */
    .sticky-top.navbar-dark .navbar-nav .nav-link::before {
        background: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(51, 52, 70, 0.7); 
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.vendor-carousel img {
    max-height: 80px;  /* uniform height */
    object-fit: contain;
    padding: 10px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.vendor-carousel img:hover {
    transform: scale(1.1); /* subtle hover effect */
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(51, 52, 70, 0.7); /* Updated to primary match */
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: 3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    /* Updated gradient to use RGBA of primary color #333446 */
    background: linear-gradient(rgba(51, 52, 70, 0.7), rgba(51, 52, 70, 0.7)), url(../img/cs.jpg) center center no-repeat; 
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

.partner-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  padding: 20px;
  height: 120px; /* fixed height for uniformity */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.partner-logo {
  max-height: 70px;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

.partner-logo:hover {
  opacity: 1;
  transform: scale(1.1)
}


/*********************************
Bootstrap Overrides & Custom Utilities
*********************************/

/* * These rules override the template's 'bootstrap.min.css' 
 * and add custom utility classes using your :root colors.
 * The !important rule is necessary to win against the template's styles.
*/

/* --- Background Colors --- */
.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-light {
    background-color: var(--bg-light) !important; /* Fixed: Now points to light color */
}

.bg-dark {
    background-color: var(--bg-dark) !important; /* Fixed: Now points to dark color */
}

.bg-blue {
    background-color: var(--accent-blue) !important;
}

.bg-gradient-blue {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
}

/* --- Text Colors --- */
.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-accent-blue {
    color: var(--accent-blue) !important;
}

.text-accent-yellow {
    color: var(--accent-yellow) !important; /* Note: This is very light */
}

.text-light {
    color: var(--text-light) !important;
}

/* --- Button Overrides --- */
.btn.btn-primary {
    background-color: var(--accent-blue); /* Used accent blue for primary buttons for pop */
    border: none;
    color: #FFFFFF;
}
.btn.btn-primary:hover {
    background-color: var(--primary); /* Darken on hover */
}

/* --- Border Colors --- */
.border-primary {
    border-color: var(--primary) !important;
}

.responsive-text {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word; /* Ensures long words break appropriately */
}

.contact-icon-box {
  width: 60px;
  height: 60px;
  flex-shrink: 0; /* Prevents the box from shrinking */
}

.contact-icon-box i {
  font-size: 24px;
  margin: 0; /* Resets any strange margins */
}

.navbar-brand-logo { height: 50px; margin-right: 10px; }
@media (max-width: 768px) { .navbar-brand-logo { height: 40px; } } /* Mobile adjustment */

/* Vev-Style Client Cards */
.client-card {
    background: #ffffff;
    border-radius: 12px; /* Soft modern radius */
    padding: 20px;
    height: 100px; /* Fixed height for uniformity */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.05); /* Very subtle border like Vev */
    box-shadow: 0 4px 6px rgba(0,0,0,0.02); /* Minimal shadow */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: default;
}

/* The Hover Effect - Lift and Shadow */
.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--primary); /* Optional: Highlight border color */
}

/* Logo Styling - Grayscale to Color */
.client-card img {
    max-height: 60px; /* Keeps logos contained */
    max-width: 100%;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Reveal Color on Hover */
.client-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive Adjustment for Mobile */
@media (max-width: 576px) {
    .client-card {
        height: 80px;
        padding: 15px;
    }
    .client-card img {
        max-height: 40px;
    }
}

/* Modern "Cloudflare-style" Card */
.service-item {
    background: #ffffff;
    border: 1px solid #e5e7eb; /* Very subtle grey border */
    box-shadow: none !important; /* Remove default heavy shadow */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary); /* Blue border on hover */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.service-icon {
    background: rgba(37, 99, 235, 0.1) !important; /* Light tint of Royal Blue */
}

.service-icon i {
    color: var(--accent-blue) !important; /* Icon color */
}

/* 3D Carousel Container */
.three-d-carousel {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

/* The Card Size */
.three-d-carousel .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 400px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3); /* Deep shadow for 3D feel */
    overflow: hidden;
    position: relative;
    /* Glass border effect */
    border: 1px solid rgba(255, 255, 255, 0.3); 
}

/* The Image */
.three-d-carousel .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Effect: Zoom Image */
.three-d-carousel .swiper-slide:hover img {
    transform: scale(1.1);
}

/* Vev-Style Text Overlay */
.three-d-carousel .slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(100px); /* Hidden by default */
    transition: 0.4s ease;
}

/* Show text only on the active (center) slide */
.three-d-carousel .swiper-slide-active .slide-content {
    transform: translateY(0);
}

.three-d-carousel h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.three-d-carousel p {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255,255,255,0.8);
}

/* Pagination Dots */
.swiper-pagination-bullet {
    background: var(--primary) !important;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    width: 20px;
    border-radius: 5px;
    transition: width 0.3s;
}

.client-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.client-card img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}
.client-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* 2. 3D Carousel Styles */
.three-d-carousel {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}
.three-d-carousel .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}
.three-d-carousel .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.three-d-carousel .slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(9, 37, 50, 0.9), transparent);
    color: white;
    text-align: center;
}
.three-d-carousel .slide-content h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.three-d-carousel .slide-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin: 0;
}
.swiper-pagination-bullet {
    background: var(--primary) !important;
}
.logo-spin {
    transition: transform 0.8s ease-in-out;
}

.logo-spin:hover {
    transform: rotate(360deg);
}

/***********
Certificate style test
***********/

.three-d-carousel {
    height: 520px !important;
    padding-bottom: 20px !important;
}

.three-d-carousel .swiper-slide {
    width: 300px !important;
    height: 400px !important;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.three-d-carousel .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.three-d-carousel .swiper-pagination {
    bottom: 0px !important;
}


/* --- Kinetic 3D Image Style (Cleaned Up) --- */

.kinetic-ring {
    position: relative;
    width: 0;
    height: 0;
    transform-style: preserve-3d;
    animation: spinRight 25s infinite linear;
}

.kinetic-item-3d {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Reset font settings since we are using images */
    font-size: 0; 
    backface-visibility: visible;
}

/* 1. The Scene (Camera) */
.logo-3d-container {
    width: 300px;        /* Adjust size of the logo area */
    height: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px; /* Controls the 3D depth */
}

/* 2. The Spinning Object */
.logo-3d-object {
    position: relative;
    width: 200px;        /* Actual logo width */
    height: 200px;       /* Actual logo height */
    transform-style: preserve-3d;
    animation: spin3D 6s infinite linear;
}

/* 3. The Layers (Shared Styles) */
.logo-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 4. Layer Positioning */
/* The Front Face */
.logo-layer.front {
    transform: translateZ(0px);
    z-index: 100; /* Keep front on top */
}

/* The Thickness Layers (Calculated via inline var) */
.logo-layer.back-layer {
    /* Moves the image back by 1px, 2px, 3px... */
    transform: translateZ(var(--z-index));
    
    /* Darken the back layers slightly to look like a shadow/side */
    filter: brightness(0.8) grayscale(0.2);
}

/* 5. The Animation */
@keyframes spin3D {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg) ;
    }
}

 /* Only apply on screens wider than 992px (Desktop) */
@media (min-width: 992px) {
    .side-card {
        transform: translateY(40px); /* Pushes sides DOWN */
    }
    .ceo-card {
        transform: translateY(-20px) scale(1.05); /* Pushes CEO UP and slightly larger */
        z-index: 10; /* Ensures CEO card floats on top if they overlap */
        box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important; /* Stronger shadow for depth */
    }
}

.experience-badge {
        position: absolute;
        z-index: 100;
        background-color: #064E3B; /* Deep Green matches your theme */
        color: white;
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        border: 4px solid #fff;
        
        /* DESKTOP: Pops out to the right */
        right: -20px; 
        bottom: 30px; 
        max-width: 160px; 
    }

    /* MOBILE FIX (Screens smaller than 768px) */
    @media (max-width: 768px) {
        .experience-badge {
            /* 1. FORCE RIGHT ALIGNMENT (Fixes the 'Left' issue) */
            left: auto !important;
            right: 0px !important; 
            
            /* 2. POSITION AT BOTTOM */
            bottom: -30px !important; 
            
            /* 3. MOBILE SIZING */
            max-width: 150px !important;
            border: 3px solid #fff !important;
        }
    }



