body {
    overflow-x: hidden !important;
}

/* Light Mode Hero Section (Refinement) */
.about-hero-light {
    position: relative;
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 75vh;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.blob-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: #3090c7;
    animation: pulse-light 12s infinite alternate;
}

.blob-2 {
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: #60a5fa;
    animation: pulse-light 15s infinite alternate-reverse;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

@keyframes pulse-light {
    0% { transform: scale(1); opacity: 0.15; }
    100% { transform: scale(1.1); opacity: 0.25; }
}

/* Glass Image Card */
.hero-image-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.glass-image-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.5s ease;
}

.glass-image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(48, 144, 199, 0.1);
}

.floating-vector {
    animation: float-vector 6s ease-in-out infinite;
    max-width: 100%;
    height: auto;
}

@keyframes float-vector {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.image-accent {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border: 4px solid #3090c7;
    border-radius: 20px;
    opacity: 0.2;
    z-index: -1;
}

/* Light Glass Container Content */
.about-hero-glass-container-light {
    position: relative;
    z-index: 2;
}

.hero-badge-light {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(48, 144, 199, 0.1);
    color: #3090c7;
    border: 1px solid rgba(48, 144, 199, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-title-light {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.page-subtitle-light {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 550px;
}

.btn-hero-primary-light {
    display: inline-block;
    padding: 16px 36px;
    background: #3090c7;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(48, 144, 199, 0.2);
}

.btn-hero-primary-light:hover {
    background: #1e6fa8;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(48, 144, 199, 0.3);
    color: #fff;
}

/* Mini Stats */
.stats-mini {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 40px;
    flex-wrap: wrap; /* Safety for very narrow screens */
}

.mini-stat {
    text-align: left;
    border-left: 2.5px solid #3090c7;
    padding: 2px 25px;
    flex: 1;
    min-width: 120px;
    margin-bottom: 15px;
}

.mini-stat:last-child {
    border-right: none; /* Just checking if user wants right line too, usually not */
}

.mini-stat .number {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    color: #3090c7;
    line-height: 1;
    margin-bottom: 2px;
}

.mini-stat .label {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .stats-mini {
        justify-content: flex-start;
    }
    .mini-stat {
        padding: 2px 15px;
        flex: none;
        width: 50%;
    }
    .mini-stat .number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .mini-stat {
        width: 100%;
        border-left-width: 3px;
    }
}

.hero-actions-light .accent-line {
    margin: 30px 0 0 0;
    width: 80px;
}

/* Section Common Styles */
.about-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about-section.alt-bg {
    background-image: url(../images/bg-website.png);
    background-size: contain;
    background-position: center center;
    background-repeat: repeat;
    background-attachment: fixed;
}

/* White Overlay */
.about-section.alt-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.60); /* Adjust opacity here */
    z-index: 1;
}

/* Keep content above overlay */
.about-section.alt-bg > * {
    position: relative;
    z-index: 2;
}

.about-section.dark-bg {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
}


/* Section Titles */
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title.light {
    color: #fff;
}

.section-title.light::after {
    background: linear-gradient(90deg, #60a5fa, #93c5fd);
}

/* Modern Card Styles */
.modern-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(48, 144, 199, 0.1);
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(48, 144, 199, 0.15);
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3090c7, #60a5fa);
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(48, 144, 199, 0.2);
}

/* Company Profile Section */
.company-profile {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.company-logo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-logo-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 4px solid #3090c7;
    border-radius: 20px;
    opacity: 0.3;
}

.company-logo-wrapper img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.company-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.company-content p:first-of-type {
    font-size: 1.25rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    color: #1e293b;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #3090c7 0%, #1e6fa8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Infrastructure Section */
.infra-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.infra-content h2 {
    margin-bottom: 25px;
}

.infra-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.dept-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dept-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(240, 248, 255, 0.5); /* Light glassy blue */
    backdrop-filter: blur(5px);
    border-radius: 12px;
    font-size: 0.95rem;
    color: #334155;
    transition: all 0.3s ease;
    border: 1px solid rgba(48, 144, 199, 0.1);
    border-left: 3px solid #3090c7;
}

.dept-list li:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, #3090c7 0%, #1e6fa8 100%);
    color: #fff;
}

.dept-list li i {
    color: #3090c7;
    font-size: 1.1rem;
}

.dept-list li:hover i {
    color: #fff;
}

.infra-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.infra-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(48, 144, 199, 0.1);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.infra-image:hover img {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.2),
        0 15px 40px rgba(48, 144, 199, 0.15);
}

/* Decorative corner accent */
.infra-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    border: 4px solid #3090c7;
    border-radius: 20px;
    z-index: 1;
    opacity: 0.4;
    transition: all 0.4s ease;
}

.infra-image:hover::before {
    top: -20px;
    left: -20px;
    opacity: 0.6;
}

/* Decorative background shape */
.infra-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #3090c7 0%, #60a5fa 100%);
    border-radius: 24px;
    z-index: 0;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.infra-image:hover::after {
    bottom: -25px;
    right: -25px;
    opacity: 0.4;
    transform: scale(1.05);
}

/* Why Us Section */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.why-image-wrapper {
    position: relative;
}

.why-image-wrapper img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
}

.why-content h2 {
    margin-bottom: 25px;
}

.why-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.why-content h5 {
    color: #60a5fa;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.success-factors {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.success-factors li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.success-factors li:hover {
    background: rgba(48, 144, 199, 0.2);
    transform: translateX(10px);
}

.success-factors li i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3090c7 0%, #60a5fa 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Product Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.portfolio-content h2 {
    margin-bottom: 25px;
}

.portfolio-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 30px;
}

.portfolio-content h5 {
    color: #3090c7;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    border-color: #3090c7;
    background: rgba(48, 144, 199, 0.05);
    box-shadow: 0 10px 30px rgba(48, 144, 199, 0.2);
    transform: translateY(-5px);
}

.feature-item i {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #3090c7 0%, #60a5fa 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
}

.portfolio-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* Catalogue Section */
.catalogue-section {
    background-image: url(../images/bg-website.png);
    background-size: contain;
    background-position: center center;
    background-repeat: repeat;
    background-attachment: fixed;
    padding: 80px 0;
}

/* White Overlay */
.catalogue-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.60); /* Adjust opacity here */
    z-index: 1;
}

/* Keep content above overlay */
.catalogue-section > * {
    position: relative;
    z-index: 2;
}

.catalogue-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
}

.catalogue-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.catalogue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(48, 144, 199, 0.15);
}

.catalogue-card .image-wrapper {
    position: relative;
    width: 45%;
    height: 100%;
    aspect-ratio: 16/10;
    flex-shrink: 0;
    overflow: hidden;
}

.catalogue-card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.catalogue-card:hover .image-wrapper img {
    transform: scale(1.05);
}

.catalogue-card .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.4) 0%, transparent 100%);
}

.catalogue-card .card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #3090c7 0%, #60a5fa 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.catalogue-card .card-content {
    padding: 30px;
    flex-grow: 1;
}

/* Responsive List View */
@media (max-width: 768px) {
    .catalogue-card {
        flex-direction: column;
        text-align: left;
    }
    
    .catalogue-card .image-wrapper {
        width: 100%;
        aspect-ratio: 16/9;
    }

    .catalogue-card .image-overlay {
        background: linear-gradient(to top, rgba(15, 23, 42, 0.5) 0%, transparent 100%);
    }
}

.catalogue-card .card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #64748b;
}

.catalogue-card .card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.catalogue-card .card-desc {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
}

.catalogue-card .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.catalogue-card .download-btn:hover {
    background: linear-gradient(135deg, #3090c7 0%, #60a5fa 100%);
    transform: translateX(5px);
}

.catalogue-card .download-btn i {
    transition: transform 0.3s ease;
}

.catalogue-card .download-btn:hover i {
    transform: translateY(2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .company-profile,
    .infra-grid,
    .why-us-grid,
    .portfolio-grid {
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 60px 0;
    }
    
    .company-profile,
    .infra-grid,
    .why-us-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 30px !important;
    }

    .company-profile {
        padding: 30px !important;
    }

    .portfolio-content p {
        margin-bottom: 25px;
    }
    
    .company-logo-wrapper,
    .infra-image,
    .why-image-wrapper,
    .portfolio-image {
        text-align: center;
        width: 100%;
    }
    
    .company-logo-wrapper img,
    .why-image-wrapper img,
    .portfolio-grid img {
        max-width: 90%;
        height: auto;
        margin-top: 30px;
    }
    
    .infra-grid {
        direction: ltr;
        padding: 20px;
    }
    
    .infra-content {
        order: 2;
    }
    
    .infra-image {
        order: 1;
    }
    
    .dept-list {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-item {
        padding: 15px 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero-light {
        padding: 40px 0 60px;
        text-align: center;
    }
    
    .about-hero-glass-container-light {
        margin-top: 0;
    }
    
    .page-title-light {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
    
    .page-subtitle-light {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image-wrapper {
        margin-top: 30px;
    }
    
    .glass-image-card {
        padding: 20px;
        border-radius: 20px;
    }
    
    .modern-card,
    .glass-card {
        padding: 25px;
        border-radius: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 25px 20px;
    }
    
    .catalogue-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .catalogue-card .image-wrapper {
        height: 220px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .success-factors {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .success-factors li {
        padding: 15px 18px;
    }
    
    .success-factors li i {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 50px 0 30px;
    }
    
    .about-section {
        padding: 50px 0;
    }
    
    .modern-card,
    .glass-card {
        padding: 20px;
        border-radius: 12px;
    }
    
    .catalogue-card .card-content {
        padding: 20px;
    }
    
    .catalogue-card .download-btn {
        width: 100%;
        justify-content: center;
    }
    
    .company-logo-wrapper::before {
        display: none;
    }
    
    .infra-image::after {
        display: none;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-left {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fade-right {
    animation: fadeInRight 0.6s ease forwards;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #3090c7 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Badge Styles */
.badge-primary {
    width: fit-content;
    display: inline-block;
    background: linear-gradient(135deg, #3090c7 0%, #60a5fa 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Advanced Floating Animation */
@keyframes float-advanced {
    0%, 100% {
        transform: translateY(0) scale(1);
        filter: brightness(100%);
    }
    50% {
        transform: translateY(-15px) scale(1.02);
        filter: brightness(105%);
    }
}

.floating-advanced {
    animation: float-advanced 4s ease-in-out infinite;
    will-change: transform;
}
