
@import url('./navbar.css');
@import url('./home.css');
/*@import url('./blog.css');*/
@import url('./about.css');
@import url('./contact.css');
@import url('./404.css');
@import url('./service.css');
@import url('./footer.css');
@import url('./navbar-mobile.css');
:root {

    /* ======================
   PRIMARY COLORS
====================== */

    --accent: #EA580C;
    --accent-hover: #C2410C;
    --accent-light: #FB923C;


    /* ======================
   BACKGROUNDS
====================== */

    --background: #F8FAFC;
    --surface: #FFFFFF;
    --surface-secondary: #F1F5F9;


    /* ======================
   TEXT
====================== */

    --text: #0F172A;
    --text-secondary: #334155;
    --text-light: #64748B;
    --text-white: #FFFFFF;


    /* ======================
   BORDERS
====================== */

    --border: #E2E8F0;
    --border-light: #F1F5F9;


    /* ======================
   STATUS COLORS
====================== */

    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;


    /* ======================
   SHADOWS
====================== */

    --shadow-sm:

        0 2px 8px rgba(15, 23, 42, .05);

    --shadow-md:

        0 10px 30px rgba(15, 23, 42, .08);

    --shadow-lg:

        0 20px 50px rgba(15, 23, 42, .12);


    /* ======================
   RADIUS
====================== */

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-round: 999px;


    /* ======================
   CONTAINER
====================== */

    --container: 1200px;


    /* ======================
   TRANSITIONS
====================== */

    --transition:

        all .3s ease;
/* ======================
   FONTS
====================== */
    --font:'Inter';
}
 
@font-face{

font-family:'Inter';

src:url('../fonts/InterVariable.woff2')
format('woff2');

font-weight:100 900;

font-style:normal;

font-display:swap;

}

/* BUTTON*/

/* PRIMARY BUTTON */
/* PRIMARY MODERN BUTTON */

#smooth-content{
    opacity:0;
}
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 26px;
    background: var(--accent);
    color: var(--text-white);
    border: none;
    border-radius: 10px;
    font-size:clamp(0.5rem, 0.8vw, 20px);
    font-weight: 500;
    font-family: inter;
    letter-spacing: .3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
    box-shadow: 0 10px 15px rgba(234, 88, 12, .25);
    text-transform: uppercase;
    text-decoration: none;
}


/* LIGHT EFFECT */

.primary-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .25),
            transparent);
    transition: .6s;
}


/* HOVER */

.primary-btn:hover {
    transform:
        translateY(-3px);
    background:
        var(--accent-hover);
    box-shadow: 0 20px 40px rgba(234, 88, 12, .35);
}


.primary-btn:hover::before {
    left: 150%;
}


/* CLICK */

.primary-btn:active {

    transform: translateY(0);

}

/* SECONDARY */
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);

}

.secondary-btn:hover {
    background: var(--surface-secondary);
}
.primary-btn .btn-arrow{
all:unset;
font-family:Arial,sans-serif;
display:inline-block;
margin-left:8px;
font-size:18px;
cursor:inherit;
transition: 0.5s;
}

.primary-btn:hover .btn-arrow{
transform:translateX(4px);
}
@media (max-width:1024px) {
    .spacer{
    height: 10vh!important;
}
}