/* Main Styles for NexGenics Website */

/* ============================================
   PERFORMANCE OPTIMIZATIONS FOR SMOOTH SCROLL
   ============================================ */

/* Enable smooth scrolling globally */
html {
    scroll-behavior: smooth;
}

/* Optimize particles canvas for GPU acceleration */
#particles-js canvas,
[id*="particles"] canvas {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Reduce paint areas for fixed elements */
.position-fixed {
    will-change: transform;
    transform: translateZ(0);
}

/* Optimize animations to use GPU */
[data-aos] {
    will-change: transform, opacity;
}

/* After animation completes, remove will-change to free memory */
[data-aos].aos-animate {
    will-change: auto;
}

/* Disable expensive effects on mobile for better performance */
@media (max-width: 991.98px) {
    /* Remove background-attachment: fixed on mobile (causes major lag) */
    .hero-section,
    body.home .hero-section,
    section[style*="background-attachment: fixed"] {
        background-attachment: scroll !important;
    }
    
    /* Reduce backdrop-filter blur on mobile */
    .backdrop-filter,
    [style*="backdrop-filter"] {
        backdrop-filter: blur(5px) !important;
        -webkit-backdrop-filter: blur(5px) !important;
    }
}

/* Optimize transform animations */
.gsap-reveal,
.fade-in-up,
.hover-scale {
    will-change: transform, opacity;
    transform: translateZ(0);
}

/* ============================================
   END PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* Offcanvas Menu Styles */
.offcanvas.offcanvas-start {
    background: linear-gradient(135deg, #1c6789 0%, #4e93b2 50%, #7ab8d1 100%) !important; /* Light blue gradient */
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas .nav-link {
    color: #ffffff !important; /* White text for max visibility */
    font-size: 1.1rem;
    font-weight: 500;
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link.active {
    color: #fff !important;
}

/* This rule targets the social icons' container to center them */
.offcanvas-body .mt-auto .d-flex {
    justify-content: center;
}

/* Navbar Styling for Transparency and Solid Background on Scroll */
.navbar.fixed-top {
    transition: all 0.4s ease-out;
}

/* Base transparent state - only for home page */
body.home .navbar:not(.scrolled) {
    background: transparent !important;
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
}

/* Default solid state for all other pages */
body:not(.home) .navbar,
.navbar.scrolled {
    background: #0f2027 !important;
    background-color: #0f2027 !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Text and link colors - transparent header on home page */
body.home .navbar:not(.scrolled) .nav-link,
body.home .navbar:not(.scrolled) .navbar-brand,
body.home .navbar:not(.scrolled) .navbar-toggler {
    color: #ffffff !important;
}

/* Button styles - transparent header on home page */
body.home .navbar:not(.scrolled) .header-contact-btn {
    background-color: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
    border-radius: 0.25rem;
}

body.home .navbar:not(.scrolled) .header-contact-btn:hover {
    background-color: #0b5ed7 !important;
    border-color: #0b5ed7 !important;
}

/* Scrolled state styles */
.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand {
    color: #fff !important;
}

.navbar.scrolled .header-contact-btn {
    background-color: var(--primary) !important;
    color: #fff !important;
    border: 1px solid var(--primary);
}

.navbar.scrolled .header-contact-btn:hover {
    background-color: #0b5ed7 !important;
    border-color: #0b5ed7 !important;
}



/* Base Styles */
:root {
    --primary: #0d6efd;
    --secondary: #6c757d;
    --success: #198754;
    --info: #0dcaf0;
    --warning: #0dcaf0; /* Changed from yellow to match theme */
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #212529;
    --body-font: 'Poppins', sans-serif;
}

body {
    font-family: var(--body-font);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Brand Warning Color Override */
.text-warning, .text-warning:hover {
    color: #0dcaf0 !important;
}

/* Custom Gradient Buttons */
.btn-gradient {
    background: linear-gradient(90deg, #00b4db 0%, #0083b0 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-gradient {
    background: transparent;
    border: 2px solid #00b4db;
    color: #00b4db;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gradient::before, .btn-outline-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0083b0 0%, #00b4db 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-gradient::before {
    background: linear-gradient(90deg, #0083b0 0%, #00b4db 100%);
}

.btn-outline-gradient::before {
    background: rgba(0, 180, 219, 0.1);
}

.btn-gradient:hover, .btn-outline-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 180, 219, 0.3);
    color: white;
    border-color: transparent;
}

.btn-gradient:hover::before, .btn-outline-gradient:hover::before {
    opacity: 1;
}

/* Custom Button Overrides */
.btn-warning, .btn-warning:focus {
    background-color: #0dcaf0 !important;
    border-color: #0dcaf0 !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.btn-warning:hover {
    background-color: #0ca6c2 !important; /* A slightly darker cyan for hover */
    border-color: #0ca6c2 !important;
}

/* Animation and Hover Effects */
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Strength Card Styles */
.strength-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.strength-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 180, 219, 0.3);
}

.strength-card .me-3 {
    transition: all 0.3s ease;
}

.strength-card:hover .me-3 {
    transform: scale(1.1);
    background: rgba(0, 180, 219, 0.3);
}

/* CTA Buttons */
.btn-cta-primary, .btn-cta-outline {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 8px;
}

.btn-cta-primary {
    background: linear-gradient(45deg, #00b4db, #0083b0);
    color: white;
    border: none;
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid rgba(0, 180, 219, 0.4);
    color: rgba(0, 180, 219, 1);
}

.btn-cta-primary:hover, .btn-cta-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-cta-primary::after, .btn-cta-outline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.btn-cta-primary:focus:not(:active)::after, 
.btn-cta-outline:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Cards */
.card {
    border: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1) !important;
}

/* Navigation */
.navbar {
    padding: 0.8rem 0;
    transition: all 0.4s ease-in-out;
    background: linear-gradient(180deg, rgba(10, 25, 47, 0.95) 0%, rgba(16, 42, 80, 0.98) 100%) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar.navbar-transparent {
    background: linear-gradient(180deg, rgba(10, 25, 47, 0.85) 0%, rgba(16, 42, 80, 0.9) 100%) !important;
    box-shadow: none !important;
}

.navbar.navbar-home,
.navbar.navbar-solid {
    background: linear-gradient(180deg, rgba(10, 25, 47, 0.98) 0%, rgba(16, 42, 80, 1) 100%) !important;
    padding: 0.5rem 0 !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4) !important;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    transition: height 0.4s ease;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #4fc3f7;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: #4fc3f7 !important;
    text-shadow: 0 0 12px rgba(79, 195, 247, 0.5);
    transform: translateY(-1px);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

/* Hero Section */
.hero-section {
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.section-header h2:after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Icons */
.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.card:hover .icon-box {
    transform: scale(1.1);
    background: rgba(0, 180, 219, 0.2) !important;
}

/* Testimonials */
.testimonial-card {
    border: 1px solid #eee;
    border-radius: 0.5rem;
    padding: 2rem;
    margin: 1rem 0;
    position: relative;
}

.testimonial-card:before {
    content: '"\201C"';
    font-family: Georgia, serif;
    font-size: 5rem;
    color: rgba(13, 110, 253, 0.1);
    position: absolute;
    top: -10px;
    left: 10px;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 5rem 0 2rem;
}

.footer h5 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    }
    
    .hero-section {
        padding: 6rem 0 4rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 7rem 0 3rem; /* leave space for sticky navbar */
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1.25rem;
        font-size: 1rem;
    }
}

/* Responsive Tweaks */
@media (max-width: 991.98px) {
    section {
        padding: 80px 0;
    }
    .display-3 {
        font-size: 2.5rem;
    }
    .display-4, .display-5 {
        font-size: 2rem;
    }
    .hero-section .lead {
        font-size: 1.125rem;
    }
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    .icon-box {
        width: 40px;
        height: 40px;
    }
    .service-card-transparent .fs-3,
    .icon-box i {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 575.98px) {
    section {
        padding: 60px 0;
    }
    .display-3 {
        font-size: 2rem;
    }
    .display-4, .display-5 {
        font-size: 1.75rem;
    }
    .hero-section .lead {
        font-size: 1rem;
    }
    .icon-box {
        width: 40px;
        height: 40px;
    }
    .team-initials-dark, .team-initials {
        width: 72px;
        height: 72px;
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Utilities */
.rounded-4 {
    border-radius: 1rem !important;
}

.shadow-hover:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1) !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Global Dark Theme Base */
.dark-theme {
    background-color: #0f2027;
    color: #fff;
}

.dark-theme section {
    padding: 100px 0;
}

.dark-theme #particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background-color: #0f2027;
    background-image: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}

.dark-theme .content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* About Page & Dark Theme Components */

/* Readability improvements */
.dark-theme .text-muted,
body.dark-theme .text-muted {
    color: rgba(255,255,255,0.75)!important;
}

.dark-theme .lead,
body.dark-theme .lead {
    color: rgba(255,255,255,0.85);
}

.dark-theme p,
.dark-theme li,
.dark-theme .card p {
    color: rgba(255,255,255,0.9);
}

/* Card readability for dark background sections */
.card.shadow-sm.p-4,
.card.team-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.9);
}
.card.shadow-sm.p-4 h3,
.card.shadow-sm.p-4 p,
.card.team-card h3,
.card.team-card p {
    color: inherit !important;
}
.card.shadow-sm.p-4 .text-muted,
.card.team-card .text-muted {
    color: rgba(255,255,255,0.85) !important;
}

/* CTA vibrant styles */
.cta-gradient-text {
    background: linear-gradient(135deg,#00b4db 0%,#0083b0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-cta-primary {
    background: linear-gradient(135deg,#00b4db 0%,#0083b0 100%);
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,180,219,0.4);
    transition: all .3s ease;
}
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,180,219,0.6); }

.btn-cta-outline {
    border: 2px solid #00b4db;
    color: #00b4db;
    transition: all .3s ease;
}
.btn-cta-outline:hover { background:#00b4db; color:#fff; box-shadow:0 4px 15px rgba(0,180,219,0.4); }

/* Vibrant gradient underline for section headings */
.section-title-gradient {
    position: relative;
    display: inline-block;
}
.section-title-gradient::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,#00b4db 0%,#0083b0 100%);
    border-radius: 2px;
}

.badge-custom {
    display: inline-block;
    padding: 0.5em 0.9em;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 50rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-transparent {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease, transform 0.3s ease;
    border-radius: 1rem;
    padding: 1.5rem;
}

.service-card-transparent:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.text-gradient {
    color: transparent !important;
    background: linear-gradient(90deg, rgba(0,180,219,1) 0%, rgba(0,180,219,0.4) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.icon-box-about {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.team-card-dark {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: transform 0.3s ease, background 0.3s ease;
    padding: 1.5rem;
}

.team-card-dark:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.team-initials-dark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    font-size: 2.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(0,180,219,1) 0%, rgba(0,180,219,0.4) 100%);
    color: #fff;
    margin: 0 auto;
}

/*--------------------------------------------------------------
# Header Transparency on Home Page
--------------------------------------------------------------*/
body.home header.navbar:not(.navbar-scrolled) {
    background-color: transparent !important;
    box-shadow: none;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
    background: linear-gradient(180deg, #02506e, #161748);
}

/*--------------------------------------------------------------
# Home Page Specific Styles
--------------------------------------------------------------*/
body.home .hero-section {
    position: relative;
    z-index: 1;
    background: url('../assets/images/home_hero_bg.png') center/cover no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff; /* Changed to white for contrast */
    margin-top: -90px;
    padding-top: 90px;
    text-align: center;
}

/* Overlay for blur and blue tint */
body.home .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 26, 69, 0.4); /* Semi-transparent dark blue */
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    z-index: 0;
}

/* Ensure content is above the overlay */
body.home .hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5); /* Enhanced shadow */
}

.hero-content .tagline-header {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.hero-content .hero-tagline p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 767.98px) {
    body.home .hero-section {
        background-image: url('../assets/images/home_hero_bg_mobile.png');
        background-attachment: scroll;
        color: #fff;
        margin-top: 0;
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
    }
    
    body.home .hero-section::before {
        background-color: rgba(15, 26, 69, 0.6); /* Darker overlay on mobile */
        backdrop-filter: blur(2px); /* Less blur on mobile for performance */
        -webkit-backdrop-filter: blur(2px);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .hero-tagline p {
        font-size: 1rem;
    }

    .hero-content .tagline-header {
        font-size: 0.9rem;
    }
}

/*--------------------------------------------------------------
# Services Page Specific Styles
--------------------------------------------------------------*/
.services-hero-section {
    position: relative;
    padding: 120px 0;
    color: #fff;
    background-color: #1a2938; /* Fallback */
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

#particles-js-services {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.services-hero-section .container {
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    padding: 0.5em 1em;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem;
    background: linear-gradient(90deg, #00b4db, #0083b0);
    margin-bottom: 1rem;
}

.gradient-text {
    background: -webkit-linear-gradient(45deg, #00b4db, #0083b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    color: #fff;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card-glass:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card-glass .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    color: #00b4db;
}

.service-card-glass h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.domain-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    color: #fff;
    transition: all 0.3s ease;
    height: 100%;
}

.domain-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00b4db;
    transform: translateY(-5px);
}

.domain-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00b4db;
}

#services-section {
    position: relative;
    padding: 80px 0;
    background-color: #121e2a;
    color: #fff;
}
