/*==========================================================
    YCSM ERP WEBSITE
    Enterprise Production CSS v2.0
    Part 1
    Root • Reset • Typography • Header • Navbar
==========================================================*/


/*==========================================================
ROOT VARIABLES
==========================================================*/

:root{
    --primary:#FF6A00;
    --primary-dark:#E65100;
    --secondary:#FF8A00;
    --accent:#FFC107;

    --primary-light:#FFF3E0;
    --primary-soft:#FFF8F1;
}


/*==========================================================
RESET
==========================================================*/

*,
*::before,
*::after{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

font-size:16px;

line-height:1.7;

font-weight:400;

color:var(--text);

background:#fff;

overflow-x:hidden;

text-rendering:optimizeLegibility;

-webkit-font-smoothing:antialiased;

}


/*==========================================================
SELECTION
==========================================================*/

::selection{
    background:var(--primary);
    color:#fff;
}


/*==========================================================
SCROLLBAR
==========================================================*/

::-webkit-scrollbar{

width:8px;

}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:var(--primary-dark);
}

::-webkit-scrollbar-track{

background:#edf2f7;

}


/*==========================================================
IMAGES
==========================================================*/

img{

max-width:100%;

height:auto;

display:block;

}


/*==========================================================
LINKS
==========================================================*/

a{

text-decoration:none;

transition:var(--transition);

}

a:hover{

text-decoration:none;

}


/*==========================================================
SECTION
==========================================================*/

section{

padding:90px 0;

position:relative;

}


/*==========================================================
HEADINGS
==========================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

font-weight:700;

line-height:1.25;

color:#0f172a;

margin-bottom:15px;

}

h1{

font-size:58px;

}

h2{

font-size:42px;

}

h3{

font-size:30px;

}

h4{

font-size:24px;

}

h5{

font-size:20px;

}

h6{

font-size:18px;

}


/*==========================================================
PARAGRAPH
==========================================================*/

p{

color:var(--muted);

margin-bottom:18px;

}


/*==========================================================
BUTTON
==========================================================*/

.btn{

border-radius:50px;

padding:14px 30px;

font-weight:600;

transition:.35s;

border-width:2px;

}

.btn:hover{

transform:translateY(-3px);

}

.btn-primary{

background:var(--primary);

border-color:var(--primary);

}

.btn-primary:hover{

background:var(--primary-dark);

border-color:var(--primary-dark);

}

.btn-warning{

font-weight:700;

}


/*==========================================================
CONTAINER
==========================================================*/

.container{

position:relative;

z-index:2;

}


/*==========================================================
TOP HEADER
==========================================================*/

.top-header{

    background:
    linear-gradient(
    90deg,
    var(--primary-dark),
    var(--primary),
    var(--secondary));

color:#fff;

padding:5px 0;

font-size:13px;

font-weight:500;

box-shadow:

0 2px 10px rgba(0,0,0,.08);

}

.top-header a{

color:#fff;

transition:.3s;

}

.top-header a:hover{
    color:var(--accent);
}

.top-title{

font-size:22px;

font-weight:700;

letter-spacing:.3px;

}


/*==========================================================
MAIN NAVBAR
==========================================================*/

#mainNavbar{

background:#fff;

transition:.35s;

padding:14px 0;

box-shadow:

0 1px 10px rgba(0,0,0,.04);

z-index:1030;

}

#mainNavbar.shadow{

box-shadow:

0 12px 30px rgba(0,0,0,.08);

}


/*==========================================================
LOGO
==========================================================*/

.navbar-brand img{

height:72px;

transition:.35s;

}

.navbar-brand:hover img{

transform:scale(1.04);

}


/*==========================================================
MENU
==========================================================*/

.navbar-nav{

align-items:center;

gap:6px;

}

.navbar-nav .nav-link{

position:relative;

font-size:15px;

font-weight:600;

color:#1e293b;

padding:12px 14px;

transition:.3s;

}

.navbar-nav .nav-link:hover{

color:var(--primary);

}

.navbar-nav .nav-link.active{

color:var(--primary);

}


/* Underline Animation */

.navbar-nav .nav-link::after{

content:"";

position:absolute;

left:14px;

bottom:6px;

width:0;

height:2px;

background:var(--accent);

transition:.35s;

}

.navbar-nav .nav-link:hover::after,

.navbar-nav .nav-link.active::after{

width:calc(100% - 28px);

}


/*==========================================================
DROPDOWN
==========================================================*/

.dropdown-menu{

border:none;

border-radius:16px;

padding:12px 0;

box-shadow:

0 18px 40px rgba(0,0,0,.12);

min-width:240px;

}

.dropdown-item{

padding:11px 20px;

font-weight:500;

transition:.3s;

}

.dropdown-item:hover{

    background:var(--primary-light);

    color:var(--primary);

    padding-left:28px;

}


/*==========================================================
MOBILE NAVBAR
==========================================================*/

.navbar-toggler{

border:none;

box-shadow:none!important;

}

.navbar-toggler:focus{

box-shadow:none;

}


/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:991px){

.top-header{

text-align:center;

}

.top-title{

display:block;

margin-bottom:8px;

font-size:18px;

}

#mainNavbar{

padding:10px 0;

}

.navbar-brand img{

height:58px;

}

.navbar-nav{

padding-top:20px;

gap:0;

}

.navbar-nav .nav-link{

padding:13px 0;

border-bottom:1px solid #eef2f7;

}

.dropdown-menu{

box-shadow:none;

border-radius:10px;

}

}

@media(max-width:576px){

section{

padding:70px 0;

}

h1{

font-size:38px;

}

h2{

font-size:32px;

}

body{

font-size:15px;

}

}
/*==========================================================
    ENTERPRISE HERO SECTION
==========================================================*/

.hero-section{
    background: linear-gradient(
        135deg,
        #FF8A00 0%,
        #FF6A00 45%,
        #F05A00 100%
    );

    color:#fff;
}

/*==========================================================*/

.hero-bg{

    position:absolute;

    inset:0;

    overflow:hidden;

    pointer-events:none;

}

/*==========================================================*/

.blob{

    position:absolute;

    border-radius:50%;

    filter:blur(15px);

    opacity:.8;

    animation:blobMove 14s ease-in-out infinite;

}

.blob-1{

    width:520px;
    height:520px;

    top:-180px;
    right:-120px;

    background:rgba(255,255,255,.08);

}

.blob-2{

    width:360px;
    height:360px;

    left:-120px;
    bottom:-120px;

    background:rgba(0,255,255,.12);

}

/*==========================================================*/

.grid-overlay{

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);

    background-size:42px 42px;

    opacity:.35;

}

/*==========================================================*/

.hero-content{

    position:relative;

    z-index:5;

}

/*==========================================================*/

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(16px);

    font-size:15px;

    font-weight:600;

}

/*==========================================================*/

.hero-title{

    font-size:66px;

    line-height:1.08;

    font-weight:800;

    color:#fff;

    margin:30px 0 20px;

    letter-spacing:-1px;

}

.hero-title span{

    display:block;

    color:var(--accent);

}

/*==========================================================*/

.hero-subtitle{

    font-size:28px;

    color:#FFF4D8;

    font-weight:700;

    line-height:1.5;

    margin-bottom:22px;

}

/*==========================================================*/

.hero-description{

    max-width:620px;

     color:#F8EBD2;

    font-size:18px;

    line-height:1.9;

    margin-bottom:35px;

}

/*==========================================================*/

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:45px;

}

.hero-buttons .btn{

    min-width:210px;

    padding:15px 30px;

    font-weight:700;

    border-radius:60px;

    box-shadow:

    0 15px 35px rgba(0,0,0,.20);

}

/*==========================================================*/

.hero-buttons .btn-warning{

    background:var(--accent);

    border:none;

    color:#2F2418;

}

.hero-buttons .btn-warning:hover{

    background:var(--secondary);

}

/*==========================================================*/

.hero-buttons .btn-light{

    background:#fff;

    color:#0D47A1;

}

.hero-buttons .btn-outline-light{

    border:2px solid rgba(255,255,255,.40);

}

.hero-buttons .btn-outline-light:hover{

    background:#fff;

    color:#0D47A1;

}

/*==========================================================*/

.hero-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:16px;

}

.feature-item{

    background:rgba(255,255,255,.10);

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(15px);

    border-radius:16px;

    padding:16px 20px;

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.feature-item:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.16);

}

.feature-item i{

     color:var(--accent);

    margin-right:8px;

}

/*==========================================================*/

@keyframes blobMove{

0%{

transform:translateY(0) scale(1);

}

50%{

transform:translateY(-35px) scale(1.08);

}

100%{

transform:translateY(0) scale(1);

}

}
/*==========================================================
    HERO RIGHT SIDE
==========================================================*/

.hero-image-area{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:760px;

}


/*==========================================================*/

.hero-light{

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    background:

    radial-gradient(circle,

    rgba(0,170,255,.45),

    rgba(13,110,253,.18),

    transparent 72%);

    filter:blur(45px);

    animation:heroLight 6s infinite ease-in-out;

}


/*==========================================================*/

.hero-image-box{

    position:relative;

    width:100%;

    max-width:700px;

    padding:15px;

    border-radius:28px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(20px);

    overflow:hidden;

    box-shadow:

    0 35px 80px rgba(0,0,0,.28);

}


/*==========================================================*/

.hero-image-box::before{

    content:"";

    position:absolute;

    top:-120%;

    left:-60%;

    width:55%;

    height:300%;

    background:

    linear-gradient(

    90deg,

    transparent,

    rgba(255,255,255,.45),

    transparent);

    transform:rotate(25deg);

    animation:shineMove 7s infinite;

}


/*==========================================================*/

.hero-image{

    width:100%;

    height:560px;

    object-fit:cover;

    border-radius:22px;

    display:block;

    animation:inhale 6s ease-in-out infinite;

    transition:.35s;

}

.hero-image:hover{

    transform:scale(1.03);

}


/*==========================================================
    FLOATING CARDS
==========================================================*/

.hero-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:16px;

    min-width:235px;

    padding:18px 24px;

    background:rgba(255,255,255,.14);

    border:1px solid rgba(255,255,255,.20);

    backdrop-filter:blur(18px);

    border-radius:18px;

    color:#fff;

    box-shadow:

    0 18px 45px rgba(0,0,0,.22);

    animation:floatingCard 5s ease-in-out infinite;

    z-index:20;

}

.hero-card i{

    font-size:30px;

    color:var(--accent);

}

.hero-card h3{

    margin:0;

    font-size:32px;

    font-weight:800;

    color:#fff;

}

.hero-card span{

    display:block;

    margin-top:4px;

    font-size:14px;

    color:#eef4ff;

}


/*==========================================================*/

.hero-card-1{

    top:-20px;

    left:-70px;

    animation-delay:0s;

}

.hero-card-2{

    top:70px;

    right:-70px;

    animation-delay:1s;

}

.hero-card-3{

    bottom:80px;

    left:-70px;

    animation-delay:2s;

}

.hero-card-4{

    bottom:-15px;

    right:-70px;

    animation-delay:3s;

}


/*==========================================================
    HERO INFO BAR
==========================================================*/

.hero-info-bar{

    margin-top:70px;

    padding:28px;

    border-radius:24px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(18px);

    box-shadow:

    0 20px 45px rgba(0,0,0,.18);

}

.hero-info-item{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    border-radius:16px;

    padding:16px;

    transition:.35s;

}

.hero-info-item:hover{

    background:rgba(255,255,255,.10);

    transform:translateY(-6px);

}

.hero-info-item i{

    font-size:28px;

    color:var(--accent);

}

.hero-info-item span{

    color:#fff;

    font-weight:600;

}


/*==========================================================
    ANIMATION
==========================================================*/

@keyframes inhale{

0%{

transform:scale(1);

}

50%{

transform:scale(1.045);

}

100%{

transform:scale(1);

}

}

@keyframes floatingCard{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}

@keyframes heroLight{

0%{

transform:scale(1);

opacity:.60;

}

50%{

transform:scale(1.10);

opacity:1;

}

100%{

transform:scale(1);

opacity:.60;

}

}

@keyframes shineMove{

0%{

left:-80%;

}

100%{

left:180%;

}

}
/*==========================================================
    HERO REVEAL ANIMATION
==========================================================*/

.hero-content,
.hero-image-box,
.hero-info-bar{

    opacity:0;

    transform:translateY(40px);

    transition:
    opacity .8s ease,
    transform .8s ease;

}

.hero-show{

    opacity:1;

    transform:translateY(0);

}


/*==========================================================
    HERO RIPPLE
==========================================================*/

.hero-buttons .btn{

    position:relative;

    overflow:hidden;

}

.ripple{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.35);

    transform:scale(0);

    pointer-events:none;

    animation:ripple .65s linear;

}

@keyframes ripple{

to{

transform:scale(4);

opacity:0;

}

}


/*==========================================================
    GLASS HOVER
==========================================================*/

.hero-image-box:hover{

    transform:translateY(-10px);

    box-shadow:

    0 45px 90px rgba(0,0,0,.35),

    0 0 40px rgba(0,170,255,.25);

}

.hero-card:hover{

    transform:translateY(-10px) scale(1.04);

    background:rgba(255,255,255,.20);

}


/*==========================================================
    PERFORMANCE
==========================================================*/

.hero-image,
.hero-card,
.hero-image-box,
.hero-content{

    will-change:transform;

}


/*==========================================================
    DESKTOP
==========================================================*/

@media(min-width:1400px){

.hero-title{

font-size:72px;

}

.hero-image{

height:620px;

}

.hero-image-box{

max-width:760px;

}

}


/*==========================================================
    LAPTOP
==========================================================*/

@media(max-width:1200px){

.hero-title{

font-size:54px;

}

.hero-subtitle{

font-size:24px;

}

.hero-image{

height:500px;

}

.hero-card{

min-width:200px;

padding:15px 20px;

}

.hero-card h3{

font-size:28px;

}

}


/*==========================================================
    TABLET
==========================================================*/

@media(max-width:991px){

.hero-section{

padding:70px 0 60px;

text-align:center;

}

.hero-description{

margin:auto;

}

.hero-buttons{

justify-content:center;

}

.hero-features{

grid-template-columns:1fr;

}

.hero-image-area{

margin-top:60px;

min-height:auto;

}

.hero-image{

height:auto;

max-height:520px;

}

.hero-card{

position:relative;

top:auto;

left:auto;

right:auto;

bottom:auto;

margin:15px auto;

width:270px;

}

.hero-info-bar{

margin-top:45px;

}

}


/*==========================================================
    MOBILE
==========================================================*/

@media(max-width:768px){

.hero-title{

font-size:40px;

line-height:1.2;

}

.hero-subtitle{

font-size:21px;

}

.hero-description{

font-size:16px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons .btn{

width:100%;

}

.hero-badge{

font-size:13px;

padding:10px 15px;

}

.hero-info-item{

flex-direction:column;

text-align:center;

gap:8px;

}

}


/*==========================================================
    SMALL MOBILE
==========================================================*/

@media(max-width:576px){

.hero-section{

padding:60px 0 50px;

}

.hero-title{

font-size:34px;

}

.hero-subtitle{

font-size:18px;

}

.hero-description{

font-size:15px;

}

.hero-image{

border-radius:16px;

}

.hero-image-box{

padding:10px;

border-radius:18px;

}

.hero-card{

width:100%;

max-width:300px;

}

.hero-card h3{

font-size:24px;

}

.hero-info-bar{

padding:18px;

border-radius:18px;

}

}
/*==========================================================
    SECTION TITLE SYSTEM
==========================================================*/

.section{

    position:relative;

    padding:100px 0;

}

.section-light{

    background:#ffffff;

}

.section-gray{

    background:#f8fbff;

}

.section-blue{

    background:linear-gradient(180deg,#f8fbff,#eef5ff);

}


/*==========================================================
    SECTION HEADING
==========================================================*/

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading .badge-title{

    display:inline-block;

    padding:10px 22px;

    background:#e8f1ff;

    color:#0D47A1;

    border-radius:50px;

    font-weight:700;

    font-size:14px;

    letter-spacing:.5px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.section-heading h2{

    font-size:46px;

    font-weight:800;

    color:#0f172a;

    margin-bottom:18px;

}

.section-heading h2 span{

    color:#0D47A1;

}

.section-heading p{

    max-width:760px;

    margin:auto;

    font-size:18px;

    color:#64748b;

    line-height:1.9;

}


/*==========================================================
    GLASS CARD
==========================================================*/

.glass-card{

    position:relative;

    background:#ffffff;

    border-radius:24px;

    border:1px solid #edf2f7;

    padding:35px;

    transition:.35s;

    overflow:hidden;

    box-shadow:

    0 10px 30px rgba(15,23,42,.05);

}

.glass-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:

    linear-gradient(

    90deg,

    #0D47A1,

    #1976D2,

    #42A5F5

    );

}

.glass-card:hover{

    transform:translateY(-12px);

    box-shadow:

    0 25px 60px rgba(0,0,0,.12);

}


/*==========================================================
    FEATURE CARD
==========================================================*/

.feature-card{

    position:relative;

    background:#fff;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    border:1px solid #edf2f7;

    transition:.35s;

    height:100%;

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:

    0 25px 60px rgba(0,0,0,.10);

}

.feature-icon{

    width:85px;

    height:85px;

    margin:auto auto 28px;

    border-radius:24px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:

    linear-gradient(135deg,#0D47A1,#1976D2);

    color:#fff;

    font-size:36px;

    box-shadow:

    0 15px 30px rgba(13,71,161,.25);

}

.feature-card h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:16px;

}

.feature-card p{

    color:#64748b;

    line-height:1.9;

}


/*==========================================================
    HOVER EFFECT
==========================================================*/

.feature-card::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:0;

    background:

    linear-gradient(

    180deg,

    transparent,

    rgba(13,71,161,.05)

    );

    transition:.35s;

}

.feature-card:hover::after{

    height:100%;

}


/*==========================================================
    RESPONSIVE
==========================================================*/

@media(max-width:991px){

.section{

padding:80px 0;

}

.section-heading{

margin-bottom:50px;

}

.section-heading h2{

font-size:36px;

}

}

@media(max-width:576px){

.section-heading h2{

font-size:30px;

}

.section-heading p{

font-size:16px;

}

.glass-card{

padding:25px;

}

.feature-card{

padding:30px 22px;

}

}
/*==========================================================
    STATISTICS SECTION
==========================================================*/

.stats-section{

    position:relative;

    padding:90px 0;

    background:
    linear-gradient(180deg,#ffffff,#f7fbff);

}

.stats-card{

    position:relative;

    background:#fff;

    border-radius:24px;

    padding:35px 30px;

    text-align:center;

    border:1px solid #edf2f7;

    transition:.35s;

    overflow:hidden;

    height:100%;

    box-shadow:
    0 15px 35px rgba(15,23,42,.05);

}

.stats-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 30px 60px rgba(0,0,0,.12);

}

.stats-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:
    linear-gradient(
    90deg,
    #0D47A1,
    #1976D2,
    #42A5F5);

}

.stats-icon{

    width:90px;

    height:90px;

    border-radius:24px;

    margin:auto auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(135deg,#0D47A1,#1976D2);

    color:#fff;

    font-size:38px;

    box-shadow:
    0 20px 40px rgba(13,71,161,.25);

}

.stats-number{

    font-size:48px;

    font-weight:800;

    color:#0D47A1;

    line-height:1;

    margin-bottom:12px;

}

.stats-title{

    font-size:18px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:10px;

}

.stats-card p{

    color:#64748b;

    margin:0;

}


/*==========================================================
    ABOUT SECTION
==========================================================*/

.about-section{

    position:relative;

    padding:110px 0;

    background:#fff;

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:30px;

    box-shadow:
    0 35px 80px rgba(0,0,0,.15);

}

.about-badge{

    position:absolute;

    right:-20px;

    bottom:30px;

    background:#fff;

    border-radius:20px;

    padding:18px 22px;

    box-shadow:
    0 20px 40px rgba(0,0,0,.12);

}

.about-badge h3{

    margin:0;

    color:#0D47A1;

    font-size:34px;

    font-weight:800;

}

.about-badge span{

    font-size:15px;

    color:#64748b;

}

.about-content{

    padding-left:45px;

}

.about-content h2{

    font-size:46px;

    font-weight:800;

    margin-bottom:22px;

}

.about-content p{

    font-size:17px;

    line-height:1.9;

    color:#64748b;

}


/*==========================================================
    ABOUT FEATURES
==========================================================*/

.about-list{

    margin-top:35px;

}

.about-list li{

    list-style:none;

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:18px;

    color:#334155;

    font-weight:600;

}

.about-list i{

    width:34px;

    height:34px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#EAF2FF;

    color:#0D47A1;

    flex-shrink:0;

}


/*==========================================================
    ACHIEVEMENT CARD
==========================================================*/

.achievement-card{

    display:flex;

    align-items:center;

    gap:20px;

    background:#fff;

    border-radius:20px;

    padding:22px;

    margin-top:20px;

    border:1px solid #edf2f7;

    transition:.35s;

}

.achievement-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 45px rgba(0,0,0,.08);

}

.achievement-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(135deg,#0D47A1,#1976D2);

    color:#fff;

    font-size:28px;

}

.achievement-card h5{

    margin-bottom:6px;

}

.achievement-card p{

    margin:0;

}


/*==========================================================
    RESPONSIVE
==========================================================*/

@media(max-width:991px){

.about-content{

padding-left:0;

margin-top:50px;

}

.about-badge{

position:relative;

right:auto;

bottom:auto;

display:inline-block;

margin-top:25px;

}

}

@media(max-width:576px){

.stats-number{

font-size:38px;

}

.about-content h2{

font-size:34px;

}

.about-section{

padding:80px 0;

}

}
/*==========================================================
    COURSES SECTION
==========================================================*/

.courses-section{

    position:relative;

    padding:100px 0;

    background:#f8fbff;

}

.course-card{

    position:relative;

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    border:1px solid #edf2f7;

    transition:.35s;

    height:100%;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

}

.course-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);

}

.course-image{

    position:relative;

    overflow:hidden;

}

.course-card img{

    width:100%;

    height:auto;

    object-fit:contain;

    display:block;

}

.course-card:hover .course-image img{

    transform:scale(1.08);

}

.course-category{

    position:absolute;

    top:18px;

    left:18px;

    background:#0D47A1;

    color:#fff;

    padding:8px 16px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;

}

.course-body{

    padding:28px;

}

.course-body h4{

    font-size:24px;

    margin-bottom:14px;

}

.course-body p{

    color:#64748b;

    line-height:1.8;

}

.course-meta{

    display:flex;

    justify-content:space-between;

    margin:22px 0;

    font-size:15px;

    color:#475569;

}

.course-meta i{

    color:#0D47A1;

    margin-right:6px;

}

.course-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.course-btn{

    border-radius:40px;

}


/*==========================================================
    FRANCHISE SECTION
==========================================================*/

.franchise-section{

    position:relative;

    padding:110px 0;

    background:
    linear-gradient(135deg,#071A52,#0D47A1);

    color:#fff;

}

.franchise-content h2{

    color:#fff;

    font-size:48px;

    font-weight:800;

}

.franchise-content p{

    color:#d9e9ff;

    font-size:18px;

    line-height:1.9;

}

.franchise-feature{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:25px;

}

.franchise-feature i{

    width:58px;

    height:58px;

    border-radius:18px;

    background:rgba(255,255,255,.12);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#FFD54F;

    font-size:26px;

}

.franchise-feature h5{

    color:#fff;

    margin-bottom:8px;

}

.franchise-feature p{

    margin:0;

    color:#d9e9ff;

}


/*==========================================================
    FRANCHISE FORM CARD
==========================================================*/

.franchise-card{

    background:#fff;

    border-radius:24px;

    padding:40px;

    box-shadow:
    0 30px 70px rgba(0,0,0,.18);

}

.franchise-card h3{

    margin-bottom:25px;

    color:#0f172a;

}

.franchise-card .form-control{

    height:56px;

    border-radius:14px;

    border:1px solid #dbe4ef;

}

.franchise-card textarea{

    min-height:130px;

    resize:none;

}

.franchise-card .btn{

    width:100%;

    height:56px;

    font-size:17px;

}


/*==========================================================
    SECTION BUTTON
==========================================================*/

.section-btn{

    margin-top:50px;

    text-align:center;

}


/*==========================================================
    RESPONSIVE
==========================================================*/

@media(max-width:991px){

.franchise-content{

margin-bottom:50px;

}

.franchise-content h2{

font-size:38px;

}

}

@media(max-width:576px){

.course-image img{

height:210px;

}

.course-body{

padding:22px;

}

.franchise-card{

padding:25px;

}

.franchise-content h2{

font-size:30px;

}

}
/*==========================================================
    TESTIMONIAL SECTION
==========================================================*/

.testimonial-section{

    padding:100px 0;

    background:#ffffff;

}

.testimonial-card{

    background:#fff;

    border:1px solid #edf2f7;

    border-radius:24px;

    padding:35px;

    height:100%;

    transition:.35s;

    box-shadow:
    0 15px 35px rgba(0,0,0,.05);

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 30px 60px rgba(0,0,0,.12);

}

.testimonial-rating{

    color:#FFC107;

    margin-bottom:18px;

}

.testimonial-text{

    font-size:16px;

    line-height:1.9;

    color:#64748b;

    margin-bottom:25px;

}

.testimonial-user{

    display:flex;

    align-items:center;

    gap:15px;

}

.testimonial-user img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

}

.testimonial-user h5{

    margin-bottom:5px;

}

.testimonial-user span{

    color:#64748b;

    font-size:14px;

}


/*==========================================================
    GALLERY
==========================================================*/

.gallery-section{

    padding:100px 0;

    background:#f8fbff;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:22px;

}

.gallery-item img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(13,71,161,.75);

    opacity:0;

    transition:.35s;

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-overlay i{

    color:#fff;

    font-size:38px;

}


/*==========================================================
    CTA SECTION
==========================================================*/

.cta-section{

    padding:90px 0;

    background:
    linear-gradient(135deg,#0D47A1,#1976D2);

    color:#fff;

}

.cta-box{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(18px);

    border-radius:28px;

    padding:60px;

    text-align:center;

}

.cta-box h2{

    color:#fff;

    font-size:48px;

    margin-bottom:20px;

}

.cta-box p{

    color:#d9e9ff;

    font-size:18px;

    max-width:760px;

    margin:auto auto 35px;

}

.cta-box .btn{

    min-width:220px;

}


/*==========================================================
    FOOTER
==========================================================*/

.footer-section{

    background: linear-gradient(
        90deg,
        var(--primary-dark),
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    padding:80px 0 0;

}

.footer-title{

    color:#fff;

    margin-bottom:20px;

}

.footer-links{

    list-style:none;

    padding:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#c7d7ef;

    transition:.3s;

}

.footer-links a:hover{

    color:#FFD54F;

    padding-left:6px;

}

.footer-social{

    display:flex;

    gap:12px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;

}

.footer-social a:hover{

    background:#0D6EFD;

    transform:translateY(-5px);

}

.footer-bottom{

    margin-top:50px;

    padding:20px 0;

    border-top:1px solid rgba(255,255,255,.08);

    color:#b7c8e5;

    font-size:15px;

}


/*==========================================================
    UTILITIES
==========================================================*/

.shadow-hover{

    transition:.35s;

}

.shadow-hover:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 50px rgba(0,0,0,.10);

}

.rounded-xl{

    border-radius:24px;

}

.bg-gradient-primary{

    background:
    linear-gradient(135deg,#0D47A1,#1976D2);

}

.text-primary-dark{

    color:#0D47A1;

}


/*==========================================================
    RESPONSIVE
==========================================================*/

@media(max-width:991px){

.cta-box{

padding:40px 25px;

}

.cta-box h2{

font-size:36px;

}

.footer-section{

text-align:center;

}

.footer-social{

justify-content:center;

}

}

@media(max-width:576px){

.cta-box h2{

font-size:28px;

}

.cta-box p{

font-size:16px;

}

.gallery-item img{

height:220px;

}

}
/* ==========================================
   GLOBAL COMPACT UI (15% Smaller)
========================================== */

:root{

    --container-max:1320px;

}

/* Container */

.container,
.container-lg,
.container-xl,
.container-xxl{

    max-width:1320px;

}

/* Typography */

body{

    font-size:15px;

    line-height:1.5;

}

h1{

    font-size:2.6rem;

}

h2{

    font-size:2.1rem;

}

h3{

    font-size:1.7rem;

}

h4{

    font-size:1.4rem;

}

h5{

    font-size:1.15rem;

}

h6{

    font-size:1rem;

}

/* Section */

section{

    padding:70px 0;

}

/* Cards */

.card,
.glass-card{

    border-radius:18px;

}

/* Buttons */

.btn{

    padding:.65rem 1.4rem;

    font-size:.95rem;

}

/* Form */

.form-control,
.form-select{

    min-height:46px;

    font-size:.95rem;

}

/* Navbar */

.navbar{

    padding:.7rem 0;

}

.navbar .nav-link{

    font-size:.95rem;

}

/* Footer */

footer{

    font-size:.95rem;

}
.hero{

    min-height:540px;

    padding:80px 0;

}

.hero h1{

    font-size:3rem;

}

.hero p{

    font-size:1.05rem;

}
/*==================================================
   PREMIUM COURSE BANNER
==================================================*/

.course-banner-section{

padding:25px 0 45px;

background:#fff;

overflow:hidden;

}

.banner-wrap{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    animation:fadeUp .8s ease;

    overflow:visible;

}
.banner-wrap::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    background:radial-gradient(circle,
    rgba(88,120,255,.20),
    rgba(145,90,255,.12),
    transparent 72%);

    filter:blur(45px);

    animation:glowMove 8s ease-in-out infinite;

    z-index:1;

}

@keyframes glowMove{

0%{

transform:translate(-50%,-50%) scale(1);

}

50%{

transform:translate(-50%,-50%) scale(1.08);

}

100%{

transform:translate(-50%,-50%) scale(1);

}

}
.course-banner{
display:block;
margin:0 auto;

width:100%;

max-width:1080px;

border-radius:20px;

box-shadow:
0 12px 35px rgba(0,0,0,.18),
0 0 25px rgba(56,118,255,.15);

transition:.45s ease;

animation:breathing 6s ease-in-out infinite;

cursor:pointer;

position:relative;

z-index:2;

}

.course-banner:hover{

transform:translateY(-8px) scale(1.025);

box-shadow:

0 25px 60px rgba(0,0,0,.22),

0 0 35px rgba(86,66,255,.35);

}

/* Floating Shadow */

.banner-wrap::after{

content:"";

position:absolute;

left:50%;

bottom:-15px;

transform:translateX(-50%);

width:70%;

height:22px;

background:rgba(0,0,0,.18);

filter:blur(18px);

border-radius:50%;

animation:shadowMove 6s ease-in-out infinite;

}

/* Breathing */

@keyframes breathing{

0%{

transform:scale(1);

}

50%{

transform:scale(1.018);

}

100%{

transform:scale(1);

}

}

/* Shadow Animation */

@keyframes shadowMove{

0%{

width:70%;

opacity:.30;

}

50%{

width:76%;

opacity:.15;

}

100%{

width:70%;

opacity:.30;

}

}

/* Fade */

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(35px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/* Responsive */

@media(max-width:768px){

.course-banner{

max-width:100%;

border-radius:14px;

}

.course-banner-section{

padding:15px 0 30px;

}

}
/*==================================================
   PREMIUM COURSE BANNER V2
==================================================*/

.course-banner-section{

    padding:25px 0 55px;
    background:#fff;
    overflow:hidden;
    position:relative;

}

.banner-wrap{

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;

    width:100%;

    animation:fadeUp .9s ease;

    overflow:visible;

}

/* Animated Glow */

.banner-wrap::before{

    content:"";

    position:absolute;

    left:50%;
    top:50%;

    width:500px;
    height:500px;

    transform:translate(-50%,-50%);

    background:radial-gradient(circle,
        rgba(38,117,255,.22),
        rgba(118,65,255,.16),
        transparent 72%);

    filter:blur(55px);

    z-index:1;

    animation:premiumGlow 8s ease-in-out infinite;

}

/* Floating Shadow */

.banner-wrap::after{

    content:"";

    position:absolute;

    bottom:-22px;
    left:50%;

    transform:translateX(-50%);

    width:68%;
    height:24px;

    border-radius:50%;

    background:rgba(0,0,0,.20);

    filter:blur(18px);

    z-index:0;

    animation:shadowFloat 6s ease-in-out infinite;

}

.course-banner{

    position:relative;

    z-index:2;

    display:block;

    margin:auto;

    width:100%;

    max-width:1050px;

    border-radius:22px;

    box-shadow:
    0 18px 45px rgba(0,0,0,.18),
    0 0 30px rgba(0,102,255,.15);

    transition:.45s;

    animation:bannerFloat 6s ease-in-out infinite;

}

.course-banner:hover{

    transform:translateY(-8px) scale(1.025);

    box-shadow:
    0 28px 70px rgba(0,0,0,.24),
    0 0 40px rgba(0,102,255,.28);

}

/*========================*/

@keyframes bannerFloat{

0%{

transform:translateY(0) scale(1);

}

50%{

transform:translateY(-5px) scale(1.015);

}

100%{

transform:translateY(0) scale(1);

}

}

@keyframes premiumGlow{

0%{

transform:translate(-50%,-50%) scale(1);

opacity:.75;

}

50%{

transform:translate(-50%,-50%) scale(1.18);

opacity:1;

}

100%{

transform:translate(-50%,-50%) scale(1);

opacity:.75;

}

}

@keyframes shadowFloat{

0%{

width:68%;
opacity:.30;

}

50%{

width:74%;
opacity:.14;

}

100%{

width:68%;
opacity:.30;

}

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(35px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*========================*/

@media(max-width:992px){

.course-banner{

max-width:95%;

}

.banner-wrap::before{

width:340px;
height:340px;

}

}

@media(max-width:768px){

.course-banner-section{

padding:15px 0 35px;

}

.course-banner{

border-radius:14px;

max-width:100%;

}

.banner-wrap::before{

width:250px;
height:250px;

}

}
@media (min-width:1200px){

.container{

max-width:1180px !important;

}

body{

font-size:15px;

}

h1{

font-size:2.4rem;

}

h2{

font-size:2rem;

}

}
/*=========================================================
 ABOUT VIDEO
=========================================================*/

.about-image{

    position:relative;

    width:100%;

    max-width:520px;      /* আগের about.png এর মতো Width */

    margin:auto;

    border-radius:25px;

    overflow:hidden;

}

.about-video{

    width:100%;

    height:auto;

    display:block;

    border-radius:25px;

    object-fit:cover;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.about-badge{

    position:absolute;

    right:10px;

    bottom:10px;

    z-index:10;

}
.ycsm-course-card{

border:none;

border-radius:18px;

overflow:hidden;

transition:.35s;

box-shadow:0 8px 22px rgba(0,0,0,.08);

}

.ycsm-course-card:hover{

transform:translateY(-8px);

box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.course-image-wrap{

position:relative;

overflow:hidden;

}

.course-image{

width:100%;

height:190px;

object-fit:cover;

transition:.4s;

}

.ycsm-course-card:hover .course-image{

transform:scale(1.05);

}

.course-code-badge{

position:absolute;

left:15px;

top:15px;

background:#ffb000;

color:#222;

padding:6px 14px;

border-radius:30px;

font-size:12px;

font-weight:700;

}

.course-title{

font-size:22px;

font-weight:700;

line-height:1.35;

min-height:72px;

margin-bottom:15px;

}

.course-duration{

display:inline-block;

background:#eef5ff;

padding:8px 15px;

border-radius:30px;

font-weight:600;

margin-bottom:18px;

color:#1e4fbf;

}

.course-desc{

color:#666;

line-height:1.75;

min-height:95px;

}
html{
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;
}
.top-title{
    line-height:1.2;
}

.top-title .fw-bold{
    font-size:30px;
    font-weight:700;
}

.top-title .small{
    font-size:13px;
    margin-left:34px;
    opacity:.95;
}
/* ===============================
   TOP HEADER MOBILE RESPONSIVE
================================ */

@media (max-width:768px){

    .brand-subtitle{
        font-size:9px;
        margin-left:24px;
        line-height:1.1;
    }

}
/*==============================
  TOP HEADER BRANDING
==============================*/

.top-title{
    display:flex;
    flex-direction:column;
    justify-content:center;
    line-height:1.15;
}

.brand-name{
    color:#fff;
    font-size:26px;
    font-weight:700;
}

.brand-subtitle{
    color:rgba(255,255,255,.90);
    font-size:10px;
    font-weight:500;
    margin-left:30px;
    line-height:1.1;
    letter-spacing:.3px;
}

@media (max-width:768px){

    .brand-name{
        font-size:18px;
    }

    .brand-subtitle{
        font-size:9px;
        margin-left:24px;
    }

}
/* ===== Mobile Top Header ===== */

@media (max-width:768px){

    .top-header{
        padding:12px 0;
    }

    .top-title{
        align-items:center;
        text-align:center;
        margin-bottom:8px;
    }

    .brand-name{
        font-size:17px;
    }

    .brand-subtitle{
        margin-left:0;
        font-size:9px;
    }

    .top-header a{
        display:inline-block;
        margin:3px 5px;
    }

}
/* ===== TOP HEADER FIX ===== */

.brand-name{
    color:#fff;
    font-size:26px;
    font-weight:700;
    line-height:1.1;
}

.brand-subtitle{
    color:#fff;
    font-size:10px;
    margin-left:30px;
}

@media (max-width:991px){

    .top-header{
        display:block !important;
        visibility:visible !important;
        opacity:1 !important;
        position:relative;
        z-index:9999;
        padding:10px 0;
    }

    .top-title{
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .brand-name{
        font-size:18px;
    }

    .brand-subtitle{
        margin-left:0;
        font-size:9px;
    }
}
/* =====================================
   Enterprise Smooth Scroll
===================================== */

html,
body{
    overflow-x:hidden;
}

html{
    scroll-behavior:smooth;
}

html,
body{
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    text-rendering:optimizeLegibility;
}
/* ===== Franchise Counter Fix ===== */

.franchise-card .glass-card{
    text-align:center;
}

.franchise-card .glass-card h3{
    display:block !important;
    color:#0d6efd !important;
    font-size:48px !important;
    font-weight:800 !important;
    margin-bottom:12px !important;
    line-height:1.2 !important;
}

.franchise-card .glass-card p{
    display:block !important;
    color:#555 !important;
    font-size:17px !important;
    font-weight:600 !important;
    margin:0 !important;
    opacity:1 !important;
    visibility:visible !important;
}
.top-header{
    position: relative;
    z-index: 1035;
}

#mainNavbar{
    z-index: 1030;
}