*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.73;
    color: #192225;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

img {
    max-width: 100%;
    display: block
}

/* ── Variables ── */
:root {
    --orange: #ff9208;
    --red: #ff1d01;
    --purple: #7635da;
    --dark-purple: #351067;
    --white: #fff;
    --text: #192225;
    --gray: #c0bad3;
}

/* ── Top Bar ── */
.top-bar {
    background: #35105f;
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-infos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.info-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.socio-list {
    margin: 0;
    padding: 0;
    padding-left: 12px;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.info-list a {
    color: #fff;
    text-decoration: none;
}

.info-list i {
    margin-right: 8px;
}

.socio-list li {
    margin-left: 0px;
}

.socio-list a {
    color: #fff;
    text-decoration: none;
}

.socio-list li:not(:last-child)::after {
    content: "|";
    margin-left: 18px;
    color: rgba(255, 255, 255, .4);
}

.top-bar .socials {
    display: flex;
    gap: 12px;
}

.top-bar .socials a {
    color: #fff;
    font-size: 14px;
    opacity: .85;
    transition: opacity .2s;
    padding-right: 12px;
    border-right: 1px solid rgba(255, 255, 255, .2);
}

.top-bar .socials a:hover {
    opacity: 1;
}

.top-bar .socials a:last-child {
    border-right: none;
    padding-right: 0;
}

.top-bar .info-list a {
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.top-bar .info-list a i {
    font-size: 15px;
    padding-right: 16px;
    margin-right: 10px;
    border-right: 1px solid rgba(255, 255, 255, .35);
}

.top-bar .info-list a span {
    padding-left: 12px;
}

/* ── Header ── */
header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px 0 17px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.logo-text img {
    max-width: 150px;
    display: block;
}

.header-info {
    border-left: 1px solid #ddd;
    margin-left: 28px;
    padding-left: 28px;
}

.contact-info {
    color: #777;
    font-size: 13px;
    line-height: 1.3;
    display: block;
}

.contact-info a {
    display: block;
    margin-top: 4px;
    color: #7635da;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #7635da;
    border-radius: 3px;
    transition: 0.3s;
}

#desktop-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

#desktop-nav ul li {
    margin-left: 32px;
}

#desktop-nav ul li a {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 31px 0;
}

#desktop-nav ul li a:hover {
    color: #7635da;
}

#desktop-nav .btn-primary {
    color: #fff !important;
    background: linear-gradient(90deg, #ff8a00, #ff2200);
    border-radius: 30px;
    min-width: 190px;
    height: 45px;
    line-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px !important;
    font-weight: 500;
    padding: 0 45px !important;
    box-shadow: 0 8px 20px rgba(255, 80, 0, .25);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: 0.3s ease;
    padding: 80px 30px 30px;
    overflow-y: auto;
}

.mobile-nav.open {
    left: 0;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav ul li a {
    font-size: 18px;
    font-weight: 600;
    color: #192225;
    padding: 12px 0;
    display: block;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #192225;
}

/* ── Container ── */
.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Hero Section (YOUR ORIGINAL STYLING PRESERVED) ── */
.hero {
    position: relative;
    overflow: hidden;
    padding: 0px 0 297px;
    background: linear-gradient(135deg, #5f2eea 0%, #7b3fe4 50%, #4b2bbd 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    z-index: 13;
    font-family: Poppins;
    visibility: visible;
    text-align: inherit;
    line-height: 73px;
    letter-spacing: -2px;
    font-weight: 700;
    font-size: 64px;
    border-color: rgb(25, 34, 37);
    border-style: none;
    margin: 0px;
    border-radius: 0px;
    padding: 0px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    white-space: nowrap;
    width: auto;
    height: auto;
    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    opacity: 1;
}

.hero p {
    z-index: 14;
    font-family: Poppins;
    visibility: visible;
    text-align: inherit;
    line-height: 30px;
    letter-spacing: 0px;
    font-weight: 400;
    font-size: 24px;
    border-color: rgb(25, 34, 37);
    border-style: none;
    margin: 0px;
    margin-top: 20px;
    border-radius: 0px;
    padding: 0px;
    color: rgb(147 140 169);
    text-decoration: none;
    white-space: nowrap;
    width: auto;
    height: auto;
    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    opacity: 1;
}

.hero-images {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-images .rocket {
    position: absolute;
    top: 10%;
    width: 100%;
    max-width: 330px;
    z-index: 2;
    left: 60%;
}

.hero-images .man {
    position: absolute;
    top: 441px;
    left: 20%;
    width: 160px;
    z-index: 3;
}

.hero-images .girl {
    position: absolute;
    top: 262px;
    right: 0;
    width: 160px;
    left: 120%;
    z-index: 3;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

/* ── Section Headings ── */
.section-head {
    text-align: center;
    margin-bottom: 50px
}

.section-head .subtitle {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-family: 'Lato', sans-serif !important;
}

.section-head h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    color: #192225
}

.section-head h2 span {
    color: var(--purple)
}

.section-subtitle {
    color: #6a38da;
    font-size: 15px;
    text-decoration: underline;
    text-underline-position: under;
    font-weight: 700;
}

/* ── Nos Métiers Bar ── */
.metiers-bar {
    background: #fff;
    padding: 60px 0 55px;
    margin-top: 0;
    border-bottom: none;
}

.metiers-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 35px;
    align-items: center;
}

.metiers-inner h2 {
    font-family: 'Lato', sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.1;
    color: #111;
    text-align: right;
    padding-right: 35px;
    border-right: 2px solid #e8e8ff;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.metiers-inner p {
    margin: 0;
    max-width: 640px;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    color: #000000;
}

/* ── Services Cards ── */
.services {
    padding: 70px 0 130px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    min-height: 320px;
    padding: 25px 40px 50px;
    text-align: center;
    border-radius: 0;
    box-shadow: none;
    transition: .3s;
    overflow: hidden;
    background-image: linear-gradient(180deg, #43d6df 0%, #37e5bd 100%);
}

.service-card-two {
    background-image: linear-gradient(180deg, #f46e9f 0%, #f69496 100%);
}

.service-card-three {
    background-image: linear-gradient(180deg, #b887e8 0%, #d8a6d0 100%);
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-icon {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    margin: 0 auto 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    z-index: 0;
    animation: pulseanim 3s infinite;
}

.icon-ring {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.icon-ring img {
    max-width: 45px;
    height: auto;
    display: block;
}

.service-card h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    font-size: 24px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    max-width: 290px;
    margin: 0 auto;
}

@keyframes pulseanim {
    0% {
        transform: scale(1);
        opacity: .7;
    }

    50% {
        transform: scale(1.22);
        opacity: .25;
    }

    100% {
        transform: scale(1);
        opacity: .7;
    }
}

/* ── Divider ── */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(118, 53, 218, .2), transparent);
    margin: 0 auto;
    max-width: 600px
}

.section-divider {
    padding: 30px 0
}

/* ── Work Process ── */
.work-process {
    padding: 100px 0;
    background: url('../../assets/images/working-procss-bg21.jpg') center/cover no-repeat;
    position: relative;
    color: #fff;
}

.work-process:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(85, 35, 220, .15);
}

.work-process .container {
    position: relative;
    z-index: 2;
}

.work-process .section-head {
    text-align: center;
    margin-bottom: 70px;
}

.work-process .subtitle {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
    border-bottom: 2px solid rgba(255, 255, 255, .5);
    padding-bottom: 5px;
}

.work-process .section-head h2 {
    font-size: 2.4rem;
    font-weight: 500;
    margin: 0;
    color: #fff;
}

.tab-nav {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 70px;
    position: relative;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tab-nav:before {
    content: "";
    position: absolute;
    top: 35px;
    left: 18%;
    width: 64%;
    height: 4px;
    background: rgba(255, 255, 255, .35);
}

.tab-btn {
    background: none;
    border: none;
    padding: 0;
    color: #fff;
    text-align: center;
    cursor: pointer;
    position: relative;
    z-index: 2;
    min-width: 180px;
}

.tab-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 255, 255, .25);
}

.tab-icon-wrap img {
    max-width: 34px;
}

.tab-icon-wrap:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .28);
    z-index: -1;
    animation: pulseanim 3s infinite;
}

.tab-label {
    display: block;
    font-size: 17px;
    font-weight: 550;
    line-height: 1.4;
}

.tab-btn.active .tab-label {
    color: #fff;
}

.tab-btn.active .tab-icon-wrap {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, .12), 0 15px 35px rgba(0, 0, 0, .18);
}

.tab-btn.active .tab-icon-wrap::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .65);
    animation: activePulse 1.8s infinite ease-out;
}

.tab-content-area {
    background: none;
    padding: 0;
    max-width: 700px;
    margin: auto;
    min-height: auto;
}

.tab-pane {
    display: none;
    font-size: 16px;
    line-height: 2;
    text-align: center;
    color: #fff;
}

.tab-pane.active {
    display: block;
    animation: fadeIn .4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes activePulse {
    0% {
        transform: scale(.85);
        opacity: .9;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

.tab-btn.active .tab-label {
    color: #fff;
    font-weight: 700;
    text-shadow: 0 3px 12px rgba(0, 0, 0, .25);
}

/* ── Ad Supports ── */
.supports {
    padding: 70px 0;
    background: #fff
}

.supports .section-head h2 {
    font-family: 'Lato', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #111;
    margin-top: 10px;
}

.supports .section-head h2 span {
    color: #f25267;
}

.supports-tabs-nav{
    display:flex;
    gap:18px; 
    margin-bottom:36px;
    justify-content:center;
    max-width:1100px;
    margin-left:auto;
    margin-right:auto;
    flex-wrap:wrap;
}


.support-tab-btn{
    flex:1;
    border:0;
    padding:0;
    background:transparent;
    min-width:160px;
}


.support-tab-card{
    width:100%;
    min-height:130px;
    border-radius:18px; 
    overflow:hidden;
    border-right:none; 
    padding:25px 15px;
    box-shadow:0 8px 24px rgba(0,0,0,0.05);
    transition:all .3s ease;
}
.support-tab-card:hover{
    transform:translateY(-4px);
}

/* keep arrow centered under active card */
.support-tab-btn.active .support-tab-card::after{
    bottom:-14px;
}

.support-tab-card .s-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: .25s
}

.support-tab-card .s-label {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center
}

.support-tab-btn.active .support-tab-card::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid var(--purple)
}

.support-tab-btn:nth-child(1) .support-tab-card {
    background: #fff0f0
}

.support-tab-btn:nth-child(2) .support-tab-card {
    background: #f0faf4
}

.support-tab-btn:nth-child(3) .support-tab-card {
    background: #fff8f0
}

.support-tab-btn:nth-child(4) .support-tab-card {
    background: #f0fcfa
}

.support-tab-btn:nth-child(5) .support-tab-card {
    background: #f4f0ff
}

.support-tab-btn:nth-child(1).active .support-tab-card {
    background: linear-gradient(-35deg, rgba(255, 155, 143, 1) 0%, rgba(248, 72, 139, 1) 100%);
}

.support-tab-btn:nth-child(1).active .support-tab-card::after {
    border-top-color: #e84c6c;
}

.support-tab-btn:nth-child(2).active .support-tab-card {
    background: linear-gradient(-35deg, rgba(250, 217, 97, 1) 0%, rgba(247, 107, 28, 1) 100%);
}

.support-tab-btn:nth-child(2).active .support-tab-card::after {
    border-top-color: #f5a623;
}

.support-tab-btn:nth-child(3).active .support-tab-card {
    background: linear-gradient(-35deg, rgba(50, 236, 173, 1) 0%, rgba(67, 214, 223, 1) 100%);
}

.support-tab-btn:nth-child(3).active .support-tab-card::after {
    border-top-color: #00b4c5;
}

.support-tab-btn:nth-child(4).active .support-tab-card {
    background: linear-gradient(-35deg, rgba(126, 213, 0, 1) 0%, rgba(0, 191, 141, 1) 100%);
}

.support-tab-btn:nth-child(4).active .support-tab-card::after {
    border-top-color: #3dbb8f;
}

.support-tab-btn:nth-child(5).active .support-tab-card {
    background: linear-gradient(-35deg, rgba(138, 99, 242, 1) 0%, rgba(196, 68, 251, 1) 100%)
}

.support-tab-btn:nth-child(5).active .support-tab-card::after {
    border-top-color: var(--purple);
}

.support-tab-btn.active .s-icon {
    background: rgba(255, 255, 255, .25) !important;
    color: #fff !important;
}

.support-tab-btn.active .s-label {
    color: #fff !important;
}

.support-tab-btn.active .support-tab-card img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.support-pane {
    display: none;
    margin-top: 28px
}

.support-pane.active {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: center;
    animation: fadeIn .3s;
    background: #f8f6ff;
    border-radius: 16px;
    padding: 36px;
    position: relative;
    overflow: hidden
}

.support-pane::after {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(118, 53, 218, .08), rgba(100, 200, 220, .12))
}

.support-img-wrap {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    position: relative;
    z-index: 1
}

.support-content {
    position: relative;
    z-index: 1
}

.support-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #192225;
    margin-bottom: 14px
}

.support-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7
}

.btn-orange {
    background: linear-gradient(90deg, #ff8a00, #ff2200);
    color: #fff;
    border: none;
    display: inline-block;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
}

/* ── Testimonials ── */
.testimonials {
    padding: 70px 0;
    background: #6a38da;
}

.testimonials-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center
}

.testimonials .section-head h2 {
    color: #fff;
    font-size: 27px;
}

.testimonials .subtitle {
    font-size: 13px;
}

.testi-slider {
    position: relative;
    min-height: 160px
}

.testi-slide {
    display: none;
    animation: fadeIn .4s
}

.testi-slide.active {
    display: block
}

.testi-text {
    font-size: 19.2px;
    color: rgba(255, 255, 255, .9);
    line-height: 1.75;
    margin-bottom: 28px;
    position: relative;
    padding: 0 20px
}

.testi-text::before {
    content: '\201C';
    font-size: 72px;
    color: rgba(255, 255, 255, .15);
    line-height: 0;
    vertical-align: -.4em;
    margin-right: 4px
}

.testi-thumbs {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 28px;
    flex-wrap: wrap;
}

.testi-thumb {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    opacity: .55;
    transition: opacity .2s;
    padding: 8px 16px;
    border-radius: 8px
}

.testi-thumb.active {
    opacity: 1;
    background: rgba(255, 255, 255, .08)
}

.testi-thumb .bio-image img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, .4)
}

.testi-thumb-info .name {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff
}

.testi-thumb-info .role {
    font-size: 12px;
    color: rgba(255, 255, 255, .6)
}

/* CTA Banner */
.cta-banner {
    background: #fff;
    padding: 35px 0 25px;
}

.cta-banner .container {
    max-width: 990px;
    min-height: 185px;
    padding: 45px 60px;
    border-radius: 22px;
    background: rgba(0, 16, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin: 0 auto;
}

.cta-banner h2 {
    font-family: 'Lato', sans-serif;
    font-size: 36px;
    line-height: 1.35;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.btn-white {
    background: #6ec1e4;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    margin-right: 30px;
}

.btn-white:hover {
    background: #fff;
    color: #3f48ff !important;
}

/* ── Footer ── */
footer {
    background-color: #001d4c;
    background-image: url('../../assets/images/line_shape.png');
    background-repeat: no-repeat;
    background-position: center top 40px;
    background-size: 100% 40%;
    color: #fff;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.footer-col h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #fff;
}

.footer-col p,
.footer-col a {
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
    text-decoration: none;
}

.footer-contact p {
    margin-bottom: 18px;
}

.footer-contact i {
    margin-right: 8px;
    color: #fff;
}

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

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

.footer-links li a::before {
    content: "•••";
    margin-right: 8px;
    color: #fff;
}

.footer-form input,
.footer-form textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.23);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 18px 20px;
    margin-bottom: 18px;
    font-size: 15px;
    outline: none;
}

.footer-form textarea {
    height: 90px;
    resize: none;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: rgba(255, 255, 255, .5);
}

.footer-form .submit-btn {
    background: transparent;
    color: #fff;
    border: 1px solid #7635da;
    padding: 16px 36px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.footer-form .submit-btn:hover {
    background: #7635da;
}

.footer-bottom {
    margin-top: 70px;
    padding: 28px 0;
    background: rgba(0, 0, 0, .15);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #fff;
    font-size: 15px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .2s
}

.social-icons a:hover {
    background: var(--purple);
    color: #fff
}

/* ── Popup ── */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

.popup-overlay.open {
    opacity: 1;
    visibility: visible
}

.popup-box {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    padding: 40px;
    position: relative;
    transform: scale(.92);
    transition: .3s;
    max-height: 90vh;
    overflow-y: auto
}

.popup-overlay.open .popup-box {
    transform: scale(1)
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    width: 30px;
    height: 30px;
    background: #f0e8ff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s
}

.popup-close:hover {
    background: var(--purple);
    color: #fff
}

.popup-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px
}

.popup-header .icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f0e8ff, #e8d5ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--purple)
}

.popup-header p {
    font-size: 15px;
    color: #555;
    line-height: 1.5
}

.popup-header strong {
    display: block;
    font-size: 16px;
    color: #192225;
    margin-bottom: 4px
}

.popup-notice {
    font-size: 14px;
    color: #777;
    background: #f8f6ff;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 20px;
    border-left: 3px solid var(--purple)
}

.popup-form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #444;
    margin-bottom: 4px;
    margin-top: 12px
}

.popup-form input,
.popup-form select {
    width: 100%;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: 10px 14px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border .2s
}

.popup-form input:focus {
    border-color: var(--purple)
}

.popup-form .submit-btn {
    margin-top: 20px;
    width: 100%;
    background: linear-gradient(to right, var(--orange), var(--red));
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 14px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s
}

.popup-form .submit-btn:hover {
    opacity: .9
}

.success-msg {
    text-align: center;
    padding: 20px 0
}

.success-msg .check {
    font-size: 48px;
    margin-bottom: 12px
}

.success-msg h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #192225;
    margin-bottom: 8px
}

.success-msg p {
    font-size: 15px;
    color: #666
}

/* ============================================ */
/* RESPONSIVE DESIGN - COMPLETE MEDIA QUERIES   */
/* ============================================ */

/* Large Tablets (992px - 1169px) */
@media (max-width: 1169px) {
    .container {
        padding: 0 30px;
    }
    
    .hero h1 {
        font-size: 52px;
        line-height: 60px;
        white-space: normal;
    }
    
    .hero p {
        font-size: 20px;
        line-height: 28px;
        white-space: normal;
    }
    
    .hero-images .rocket {
        max-width: 280px;
        left: 55%;
    }
    
    .hero-images .man {
        width: 140px;
        top: 480px;
        left: 15%;
    }
    
    .hero-images .girl {
        width: 140px;
        top: 340px;
        left: 115%;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
    .hero {
        padding: 0px 0 180px;
    }
    
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 42px;
        line-height: 50px;
        white-space: normal;
        text-align: center;
    }
    
    .hero p {
        font-size: 18px;
        line-height: 26px;
        white-space: normal;
        text-align: center;
    }
    
    .hero-images {
        height: 400px;
        margin-top: 40px;
    }
    
    .hero-images .rocket {
        position: relative;
        top: auto;
        left: auto;
        margin: 0 auto;
        max-width: 220px;
    }
    
    .hero-images .man,
    .hero-images .girl {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .metiers-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .metiers-inner h2 {
        text-align: center;
        padding-right: 0;
        border-right: none;
        border-bottom: 2px solid #e8e8ff;
        padding-bottom: 20px;
        justify-content: center;
    }
    
    .metiers-inner p {
        margin: 0 auto;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .cta-banner .container {
        flex-direction: column;
        text-align: center;
        padding: 35px 30px;
    }
    
    .cta-banner h2 {
        font-size: 28px;
    }
    
    .support-pane.active {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .tab-nav {
        gap: 30px;
    }
    
    .tab-nav:before {
        display: none;
    }
    
    .tab-btn {
        min-width: 140px;
    }
    
    .supports-tabs-nav {
        gap: 12px;
    }
    
    .support-tab-btn {
        min-width: 100px;
    }
    
    .support-tab-card {
        padding: 15px 10px;
    }
    
    .support-tab-card .s-label {
        font-size: 11px;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .top-bar-infos {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    
    .info-list {
        justify-content: center;
    }
    
    .socio-list {
        justify-content: center;
    }
    
    header .container {
        padding: 0 15px;
    }
    
    .logo-area {
        flex: 1;
    }
    
    .header-info {
        display: none;
    }
    
    #desktop-nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 0px 0 120px;
    }
    
    .hero h1 {
        font-size: 32px;
        line-height: 40px;
    }
    
    .hero p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .hero-images {
        height: 250px;
    }
    
    .hero-images .rocket {
        max-width: 180px;
    }
    
    .services {
        padding: 50px 0 80px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        min-height: auto;
        padding: 30px 20px;
    }
    
    .metiers-bar {
        padding: 40px 0;
    }
    
    .metiers-inner h2 {
        font-size: 24px;
    }
    
    .metiers-inner p {
        font-size: 16px;
    }
    
    .work-process {
        padding: 60px 0;
    }
    
    .work-process .section-head h2 {
        font-size: 28px;
    }
    
    .tab-nav {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .tab-btn {
        min-width: 200px;
    }
    
    .tab-label {
        font-size: 14px;
    }
    
    .supports {
        padding: 50px 0;
    }
    
    .supports .section-head h2 {
        font-size: 28px;
    }
    
    .supports-tabs-nav {
         gap:10px;
    }
    
    .support-tab-btn {
        min-width: calc(33.33% - 10px);
    }
    
    .support-pane.active {
        padding: 20px;
    }
    
    .testimonials {
        padding: 50px 0;
    }
    
    .testi-text {
        font-size: 16px;
    }
    
    .testi-thumb {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-contact {
        text-align: left;
    }
    
    .footer-links li a::before {
        display: none;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    
    .popup-box {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .popup-header {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 0px 0 100px;
    }
    
    .hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .hero p {
        font-size: 15px;
        line-height: 22px;
    }
    
    .hero-images {
        height: 200px;
    }
    
    .hero-images .rocket {
        max-width: 150px;
    }
    
    .section-head h2 {
        font-size: 24px;
    }
    
    .section-head .subtitle {
        font-size: 11px;
    }
    
    .services-grid {
        gap: 20px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .service-card p {
        font-size: 14px;
    }
    
    .service-icon {
        width: 120px;
        height: 120px;
    }
    
    .icon-ring {
        width: 60px;
        height: 60px;
    }
    
    .icon-ring img {
        max-width: 35px;
    }
    
    .work-process .section-head h2 {
        font-size: 24px;
    }
    
    .work-process .subtitle {
        font-size: 14px;
    }
    
    .tab-pane {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .support-tab-btn {
        min-width: calc(50% - 10px);
    }
    
    .support-tab-card .s-label {
        font-size: 10px;
    }
    
    .support-pane.active {
        padding: 15px;
    }
    
    .support-content h3 {
        font-size: 18px;
    }
    
    .support-content p {
        font-size: 14px;
    }
    
    .btn-orange {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .cta-banner {
        padding: 40px 0 20px;
    }
    
    .cta-banner .container {
        padding: 25px 20px;
    }
    
    .cta-banner h2 {
        font-size: 24px;
    }
    
    .btn-white {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    footer {
        padding-top: 50px;
    }
    
    .footer-col h4 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .footer-col p,
    .footer-col a {
        font-size: 14px;
    }
    
    .footer-form input,
    .footer-form textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .footer-form .submit-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .popup-box {
        padding: 25px 20px;
    }
    
    .testi-text {
        font-size: 14px;
    }
    
    .testi-thumb .bio-image img {
        width: 40px;
        height: 40px;
    }
    
    .testi-thumb-info .name {
        font-size: 12px;
    }
}

/* Extra Small (up to 375px) */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 24px;
        line-height: 32px;
    }
    
    .hero p {
        font-size: 14px;
        line-height: 20px;
    }
    
    .hero-images {
        height: 180px;
    }
    
    .hero-images .rocket {
        max-width: 130px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-card h3 {
        font-size: 18px;
    }
    
    .support-tab-card {
        padding: 10px 8px;
    }
    
    .support-tab-card .s-label {
        font-size: 9px;
    }
    
    .cta-banner h2 {
        font-size: 20px;
    }
    
    .btn-white {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Icon Font */
.fa-brands, .fab {
    font-weight: 800;
    font-size: .8666666667rem;
}

/* Print Styles */
@media print {
    .top-bar,
    header,
    .hamburger,
    .mobile-nav,
    .cta-banner,
    footer,
    .popup-overlay {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
    }
    
    .hero {
        background: none;
        color: #000;
        padding: 0;
    }
    
    .hero h1,
    .hero p {
        color: #000;
    }
}

.hero-content .btn-primary {
    display: inline-block;
    background-image: linear-gradient(to right, #ffa602, #ff5830);
    color: #fff !important;
    min-width: 215px;
    padding: 12px 35px;
    border-radius: 30px;
    margin-top: 30px;
    font-size: 17px;
    font-weight: 700;
    line-height: 36px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(255, 88, 48, .25);
    transition: .3s;
}

.hero-content .btn-primary:hover {
    background-image: linear-gradient(to left, #ffa602, #ff5830);
    color: #fff !important;
    transform: translateY(-2px);
}
.hero-tag {
    z-index: 12;
    font-family: Poppins;
    text-transform: uppercase;
    visibility: visible;
    text-align: inherit;
    line-height: 22px;
    letter-spacing: 0px;
    font-weight: 600;
    font-size: 20px;
    border-color: rgb(25, 34, 37);
    border-style: none;
    margin: 0px;
    border-radius: 0px;
    padding: 0px;
    color: rgb(255, 166, 2);
    text-decoration: none;
    white-space: nowrap;
    width: auto;
    height: auto;
    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    opacity: 1;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform-origin: 50% 50% 0px;
    margin-bottom: 22px;
}