@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat+Underline:ital,wght@0,100..900;1,100..900&family=Playwrite+IT+Moderna:wght@100..400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');


:root {
    --gradient: linear-gradient(45deg, #cc00cd, #2400ff);
    --gradient-hover: linear-gradient(45deg, #b100b2, #1f00dd);
    --primary: #2400ff;
    --primary-dark: #1f00dd;
    --secondary: #cc00cd;
    --primary-hover: linear-gradient(45deg, #5a52d9, #372ab0);
    --primary-solid: #6c63ff;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-tertiary: #edf2f7;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --font-main: font-family: "Ubuntu", sans-serif;
    ;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: "Ubuntu", sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.highlight,
.nav-link:hover,
.nav-link.active,
.tool-link {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Modern Loader */
.modern-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loader-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loader-ring {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.loader-segment {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
}

.loader-segment:nth-child(1) {
    border-top: 3px solid #fff;
    animation: rotate1 1.5s linear infinite;
}

.loader-segment:nth-child(2) {
    border-right: 3px solid #00d4ff;
    animation: rotate2 1.5s linear infinite reverse;
    animation-delay: 0.1s;
}

.loader-segment:nth-child(3) {
    border-bottom: 3px solid #ff6b6b;
    animation: rotate1 1.5s linear infinite;
    animation-delay: 0.2s;
}

.loader-segment:nth-child(4) {
    border-left: 3px solid #4ecdc4;
    animation: rotate2 1.5s linear infinite reverse;
    animation-delay: 0.3s;
}

@keyframes rotate1 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotate2 {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

.loader-text {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.loader-dot {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-dot:nth-child(1) {
    animation-delay: 0s;
}

.loader-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%, 80%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.modern-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.welcome-subtitle {
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 2.5s;
}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    transition: var(--transition);
    padding: 1rem 0;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span,
.footer-logo span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.navbar.scrolled .logo {
    font-size: 1.6rem;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-link {
    position: relative;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-image: var(--gradient);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-primary {
    background-image: var(--gradient);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-image: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
        var(--primary) border-box;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: rgba(108, 99, 255, 0.1);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background: linear-gradient(to bottom, #f9f9ff, #ffffff);
    padding-top: 80px;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5rem 2rem 8rem;
    gap: 2rem;
    flex: 1;
}

.hero-content {
    text-align: center;
    flex: 1;
    max-width: 750px;

    padding: 0 1rem;
}

.title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
}

.btn-primary,
.btn-secondary {
    min-width: 150px;
    text-align: center;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    height: 600px;
}

.hero-svg {
    width: 100%;
    height: 100%;
    max-height: 600px;
    display: block;
    filter: drop-shadow(0 0 20px rgba(204, 0, 205, 0.1));
}

#Calque_1 {
    overflow: visible;
}

[id^="Tracé_1489"] {
    fill: #fff;
    stroke: url(#Dégradé_sans_nom_4);
}

#mask_buttom_right,
#mask_buttom_left,
#mask_left {
    fill: url(#Dégradé_sans_nom_4);
    opacity: 0.8;
}

#mask_light,
#mask_particles {
    opacity: 0.6;
}

.orbit {
    animation: rotate 20s linear infinite;
    stroke-linecap: round;
    transform-origin: center center;
}

.tool-icons {
    animation: rotate-reverse 15s linear infinite;
    transform-origin: center center;
}

.icon-bg {
    transition: all 0.3s ease;
    cursor: pointer;
    transition: filter 0.3s ease;
}

.icon-bg:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}

.center {
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(204, 0, 205, 0.3));
}

.connections line {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: draw 2s ease forwards;
    stroke-linecap: round;
}

@keyframes rotate {
    from {
        transform: rotate(0deg) translateX(0px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(0px) rotate(-360deg);
    }
}

@keyframes rotate-reverse {
    from {
        transform: rotate(360deg) translateX(0px) rotate(-360deg);
    }

    to {
        transform: rotate(0deg) translateX(0px) rotate(0deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f7fafc' fill-opacity='1' d='M0,192L48,176C96,160,192,128,288,133.3C384,139,480,181,576,186.7C672,192,768,160,864,170.7C960,181,1056,235,1152,240C1248,245,1344,203,1392,181.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
}

/* Tools Section */
.tools-section {
    background-color: var(--bg-secondary);
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    opacity: 0;
    transform: translateY(20px);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.tool-card {
    background-color: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(3px);
}

.tool-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -10px #cc00cd, 0 20px 30px -20px #1f00dd;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        linear-gradient(45deg, rgba(204, 0, 205, 0.1), rgba(31, 0, 221, 0.1));
}

.tool-icon {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: var(--gradient);
    border-radius: 50%;
}

.tool-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.tool-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    flex-grow: 1;
    font-size: 0.9rem;
    line-height: 1.5;
}

.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.tool-features span {
    background-color: var(--bg-tertiary);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
}

.tool-link i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.tool-link:hover i {
    transform: translateX(5px);
}



/* Footer */
.footer {
    position: relative;
    background: #000;
    color: #fff;
    padding: 4rem 2rem 2rem;
    overflow: visible;
}

.footer-mouse-follower {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

.footer-mouse-follower img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-column p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: #cccccc;
}

.social-links a:hover {
    background-image: var(--gradient);
    transform: translateY(-3px);
    color: #fff;
}

.footer-column h4 {
    background: linear-gradient(45deg, #cc00cd, #2400ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    opacity: 0.8;
    transition: var(--transition);
    color: #cccccc;
}

.footer-column ul li a:hover {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: #fff;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
}

.footer-bottom {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #333;
    margin-top: 3rem;
    padding-top: 1.3rem;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.6;
    transition: var(--transition);
    color: #cccccc;
}

.footer-links a:hover {
    opacity: 1;
    color: #fff;
}

.footer-logo span {
    color: #cc00cd;
}

.owner-watermark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    position: relative;
}

/* Welcome Animation Styles */

@media (max-width: 768px) {

    .welcome-text,
    .brand-text {
        font-size: 2.5rem;
    }

    .welcome-subtitle {
        font-size: 1.2rem;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 4rem 2rem 6rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    .title {
        font-size: 2.8rem;
    }

    .hero-3d-container {
        height: 400px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 2rem;
    }

    .title {
        font-size: 3rem;
    }

    .cta-buttons {
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1.5rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--bg-primary);
        width: 100%;
        box-shadow: var(--shadow-lg);
        padding: 2rem;
        transition: var(--transition);
        z-index: 99;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .hero-container {
        padding: 3rem 1.5rem 5rem;
    }

    .title {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .tools-section {
        padding: 4rem 1.5rem;
    }
    
    .tools-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.25rem;
    }
    
    .tool-card {
        padding: 1.25rem;
    }
    
    .tool-icon {
        font-size: 1.75rem;
        height: 45px;
        width: 45px;
        margin-bottom: 0.875rem;
    }
    
    .tool-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }
    
    .tool-card p {
        font-size: 0.875rem;
        margin-bottom: 0.875rem;
    }
    
    .tool-features span {
        font-size: 0.7rem;
        padding: 0.15rem 0.5rem;
    }

    .footer {
        padding: 4rem 1.5rem 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .title {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .modern-loader {
        padding: 1rem;
    }
    
    .loader-ring {
        width: 60px;
        height: 60px;
    }
    
    .loader-dot {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-3d-container {
        height: 300px;
    }

    .title {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .tool-card {
        padding: 1rem;
    }
    
    .tool-icon {
        font-size: 1.5rem;
        height: 40px;
        width: 40px;
        margin-bottom: 0.75rem;
    }
    
    .tool-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .tool-card p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .tool-features {
        gap: 0.3rem;
        margin-bottom: 0.75rem;
    }
    
    .tool-features span {
        font-size: 0.65rem;
        padding: 0.125rem 0.4rem;
    }
}


/* Style updates for the geometric patterns */
#socle path {
    fill: url(#gradient-1);
    opacity: 0.1;
}

[id^="mask_"] {
    fill: url(#gradient-1);
    opacity: 0.15;
}

#Tracé_1489 {
    stroke: url(#gradient-1);
}

.owner-watermark {
    position: absolute;
    bottom: 1rem;
    right: 2rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}

.owner-text {
    color: #888;
    font-style: italic;
}

.owner-name {
    background: linear-gradient(45deg, #cc00cd, #2400ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    position: relative;
}

.owner-glow {
    position: absolute;
    inset: -5px;
    background: linear-gradient(45deg, #cc00cd33, #2400ff33);
    filter: blur(10px);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.owner-watermark:hover .owner-glow {
    opacity: 1;
}

.owner-watermark:hover .owner-name {
    animation: shimmer 2s infinite linear;
}

@keyframes shimmer {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

.footer-column {
    position: relative;
    overflow: hidden;

    mix-blend-mode: normal;

}

.footer h4 {
    mix-blend-mode: normal;

}

.footer-column img {
    position: absolute;
    top: 0;
    /* mix-blend-mode: difference; */

    left: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s linear;
    transform: translate(-50%, -50%);
    z-index: 100;
}

.footer {

    position: relative;
    background: #000;
}

.cursor {
    width: 13px;
    height: 13px;
    background: #ffffff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    mix-blend-mode: difference;
    opacity: 0;
    z-index: 1;
    transform: translate(-50%, -50%);
}

/* Why Choose Us Section - Force Visibility */
.why-choose-section {
    background: #ffffff !important;
    padding: 6rem 2rem !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1 !important;
    min-height: 500px !important;
    width: 100% !important;
    margin: 0 !important;
    border: none !important;
    clear: both !important;
}

.why-choose-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 2 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.why-choose-header {
    text-align: center !important;
    margin-bottom: 4rem !important;
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.why-choose-header h2 {
    font-size: 3rem !important;
    font-weight: 700 !important;
    color: #2d3748 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
    text-shadow: none !important;
    position: relative !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.why-choose-header p {
    font-size: 1.3rem !important;
    color: #718096 !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    font-weight: 400 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2.5rem !important;
    margin-top: 4rem !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.benefit-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 2rem !important;
    padding: 3rem 2.5rem !important;
    text-align: center !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    transform-style: preserve-3d !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 300px !important;
}

/* Removed bottom layer pseudo-element */

/* Removed rotating border animation */
.benefit-card::after {
    display: none;
}

/* Removed border rotation keyframes */

/* .benefit-card:hover::after {
    opacity: 1;
} */

.benefit-icon {
    width: 90px !important;
    height: 90px !important;
    margin: 0 auto 2rem !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #3b82f6 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    transition: all 0.5s ease !important;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4) !important;
    z-index: 2 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.benefit-icon i {
    font-size: 2.2rem !important;
    color: #fff !important;
    transition: all 0.5s ease !important;
    z-index: 1 !important;
    position: relative !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.benefit-card h3 {
    font-size: 1.6rem !important;
    font-weight: 600 !important;
    color: #2d3748 !important;
    margin-bottom: 1.2rem !important;
    transition: all 0.4s ease !important;
    position: relative !important;
    z-index: 2 !important;
    line-height: 1.3 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.benefit-card p {
    color: #718096 !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    transition: all 0.4s ease !important;
    position: relative !important;
    z-index: 2 !important;
    font-size: 1rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Removed background pseudo-element */

/* Removed gradient shift animation */

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    position: relative;
}

.why-choose-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #ec4899, #6366f1);
    border-radius: 2px;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(99, 102, 241, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(236, 72, 153, 0.8), 0 0 30px rgba(99, 102, 241, 0.6);
    }
}

.why-choose-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Removed hover transform effects */

/* Removed hover background effects */

/* Removed hover border animation */

.benefit-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    z-index: 2;
}

/* Removed icon glow animation */

/* Removed icon glow keyframes */

/* Removed hover icon effects */

/* Removed hover icon glow */

.benefit-icon i {
    font-size: 2.2rem;
    color: #fff;
    transition: all 0.5s ease;
    z-index: 1;
    position: relative;
}

/* Removed hover icon transform */

/* Removed duplicate benefit card styling - using main definitions */

/* Removed hover title effects */

/* Removed duplicate benefit card paragraph styling - using main definitions */

/* Removed hover text effects */

/* Removed advanced hover effects for individual cards */

/* Responsive Design for Why Choose Us */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 4rem 1.5rem !important;
    }
    
    .why-choose-header h2 {
        font-size: 2.3rem !important;
    }
    
    .why-choose-header p {
        font-size: 1.1rem !important;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 2rem !important;
        margin-top: 3rem !important;
    }
    
    .benefit-card {
        padding: 2.5rem 2rem !important;
    }
    
    .benefit-icon {
        width: 75px !important;
        height: 75px !important;
    }
    
    .benefit-icon i {
        font-size: 1.8rem !important;
    }
    
    .benefit-card h3 {
        font-size: 1.4rem !important;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 3rem 1rem !important;
    }
    
    .why-choose-header h2 {
        font-size: 1.9rem !important;
    }
    
    .why-choose-header p {
        font-size: 1rem !important;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem !important;
    }
    
    .benefit-icon {
        width: 65px !important;
        height: 65px !important;
    }
    
    .benefit-icon i {
        font-size: 1.6rem !important;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem !important;
    }
    
    .benefit-card p {
        font-size: 0.95rem !important;
    }
}

/* Fallback visibility styles - if JavaScript fails */
noscript .why-choose-section,
.no-js .why-choose-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

noscript .benefit-card,
.no-js .benefit-card {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}