*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

body{
   background:#ffffff;
   color:#1e293b;
   margin:0;
   padding:0;
}

section{
    padding:100px 10%;
}

.section-title{
    text-align:center;
    font-size:2.5rem;
    margin-bottom:50px;
    color:#232F3E;
    font-weight: bold;
}

/* BUTTONS */

.primary-btn,
.secondary-btn,
button{
    padding:12px 24px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    transition:0.3s ease;
    font-weight:600;
}

.primary-btn{
    background:#FEBD69;
    color:#232F3E;
    text-decoration: none;
    display: inline-block;
}

.secondary-btn{
    background:white;
    color:#232F3E;
    border:2px solid #FEBD69;
    text-decoration: none;
    display: inline-block;
}

button:hover, .primary-btn:hover, .secondary-btn:hover{
    transform:translateY(-3px);
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    background: linear-gradient(135deg, rgba(35, 47, 62, 0.94) 0%, rgba(26, 36, 48, 0.9) 100%), url("/src/assets/images/hero_editor_bg_1779946704732.png") center/cover no-repeat;
    color:white;
    position: relative;
    overflow: hidden;
}

/* Background grid glow subtle accent */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 30%, rgba(254, 189, 105, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero-content{
    flex:1;
}

.hero-content h1{
    font-size:3.5rem;
    margin-bottom:20px;
    line-height:1.2;
    color: white;
}

.hero-content p{
    font-size:1.1rem;
    margin-bottom:30px;
    line-height:1.7;
    color:#e2e8f0;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
}

.hero-image img{
    width:95%;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    animation:floatImage 6s ease-in-out infinite;
    object-fit: cover;
}

.hero-image img:hover{
    transform:scale(1.03);
}

/* GRID */

.features-grid,
.editor-grid,
.project-grid,
.testimonial-grid,
.steps,
.trust-stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

/* =======================
   ALL CARDS DARK THEME
======================= */

.feature-card,
.editor-card,
.project-card,
.testimonial-card,
.step-card,
.trust-card{
    background:#232F3E;
    color:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

/* CARD DESIGN ELEMENT */
.feature-card::before,
.editor-card::before,
.project-card::before,
.testimonial-card::before,
.step-card::before,
.trust-card::before{
    content:"";
    position:absolute;
    top:-40px;
    right:-40px;
    width:140px;
    height:140px;
    background:linear-gradient(
        135deg,
        #FEBD69,
        #ff8fab
    );
    border-radius:50%;
    opacity:0.15;
}

/* HOVER EFFECT */
.feature-card:hover,
.editor-card:hover,
.project-card:hover,
.testimonial-card:hover,
.step-card:hover,
.trust-card:hover{
    transform:translateY(-8px);
}

/* HEADINGS */
.feature-card h3,
.step-card h3,
.editor-card h3,
.project-card h3,
.testimonial-card h3,
.trust-card h3{
    color:white;
    margin-bottom: 15px;
}

/* TEXT */
.feature-card p,
.step-card p,
.editor-card p,
.project-card p,
.testimonial-card p,
.trust-card p{
    color:#cbd5e1;
    line-height: 1.6;
}

/* ICONS */
.feature-card i{
    font-size:2rem;
    color:#FEBD69;
    margin-bottom:20px;
}

/* STEP NUMBER */
.step-card span{
    width:50px;
    height:50px;
    background:#FEBD69;
    color:#232F3E;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-weight:bold;
    margin-bottom:20px;
    font-size:1.2rem;
}

/* EDITORS */

.editor-card{
    text-align:center;
}

.editor-card img{
    width:100px;
    height:100px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
    border:4px solid #FEBD69;
}

.editor-card button, .editor-card a{
    background:#FEBD69;
    color:#232F3E;
    margin-top:15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    padding: 10px 20px;
}

/* PROJECT BUTTON */

.project-card button, .project-card a{
    margin-top:20px;
    background:#FEBD69;
    color:#232F3E;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
}

/* CTA */

.cta{
    background:#232F3E;
    color:white;
    text-align:center;
    border-radius:20px;
    margin:80px 10%;
    padding:80px 40px;
}

.cta h2{
    font-size:3rem;
    margin-bottom:20px;
    color: white;
}

.cta p{
    color:#e2e8f0;
}

.cta button, .cta a{
    margin-top:25px;
    background:#FEBD69;
    color:#232F3E;
    font-weight:bold;
    text-decoration: none;
    padding: 14px 28px;
    display: inline-block;
    border-radius: 10px;
}

/* FOOTER */

.footer{
    background:#232F3E;
    color:white;
    padding:60px 10%;
}

.footer-content{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-bottom:30px;
}

.footer h3,
.footer h4{
    color:#FEBD69;
    margin-bottom: 20px;
}

.footer p{
    color: #cbd5e1;
    line-height: 1.6;
}

.footer a{
    display:block;
    color:#cbd5e1;
    text-decoration:none;
    margin-top:10px;
    transition:0.3s;
}

.footer a:hover{
    color:#FEBD69;
}

/* SOCIAL */

.social-icons{
    display:flex;
    gap:15px;
    margin-top:10px;
}

.social-icons i{
    font-size:1.5rem;
    cursor:pointer;
    transition:0.3s;
    color: #cbd5e1;
}

.social-icons i:hover{
    color:#FEBD69;
}

.copyright{
    text-align:center;
    margin-top:30px;
    color:#94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

/* ANIMATION */

@keyframes floatImage{
    0%{transform:translateY(0px);}
    50%{transform:translateY(-15px);}
    100%{transform:translateY(0px);}
}

/* FEATURES CAROUSEL */

.features{
    overflow:hidden;
    position:relative;
}

.features-slider{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    height:350px;
}

.feature-card{
    position:absolute;
    width:320px;
    padding:35px;
    transition:all 1s ease;
}

/* ACTIVE STATES */

.feature-card.active{
    transform:translateX(0) scale(1);
    opacity:1;
    z-index:5;
    filter:blur(0px);
}

.feature-card.left{
    transform:translateX(-380px) scale(0.9);
    opacity:0.75;
    z-index:2;
    filter:blur(0.5px);
}

.feature-card.right{
    transform:translateX(380px) scale(0.9);
    opacity:0.75;
    z-index:2;
    filter:blur(0.5px);
}

.feature-card.hidden{
    transform:translateX(0) scale(0.7);
    opacity:0;
    z-index:1;
}

/* TRUST */

.trust-section{
    padding:100px 10%;
    text-align:center;
}

.trust-subtitle{
    max-width:700px;
    margin:20px auto 60px;
    color:#94a3b8;
    font-size:1.1rem;
    line-height:1.8;
}

/* INTRO */

.intro-section{
    padding:100px 10%;
    text-align:center;
}

.intro-container{
    max-width:900px;
    margin:auto;
}

.intro-tag{
    display:inline-block;
    background:#FEBD69;
    color:#232F3E;
    padding:10px 20px;
    border-radius:50px;
    font-size:0.9rem;
    font-weight:bold;
    margin-bottom:25px;
}

.intro-container h2{
    font-size:3rem;
    line-height:1.3;
    color:#232F3E;
    margin-bottom:25px;
}

.intro-container p{
    font-size:1.1rem;
    color:#cbd5e1;
    line-height:1.9;
    max-width:750px;
    margin:auto;
}

/* PROFESSIONAL BACK BUTTON GLOBAL STYLE */
.professional-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #232F3E;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    transition: all 0.2s ease-in-out;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    width: fit-content;
    cursor: pointer;
}
.professional-back-btn:hover {
    color: #FEBD69;
    background: #232F3E;
    border-color: #232F3E;
    transform: translateX(-4px);
}

/* CATEGORY SHOWCASE SECTION */
.category-showcase-section {
    padding: 90px 10%;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.showcase-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 55px;
}

.showcase-header h2 {
    font-size: 2.5rem;
    color: #232F3E;
    margin-top: 15px;
    margin-bottom: 18px;
    font-weight: 700;
}

.showcase-header p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.showcase-card {
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: #cbd5e1;
}

.showcase-img-box {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: #232F3E;
}

.showcase-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-img-box img {
    transform: scale(1.08);
}

.showcase-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.showcase-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #e28d1c;
    background: rgba(35, 47, 62, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    width: fit-content;
    margin-bottom: 12px;
}

.showcase-content h3 {
    font-size: 1.2rem;
    color: #232F3E;
    margin-bottom: 10px;
    font-weight: 700;
}

.showcase-content p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}
.edivic-about{
    padding:100px 10%;
    background:#fff;
}

.about-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.about-text{
    flex:1;
}

.about-text h2{
    font-size:3rem;
    color:#232F3E;
    margin:20px 0;
}

.about-text p{
    color:#64748b;
    line-height:1.9;
    margin-bottom:20px;
}

.about-image{
    flex:1;
    text-align:center;
}

.about-image img{
    width:100%;
    max-width:500px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

@media(max-width:768px){

    .about-wrapper{
        flex-direction:column;
    }

    .about-text h2{
        font-size:2rem;
    }

}
.edivic-about{
    min-height:600px;

    background-image:url("src/assets/images/111111111.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;
}

/* Dark Overlay */
.edivic-about::before{
    content:"";
    position:absolute;
    inset:0;

    background:rgba(0,0,0,0.55);
}

.about-overlay{
    position:relative;
    z-index:2;

    text-align:center;
    max-width:900px;

    color:white;
    padding:40px;
}

.about-overlay h2{
    font-size:3.5rem;
    margin:20px 0;
}

.about-overlay p{
    font-size:1.2rem;
    line-height:1.8;
}

.intro-tag{
    background:#FEBD69;
    color:#232F3E;

    padding:10px 20px;
    border-radius:50px;

    font-weight:600;
}
.logo{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}

.logo img{
    width:45px;
    height:45px;
    object-fit:contain;
}

.logo span{
    font-size:1.8rem;
    font-weight:700;
    color:#FEBD69;
}