/*=====================================================
  CINEMAC PREMIUM UI
  Version : 1.0
======================================================*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/*==============================
        ROOT VARIABLES
===============================*/

:root{

    --primary:#4F46E5;
    --primary-dark:#3730A3;

    --secondary:#06B6D4;

    --accent:#F97316;

    --success:#22C55E;

    --dark:#081120;

    --dark-2:#111827;

    --light:#F8FAFC;

    --white:#ffffff;

    --gray:#6B7280;

    --border:#E5E7EB;

    --radius-sm:8px;
    --radius-md:14px;
    --radius-lg:22px;
    --radius-xl:32px;

    --shadow-sm:0 5px 15px rgba(0,0,0,.06);

    --shadow-md:0 15px 35px rgba(0,0,0,.10);

    --shadow-lg:0 25px 60px rgba(0,0,0,.15);

    --transition:.35s ease;

}

/*==============================
RESET
===============================*/

*{

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;

background:#fff;

color:#1F2937;

overflow-x:hidden;

}

/*==============================
TYPOGRAPHY
===============================*/

h1,
h2,
h3,
h4,
h5,
h6{

font-family:'Outfit',sans-serif;

font-weight:700;

color:var(--dark);

margin-bottom:15px;

}

h1{

font-size:58px;

line-height:1.1;

}

h2{

font-size:42px;

}

h3{

font-size:30px;

}

h4{

font-size:24px;

}

p{

font-size:16px;

line-height:1.9;

color:#5B6472;

margin-bottom:20px;

}

/*==============================
LINKS
===============================*/

a{

text-decoration:none;

transition:var(--transition);

}

a:hover{

text-decoration:none;

}

/*==============================
IMAGES
===============================*/

img{

max-width:100%;

display:block;

}

/*==============================
SECTION
===============================*/

section{

padding:100px 0;

position:relative;

}

/*==============================
CONTAINER
===============================*/

.container{

max-width:1280px;

}

/*==============================
BUTTONS
===============================*/

.btn-primary-custom{

background:linear-gradient(135deg,var(--primary),var(--secondary));

color:#fff;

padding:15px 34px;

border-radius:50px;

font-weight:600;

display:inline-flex;

align-items:center;

gap:10px;

box-shadow:var(--shadow-md);

transition:.4s;

}

.btn-primary-custom:hover{

transform:translateY(-5px);

color:#fff;

box-shadow:0 25px 45px rgba(79,70,229,.35);

}

.btn-outline-custom{

padding:15px 34px;

border-radius:50px;

border:2px solid var(--primary);

color:var(--primary);

font-weight:600;

transition:.4s;

}

.btn-outline-custom:hover{

background:var(--primary);

color:#fff;

}

/*==============================
CARDS
===============================*/

.card-modern{

background:#fff;

border-radius:22px;

padding:35px;

border:none;

box-shadow:var(--shadow-sm);

transition:.35s;

height:100%;

}

.card-modern:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-lg);

}

/*==============================
UTILITY
===============================*/

.gradient-text{

background:linear-gradient(135deg,var(--primary),var(--secondary));

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title span{

display:inline-block;

padding:8px 18px;

/* background:#EEF2FF; */

border-radius:40px;

font-size:14px;

font-weight:600;

color:var(--primary);

margin-bottom:20px;

}

.section-title h2{

margin-bottom:15px;

}

.section-title p{

max-width:700px;

margin:auto;

}

/*==============================
SCROLLBAR
===============================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-thumb{

background:linear-gradient(var(--primary),var(--secondary));

border-radius:20px;

}

::-webkit-scrollbar-track{

background:#ECECEC;

}
/*=========================================
        HEADER
=========================================*/

header{
    position:relative;
    z-index:999;
    background:#ffffff;
    transition:.4s;
}

.header_top_area{

    padding:18px 0;

    background:#fff;

    border-bottom:1px solid rgba(0,0,0,.06);

}

.site_logo img{

    height:72px;

    transition:.35s;

}

.site_logo img:hover{

    transform:scale(1.04);

}

/*=========================================
        TOP INFO
=========================================*/

.site_info{

    gap:40px;

    align-items:center;

}

.single_info{

    display:flex;

    align-items:center;

    gap:16px;

}

.single_info img{

    width:52px;

    height:52px;

    object-fit:contain;

}

.info_data h6{

    margin:0;

    font-size:15px;

    font-weight:700;

    color:#111827;

}

.info_data p{

    margin:0;

    font-size:14px;

    line-height:1.6;

    color:#6B7280;

}

/*=========================================
    APPLY BUTTON
=========================================*/

.special-button{

display:flex;

align-items:center;

gap:14px;

padding:16px 30px;

background:linear-gradient(135deg,#4F46E5,#06B6D4);

color:#fff;

font-weight:600;

border-radius:50px;

box-shadow:0 15px 40px rgba(79,70,229,.30);

transition:.35s;

}

.special-button:hover{

transform:translateY(-4px);

color:#fff;

box-shadow:0 25px 45px rgba(79,70,229,.40);

}

.button_icon{

width:42px;

height:42px;

display:flex;

align-items:center;

justify-content:center;

background:rgba(255,255,255,.15);

border-radius:50%;

}

/*=========================================
        MAIN NAVBAR
=========================================*/

.navbar{

padding:18px 0;

background:#fff;

box-shadow:0 5px 30px rgba(0,0,0,.06);

position:sticky;

top:0;

z-index:999;

}

.navbar-nav{

gap:18px;

}

.navbar-nav .nav-link{

font-weight:600;

font-size:15px;

color:#111827;

transition:.3s;

position:relative;

}

.navbar-nav .nav-link:hover{

color:#4F46E5;

}

.navbar-nav .nav-link::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:#4F46E5;

transition:.35s;

}

.navbar-nav .nav-link:hover::after{

width:100%;

}

/*=========================================
      MOBILE HEADER
=========================================*/

@media(max-width:768px){

.header_top_area{

display:none;

}

header{

box-shadow:0 10px 30px rgba(0,0,0,.06);

}

header img{

height:48px;

}

header nav{

padding:15px 0;

}

}
/*=========================================
            PREMIUM HERO
=========================================*/

.slider-section{
    position:relative;
    overflow:hidden;
}

.slider-area{

    min-height:760px;

    display:flex;

    align-items:center;

    position:relative;

    background-size:cover !important;

    background-position:center !important;

}

.slider-area::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    120deg,
    rgba(7,15,33,.88) 0%,
    rgba(7,15,33,.72) 45%,
    rgba(7,15,33,.55) 100%
    );

}

.slider-content{

    position:relative;

    z-index:5;

    max-width:760px;

}

/*=========================
        Badge
=========================*/

.hero-badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:10px 18px;

background:rgba(255,255,255,.12);

border:1px solid rgba(255,255,255,.18);

backdrop-filter:blur(15px);

border-radius:40px;

margin-bottom:25px;

font-size:14px;

font-weight:600;

color:#fff;

}

/*=========================
        Heading
=========================*/

#heading{

font-size:64px !important;

font-weight:800;

line-height:1.08;

letter-spacing:-1px;

margin-bottom:28px;

color:#fff;

}

#heading span{

background:linear-gradient(135deg,#38BDF8,#8B5CF6);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

#para{

font-size:19px;

line-height:1.9;

max-width:640px;

color:rgba(255,255,255,.85);

margin-bottom:35px;

}

/*=========================
        CTA Buttons
=========================*/

.hero-btns{

display:flex;

gap:18px;

flex-wrap:wrap;

margin-top:35px;

}

.hero-btn{

padding:16px 34px;

border-radius:50px;

font-size:16px;

font-weight:600;

transition:.35s;

display:inline-flex;

align-items:center;

gap:12px;

}

.hero-btn.primary{

background:linear-gradient(135deg,#4F46E5,#06B6D4);

color:#fff;

box-shadow:0 20px 45px rgba(79,70,229,.35);

}

.hero-btn.primary:hover{

transform:translateY(-5px);

color:#fff;

}

.hero-btn.secondary{

border:2px solid rgba(255,255,255,.25);

color:#fff;

background:rgba(255,255,255,.08);

backdrop-filter:blur(10px);

}

.hero-btn.secondary:hover{

background:#fff;

color:#111827;

}

/*=========================
      Feature List
=========================*/

#lists{

margin-top:35px;

display:grid;

grid-template-columns:repeat(2,1fr);

gap:14px;

}

#lists p{

background:rgba(255,255,255,.08);

border:1px solid rgba(255,255,255,.10);

padding:14px 18px;

border-radius:14px;

backdrop-filter:blur(15px);

margin:0;

font-size:15px;

color:#fff;

transition:.35s;

}

#lists p:hover{

transform:translateY(-5px);

background:rgba(255,255,255,.14);

}

/*=========================
      Floating Blur
=========================*/

.slider-section::after{

content:"";

position:absolute;

right:-120px;

top:80px;

width:420px;

height:420px;

background:#4F46E5;

filter:blur(180px);

opacity:.28;

pointer-events:none;

}

/*=========================
      Responsive
=========================*/

@media(max-width:991px){

.slider-area{

min-height:680px;

}

#heading{

font-size:44px !important;

text-align:center;

}

#para{

text-align:center;

margin:auto;

margin-bottom:30px;

}

.hero-btns{

justify-content:center;

}

#lists{

grid-template-columns:1fr;

}

}

@media(max-width:576px){

.slider-area{

min-height:620px;

padding:80px 0;

}

#heading{

font-size:34px !important;

}

#para{

font-size:16px;

}

.hero-btn{

width:100%;

justify-content:center;

}

}
/*=========================================
      PREMIUM ENQUIRY SECTION
=========================================*/

#Enquiry{
    margin-top:-90px;
    position:relative;
    z-index:20;
}

.semi_dark_bg{

    background:#ffffff;

    border-radius:28px;

    box-shadow:0 30px 80px rgba(0,0,0,.12);

    overflow:hidden;

}

.contact-from-wrapper-2{

    padding:45px;

}

.section-heading{

    font-size:36px;

    font-weight:700;

    margin-bottom:30px;

    color:#111827;

}

.section-heading::before{

    display:none;

}

/*=========================================
      INPUTS
=========================================*/

.form-control{

height:58px;

border-radius:14px;

border:1px solid #E5E7EB;

padding:0 20px;

font-size:15px;

transition:.35s;

box-shadow:none;

}

.form-control:focus{

border-color:#4F46E5;

box-shadow:0 0 0 4px rgba(79,70,229,.12);

}

/*=========================================
      PHONE FIELD
=========================================*/

.phone-field{

height:58px;

border-radius:14px;

border:1px solid #E5E7EB;

background:#fff;

transition:.35s;

}

.phone-field:focus-within{

border-color:#4F46E5;

box-shadow:0 0 0 4px rgba(79,70,229,.12);

}

.country-code{

font-weight:700;

}

/*=========================================
      SUBMIT BUTTON
=========================================*/

.submit-btn{

width:100%;

height:58px;

border:none;

border-radius:16px;

background:linear-gradient(135deg,#4F46E5,#06B6D4);

color:#fff;

font-size:16px;

font-weight:700;

transition:.35s;

}

.submit-btn:hover{

transform:translateY(-4px);

box-shadow:0 20px 40px rgba(79,70,229,.30);

}

/*=========================================
      SUCCESS CARDS
=========================================*/

.success-card{

background:#fff;

border-radius:24px;

padding:35px;

border:1px solid #EEF2F7;

transition:.35s;

position:relative;

overflow:hidden;

}

.success-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:linear-gradient(90deg,#4F46E5,#06B6D4);

}

.success-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 50px rgba(0,0,0,.10);

}

.success-icon{

width:75px;

height:75px;

border-radius:20px;

display:flex;

align-items:center;

justify-content:center;

background:linear-gradient(135deg,#EEF2FF,#E0F2FE);

font-size:34px;

margin:auto;

margin-bottom:20px;

color:#4F46E5;

}

.success-card h5{

font-size:22px;

font-weight:700;

margin-bottom:15px;

}

.success-card p{

font-size:15px;

line-height:1.8;

}

/*=========================================
      MOBILE
=========================================*/

@media(max-width:768px){

.contact-from-wrapper-2{

padding:25px;

}

.section-heading{

font-size:28px;

text-align:center;

}

.success-card{

padding:28px 22px;

}

}
/*=========================================
        COURSE SECTION
=========================================*/

.course-section{

    position:relative;

    padding:110px 0;

    background:#F8FAFC;

}

.course-section::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:#4F46E5;

    opacity:.08;

    border-radius:50%;

    filter:blur(150px);

    left:-120px;

    top:0;

}

.course-title{

    text-align:center;

    margin-bottom:70px;

}

.course-title h2{

    font-size:48px;

    font-weight:800;

    margin-bottom:15px;

}

.course-title p{

    max-width:720px;

    margin:auto;

    font-size:18px;

}


/*=============================
      COURSE CARD
==============================*/

.course-card{

    position:relative;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

    height:100%;

}

.course-card:hover{

    transform:translateY(-12px);

    box-shadow:0 35px 70px rgba(0,0,0,.14);

}


/*=============================
      IMAGE
==============================*/

.course-card img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.6s;

}

.course-card:hover img{

    transform:scale(1.08);

}


/*=============================
      CONTENT
==============================*/

.course-content{

    padding:35px;

}

.course-content h3{

    font-size:26px;

    margin-bottom:15px;

}

.course-content p{

    font-size:15px;

    line-height:1.8;

}


/*=============================
      FEATURES
==============================*/

.course-features{

    margin:25px 0;

}

.course-features li{

    list-style:none;

    margin-bottom:12px;

    display:flex;

    align-items:center;

    gap:12px;

    font-size:15px;

}

.course-features li i{

    color:#22C55E;

}


/*=============================
      BUTTON
==============================*/

.course-btn{

display:inline-flex;

align-items:center;

gap:10px;

padding:14px 28px;

border-radius:50px;

background:linear-gradient(135deg,#4F46E5,#06B6D4);

color:#fff;

font-weight:600;

transition:.35s;

}

.course-btn:hover{

transform:translateY(-4px);

color:#fff;

}


/*=============================
      BADGE
==============================*/

.course-badge{

position:absolute;

top:18px;

left:18px;

background:#fff;

padding:8px 16px;

border-radius:50px;

font-size:13px;

font-weight:700;

box-shadow:0 10px 30px rgba(0,0,0,.15);

}


/*=============================
      RESPONSIVE
==============================*/

@media(max-width:991px){

.course-title h2{

font-size:36px;

}

.course-content{

padding:25px;

}

}

@media(max-width:576px){

.course-title h2{

font-size:30px;

}

.course-card img{

height:210px;

}

}
.course-card::after{

content:"";

position:absolute;

left:0;

bottom:0;

width:100%;

height:4px;

background:linear-gradient(90deg,#4F46E5,#06B6D4);

transform:scaleX(0);

transition:.4s;

transform-origin:left;

}

.course-card:hover::after{

transform:scaleX(1);

}
.hero-features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
margin-top:35px;
}

.feature-item{
background:rgba(255,255,255,.10);
backdrop-filter:blur(12px);
padding:14px 18px;
border-radius:14px;
color:#fff;
font-weight:500;
}

.feature-item i{
color:#FFD43B;
margin-right:8px;
}

.hero-stats{
display:flex;
gap:18px;
flex-wrap:wrap;
margin-top:40px;
}

.stat-box{
background:#fff;
padding:18px;
border-radius:18px;
text-align:center;
min-width:120px;
box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.stat-box h3{
margin:0;
font-size:28px;
color:#4F46E5;
font-weight:800;
}

.stat-box span{
font-size:14px;
color:#6B7280;
}

.hero-image-wrapper{
position:relative;
}

.hero-main-image{
border-radius:30px;
box-shadow:0 40px 70px rgba(0,0,0,.25);
}

.floating-card{
position:absolute;
background:#fff;
padding:14px 22px;
border-radius:16px;
font-weight:600;
box-shadow:0 15px 35px rgba(0,0,0,.15);
animation:floatCard 3s ease-in-out infinite;
}

.card-one{
top:30px;
left:-40px;
}

.card-two{
right:-30px;
top:180px;
}

.card-three{
left:20px;
bottom:30px;
}

@keyframes floatCard{
0%,100%{transform:translateY(0);}
50%{transform:translateY(-12px);}
}
/*=========================================
        WHY CHOOSE US
=========================================*/

.why-choose-section{

padding:110px 0;

background:#F8FAFC;

}

.bento-card{

background:#fff;

padding:35px;

border-radius:28px;

height:100%;

transition:.4s;

box-shadow:0 15px 35px rgba(0,0,0,.06);

border:1px solid #EEF2F7;

position:relative;

overflow:hidden;

}

.bento-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:linear-gradient(90deg,#4F46E5,#06B6D4);

transform:scaleX(0);

transition:.4s;

}

.bento-card:hover::before{

transform:scaleX(1);

}

.bento-card:hover{

transform:translateY(-10px);

box-shadow:0 30px 60px rgba(0,0,0,.10);

}

.large-card{

min-height:270px;

display:flex;

flex-direction:column;

justify-content:center;

}

.icon-box{

width:70px;

height:70px;

border-radius:20px;

background:linear-gradient(135deg,#4F46E5,#06B6D4);

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

color:#fff;

margin-bottom:25px;

}

.bento-card h3{

font-size:28px;

margin-bottom:15px;

}

.bento-card h4{

margin:0;

font-size:22px;

font-weight:700;

}

.bento-card p{

margin:0;

color:#6B7280;

line-height:1.8;

}
/*=====================================
CURRICULUM
=====================================*/

.curriculum-section{

padding:110px 0;

background:#fff;

}

.custom-accordion .accordion-item{

border:none;

margin-bottom:20px;

border-radius:22px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.custom-accordion .accordion-button{

background:#fff;

padding:25px;

font-size:20px;

font-weight:700;

box-shadow:none;

}

.custom-accordion .accordion-button:not(.collapsed){

background:#EEF2FF;

color:#4F46E5;

}

.module-number{

width:55px;

height:55px;

background:linear-gradient(135deg,#4F46E5,#06B6D4);

color:#fff;

border-radius:18px;

display:flex;

align-items:center;

justify-content:center;

margin-right:18px;

font-weight:700;

}

.accordion-body{

padding:30px;

}

.accordion-body ul{

padding-left:20px;

margin:0;

}

.accordion-body li{

margin-bottom:14px;

color:#4B5563;

font-size:16px;

}
/*==========================
PLACEMENT
==========================*/

.placement-section{

padding:100px 0;

background:#F8FAFC;

overflow:hidden;

}

.logo-slider{

margin-top:60px;

overflow:hidden;

position:relative;

}

.logo-track{

display:flex;

align-items:center;

gap:70px;

width:max-content;

animation:scrollLogo 28s linear infinite;

}

.logo-track img{

height:55px;

filter:grayscale(100%);

opacity:.65;

transition:.35s;

}

.logo-track img:hover{

filter:none;

opacity:1;

transform:scale(1.08);

}

@keyframes scrollLogo{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}
/*==============================
STUDENT PROJECTS
==============================*/

.student-projects{

padding:110px 0;

background:#ffffff;

}

.project-card{

position:relative;

overflow:hidden;

border-radius:24px;

cursor:pointer;

box-shadow:0 20px 45px rgba(0,0,0,.08);

transition:.4s;

}

.project-card img{

width:100%;

height:280px;

object-fit:cover;

transition:.6s;

}

.project-card:hover img{

transform:scale(1.08);

}

.project-overlay{

position:absolute;

left:0;

right:0;

bottom:0;

padding:30px;

background:linear-gradient(to top,
rgba(0,0,0,.90),
rgba(0,0,0,.15));

color:#fff;

transform:translateY(40px);

transition:.4s;

}

.project-card:hover .project-overlay{

transform:translateY(0);

}

.project-overlay span{

display:inline-block;

background:#4F46E5;

padding:8px 16px;

border-radius:40px;

font-size:13px;

margin-bottom:15px;

}

.project-overlay h4{

color:#fff;

margin-bottom:20px;

}

.project-btn{

display:inline-block;

padding:12px 22px;

background:#fff;

color:#111827;

border-radius:40px;

font-weight:600;

transition:.35s;

}

.project-btn:hover{

background:#4F46E5;

color:#fff;

}
/*=========================================
TESTIMONIAL
=========================================*/

.testimonial-section{

padding:110px 0;

background:#F8FAFC;

}

.testimonial-card{

background:#fff;

border-radius:28px;

overflow:hidden;

transition:.35s;

box-shadow:0 20px 45px rgba(0,0,0,.06);

height:100%;

}

.testimonial-card:hover{

transform:translateY(-12px);

box-shadow:0 35px 70px rgba(0,0,0,.12);

}

.testimonial-image{

position:relative;

overflow:hidden;

}

.testimonial-image img{

width:100%;

height:340px;

object-fit:cover;

transition:.5s;

}

.testimonial-card:hover img{

transform:scale(1.06);

}

.salary-tag{

position:absolute;

top:20px;

left:20px;

background:#4F46E5;

color:#fff;

padding:10px 18px;

border-radius:50px;

font-size:14px;

font-weight:700;

}

.testimonial-content{

padding:30px;

}

.stars{

font-size:22px;

margin-bottom:18px;

}

.student-info{

margin-top:25px;

padding-top:20px;

border-top:1px solid #ECECEC;

}

.student-info h5{

margin-bottom:6px;

font-weight:700;

}

.student-info span{

color:#6B7280;

font-size:15px;

}
/*==================================
SOFTWARE
==================================*/

.software-section{

padding:110px 0;

background:#fff;

}

.software-card{

background:#fff;

padding:35px;

text-align:center;

border-radius:24px;

box-shadow:0 15px 40px rgba(0,0,0,.06);

transition:.35s;

height:100%;

border:1px solid #EEF2F7;

}

.software-card:hover{

transform:translateY(-12px);

box-shadow:0 35px 60px rgba(0,0,0,.12);

}

.software-card img{

height:75px;

margin:auto;

margin-bottom:25px;

transition:.35s;

}

.software-card:hover img{

transform:rotate(-6deg) scale(1.1);

}

.software-card h4{

font-weight:700;

margin-bottom:10px;

}

.software-card p{

margin:0;

color:#6B7280;

}
/*=====================================
BENEFITS SECTION
======================================*/

.benefits-section{

padding:110px 0;

background:#F8FAFC;

}

.benefit-card{

background:#fff;

padding:40px 30px;

border-radius:24px;

height:100%;

text-align:center;

transition:.35s;

border:1px solid #EEF2F7;

box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.benefit-card:hover{

transform:translateY(-12px);

box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.benefit-icon{

width:80px;

height:80px;

margin:auto;

margin-bottom:25px;

border-radius:22px;

display:flex;

align-items:center;

justify-content:center;

background:linear-gradient(135deg,#4F46E5,#06B6D4);

color:#fff;

font-size:30px;

}

.benefit-card h4{

font-size:24px;

margin-bottom:15px;

font-weight:700;

}

.benefit-card p{

margin:0;

color:#6B7280;

line-height:1.8;

}
/*==============================
SKILLS
==============================*/

.skills-section{

padding:120px 0;

background:#F8FAFC;

}

.skill-card{

background:#fff;

border-radius:28px;

padding:35px;

height:100%;

transition:.4s;

position:relative;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.06);

border:1px solid #EEF2F7;

}

.skill-card:hover{

transform:translateY(-12px);

box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.skill-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:linear-gradient(90deg,#4F46E5,#06B6D4);

}

.skill-top{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:30px;

}

.skill-icon{

width:70px;

height:70px;

border-radius:20px;

display:flex;

align-items:center;

justify-content:center;

font-size:32px;

background:#EEF2FF;

color:#4F46E5;

}

.skill-badge{

padding:8px 16px;

background:#EEF2FF;

color:#4F46E5;

font-size:13px;

font-weight:700;

border-radius:40px;

}

.skill-card h4{

font-size:28px;

font-weight:700;

margin-bottom:15px;

}

.skill-card p{

color:#6B7280;

line-height:1.8;

margin-bottom:25px;

}

.progress{

height:10px;

background:#E5E7EB;

border-radius:20px;

overflow:hidden;

}

.progress-bar{

display:flex;

align-items:center;

justify-content:center;

font-size:11px;

font-weight:700;

color:#fff;

}

.html-bar{

width:95%;

background:#E34F26;

}

.css-bar{

width:90%;

background:#1572B6;

}

.js-bar{

width:85%;

background:#F7DF1E;

color:#000;

}
.about-modern{

padding:120px 0;

}

.video-wrapper{

position:relative;

overflow:hidden;

border-radius:30px;

box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.video-wrapper img{

transition:.5s;

}

.video-wrapper:hover img{

transform:scale(1.05);

}

.play-btn{

position:absolute;

top:50%;

left:50%;

transform:translate(-50%,-50%);

width:90px;

height:90px;

background:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

color:#4F46E5;

box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.about-list{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

margin:35px 0;

}

.about-list div{

font-weight:600;

}

.about-list i{

color:#22C55E;

margin-right:10px;

}

.counter-modern{

padding:80px 0;

background:#F8FAFC;

}

.counter-box{

background:#fff;

padding:35px;

border-radius:22px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.06);

transition:.35s;

}

.counter-box:hover{

transform:translateY(-10px);

}

.counter-box h2{

font-size:52px;

font-weight:800;

color:#4F46E5;

}