@font-face {
    font-family: myFont1;
    src: url(../fonts/Outfit.ttf);
}

@font-face {
    font-family: myFont2;
    src: url(../fonts/Corben-Regular.ttf);
}

@font-face {
    font-family: myFontHead;
    src: url(../fonts/AlegreyaSans-ExtraBold.ttf);
}

@font-face {
    font-family: abtcf;
    src: url(../fonts/PCMerchisDEMO-Expanded-BF67a48db3781cc.otf);
}


@font-face {
    font-family: codeverse;
    src: url(../fonts/PCMerchisDEMO-Expanded-BF67a48db3781cc.otf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
    cursor: pointer;
}

button {

    cursor: pointer;
}

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #fc0300;
}


/* --------------smooth scroll whole page-------------------- */

/* Initial hidden state */
[data-scroll] {
    opacity: 0;
    transform: translateY(50px);
    /* Slightly below its original position */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Active state when the element is in view */
[data-scroll].show {
    opacity: 1;
    transform: translateY(0);
    /* Reset position */
}

/* --------------smooth scroll whole page end-------------------- */


body {
    background-color: #000000;
}

.main-header-section {
    background-color: #fede00;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}





/* -----------------------ham-menu-------------------- */

.hamburger {
    background-color: white;
    border-radius: 50px;
    -webkit-box-shadow: 2px 4px 14px -1px rgba(110, 94, 99, 1);
    -moz-box-shadow: 2px 4px 14px -1px rgba(110, 94, 99, 1);
    box-shadow: 2px 4px 14px -1px rgba(110, 94, 99, 1);
}

.ham-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.65rem 0.5rem;
    cursor: pointer;
    transition: width 0.3s ease;
    /* Smooth transition */
    width: 65px;
    /* Default width */
    height: 65px;

}

.ham-menu:hover {
    width: 160px;
    /* Expanded width on hover */

}


.ham-icon-img img {
    width: 50px;
    height: 50px;

}

.ham-icon i {
    color: #fc0300;
    font-size: 48px;
    margin-left: 0;
    text-align: center;

}

.hamburger:hover {
    background: #000000;
}

.ham-icon {
    display: none;
    transition: opacity 0.3s ease;
    background: #ffffff;
    border-radius: 50px;
    padding: 0 .3rem;

}

.ham-menu:hover .ham-icon {
    display: block;

}

.ham-menu:hover .ham-icon-img {
    /* margin-left: -3rem; */
    display: none;
    position: relative;


}


.shape {
    width: 400px;
    height: 400px;
    border: 1px solid blue, 1px solid blue, 1px solid blue 1px solid blue 1px solid blue;
    background-position: center;
    background: url(../images/n2.jpg) no-repeat;
    background-size: contain;

    clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
}

.nav-social-con {
    display: flex;
    justify-content: space-between;
}

.main-contact {
    display: flex;
    gap: 1rem;
    margin-left: 3rem;

}

.nav-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5rem;
}


.nav-socials li {
    list-style: none;
}

.nav-socials li a i {
    padding: 0.5rem;
}


.nav-socials li a {
    width: 44px;
    height: 44px;
    margin-right: 10px;
    margin-left: 10px;
    background-color: #D46FCF;
    /* border: 1px solid rgb(106, 106, 235); */
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease-out;
}

.nav-socials li a:hover {
    background-color: #7B47C5;
    color: #ffffff;
    border: none;
}

.nav-socials li a i {
    color: #ffffff;
}





.nav-logo1 img {
    width: 100px;
    height: 100px;

}

.nav-logo img {
    width: 200px;
    height: 200px;
    margin-left: 1rem;

}

nav {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 3rem;
    align-items: center;
    /* background-color: #040053; */

}

.navigation-menu {
    display: flex;
    justify-content: space-between;
    margin: 3rem;
    gap: 3rem;
    align-items: center;
}

.navitems {
    display: flex;
    flex-direction: column;

    /* gap: 1rem; */
}



.navitems li {
    list-style: none;
    display: inline-block;
    height: 80px;
    position: relative;

}


.navitems li a {
    color: white;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 55px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    /* font-family: myFontnav; */
    font-family: "Archivo Black", sans-serif;
    text-transform: uppercase;
    transition: all 0.5s ease;
}

.navitems li a:hover {
    animation: smoothHover 0.5s forwards;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: none;
}



@keyframes smoothHover {
    0% {
        background-image: none;
        -webkit-text-fill-color: white;
        font-weight: 400;
        letter-spacing: 3px;
        font-size: 55px;
        font-style: normal;
    }

    100% {
        background-image: url(../images1/download.jpg);
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
        font-weight: 800;
        letter-spacing: 10px;
        font-size: 70px;
        /* font-style: italic; */
    }
}

.navigation-main-modal {
    display: flex;
    display: none;
    justify-content: center;

    /* width: 1300px; */
    /* display: none; */
}

.navigation-main-modal.show {
    display: block;
    /* animation: fadeIn 0.5s ease-out; */

}



.navigation-modal {
    /* display: none; */
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1001;
    /* Sit on top */
    left: 0;
    top: -5%;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 800px;


}

.nav-modal-content {
    background-color: #000000;
    background-image: url("https://www.transparenttextures.com/patterns/batthern.png");
    margin: 4rem 1rem;
    padding: 20px;
    width: 100%;
    border-radius: 8px;
}

.nav-close-button {
    color: #aaa;
    float: right;
    font-size: 60px;
    font-weight: bold;
    cursor: pointer;
}

.nav-close-button:hover,
.nav-close-button:focus {
    color: rgb(255, 255, 255);
    text-decoration: none;
    cursor: pointer;
}

.contact-btn {
    display: flex;
    justify-content: center;
}


.button {
    pointer-events: auto;
    cursor: pointer;
    padding: 0.78rem 2rem;
    background: radial-gradient(circle at 3% 7.4%, rgb(0, 144, 243) 0%, rgb(0, 86, 240) 90%);
    border: none;
    outline: none;
    font-family: myFont1;
    font-size: 18px;
    position: relative;
}

.button::before,
.button::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.button--telesto {
    overflow: hidden;
    font-weight: 800;
    font-family: myFont1;

    font-style: italic;
    font-size: 1.15rem;
    color: #fff7f7;
}

.button--telesto span {
    display: block;
    position: relative;
    z-index: 1;

}

.button--telesto>.contact-btn span {
    overflow: hidden;
    mix-blend-mode: difference;
}

.button--telesto:hover>.contact-btn span>.contact-btn span {
    animation: MoveRightInitial 0.1s forwards, MoveRightEnd 0.3s forwards 0.2s;
}

@keyframes MoveRightInitial {
    to {
        transform: translate3d(105%, 0, 0);
    }
}

@keyframes MoveRightEnd {
    from {
        transform: translate3d(-100%, 0, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.button--telesto::before,
.button--telesto::after {
    content: '';
    background: #010203;
}

.button--telesto::before {
    width: 135%;
    -webkit-clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);
    transform: translate3d(-100%, 0, 0);
}

.button--telesto:hover::before {
    transform: translate3d(0, 0, 0);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);

}

.button--telesto::after {
    width: 105%;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

.button--telesto:hover::after {
    transform: translate3d(0, 0, 0);
    transition: transform 0.01s 0.3s cubic-bezier(0.7, 0, 0.2, 1);

}



/* --------------------modal-whatsapp-expert-button----------------------- */

.expert-modal {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;

}

/* Expert Modal Content */
.expert-modal-content {
    background: #25D366;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-in-out;
}

/* Close Button */
.expert-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

/* Expert WhatsApp Links */
.expert-whatsapp-links {
    display: block;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;

}

.expert-whatsapp-links a {
    color: #707070;
    text-decoration: none;
    background: #2dff7a;
    padding: 1px 9px;
    border-radius: 15px;
}

.expert-whatsapp-link:hover {
    background: #1eb656;
}


/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------------modal-whatsapp-expert-button-end---------------------- */


/* ================= START : UXG CREATIVE INTRO BANNER ================= */

.uxg-creative-banner {
    position: relative;
    background: #fede00;
    padding: 50px 20px 110px;
    overflow: hidden;
}

/* Subtle UI Grid */
.uxg-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Abstract Shapes */
.uxg-bg-shape {
    position: absolute;
    border: 2px solid #000;
    opacity: 0.08;
}

.uxg-shape-1 {
    width: 240px;
    height: 240px;
    top: 10%;
    left: -60px;
    transform: rotate(15deg);
}

.uxg-shape-2 {
    width: 300px;
    height: 380px;
    bottom: 15%;
    right: -80px;
    transform: rotate(-12deg);
    border-radius: 50%;
}

.uxg-shape-3 {
    width: 300px;
    height: 180px;
    top: 15%;
    right: 580px;
    transform: rotate(-12deg);
}


/* Layout */
.uxg-creative-wrap {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

/* Left Content */
.uxg-creative-tag {
    display: inline-block;
    background: #000;
    color: #fede00;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 26px;
}

.uxg-creative-title {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 28px;
    color: #000;
}

.uxg-creative-title span {
    display: inline-block;
    border-bottom: 4px solid #000;
}

.uxg-creative-text {
    font-size: 18px;
    color: #111;
    max-width: 620px;
    margin-bottom: 18px;
}

/* ================= START : UXG INTERACTIVE DESIGN CANVAS ================= */

.uxg-design-canvas {
    position: relative;
    width: 100%;
    height: 440px;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
}

/* subtle grid pattern */
.uxg-design-canvas::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(254, 222, 0, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(254, 222, 0, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* base layer */
.uxg-layer {
    position: absolute;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(6px);
}

/* UI Layout */
.uxg-layer-ui {
    top: 50px;
    left: 60px;
    background: #fede00;
    color: #000;
    animation: floatA 6s ease-in-out infinite;
}

/* UX Flow */
.uxg-layer-ux {
    top: 160px;
    right: 70px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    animation: floatB 7s ease-in-out infinite;
}

/* Typography */
.uxg-layer-typo {
    bottom: 90px;
    left: 90px;
    background: rgba(254, 222, 0, 0.15);
    color: #fede00;
    border: 1px solid rgba(254, 222, 0, 0.4);
    animation: floatC 8s ease-in-out infinite;
}

/* Color System */
.uxg-layer-color {
    bottom: 140px;
    right: 120px;
    background: #fff;
    color: #000;
    animation: floatD 6.5s ease-in-out infinite;
}

/* Hover interaction */
.uxg-layer:hover {
    transform: scale(1.12) translateY(-6px);
    z-index: 5;
    box-shadow: 0 25px 60px rgba(254, 222, 0, 0.4);
}

/* cursor hint */
.uxg-cursor-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    color: #fede00;
    opacity: 0.8;
    letter-spacing: 1px;
}

/* Animations */
@keyframes floatA {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes floatB {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(14px);
    }
}

@keyframes floatC {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(10px) rotate(2deg);
    }
}

@keyframes floatD {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

/* Mobile */
@media (max-width: 992px) {
    .uxg-design-canvas {
        height: 320px;
        margin-top: 30px;
    }
}

/* ================= END : UXG INTERACTIVE DESIGN CANVAS ================= */


/* Responsive */
@media (max-width: 992px) {
    .uxg-creative-wrap {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .uxg-creative-title {
        font-size: 36px;
    }
}

/* ================= END : UXG CREATIVE INTRO BANNER ================= */



/* ================= START : UI/UX HERO ================= */

.uxg-hero {
    position: relative;
    padding: 70px 20px;
    background: linear-gradient(135deg, #000 0%, #111 55%, #fede00 140%);
    color: #fff;
    overflow: hidden;
}

/* abstract grid pattern */
.uxg-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(254, 222, 0, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(254, 222, 0, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.uxg-hero-wrap {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.uxg-hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(254, 222, 0, 0.12);
    color: #fede00;
    font-weight: 600;
    font-size: 14px;
    border-left: 4px solid #fede00;
    margin-bottom: 18px;
}

.uxg-hero-title {
    font-size: 42px;
    line-height: 1.25;
    margin-bottom: 18px;
}

.uxg-hero-title span {
    color: #fede00;
}

.uxg-hero-desc {
    font-size: 16px;
    color: #d7d7d7;
    margin-bottom: 22px;
    max-width: 560px;
}

.uxg-hero-points {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.uxg-hero-points li {
    margin-bottom: 10px;
    font-size: 15px;
}

.uxg-hero-points i {
    color: #fede00;
    margin-right: 8px;
}

.uxg-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.uxg-btn-primary {
    background: #fede00;
    color: #000;
    padding: 14px 26px;
    font-weight: 700;
    text-decoration: none;
}

.uxg-btn-secondary {
    border: 1px solid #fede00;
    color: #fede00;
    padding: 14px 26px;
    text-decoration: none;
}

.uxg-hero-note {
    margin-top: 18px;
    font-size: 14px;
    color: #bfbfbf;
}

/* RIGHT VISUAL */
.uxg-hero-visual {
    display: grid;
    gap: 18px;
}

.uxg-design-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    padding: 22px;
    height: fit-content;
    border-left: 4px solid #fede00;
}

.uxg-design-card h4 {
    color: #fede00;
    margin-bottom: 6px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .uxg-hero-wrap {
        grid-template-columns: 1fr;
    }
}

/* ================= END : UI/UX HERO ================= */


/* ================= START : WEB DESIGN VS UI UX SECTION ================= */

.wdux-compare {
    background: #000;
    color: #fff;
    padding: 70px 20px;
}

.wdux-container {
    max-width: 1300px;
    margin: auto;
}

/* Head */
.wdux-head {
    max-width: 900px;
    margin-bottom: 60px;
}

.wdux-badge {
    display: inline-block;
    background: #fede00;
    color: #000;
    font-weight: 700;
    padding: 8px 16px;
    margin-bottom: 18px;
}

.wdux-head h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.wdux-head h2 span {
    color: #fede00;
}

.wdux-head p {
    font-size: 16px;
    opacity: 0.9;
}

/* Grid */
.wdux-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Boxes */
.wdux-box {
    background: linear-gradient(160deg, #0d0d0d, #680101);
    padding: 36px;
    border-left: 6px solid #fede00;
    border-right: 6px solid #fede00;
}

.wdux-box h3 {
    font-size: 26px;
    margin-bottom: 6px;
}

.wdux-sub {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 22px;
}

.wdux-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 22px;
}

.wdux-box ul li {
    font-size: 15px;
    margin-bottom: 10px;
}

.wdux-box i {
    color: #fede00;
    margin-right: 8px;
}

/* Who it is for */
.wdux-for {
    background: rgba(254, 222, 0, 0.1);
    padding: 14px;
    font-size: 14px;
}

.wdux-for strong {
    display: block;
    color: #fede00;
    margin-bottom: 4px;
}

/* Footer CTA */
.wdux-footer {
    margin-top: 60px;
    text-align: center;
}

.wdux-footer p {
    max-width: 700px;
    margin: auto auto 20px;
    font-size: 16px;
}

.wdux-cta {
    display: inline-block;
    padding: 14px 30px;
    background: #fede00;
    color: #000;
    font-weight: 700;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
    .wdux-grid {
        grid-template-columns: 1fr;
    }

    .wdux-head h2 {
        font-size: 30px;
    }
}

/* ================= END : WEB DESIGN VS UI UX SECTION ================= */


/* ================= SHORT COURSES – LEAD GENERATORS START ================= */

.sc-lead-section {
    padding: 90px 18px;
    background: linear-gradient(160deg, #fede00 0%, #fff2a8 100%);
    position: relative;
    overflow: hidden;
}

.sc-lead-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(57, 57, 56, 0.236) 0, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(69, 0, 0, 0.04) 0, transparent 45%);
    pointer-events: none;
}

.sc-lead-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.sc-lead-head {
    max-width: 700px;
    margin-bottom: 60px;
}

.sc-lead-tag {
    display: inline-block;
    background: #000;
    color: #fede00;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.sc-lead-head h2 {
    font-size: 46px;
    color: #000;
    font-weight: 800;
    line-height: 1.2;
}

.sc-lead-head h2 span {
    color: #f4f4f4;
    font-weight: 900;
}

.sc-lead-head p {
    margin-top: 16px;
    font-size: 16px;
    color: #222;
}

/* Horizontal flowing layout */
.sc-lead-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-bottom: 50px;
}

.sc-lead-course {
    background: rgba(0, 0, 0, 0.9);
    color: #fede00;
    padding: 28px;
    position: relative;
    transition: transform 0.3s ease;
}

.sc-lead-course::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(254, 222, 0, 0.3);
    transform: translate(6px, 6px);
    pointer-events: none;
}

.sc-lead-course:hover {
    transform: translateY(-6px);
}

.sc-lead-course h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.sc-lead-course p {
    font-size: 14px;
    line-height: 1.6;
    color: #ffe;
}

.sc-lead-meta {
    display: block;
    margin-top: 14px;
    font-size: 12px;
    color: #fede00;
    opacity: 0.9;
}

/* Footer CTA */
.sc-lead-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.sc-lead-points span {
    display: inline-block;
    margin-right: 18px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.sc-lead-btn {
    background: #000;
    color: #fede00;
    padding: 14px 26px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .sc-lead-head h2 {
        font-size: 28px;
    }

    .sc-lead-foot {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ================= SHORT COURSES – LEAD GENERATORS END ================= */





/* ================= START : COURSE MODULES BREAKDOWN ================= */

.ui-mod-break {
    background: #161616;
    padding: 70px 20px;
    color: #fff;
}

.ui-mod-wrap {
    max-width: 1300px;
    margin: auto;
}

/* Head */
.ui-mod-head {
    max-width: 800px;
    margin-bottom: 70px;
}

.ui-mod-badge {
    display: inline-block;
    background: #fede00;
    color: #000;
    font-weight: 700;
    padding: 8px 18px;
    margin-bottom: 18px;
}

.ui-mod-head h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.ui-mod-head h2 span {
    color: #fede00;
}

.ui-mod-head p {
    font-size: 16px;
    opacity: 0.9;
}

/* Modules */
.ui-mod-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.ui-mod-item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(254, 222, 0, 0.25);
}

.ui-mod-no {
    font-size: 36px;
    font-weight: 800;
    color: #fede00;
    line-height: 1;
}

.ui-mod-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.ui-mod-content p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .ui-mod-head h2 {
        font-size: 30px;
    }

    .ui-mod-item {
        gap: 18px;
    }

    .ui-mod-no {
        font-size: 28px;
    }
}

/* ================= END : COURSE MODULES BREAKDOWN ================= */




/* ================= Graphic Design Core Course Offer Section START ================= */

.gd-offer-section {
    background: linear-gradient(135deg, #fede00 0%, #ffea4d 100%);
    padding: 90px 18px;
    position: relative;
    overflow: hidden;
}

.gd-offer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.05) 1px,
            transparent 1px,
            transparent 10px);
    pointer-events: none;
}

.gd-offer-wrap {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.gd-offer-badge {
    display: inline-block;
    background: #000;
    color: #fede00;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.gd-offer-content h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #000;
}

.gd-offer-content h2 span {
    color: #222;
    font-weight: 600;
}

.gd-offer-desc {
    margin: 20px 0;
    font-size: 16px;
    color: #222;
    max-width: 640px;
}

.gd-offer-points {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
}

.gd-offer-points li {
    font-size: 15px;
    margin-bottom: 10px;
    padding-left: 4px;
}

.gd-offer-cta {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}

.gd-offer-price span {
    font-size: 13px;
    color: #333;
}

.gd-offer-price h3 {
    font-size: 34px;
    margin: 4px 0;
    color: #ff0000;
}

.gd-offer-price p {
    font-size: 13px;
    color: #444;
}

.gd-offer-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.gd-btn-primary {
    background: #000;
    color: #fede00;
    padding: 14px 22px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

.gd-btn-outline {
    border: 2px solid #000;
    color: #000;
    padding: 12px 20px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

/* Right visual */
.gd-offer-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gd-visual-card {
    background: #000;
    color: #fede00;
    padding: 36px;
    max-width: 300px;
    transform: rotate(-2deg);
}

.gd-visual-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.gd-visual-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .gd-offer-wrap {
        grid-template-columns: 1fr;
    }

    .gd-offer-content h2 {
        font-size: 30px;
    }
}

/* ================= Graphic Design Core Course Offer Section END ================= */



/* ================= UIUX Core Course Offer Section Start ================= */

.ux-offer-v2 {
    background: #050505;
    padding: 80px 20px;
    color: #fff;
}

.ux-offer-v2-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
}

/* LEFT */

.ux-offer-v2-badge {
    background: #fede00;
    color: #000;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 18px;
}

.ux-offer-v2-left h2 {
    font-size: 44px;
    line-height: 1.2;
}

.ux-offer-v2-left h2 span {
    color: #fede00;
}

.ux-offer-v2-desc {
    margin-top: 18px;
    color: #ccc;
    font-size: 16px;
    max-width: 650px;
}

.ux-offer-v2-benefits {
    list-style: none;
    padding: 0;
    margin-top: 28px;
}

.ux-offer-v2-benefits li {
    margin-bottom: 14px;
    font-size: 15px;
    position: relative;
    padding-left: 26px;
}

.ux-offer-v2-benefits li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #fede00;
}

/* CTA */

.ux-offer-v2-cta {
    margin-top: 36px;
    display: flex;
    gap: 18px;
}

.ux-btn {
    padding: 14px 28px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
}

.ux-btn.primary {
    background: #fede00;
    color: #000;
}

.ux-btn.primary:hover {
    box-shadow: 0 12px 35px rgba(254, 222, 0, 0.45);
    transform: translateY(-3px);
}

.ux-btn.secondary {
    border: 2px solid #fede00;
    color: #fede00;
}

/* RIGHT OFFER CARD */

.ux-offer-v2-right {
    position: relative;
    background: linear-gradient(180deg, #4c0202, #000);
    border: 3px solid #fede00;
    padding: 40px 34px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.ux-offer-ribbon {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #fede00;
    color: #000;
    font-weight: 800;
    font-size: 12px;
    padding: 6px 18px;
}

.ux-offer-v2-right h3 {
    margin-top: 20px;
    font-size: 22px;
}

.ux-price-box {
    margin: 26px 0;
}

.ux-old-price {
    display: block;
    text-decoration: line-through;
    color: #aaa;
    font-size: 18px;
}

.ux-new-price {
    font-size: 52px;
    font-weight: 900;
    color: #fede00;
}

.ux-save {
    display: block;
    font-size: 14px;
    color: #fede00;
    margin-top: 6px;
}

.ux-offer-stack {
    margin-top: 24px;
    text-align: left;
    font-size: 14px;
}

.ux-offer-stack p {
    margin-bottom: 10px;
}

.ux-offer-urgency {
    margin-top: 24px;
    font-size: 13px;
    color: #fede00;
    letter-spacing: 1px;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .ux-offer-v2-container {
        grid-template-columns: 1fr;
    }

    .ux-offer-v2-right {
        max-width: 420px;
        margin: auto;
    }
}

@media (max-width: 600px) {
    .ux-offer-v2-left h2 {
        font-size: 30px;
    }

    .ux-new-price {
        font-size: 38px;
    }
}

/* ================= UIUX Core Course Offer Section End ================= */


/* ================= Start : COMBO COURSE1 SECTION =================  */

.combo-power {
    background: radial-gradient(circle at top, #1e1e1e, #050505);
    padding: 80px 20px;
    color: #fff;
    overflow: hidden;
}

.combo-power-wrap {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}

/* LEFT */

.combo-tag {
    background: #fede00;
    color: #000;
    padding: 7px 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 18px;
}

.combo-power-intro h2 {
    font-size: 56px;
    line-height: 1.2;
}

.combo-power-intro h2 span {
    color: #fede00;
}

.combo-power-intro p {
    margin-top: 18px;
    font-size: 16px;
    color: #cfcfcf;
    max-width: 520px;
}

/* COMBO CARD */

.combo-card::before {
    content: "";
    position: absolute;
    inset: -60%;
    background:
        radial-gradient(circle at 30% 30%,
            rgba(115, 11, 10, 0.35),
            transparent 60%),
        radial-gradient(circle at 80% 70%,
            rgba(254, 220, 0, 0.268),
            transparent 65%);
    filter: blur(80px);
    z-index: 0;
}

.combo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg,
            transparent 40%,
            rgba(254, 220, 0, 0.375),
            transparent 60%);
    opacity: 0.6;
    z-index: 0;
}

.combo-card {
    position: relative;
    /* background: linear-gradient(180deg, #55000062, #000); */
    padding: 46px 42px;
    border-radius: 22px;
    border: 2px solid rgba(254, 222, 0, 0.35);
    overflow: hidden;
}

.combo-glow {
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle, rgba(254, 0, 0, 0.333), transparent 60%);
    z-index: 0;
}

.combo-card>* {
    position: relative;
    z-index: 1;
}

.combo-badge {
    position: absolute;
    top: 22px;
    right: -40px;
    transform: rotate(45deg);
    background: #fede00;
    color: #000;
    font-weight: 900;
    font-size: 11px;
    padding: 8px 50px;
}

.combo-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.combo-card h3 span {
    color: #fede00;
}

.combo-desc {
    font-size: 15px;
    color: #d6d6d6;
    margin-bottom: 22px;
}

/* VALUE STACK */

.combo-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 26px;
}

.combo-stack span {
    background: rgba(254, 222, 0, 0.08);
    padding: 10px 12px;
    border-left: 3px solid #fede00;
}

/* PRICE */

.combo-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 26px;
}

.combo-price-left .old {
    display: block;
    text-decoration: line-through;
    color: #aaa;
    font-size: 15px;
}

.combo-price-left .new {
    font-size: 44px;
    font-weight: 900;
    color: #fe0000;
}

.combo-save {
    background: rgba(254, 222, 0, 0.15);
    color: #fede00;
    font-weight: 700;
    padding: 10px 14px;
    font-size: 13px;
}

/* CTA */

.combo-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.combo-btn {
    padding: 14px 26px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s ease;
}

.combo-btn.primary {
    background: #fede00;
    color: #000;
}

.combo-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(254, 222, 0, 0.45);
}

.combo-btn.secondary {
    border: 2px solid #fede00;
    color: #fede00;
}

.combo-btn.secondary:hover {
    background: #fede00;
    color: #000;
}

.combo-urgency {
    margin-top: 20px;
    font-size: 13px;
    color: #fede00;
    letter-spacing: 0.5px;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .combo-power-wrap {
        grid-template-columns: 1fr;
    }

    .combo-card {
        max-width: 520px;
        margin: auto;
    }
}

@media (max-width: 600px) {
    .combo-power-intro h2 {
        font-size: 30px;
    }

    .combo-price-left .new {
        font-size: 34px;
    }

    .combo-stack {
        grid-template-columns: 1fr;
    }
}

/* ================= END : COMBO COURSE1 SECTION =================  */

/* ================= POWER COMBO 2 OFFER ================= */

.combo2-offer {
    position: relative;
    padding: 80px 20px;
    background: #050505;
    color: #fff;
    overflow: hidden;
}

/* background energy */
.combo2-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(140deg, rgba(254, 220, 0, 0.275), transparent 45%),
        linear-gradient(-45deg, rgba(254, 222, 0, 0.10), transparent 60%),
        repeating-linear-gradient(120deg,
            rgba(255, 255, 255, 0.03),
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 90px);
    z-index: 0;
}

.combo2-wrap {
    position: relative;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 60px;
    z-index: 2;
}

/* LEFT CONTENT */

.combo2-ribbon {
    display: inline-block;
    background: #fede00;
    color: #000;
    padding: 8px 18px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.combo2-info h2 {
    font-size: 44px;
    line-height: 1.2;
}

.combo2-info h2 span {
    color: #fede00;
}

.combo2-desc {
    margin-top: 20px;
    font-size: 16px;
    color: #cfcfcf;
    line-height: 1.7;
}

.combo2-list {
    margin-top: 30px;
    list-style: none;
    padding: 0;
}

.combo2-list li {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
}

.combo2-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #fede00;
}

/* buttons */

.combo2-actions {
    margin-top: 36px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.combo2-btn {
    padding: 14px 28px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.35s ease;
}

.combo2-btn.primary {
    background: #fede00;
    color: #000;
}

.combo2-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(254, 222, 0, 0.35);
}

.combo2-btn.outline {
    border: 2px solid #fede00;
    color: #fede00;
}

.combo2-btn.outline:hover {
    background: #fede00;
    color: #000;
}

/* RIGHT OFFER BOX */

.combo2-offerbox {
    position: relative;
    padding: 42px;
    background:
        linear-gradient(180deg, rgba(254, 0, 0, 0.299), rgba(0, 0, 0, 0.2));
    border-top: 6px solid #fede00;
    border-bottom: 6px solid #fede00;
}

.combo2-tag {
    display: inline-block;
    background: #000;
    border: 1px solid #fede00;
    color: #fede00;
    padding: 6px 14px;
    font-size: 12px;
    margin-bottom: 20px;
}

.combo2-price {
    margin: 18px 0;
}

.combo2-price .old {
    display: block;
    text-decoration: line-through;
    color: #aaa;
    font-size: 18px;
}

.combo2-price .new {
    font-size: 48px;
    font-weight: 900;
    color: #fede00;
}

.combo2-note {
    font-size: 15px;
    color: #ddd;
    margin-bottom: 28px;
}

.combo2-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.combo2-meta div {
    background: rgba(0, 0, 0, 0.6);
    padding: 14px;
    border: 1px solid rgba(254, 222, 0, 0.35);
    text-align: center;
}

.combo2-meta span {
    font-size: 12px;
    color: #aaa;
}

.combo2-meta p {
    margin-top: 6px;
    font-weight: 700;
    color: #fede00;
    font-size: 17px;
}

/* responsive */

@media (max-width: 980px) {
    .combo2-wrap {
        grid-template-columns: 1fr;
    }

    .combo2-offerbox {
        max-width: 320px;
        margin: auto;
    }

    .combo2-meta {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 18px;
    }
}

@media (max-width: 600px) {
    .combo2-info h2 {
        font-size: 30px;
    }

    .combo2-price .new {
        font-size: 38px;
    }
}

/* ================= END : POWER COMBO 2 OFFER ================= */



/* ================= TOOLS COVERED SECTION Start =================  */

.cf-tools-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #fede00 0%, #ff0d003d 40%, #000000 100%);
    color: #fede00;
    position: relative;
    overflow: hidden;
}

.cf-tools-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cf-tools-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cf-tools-subtitle {
    font-size: 1.2rem;
    color: #dedede;
    margin-bottom: 50px;
}

.cf-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.cf-tool-card {
    background: rgba(255, 209, 3, 0.233);
    padding: 25px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.cf-tool-card img {
    width: 60px;
    margin-bottom: 15px;
}

.cf-tool-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.cf-tool-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 992px) {
    .cf-tools-title {
        font-size: 2.5rem;
    }

    .cf-tools-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .cf-tools-grid {
        gap: 25px;
    }

    .cf-tool-card {
        padding: 20px;
    }

    .cf-tool-card img {
        width: 50px;
    }
}

/* Small devices (mobiles, 576px and up) */
@media (max-width: 768px) {
    .cf-tools-title {
        font-size: 2rem;
    }

    .cf-tools-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .cf-tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }

    .cf-tool-card img {
        width: 45px;
    }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 576px) {
    .cf-tools-title {
        font-size: 1.8rem;
    }

    .cf-tools-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .cf-tool-card {
        padding: 15px;
    }

    .cf-tool-card img {
        width: 40px;
    }
}

/* ================= TOOLS COVERED SECTION End =================  */



/* ================= START : DM TESTIMONIALS WALL ================= */

.uxui-test-section {
    position: relative;
    padding: 110px 20px;
    background: #fede00;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* UX / GRID / CURSOR INSPIRED BACKGROUND */
.uxui-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.15), transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(0, 0, 0, 0.18), transparent 45%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.12) 1px, transparent 1px);
    background-size: auto, auto, 42px 42px, 42px 42px;
    pointer-events: none;
    opacity: 0.9;
}

.uxui-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* HEAD */
.uxui-head {
    max-width: 700px;
    margin-bottom: 70px;
}

.uxui-eyebrow {
    display: inline-block;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 12px;
    color: #000;
}

.uxui-head h2 {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    color: #000;
}

.uxui-head h2 span {
    background: #000;
    color: #fede00;
    padding: 0 10px;
}

.uxui-head p {
    margin-top: 16px;
    font-size: 16px;
    color: #111;
    max-width: 560px;
}

/* GRID */
.uxui-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

/* REVIEW CARDS */
.uxui-review {
    background: #000;
    color: #fff;
    padding: 34px 32px;
    border-radius: 18px;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.uxui-review::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, transparent 30%, rgba(254, 222, 0, 0.35), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.uxui-review:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.uxui-review:hover::before {
    opacity: 1;
}

/* RATINGS */
.uxui-rating {
    color: #fede00;
    margin-bottom: 14px;
}

/* TEXT */
.uxui-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 26px;
}

/* USER */
.uxui-user strong {
    display: block;
    font-size: 15px;
}

.uxui-user span {
    font-size: 13px;
    opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .uxui-review-grid {
        grid-template-columns: 1fr;
    }
}



/* ================= END : DM TESTIMONIALS WALL ================= */















































































/* ---------------start- Premium FAQ Section ---------------- */
/* ================= COURSE FAQ ================= */

.pl-faq {
    background: radial-gradient(circle at top, #ff000038 0%, #1b1b1b 70%);
    padding: 70px 6%;
    color: #fff;
}

.pl-faq-wrap {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

/* LEFT */
.pl-faq-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(254, 222, 0, 0.15);
    color: #fede00;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pl-faq-head h2 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
}

.pl-faq-head span {
    color: #fede00;
}

.pl-faq-head p {
    margin-top: 16px;
    font-size: 15.5px;
    opacity: 0.8;
    max-width: 480px;
}

/* QUESTIONS */
.pl-faq-questions {
    list-style: none;
    margin-top: 40px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pl-faq-questions li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: linear-gradient(145deg, #0f0f0f, #050505);
    border-radius: 14px;
    cursor: pointer;
    border-left: 4px solid transparent;
    transition: 0.35s ease;
}

.pl-faq-questions li i {
    color: #fede00;
}

.pl-faq-questions li:hover {
    transform: translateX(8px);
}

.pl-faq-questions li.active {
    border-left: 4px solid #fede00;
    box-shadow: 0 20px 40px rgba(254, 222, 0, 0.15);
    background: linear-gradient(145deg, #171717, #0a0a0a);
}

/* RIGHT */
.pl-faq-display {
    position: relative;
    padding: 50px;
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(254, 220, 0, 0.371), transparent),
        linear-gradient(180deg, #0e0e0e, #050505);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
}

.pl-faq-display::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    background: radial-gradient(circle at top right, rgba(254, 0, 0, 0.226), transparent 60%);
    pointer-events: none;
}

.pl-faq-answer {
    display: none;
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
}

.pl-faq-answer.active {
    display: block;
    animation: fadeSlide 0.4s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .pl-faq-wrap {
        grid-template-columns: 1fr;
    }

    .pl-faq-display {
        padding: 36px;
    }

    .pl-faq-head h2 {
        font-size: 30px;
    }
}

/* ================= END COURSE FAQ ================= */



/* ================================contact-us-section================================== */


.con-main-section {
    display: flex;
    justify-content: center;
    padding: 5rem 0 5rem 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle farthest-side at 0% 50%,
            #282828 23.5%,
            rgba(255, 170, 0, 0) 0) 21px 30px,
        radial-gradient(circle farthest-side at 0% 50%,
            #2c3539 24%,
            rgba(240, 166, 17, 0) 0) 19px 30px,
        linear-gradient(#282828 14%,
            rgba(240, 166, 17, 0) 0,
            rgba(240, 166, 17, 0) 85%,
            #282828 0) 0 0,
        linear-gradient(150deg,
            #282828 24%,
            #2c3539 0,
            #2c3539 26%,
            rgba(240, 166, 17, 0) 0,
            rgba(240, 166, 17, 0) 74%,
            #2c3539 0,
            #2c3539 76%,
            #282828 0) 0 0,
        linear-gradient(30deg,
            #282828 24%,
            #2c3539 0,
            #2c3539 26%,
            rgba(240, 166, 17, 0) 0,
            rgba(240, 166, 17, 0) 74%,
            #2c3539 0,
            #2c3539 76%,
            #282828 0) 0 0,
        linear-gradient(90deg, #2c3539 2%, #282828 0, #282828 98%, #2c3539 0%) 0 0 #282828;
    background-size: 40px 60px;
}

.contact-container {
    display: flex;
    width: 90%;
    max-width: 1100px;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    font-family: "Poppins", sans-serif;

}

/* Left Side - Contact Info */
.contact-info {
    background: #fff387;
    padding: 40px;
    flex: 1;
}

.contact-info h2 {
    color: #e63946;
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-info p {
    color: #555;
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-detail i {
    font-size: 22px;
    background: #e63946;
    color: #fefefe;
    padding: 10px;
    border-radius: 50%;
    margin-right: 15px;
}

.contact-detail h3 {
    font-size: 16px;
    color: #e63946;
    margin-bottom: 5px;
}

.contact-detail p {
    font-size: 14px;
    color: #333;
    margin: 0;
}

/* Social Links */
.con-social-links h3 {
    font-size: 16px;
    color: #e63946;
    margin-bottom: 10px;
}

.con-social-links a {
    display: inline-block;
    margin-right: 10px;
    color: #e63946;
    font-size: 20px;
    transition: 0.3s;
}

.con-social-links a:hover {
    color: #000;
}

/* Right Side - Contact Form */
.contact-form {
    padding: 40px;
    flex: 1;
}

.contact-form h2 {
    color: #333;
    font-size: 27px;
    margin-bottom: 20px;
    text-align: center;
}

.con-form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.con-form-group input {
    width: 100%;
    border: none;
    background: #fedc003c;
    padding: 1rem;
    border-radius: 40px;
    outline: none;
    font-family: "Poppins", sans-serif;

}



.con-form-foot textarea {
    width: 100%;
    padding: 1rem;
    margin: 1rem 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    font-family: "Poppins", sans-serif;

}

.con-form-foot textarea {
    resize: none;
}

.con-form-foot button {
    background: #fede00;
    color: #000;
    border: none;
    padding: 12px;
    font-size: 16px;
    width: 100%;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.con-form-foot button:hover {
    background: #e63946;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
        padding: 30px;
    }
}

/* ================================end-contact-us-section================================== */


/* --------------------------------whatsapp-chat-end----------------------------------------- */

.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-icon {
    background: #25D366;
    color: white;
    font-size: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.whatsapp-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
    display: none;
    flex-direction: column;
    min-width: 180px;
}

.whatsapp-popup p {
    margin: 0;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.whatsapp-popup a {
    text-decoration: none;
    color: #25D366;
    font-weight: bold;
    padding: 8px;
    display: block;
    text-align: center;
    transition: background 0.3s ease;
}

.whatsapp-popup a:hover {
    background: #f0f0f0;
}


/* --------------------------------whatsapp-chat-end----------------------------------------- */

/* -----------------back-to-top and back-to-bottom------------------------------------ */


/* Back to Top Button (Right Side) */
.back-top-btn {
    position: fixed;
    bottom: 90px;
    /* Above WhatsApp */
    right: 30px;
    width: 50px;
    height: 50px;
    background: #333;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(20px);
    z-index: 1001;
}

/* Back to Bottom Button (Left Side) */
.back-bottom-btn {
    position: fixed;
    top: 90px;
    /* Appears on the left side */
    left: 30px;
    width: 50px;
    height: 50px;
    background: #333;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(-20px);
    z-index: 1001;
}

/* Show buttons when scrolled */
.back-top-show {
    opacity: 1;
    transform: translateY(0);
}

.back-bottom-show {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects */
.back-top-btn:hover,
.back-bottom-btn:hover {
    background: #555;
}


/* -----------------back-to-top and back-to-bottom-end----------------------------------- */




/* -------------footer-starts-------------- */

.footer {
    background: #000000;
    color: #fede00;
    text-align: center;
    /* padding: 30px 0; */
    font-family: "Poppins", sans-serif;

    border: 2px solid #fede00;
}

/* Top Section */
.top-section {
    display: flex;
    justify-content: center;
}

.box {
    flex: 1;
    padding: 4rem 2rem;
    font-size: 45px;
    font-weight: bold;
    border: 1px solid #fede00;
    text-align: center;
}

.box a {
    text-decoration: none;
    color: #fede00;
    transition: all 0.3s ease-in-out;
}

.box:hover {
    background: #fede00;
}

.box:hover a {
    color: #000;
}

/* Middle Section */
.middle-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px;
    flex-wrap: wrap;
}

/* Newsletter Styling */
.newsletter {
    width: 40%;
    text-align: left;
    position: relative;
}

.newsletter form {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.newsletter input {
    border: none;
    background: transparent;
    border-bottom: 1px solid #fede00;
    padding: 10px;
    width: 60%;
    font-size: 16px;
    outline: none;
    /* Removes outline */
    transition: all 0.3s ease-in-out;
}

.newsletter input::placeholder {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    transition: 0.3s;
    color: #666;
}

.newsletter input:focus::placeholder {
    top: 10px;
    font-size: 12px;
    color: #fede00;
}

.newsletter .sub {
    position: absolute;
    /* right: 0; */
    left: 41%;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    padding: 7px 15px;
    /* border: 1px solid #fede00;
    border-radius: 20px ; */
}

.newsletter .sub:hover {
    color: #e63946;
}

.small-text {
    font-size: 15px;
    margin-top: 7px;
    font-weight: 200;
}

/* Links */
.links {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-right: 2rem;
    margin-left: 2rem;
    gap: 1rem;
}


.links div {
    text-align: left;
}

.links h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.links ul {
    list-style: none;
}

.links ul li {
    margin-bottom: 5px;
}

.links ul li a {
    text-decoration: none;
    color: #fede00;
    font-size: 16px;
}

.links ul li a:hover {
    color: #e63946;
}





/* Bottom Section */
.bottom-section {
    text-align: center;
    padding: 30px 0;
}

.bottom-section h1 {
    font-size: 220px;
    font-weight: 900;
    font-family: codeverse;
    text-transform: capitalize;
}

.bottom-section h1:hover {
    text-shadow:
        2px 0 #fede00,
        0 -2px #fede00,
        -2px 0 #fede00,
        0 2px #fede00;
    color: #000;
    transition: text-shadow 1s, color .10s;

}

.social-icons img {
    width: 35px;
    height: 35px;
}


.bottom-section p {
    font-size: 14px;
    margin-top: 10px;
    font-weight: 200;
}

.icons {
    margin-top: 10px;
    font-size: 18px;
}

.sub {
    color: #fede00;
}




/* ========== RESPONSIVE DESIGN ========== */

/* Tablets and smaller screens */
@media (max-width: 1024px) {

    .top-section {
        flex-direction: column;
    }

    .box {

        font-size: 28px;
        padding: 1.5rem;
    }

    .middle-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .newsletter {
        width: 100%;
        text-align: center;
    }

    .newsletter form {
        justify-content: center;
    }

    .newsletter input {
        width: 70%;
    }

    .newsletter .sub {
        left: auto;
        right: 1rem;
    }

    .links {
        width: 100%;
        margin: auto;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .links div {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
        padding-top: 1rem;
    }


}

/* Mobile screens */
@media (max-width: 768px) {
    .box {

        font-size: 24px;
        padding: 1rem;
    }

    .newsletter input {
        width: 80%;
    }

    .newsletter .sub {
        font-size: 15px;
    }

    .bottom-section h1 {
        font-size: 40px;
        letter-spacing: 5px;
        margin-left: -1rem;
    }

    .bottom-section p {
        font-size: 15px;
        padding: 0 1rem;

    }

    .links {
        width: 100%;
        margin: auto;
        padding-top: 1rem;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .support {
        text-align: center;
    }

}



/* =======================footer-ends========================= */