/* Start custom CSS for html, class: .elementor-element-ade6dba */.femi-hero{
    position:relative;
    height:100vh;
    width:100%;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#000;
}

/* LOCAL VIDEO (THIS IS THE KEY FIX) */
.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    object-fit:cover;

    z-index:1;
}

/* OVERLAY */
.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.55)
    );
    z-index:2;
}

/* CONTENT */
.hero-content{
    position:relative;
    z-index:3;
    width:90%;
    max-width:1000px;
    text-align:center;
}

/* GLASS */
.glass-layer{
    padding:60px 40px;

    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border-radius:30px;

    box-shadow:0 20px 60px rgba(0,0,0,0.4);
}

/* TEXT STYLES */
.hero-label{
    display:block;
    color:#CC9D6B;
    font-size:13px;
    letter-spacing:5px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.hero-name{
    color:#fff;
    font-size:clamp(55px,8vw,110px);
    line-height:1;
    margin-bottom:20px;
    font-weight:700;
    letter-spacing:3px;
}

#changingText{
    color:#CC9D6B;
    font-size:clamp(22px,3vw,38px);
    font-weight:600;
    letter-spacing:3px;
    transition:0.3s ease;
}

/* PARAGRAPH */
.hero-content p{
    max-width:650px;
    margin:25px auto;
    color:#fff;
    font-size:17px;
    line-height:1.8;
}

/* BUTTONS */
.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:25px;
}

.btn-primary{
    background:#CC9D6B;
    color:#000;
    padding:16px 38px;
    border-radius:10px;
    text-decoration:none !important;
    font-weight:600;
    transition:0.4s ease;
}

.btn-primary:hover{
    transform:translateY(-5px);
}

.btn-secondary{
    padding:16px 38px;
    border-radius:10px;
    text-decoration:none !important;
    color:#fff;
    border:1px solid rgba(255,255,255,.25);
    transition:0.4s ease;
}

.btn-secondary:hover{
    border-color:#CC9D6B;
    color:#CC9D6B;
    background:rgba(255,255,255,0.05);
}

/* MOBILE */
@media(max-width:768px){

.glass-layer{
    padding:40px 20px;
    border-radius:20px;
}

.hero-buttons{
    flex-direction:column;
    align-items:center;
}

.btn-primary,
.btn-secondary{
    width:240px;
    text-align:center;
}

.hero-content p{
    font-size:16px;
}
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1208761 *//* SECTION WRAPPER */
.partners-section{
    padding:80px 0;
    background:#050505;
    text-align:center;
    overflow:hidden;
}

/* TITLE */
.partners-title{
    color:#CC9D6B;
    font-size:13px;
    letter-spacing:5px;
    margin-bottom:40px;
    text-transform:uppercase;
}

/* MARQUEE CONTAINER */
.partners-marquee{
    position:relative;
    overflow:hidden;
    width:100%;
}

/* TRACK */
.marquee-track{
    display:flex;
    gap:60px;
    width:max-content;
    animation:scroll 25s linear infinite;
    align-items:center;
}

/* LOGOS */
.marquee-track img{
    width:140px;
    height:auto;
    opacity:0.6;
    filter:grayscale(100%);
    transition:0.4s ease;
}

/* HOVER EFFECT */
.marquee-track img:hover{
    opacity:1;
    filter:grayscale(0%);
    transform:scale(1.05);
}

/* ANIMATION */
@keyframes scroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* OPTIONAL GLASS EDGE FADE */
.partners-marquee::before,
.partners-marquee::after{
    content:"";
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    z-index:2;
    pointer-events:none;
}

.partners-marquee::before{
    left:0;
    background:linear-gradient(to right, #050505, transparent);
}

.partners-marquee::after{
    right:0;
    background:linear-gradient(to left, #050505, transparent);
}

/* MOBILE */
@media(max-width:768px){

.marquee-track img{
    width:100px;
    gap:40px;
}

.marquee-track{
    gap:40px;
}
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4d907af */.creations-banner{
    position:relative;
    padding:120px 5%;
    background:url('https://femiadebajo.com/wp-content/uploads/2026/06/C2048831-B2EB-47DB-BE21-DB3183F42C06.jpg') center/cover no-repeat;
    color:#fff;
    overflow:hidden;
}

/* DARK OVERLAY */
.creations-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.6) 50%,
        rgba(0,0,0,0.85) 100%
    );
    z-index:1;
}

/* CONTENT WRAPPER */
.creations-content{
    position:relative;
    z-index:2;

    display:flex;
    justify-content:space-between;
    gap:60px;

    max-width:1200px;
    margin:auto;
}

/* LEFT SIDE */
.creations-left{
    flex:1;
}

.mini-label{
    color:#CC9D6B;
    font-size:13px;
    letter-spacing:5px;
    text-transform:uppercase;
}

.creations-left h2{
    font-size:48px;
    margin:20px 0;
    line-height:1.2;
    color: #fff;
}

.creations-left p{
    font-size:16px;
    line-height:1.8;
    color:rgba(255,255,255,0.8);
    max-width:500px;
}

/* BUTTON */
.creations-btn{
    display:inline-block;
    margin-top:30px;
    padding:16px 35px;
    background:#CC9D6B;
    color:#000;
    text-decoration:none !important;
    border-radius:10px;
    font-weight:600;
    transition:0.4s ease;
}

.creations-btn:hover{
    transform:translateY(-5px);
}

/* RIGHT SIDE */
.creations-right{
    flex:1;
    padding:30px;

    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(12px);
    border-radius:20px;
}

.creations-right h3{
    margin-bottom:20px;
    color:#CC9D6B;
    letter-spacing:3px;
    font-size:14px;
    text-transform:uppercase;
}

.creations-right ul{
    list-style:none;
    padding:0;
    margin:0;
}

.creations-right li{
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,0.08);
    font-size:15px;
    color:rgba(255,255,255,0.85);
    transition:0.3s ease;
}

.creations-right li:hover{
    color:#CC9D6B;
    transform:translateX(5px);
}

/* MOBILE */
@media(max-width:768px){

.creations-content{
    flex-direction:column;
}

.creations-left h2{
    font-size:32px;
}

.creations-right{
    margin-top:30px;
}
}


.creations-right{
    flex:1;
    padding:35px;

    /* GLASS BASE */
    background:rgba(255,255,255,0.03);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border-radius:22px;

    /* 🔥 GOLD PRIMARY BORDER */
    border:1px solid rgba(204,157,107,0.35);

    position:relative;

    box-shadow:0 20px 60px rgba(0,0,0,0.35);

    overflow:hidden;
}

/* TOP GOLD ACCENT LINE */
.creations-right::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:2px;
    background:#CC9D6B;
}

/* SUBTLE INNER GLOW */
.creations-right::after{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(
        circle at top left,
        rgba(204,157,107,0.08),
        transparent 60%
    );
    pointer-events:none;
}

/* TITLE INSIDE BOX */
.creations-right h3{
    margin-bottom:25px;
    color:#CC9D6B;
    letter-spacing:3px;
    font-size:14px;
    text-transform:uppercase;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-20dd7e7 */.what-i-do{
    padding:100px 5%;
    background:#050505;
    color:#fff;
}

/* HEADER */
.section-head{
    text-align:center;
    margin-bottom:70px;
}

.section-head span{
    color:#CC9D6B;
    font-size:13px;
    letter-spacing:5px;
    text-transform:uppercase;
}

.section-head h2{
    font-size:42px;
    margin-top:10px;
    color:#fff;
}

/* GRID (DESKTOP DEFAULT 4 COL EFFECT VIA 3 COL BASE) */
.discipline-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
}

/* CARD */
.discipline-card{
    padding:35px 30px;
    border-radius:18px;

    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

/* GOLD LINE */
.discipline-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0%;
    height:2px;
    background:#CC9D6B;
    transition:0.4s ease;
}

.discipline-card:hover::before{
    width:100%;
}

/* HOVER */
.discipline-card:hover{
    transform:translateY(-8px);
    border-color:rgba(204,157,107,0.4);
}

/* TITLE */
.discipline-card h3{
    font-size:20px;
    margin-bottom:12px;
    color:#fff;
}

/* TEXT */
.discipline-card p{
    font-size:14px;
    line-height:1.7;
    color:rgba(255,255,255,0.75);
}

/* ========================= */
/* TABLET (2 COLUMNS) */
/* ========================= */
@media(max-width:1024px){
    .discipline-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

/* ========================= */
/* MOBILE (2 COLUMNS ALSO) */
/* ========================= */
@media(max-width:1024px){
    .discipline-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

/* 🔥 FORCE 2 COLUMNS ON MOBILE (IMPORTANT FIX) */
@media(max-width:768px){
    .discipline-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
        gap:12px;
    }

    .discipline-card{
        padding:18px 14px;
    }

    .discipline-card h3{
        font-size:15px;
    }

    .discipline-card p{
        font-size:12px;
        line-height:1.4;
    }
}

/* REMOVE OR OVERRIDE SMALL PHONE BREAKPOINT */
@media(max-width:480px){
    .discipline-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    }
}/* End custom CSS */