/*==========================================================
  Mecot AI - Apple Inspired Theme
  Part 1 : Reset + Variables + Typography + Header + Navigation
==========================================================*/

/*==========================
    GOOGLE FONT
===========================*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/*==========================
    CSS VARIABLES
===========================*/

:root{

    /* Apple Inspired Colors */

    --primary:#0071e3;
    --primary-dark:#005bb5;
    --primary-light:#4da3ff;

    --secondary:#06c;

    --success:#30d158;
    --warning:#ff9f0a;
    --danger:#ff453a;

    --text:#1d1d1f;
    --text-light:#6e6e73;

    --white:#ffffff;
    --light:#f5f5f7;
    --background:#fbfbfd;

    --border:#d2d2d7;

    --shadow-sm:0 5px 15px rgba(0,0,0,.08);
    --shadow-md:0 15px 40px rgba(0,0,0,.10);
    --shadow-lg:0 25px 60px rgba(0,0,0,.15);

    --radius-sm:10px;
    --radius:18px;
    --radius-lg:28px;

    --transition:.35s ease;

    --container:1280px;

}

/*==========================
      RESET
===========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:var(--background);

    color:var(--text);

    line-height:1.7;

    overflow-x:hidden;

}

/*==========================
    SELECTION
===========================*/

::selection{

    background:var(--primary);

    color:#fff;

}

/*==========================
    SCROLLBAR
===========================*/

::-webkit-scrollbar{
    width:9px;
}

::-webkit-scrollbar-track{
    background:#ececec;
}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

/*==========================
    GLOBAL
===========================*/

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:min(92%,var(--container));

    margin:auto;

}

section{

    padding:110px 0;

}

.text-gradient{

    background:linear-gradient(
            135deg,
            #0071e3,
            #58b4ff
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

/*==========================
    TYPOGRAPHY
===========================*/

h1{

    font-size:clamp(2.8rem,6vw,5.4rem);

    line-height:1.05;

    font-weight:800;

}

h2{

    font-size:clamp(2rem,4vw,3.4rem);

    line-height:1.15;

    font-weight:800;

}

h3{

    font-size:1.45rem;

    font-weight:700;

}

p{

    color:var(--text-light);

    font-size:1.05rem;

}

/*==========================
    SECTION HEADER
===========================*/

.section-header{

    max-width:760px;

    margin:auto;

    text-align:center;

    margin-bottom:70px;

}

.section-tag{

    display:inline-block;

    padding:10px 22px;

    background:#eaf4ff;

    color:var(--primary);

    border-radius:40px;

    font-size:.85rem;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;

}

.section-header h2{

    margin-bottom:18px;

}

.section-header p{

    font-size:1.1rem;

}

/*==========================
    BUTTONS
===========================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 34px;

    border-radius:50px;

    transition:var(--transition);

    font-weight:600;

}

.btn-primary{

    background:var(--primary);

    color:#fff;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

    box-shadow:var(--shadow-md);

}

.btn-secondary{

    border:2px solid var(--primary);

    color:var(--primary);

    background:#fff;

}

.btn-secondary:hover{

    background:var(--primary);

    color:#fff;

}

/*==========================
      HEADER
===========================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    backdrop-filter:blur(25px);

    background:rgba(255,255,255,.78);

    border-bottom:1px solid rgba(0,0,0,.05);

    transition:.4s;

}

.header.scrolled{

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

/*==========================
      NAVBAR
===========================*/

.navbar{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:82px;

}

/*==========================
      LOGO
===========================*/

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:1.3rem;

    font-weight:800;

}

.logo-icon{

    width:48px;

    height:48px;

    border-radius:14px;

    object-fit:contain;

}

.logo-text{

    color:var(--text);

}

/*==========================
     NAV LINKS
===========================*/

.nav-links{

    display:flex;

    gap:38px;

}

.nav-links a{

    position:relative;

    font-weight:600;

    color:var(--text);

    transition:var(--transition);

}

.nav-links a:hover{

    color:var(--primary);

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:var(--primary);

    border-radius:20px;

    transition:.35s;

}

.nav-links a:hover::after{

    width:100%;

}

/*==========================
    NAV BUTTON
===========================*/

.btn-nav{

    background:var(--primary);

    color:#fff;

    padding:12px 24px;

    border-radius:40px;

    font-weight:600;

    transition:.35s;

}

.btn-nav:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

    box-shadow:var(--shadow-sm);

}

/*==========================
     MOBILE MENU
===========================*/

.menu-toggle{

    display:none;

    width:45px;

    height:45px;

    border:none;

    background:transparent;

    cursor:pointer;

}

.menu-toggle span{

    display:block;

    width:28px;

    height:3px;

    background:var(--text);

    margin:6px auto;

    transition:.35s;

    border-radius:20px;

}

/*==========================
  MOBILE MENU ACTIVE
===========================*/

.menu-toggle.active span:nth-child(1){

    transform:translateY(9px) rotate(45deg);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:translateY(-9px) rotate(-45deg);

}

/*==========================
   GRADIENT ORBS
===========================*/

.gradient-orb{

    position:fixed;

    border-radius:50%;

    filter:blur(90px);

    opacity:.20;

    z-index:-1;

}

.orb-1{

    width:380px;
    height:380px;

    background:#4da3ff;

    top:-120px;
    right:-120px;

}

.orb-2{

    width:420px;
    height:420px;

    background:#7ad7ff;

    bottom:-200px;
    left:-120px;

}

.orb-3{

    width:280px;
    height:280px;

    background:#8dcbff;

    top:45%;

    left:45%;

}

/*==========================
 END PART 1
 Next:
 HERO SECTION
 HERO IMAGE
 FLOATING CARDS
 HERO STATS
 SCROLL INDICATOR
 ANIMATIONS
===========================*/
/*=========================================================
  HERO SECTION
=========================================================*/

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
    background:
        radial-gradient(circle at top left,
            rgba(0,113,227,.08),
            transparent 45%),
        radial-gradient(circle at bottom right,
            rgba(90,200,250,.08),
            transparent 40%),
        #fbfbfd;
}

/* Educational Canvas Background */
#educationalCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.hero .container{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:70px;
    align-items:center;
}

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

.hero-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 18px;

    border-radius:100px;

    background:#ffffff;

    border:1px solid rgba(0,0,0,.08);

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    font-size:.92rem;

    font-weight:600;

    color:#0071e3;

    margin-bottom:28px;

    animation:fadeUp .8s ease forwards;

}

.hero-title{

    font-size:clamp(3rem,6vw,5.7rem);

    line-height:1.05;

    font-weight:800;

    color:#1d1d1f;

    margin-bottom:28px;

    animation:fadeUp .9s ease forwards;

}

.text-gradient{

    background:linear-gradient(90deg,#0071e3,#5ac8fa,#30b0ff);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    background-clip:text;

}

.hero-description{

    font-size:1.15rem;

    line-height:1.9;

    color:#6e6e73;

    max-width:650px;

    margin-bottom:40px;

    animation:fadeUp 1s ease forwards;

}

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-bottom:55px;

    animation:fadeUp 1.1s ease forwards;

}

/*=========================================================
  BUTTONS
=========================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    border-radius:999px;

    font-size:15px;

    font-weight:600;

    text-decoration:none;

    cursor:pointer;

    transition:.35s ease;

    border:none;

}

.btn-primary{

    color:#fff;

    background:linear-gradient(135deg,#0071e3,#0a84ff);

    box-shadow:0 15px 35px rgba(0,113,227,.30);

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 45px rgba(0,113,227,.38);

}

.btn-secondary{

    background:#fff;

    color:#1d1d1f;

    border:1px solid rgba(0,0,0,.10);

    box-shadow:0 12px 25px rgba(0,0,0,.05);

}

.btn-secondary:hover{

    transform:translateY(-4px);

    border-color:#0071e3;

    color:#0071e3;

}

/*=========================================================
  HERO STATS
=========================================================*/

.hero-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:22px;

}

.stat-item{

    padding:25px;

    text-align:center;

    border-radius:22px;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.7);

    box-shadow:0 20px 40px rgba(0,0,0,.06);

    transition:.35s;

}

.stat-item:hover{

    transform:translateY(-8px);

}

.stat-item h3{

    font-size:2rem;

    color:#0071e3;

    margin-bottom:8px;

}

.stat-item p{

    color:#6e6e73;

    font-size:.95rem;

}

/*=========================================================
  HERO IMAGE
=========================================================*/

.hero-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.robot-card{

    width:420px;

    padding:55px 40px;

    text-align:center;

    border-radius:34px;

    background:rgba(255,255,255,.72);

    backdrop-filter:blur(24px);

    border:1px solid rgba(255,255,255,.75);

    box-shadow:0 30px 70px rgba(0,0,0,.08);

    animation:floatCard 5s ease-in-out infinite;

}

.robot-circle{

    width:140px;

    height:140px;

    margin:auto auto 25px;

    border-radius:50%;

    background:linear-gradient(135deg,#0071e3,#5ac8fa);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:64px;

    box-shadow:0 20px 50px rgba(0,113,227,.35);

}

.robot-card h3{

    font-size:2rem;

    margin-bottom:16px;

}

.robot-card p{

    color:#6e6e73;

    line-height:1.8;

}

/*=========================================================
 FLOATING LABELS
=========================================================*/

.floating-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 18px;

    border-radius:16px;

    background:#fff;

    box-shadow:0 18px 40px rgba(0,0,0,.08);

    animation:float 6s ease-in-out infinite;

}

.floating-card i{

    color:#0071e3;

    font-size:22px;

}

.floating-card span{

    font-weight:600;

}

.card-1{

    top:10%;

    left:-40px;

}

.card-2{

    top:28%;

    right:-50px;

    animation-delay:1s;

}

.card-3{

    bottom:18%;

    left:-20px;

    animation-delay:2s;

}

.card-4{

    bottom:8%;

    right:-30px;

    animation-delay:3s;

}

/*=========================================================
  SCROLL INDICATOR
=========================================================*/

.scroll-indicator{

    position:absolute;

    left:50%;

    bottom:28px;

    transform:translateX(-50%);

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:8px;

    color:#6e6e73;

    animation:bounce 2s infinite;

}

.scroll-indicator i{

    color:#0071e3;

}

/*=========================================================
 BACKGROUND ORBS
=========================================================*/

.gradient-orb{

    position:absolute;

    border-radius:50%;

    filter:blur(80px);

    opacity:.55;

    z-index:0;

}

.orb-1{

    width:320px;

    height:320px;

    background:#5ac8fa;

    top:-100px;

    left:-80px;

}

.orb-2{

    width:260px;

    height:260px;

    background:#0071e3;

    right:5%;

    top:15%;

}

.orb-3{

    width:340px;

    height:340px;

    background:#b9e5ff;

    bottom:-120px;

    left:45%;

}

/*=========================================================
 ANIMATIONS
=========================================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes float{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

}

@keyframes floatCard{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-20px);

    }

}

@keyframes bounce{

    0%,100%{

        transform:translate(-50%,0);

    }

    50%{

        transform:translate(-50%,-10px);

    }

}

/*=========================================================
 RESPONSIVE
=========================================================*/

@media(max-width:992px){

.hero .container{

grid-template-columns:1fr;

text-align:center;

}

.hero-description{

margin:auto auto 40px;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

grid-template-columns:repeat(2,1fr);

margin-top:50px;

}

.hero-image{

margin-top:60px;

}

.card-1,
.card-2,
.card-3,
.card-4{

display:none;

}

}

@media(max-width:768px){

.hero{

padding-top:100px;

}

.hero-title{

font-size:2.8rem;

}

.hero-description{

font-size:1rem;

}

.hero-stats{

grid-template-columns:1fr;

}

.robot-card{

width:100%;

padding:40px 30px;

}

.robot-circle{

width:110px;

height:110px;

font-size:52px;

}

.btn{

width:100%;

}

.hero-buttons{

flex-direction:column;

}

}
/*==========================================================
    ABOUT SECTION
==========================================================*/

.about{
    position:relative;
    padding:120px 0;
    background:#ffffff;
    overflow:hidden;
}

.about::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-150px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:radial-gradient(circle,
            rgba(0,113,227,.08),
            transparent 70%);
    pointer-events:none;
}

.about::after{
    content:"";
    position:absolute;
    bottom:-220px;
    left:-160px;
    width:450px;
    height:450px;
    border-radius:50%;
    background:radial-gradient(circle,
            rgba(52,199,89,.07),
            transparent 70%);
    pointer-events:none;
}

/*------------------------------------
    Section Header
------------------------------------*/

.about .section-header{
    max-width:820px;
    margin:0 auto 70px;
    text-align:center;
}

.about .section-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:40px;
    background:#eef6ff;
    color:#0071e3;
    font-size:.82rem;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.about .section-header h2{
    font-size:3rem;
    line-height:1.15;
    font-weight:800;
    color:#1d1d1f;
    margin-bottom:22px;
}

.about .section-header p{
    max-width:700px;
    margin:auto;
    color:#6e6e73;
    font-size:1.1rem;
    line-height:1.8;
}

/*------------------------------------
    Grid
------------------------------------*/

.about-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:60px;
    align-items:center;
}

/*------------------------------------
    Left Side
------------------------------------*/

.about-content{
    display:flex;
    flex-direction:column;
    gap:28px;
}

/*------------------------------------
    Feature Card
------------------------------------*/

.feature{
    display:flex;
    align-items:flex-start;
    gap:22px;

    padding:26px;

    background:rgba(255,255,255,.75);

    border:1px solid rgba(0,0,0,.06);

    border-radius:24px;

    backdrop-filter:blur(18px);

    transition:.35s ease;

    box-shadow:
        0 8px 24px rgba(0,0,0,.04);
}

.feature:hover{

    transform:translateY(-8px);

    border-color:#0071e3;

    box-shadow:
        0 20px 50px rgba(0,113,227,.12);

}

/*------------------------------------
    Icon
------------------------------------*/

.feature-icon{

    width:72px;
    height:72px;

    min-width:72px;

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

    border-radius:20px;

    background:linear-gradient(
            135deg,
            #0071e3,
            #53b7ff);

    color:#fff;

    font-size:1.7rem;

    box-shadow:
        0 12px 28px rgba(0,113,227,.25);

    transition:.35s;
}

.feature:hover .feature-icon{

    transform:rotate(-8deg) scale(1.08);

}

/*------------------------------------
    Text
------------------------------------*/

.feature h3{

    font-size:1.35rem;

    color:#1d1d1f;

    margin-bottom:10px;

    font-weight:700;
}

.feature p{

    color:#6e6e73;

    line-height:1.8;

    font-size:.98rem;
}

/*------------------------------------
    Right Side Card
------------------------------------*/

.about-card{
    display:flex;
    justify-content:center;
}

.glass-card{

    width:100%;

    padding:45px;

    border-radius:32px;

    background:rgba(255,255,255,.72);

    backdrop-filter:blur(30px);

    border:1px solid rgba(255,255,255,.4);

    box-shadow:
        0 30px 60px rgba(0,0,0,.08);

    transition:.35s;
}

.glass-card:hover{

    transform:translateY(-10px);

    box-shadow:
        0 35px 80px rgba(0,113,227,.12);

}

.glass-card h3{

    font-size:2rem;

    margin-bottom:30px;

    color:#1d1d1f;
}

.glass-card ul{

    list-style:none;

    padding:0;

    margin:0;
}

.glass-card li{

    display:flex;

    align-items:center;

    gap:16px;

    padding:14px 0;

    font-size:1rem;

    color:#444;

    border-bottom:1px solid rgba(0,0,0,.06);
}

.glass-card li:last-child{

    border-bottom:none;
}

.glass-card i{

    color:#34c759;

    font-size:1.1rem;
}

/*------------------------------------
    Animation
------------------------------------*/

.feature,
.glass-card{

    opacity:0;

    transform:translateY(40px);

    animation:fadeUp .8s forwards;
}

.feature:nth-child(1){
    animation-delay:.15s;
}

.feature:nth-child(2){
    animation-delay:.3s;
}

.feature:nth-child(3){
    animation-delay:.45s;
}

.feature:nth-child(4){
    animation-delay:.6s;
}

.glass-card{

    animation-delay:.75s;
}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(50px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/*------------------------------------
    Responsive
------------------------------------*/

@media(max-width:1100px){

    .about-grid{

        grid-template-columns:1fr;
        gap:50px;

    }

    .about-card{

        max-width:700px;
        margin:auto;

    }

}

@media(max-width:768px){

    .about{

        padding:90px 0;

    }

    .about .section-header h2{

        font-size:2.3rem;

    }

    .feature{

        padding:22px;

        gap:18px;

    }

    .feature-icon{

        width:60px;
        height:60px;
        min-width:60px;

        font-size:1.4rem;

    }

    .glass-card{

        padding:30px;

    }

    .glass-card h3{

        font-size:1.7rem;

    }

}

@media(max-width:540px){

    .feature{

        flex-direction:column;

        text-align:center;

        align-items:center;

    }

    .glass-card{

        padding:25px;

    }

    .glass-card li{

        align-items:flex-start;

        font-size:.95rem;

    }

}
/* ======================================================
   PROGRAMS SECTION
====================================================== */

.programs {
    padding: 120px 0;
    background: #f5f5f7;
    position: relative;
    overflow: hidden;
}

.programs::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle,
            rgba(0, 113, 227, .08),
            transparent 70%);
    top: -250px;
    right: -250px;
    z-index: 0;
}

.programs::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(90, 200, 250, .12),
            transparent 70%);
    bottom: -180px;
    left: -150px;
}

.programs .container {
    position: relative;
    z-index: 2;
}

/* ==========================================
   Grid
========================================== */

.program-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px,1fr));

    gap: 35px;

    margin-top: 70px;

}

/* ==========================================
   Card
========================================== */

.program-card {

    position: relative;

    background: rgba(255,255,255,.72);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,.7);

    border-radius: 28px;

    padding: 40px;

    transition: .45s ease;

    overflow: hidden;

    box-shadow:

        0 12px 35px rgba(0,0,0,.05);

}

.program-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        90deg,
        #0071E3,
        #5AC8FA
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.program-card:hover::before{

    transform:scaleX(1);

}

.program-card:hover{

    transform:translateY(-14px);

    box-shadow:

        0 35px 70px rgba(0,113,227,.15);

}

/* ==========================================
   Featured Card
========================================== */

.program-card.featured{

    background:linear-gradient(
        180deg,
        #ffffff,
        #f8fbff
    );

    border:2px solid #0071E3;

    transform:scale(1.03);

}

.program-card.featured:hover{

    transform:translateY(-16px)
             scale(1.04);

}

/* ==========================================
   Badge
========================================== */

.popular-badge{

    position:absolute;

    top:20px;

    right:-45px;

    background:#0071E3;

    color:#fff;

    padding:10px 55px;

    font-size:.75rem;

    font-weight:700;

    letter-spacing:.08em;

    transform:rotate(45deg);

    box-shadow:

        0 8px 20px rgba(0,113,227,.35);

}

/* ==========================================
   Icon
========================================== */

.program-icon{

    width:85px;

    height:85px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        135deg,
        #0071E3,
        #5AC8FA
    );

    color:#fff;

    font-size:34px;

    margin-bottom:28px;

    transition:.45s;

}

.program-card:hover .program-icon{

    transform:

        rotate(-8deg)
        scale(1.1);

}

/* ==========================================
   Title
========================================== */

.program-card h3{

    font-size:1.6rem;

    font-weight:700;

    margin-bottom:18px;

    color:#1d1d1f;

}

/* ==========================================
   Description
========================================== */

.program-card p{

    color:#6e6e73;

    line-height:1.8;

    margin-bottom:28px;

}

/* ==========================================
   Feature List
========================================== */

.program-card ul{

    list-style:none;

    margin-bottom:30px;

}

.program-card li{

    display:flex;

    align-items:center;

    gap:12px;

    padding:11px 0;

    color:#444;

    border-bottom:1px solid #ececec;

}

.program-card li:last-child{

    border:none;

}

.program-card li i{

    width:26px;

    height:26px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#e8f3ff;

    color:#0071E3;

    font-size:12px;

}

/* ==========================================
   Link
========================================== */

.card-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    font-weight:600;

    color:#0071E3;

    text-decoration:none;

    transition:.35s;

}

.card-link i{

    transition:.35s;

}

.card-link:hover{

    color:#0056b3;

}

.card-link:hover i{

    transform:translateX(6px);

}

/* ==========================================
   Decorative Blur
========================================== */

.program-card::after{

    content:"";

    position:absolute;

    width:170px;

    height:170px;

    background:rgba(90,200,250,.12);

    border-radius:50%;

    right:-70px;

    top:-70px;

    filter:blur(10px);

    transition:.5s;

}

.program-card:hover::after{

    transform:scale(1.4);

}

/* ==========================================
   Animation
========================================== */

.program-card{

    opacity:0;

    transform:translateY(60px);

    animation:fadeCard .8s ease forwards;

}

.program-card:nth-child(2){

    animation-delay:.1s;

}

.program-card:nth-child(3){

    animation-delay:.2s;

}

.program-card:nth-child(4){

    animation-delay:.3s;

}

.program-card:nth-child(5){

    animation-delay:.4s;

}

.program-card:nth-child(6){

    animation-delay:.5s;

}

@keyframes fadeCard{

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ==========================================
   Responsive
========================================== */

@media(max-width:992px){

    .program-grid{

        grid-template-columns:

            repeat(2,1fr);

    }

}

@media(max-width:768px){

    .programs{

        padding:90px 0;

    }

    .program-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

    .program-card{

        padding:30px;

    }

    .program-icon{

        width:70px;
        height:70px;

        font-size:28px;

    }

    .program-card h3{

        font-size:1.35rem;

    }

    .popular-badge{

        font-size:.65rem;

        padding:8px 45px;

    }

}

@media(max-width:480px){

    .program-card{

        border-radius:22px;

        padding:24px;

    }

    .program-card h3{

        font-size:1.25rem;

    }

    .program-card p{

        font-size:.95rem;

    }

    .card-link{

        font-size:.95rem;

    }

}
/*====================================================
    HARDWARE SECTION
====================================================*/

.hardware{
    padding:120px 0;
    background:#f5f5f7;
    position:relative;
    overflow:hidden;
}

.hardware::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,113,227,.05);
    border-radius:50%;
    top:-180px;
    right:-150px;
    filter:blur(80px);
}

.hardware::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(0,122,255,.04);
    border-radius:50%;
    bottom:-180px;
    left:-120px;
    filter:blur(80px);
}

.hardware .container{
    position:relative;
    z-index:2;
}

/*====================================================
    GRID
====================================================*/

.hardware-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:70px;

}

/*====================================================
    CARD
====================================================*/

.hardware-card{

    background:#fff;
    border-radius:24px;
    padding:35px 30px;
    text-align:center;

    border:1px solid rgba(0,0,0,.06);

    transition:.35s;

    position:relative;

    overflow:hidden;

    box-shadow:
    0 8px 20px rgba(0,0,0,.04);

}

.hardware-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(
    90deg,
    #0071e3,
    #42a5ff);

    transform:scaleX(0);

    transition:.35s;

}

.hardware-card:hover::before{

    transform:scaleX(1);

}

.hardware-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);

}

/*====================================================
    ICON
====================================================*/

.hardware-icon{

    width:85px;
    height:85px;

    margin:auto;

    border-radius:50%;

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

    font-size:34px;

    color:#0071e3;

    background:
    linear-gradient(
    145deg,
    #ffffff,
    #edf5ff);

    box-shadow:

    0 15px 35px rgba(0,113,227,.15);

    margin-bottom:25px;

    transition:.4s;

}

.hardware-card:hover .hardware-icon{

    transform:rotateY(180deg)
              scale(1.08);

    background:#0071e3;

    color:#fff;

}

/*====================================================
    TITLE
====================================================*/

.hardware-card h3{

    font-size:1.45rem;

    margin-bottom:18px;

    font-weight:700;

    color:#1d1d1f;

}

/*====================================================
    DESCRIPTION
====================================================*/

.hardware-card p{

    color:#6e6e73;

    line-height:1.8;

    font-size:15px;

}

/*====================================================
    FEATURES SECTION
====================================================*/

.hardware-features{

    margin-top:80px;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.feature-box{

    background:#fff;

    padding:35px;

    border-radius:22px;

    text-align:center;

    transition:.35s;

    border:1px solid rgba(0,0,0,.06);

    box-shadow:
    0 8px 20px rgba(0,0,0,.04);

}

.feature-box:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.12);

}

.feature-box i{

    width:70px;
    height:70px;

    border-radius:50%;

    background:#0071e3;

    color:#fff;

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

    margin:auto;

    font-size:28px;

    margin-bottom:20px;

}

.feature-box h4{

    margin-bottom:15px;

    font-size:20px;

    color:#1d1d1f;

}

.feature-box p{

    color:#6e6e73;

    line-height:1.7;

}

/*====================================================
    CARD ANIMATION
====================================================*/

.hardware-card{

    opacity:0;

    transform:translateY(60px);

    animation:hardwareFade .8s forwards;

}

.hardware-card:nth-child(2){

    animation-delay:.1s;

}

.hardware-card:nth-child(3){

    animation-delay:.2s;

}

.hardware-card:nth-child(4){

    animation-delay:.3s;

}

.hardware-card:nth-child(5){

    animation-delay:.4s;

}

.hardware-card:nth-child(6){

    animation-delay:.5s;

}

.hardware-card:nth-child(7){

    animation-delay:.6s;

}

.hardware-card:nth-child(8){

    animation-delay:.7s;

}

.hardware-card:nth-child(9){

    animation-delay:.8s;

}

.hardware-card:nth-child(10){

    animation-delay:.9s;

}

.hardware-card:nth-child(11){

    animation-delay:1s;

}

.hardware-card:nth-child(12){

    animation-delay:1.1s;

}

@keyframes hardwareFade{

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*====================================================
    RESPONSIVE
====================================================*/

@media(max-width:992px){

.hardware{

    padding:90px 0;

}

.hardware-grid{

    gap:22px;

}

.hardware-card{

    padding:30px 25px;

}

.hardware-features{

    margin-top:60px;

}

}

@media(max-width:768px){

.hardware-grid{

    grid-template-columns:1fr;

}

.hardware-features{

    grid-template-columns:1fr;

}

.hardware-card{

    padding:28px;

}

.hardware-icon{

    width:75px;
    height:75px;

    font-size:30px;

}

}

@media(max-width:576px){

.hardware{

    padding:70px 0;

}

.hardware-card h3{

    font-size:22px;

}

.hardware-card p{

    font-size:14px;

}

.feature-box{

    padding:28px;

}

}
/*=====================================================
    LEARNING JOURNEY / TIMELINE
======================================================*/

.learning-journey{
    padding:120px 0;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

.learning-journey::before{
    content:"";
    position:absolute;
    top:-250px;
    right:-150px;
    width:500px;
    height:500px;
    border-radius:50%;
    background:radial-gradient(circle,
            rgba(0,113,227,.10),
            transparent 70%);
}

.learning-journey::after{
    content:"";
    position:absolute;
    bottom:-250px;
    left:-150px;
    width:450px;
    height:450px;
    border-radius:50%;
    background:radial-gradient(circle,
            rgba(52,199,89,.08),
            transparent 70%);
}

/*=========================================
    Timeline Container
=========================================*/

.timeline{

    position:relative;
    max-width:1100px;
    margin:80px auto;

}

.timeline::before{

    content:"";
    position:absolute;

    left:50%;
    top:0;

    transform:translateX(-50%);

    width:4px;
    height:100%;

    border-radius:10px;

    background:linear-gradient(
            to bottom,
            #0071e3,
            #34c759
    );

}

/*=========================================
    Timeline Item
=========================================*/

.timeline-item{

    width:50%;
    position:relative;
    margin-bottom:70px;

}

.timeline-item:nth-child(odd){

    left:0;
    padding-right:70px;
    text-align:right;

}

.timeline-item:nth-child(even){

    left:50%;
    padding-left:70px;

}

/*=========================================
    Timeline Dot
=========================================*/

.timeline-dot{

    position:absolute;

    width:24px;
    height:24px;

    border-radius:50%;

    background:#0071e3;

    border:5px solid #ffffff;

    box-shadow:
            0 0 0 8px rgba(0,113,227,.12);

    top:35px;
    z-index:10;

}

.timeline-item:nth-child(odd) .timeline-dot{

    right:-12px;

}

.timeline-item:nth-child(even) .timeline-dot{

    left:-12px;

}

.timeline-dot-final{

    background:#34c759;

    box-shadow:
            0 0 0 10px rgba(52,199,89,.18);

}

/*=========================================
    Timeline Card
=========================================*/

.timeline-content{

    background:#ffffff;

    border-radius:26px;

    padding:35px;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:

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

    transition:.35s;

    position:relative;

}

.timeline-content:hover{

    transform:translateY(-10px);

    box-shadow:

            0 25px 60px rgba(15,23,42,.15);

}

/*=========================================
    Arrow
=========================================*/

.timeline-item:nth-child(odd)
.timeline-content::after{

    content:"";

    position:absolute;

    right:-12px;
    top:38px;

    width:24px;
    height:24px;

    background:#ffffff;

    transform:rotate(45deg);

    border-top:1px solid rgba(0,0,0,.05);

    border-right:1px solid rgba(0,0,0,.05);

}

.timeline-item:nth-child(even)
.timeline-content::after{

    content:"";

    position:absolute;

    left:-12px;
    top:38px;

    width:24px;
    height:24px;

    background:#ffffff;

    transform:rotate(45deg);

    border-left:1px solid rgba(0,0,0,.05);

    border-bottom:1px solid rgba(0,0,0,.05);

}

/*=========================================
    Year Badge
=========================================*/

.timeline-class{

    display:inline-flex;

    padding:8px 18px;

    border-radius:30px;

    background:linear-gradient(
            135deg,
            #0071e3,
            #5ac8fa);

    color:#fff;

    font-weight:700;

    font-size:14px;

    margin-bottom:18px;

}

/*=========================================
    Heading
=========================================*/

.timeline-content h3{

    font-size:30px;

    margin-bottom:15px;

    color:#1d1d1f;

}

.timeline-content p{

    color:#6e6e73;

    font-size:16px;

    line-height:1.8;

}

/*=========================================
    Tags
=========================================*/

.timeline-tags{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

    margin-top:25px;

}

.timeline-item:nth-child(odd)
.timeline-tags{

    justify-content:flex-end;

}

.timeline-tags span{

    background:#f5f5f7;

    color:#1d1d1f;

    padding:8px 15px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    transition:.3s;

}

.timeline-tags span:hover{

    background:#0071e3;

    color:#ffffff;

}

/*=========================================
    Summary Cards
=========================================*/

.journey-summary{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:100px;

}

.summary-card{

    background:#ffffff;

    border-radius:24px;

    padding:45px 35px;

    text-align:center;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:

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

    transition:.35s;

}

.summary-card:hover{

    transform:translateY(-10px);

    box-shadow:

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

}

.summary-card i{

    width:80px;
    height:80px;

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

    margin:auto;

    border-radius:50%;

    font-size:34px;

    color:#ffffff;

    background:linear-gradient(
            135deg,
            #0071e3,
            #5ac8fa);

    margin-bottom:25px;

}

.summary-card h3{

    font-size:24px;

    color:#1d1d1f;

    margin-bottom:15px;

}

.summary-card p{

    color:#6e6e73;

    line-height:1.8;

}

/*=========================================
    Animation
=========================================*/

.timeline-item{

    opacity:0;

    transform:translateY(60px);

    animation:fadeTimeline .8s forwards;

}

.timeline-item:nth-child(2){animation-delay:.15s;}
.timeline-item:nth-child(3){animation-delay:.30s;}
.timeline-item:nth-child(4){animation-delay:.45s;}
.timeline-item:nth-child(5){animation-delay:.60s;}
.timeline-item:nth-child(6){animation-delay:.75s;}
.timeline-item:nth-child(7){animation-delay:.90s;}

@keyframes fadeTimeline{

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=========================================
    Tablet
=========================================*/

@media(max-width:992px){

.timeline::before{

left:30px;

}

.timeline-item{

width:100%;

left:0!important;

padding-left:80px!important;

padding-right:0!important;

text-align:left!important;

}

.timeline-dot{

left:18px!important;

right:auto!important;

}

.timeline-content::after{

display:none;

}

.timeline-tags{

justify-content:flex-start!important;

}

.journey-summary{

grid-template-columns:1fr;

}

}

/*=========================================
    Mobile
=========================================*/

@media(max-width:768px){

.learning-journey{

padding:80px 0;

}

.timeline-content{

padding:25px;

}

.timeline-content h3{

font-size:24px;

}

.timeline-content p{

font-size:15px;

}

.timeline-class{

font-size:13px;

}

.summary-card{

padding:30px;

}

.summary-card i{

width:65px;
height:65px;
font-size:28px;

}

}
/*=========================================================
  PROJECTS SECTION
=========================================================*/

.projects{
    padding:120px 0;
    background:#fbfbfd;
    position:relative;
    overflow:hidden;
}

.projects::before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    background:radial-gradient(circle,#0071e322 0%,transparent 70%);
    top:-250px;
    right:-220px;
    border-radius:50%;
}

.projects::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:radial-gradient(circle,#6ec1ff18 0%,transparent 70%);
    bottom:-220px;
    left:-180px;
    border-radius:50%;
}

.projects .section-header{
    text-align:center;
    margin-bottom:70px;
}

.projects .section-header h2{
    font-size:3rem;
    font-weight:800;
    margin-bottom:20px;
    color:#1d1d1f;
}

.projects .section-header p{
    max-width:760px;
    margin:auto;
    color:#6e6e73;
    line-height:1.8;
    font-size:17px;
}

/*=========================================================
 FILTER BUTTONS
=========================================================*/

.project-filter{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:60px;
}

.filter-btn{

    border:none;
    outline:none;
    cursor:pointer;

    background:white;

    color:#444;

    font-size:15px;

    font-weight:600;

    padding:13px 28px;

    border-radius:50px;

    transition:.35s;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.filter-btn:hover{

    transform:translateY(-3px);

    color:#0071E3;

}

.filter-btn.active{

    background:#0071E3;

    color:#fff;

    box-shadow:0 20px 40px rgba(0,113,227,.28);

}

/*=========================================================
 PROJECT GRID
=========================================================*/

.projects-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fill,minmax(330px,1fr));

    gap:35px;

    justify-content:start;

    align-items:start;

}

/*=========================================================
 PROJECT CARD
=========================================================*/

.project-card{

    position:relative;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    transition:.45s;

    box-shadow:
    0 12px 35px rgba(0,0,0,.06);

    border:1px solid rgba(255,255,255,.5);

    width:100%;

}

.project-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 30px 65px rgba(0,0,0,.15);

}

/*=========================================================
 IMAGE AREA
=========================================================*/

.project-image{

    height:210px;

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(135deg,
    #0071E3,
    #42A5FF);

}

.project-image::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:
    rgba(255,255,255,.12);

    top:-120px;

    right:-100px;

}

.project-image::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    background:
    rgba(255,255,255,.08);

    bottom:-60px;

    left:-60px;

}

.project-image i{

    font-size:72px;

    color:white;

    position:relative;

    z-index:2;

    transition:.4s;

}

.project-card:hover
.project-image i{

    transform:
    rotate(10deg)
    scale(1.15);

}

/*=========================================================
 PROJECT CONTENT
=========================================================*/

.project-content{

    padding:35px;

}

.project-category{

    display:inline-block;

    background:#eef6ff;

    color:#0071E3;

    padding:7px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    margin-bottom:18px;

}

.project-content h3{

    font-size:25px;

    margin-bottom:15px;

    color:#1d1d1f;

    line-height:1.3;

}

.project-content p{

    color:#6e6e73;

    line-height:1.8;

    margin-bottom:28px;

}

/*=========================================================
 TECHNOLOGY TAGS
=========================================================*/

.project-tech{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

}

.project-tech span{

    padding:9px 16px;

    background:#f5f5f7;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    color:#444;

    transition:.3s;

}

.project-card:hover
.project-tech span{

    background:#0071E3;

    color:#fff;

}

/*=========================================================
 CARD BORDER ANIMATION
=========================================================*/

.project-card::before{

    content:"";

    position:absolute;

    inset:0;

    padding:2px;

    border-radius:28px;

    background:
    linear-gradient(
    135deg,
    transparent,
    #0071E3,
    transparent);

    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    opacity:0;

    transition:.45s;

}

.project-card:hover::before{

    opacity:1;

}

/*=========================================================
 CARD SHINE EFFECT
=========================================================*/

.project-card::after{

    content:"";

    position:absolute;

    top:-100%;

    left:-40%;

    width:80px;

    height:420px;

    background:
    rgba(255,255,255,.35);

    transform:
    rotate(30deg);

    transition:1s;

}

.project-card:hover::after{

    left:140%;

}

/*=========================================================
 CTA
=========================================================*/

.projects-cta{

    text-align:center;

    margin-top:80px;

    background:white;

    border-radius:35px;

    padding:60px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.05);

}

.projects-cta h3{

    font-size:38px;

    margin-bottom:20px;

    color:#1d1d1f;

}

.projects-cta p{

    max-width:720px;

    margin:auto;

    color:#6e6e73;

    line-height:1.8;

    margin-bottom:35px;

}

/*=========================================================
 HOVER SCALE
=========================================================*/

.project-card:hover{

    z-index:5;

}

/*=========================================================
 RESPONSIVE
=========================================================*/

@media(max-width:992px){

.projects-grid{

grid-template-columns:
repeat(2,1fr);

}

}

@media(max-width:768px){

.projects{

padding:90px 0;

}

.project-filter{

gap:10px;

}

.filter-btn{

padding:11px 20px;

font-size:14px;

}

.projects-grid{

grid-template-columns:1fr;

}

.project-image{

height:180px;

}

.project-image i{

font-size:60px;

}

.project-content{

padding:28px;

}

.project-content h3{

font-size:22px;

}

.projects-cta{

padding:40px 25px;

}

.projects-cta h3{

font-size:30px;

}

}

@media(max-width:480px){

.projects .section-header h2{

font-size:2.2rem;

}

.project-card{

border-radius:22px;

}

.project-content{

padding:24px;

}

.project-tech{

gap:8px;

}

.project-tech span{

font-size:12px;

padding:8px 14px;

}

}
/*======================================================
    STATISTICS SECTION
======================================================*/

.statistics{
    position:relative;
    padding:90px 0;
    background:linear-gradient(180deg,#f5f7fb 0%,#ffffff 100%);
}

.stats-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.stat-box{
    background:#fff;
    border-radius:28px;
    padding:40px 30px;
    text-align:center;
    border:1px solid rgba(0,0,0,.06);
    box-shadow:0 20px 60px rgba(0,0,0,.06);
    transition:.35s ease;
}

.stat-box:hover{
    transform:translateY(-10px);
    box-shadow:0 35px 70px rgba(0,113,227,.18);
}

.counter{
    font-size:56px;
    font-weight:800;
    color:#0071E3;
    line-height:1;
    margin-bottom:14px;
}

.stat-box h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
}

.stat-box p{
    color:#6e6e73;
    line-height:1.7;
    font-size:15px;
}

/*======================================================
    CTA SECTION
======================================================*/

.cta-section{
    padding:100px 0;
}

.cta-box{
    background:linear-gradient(135deg,#0071E3,#3b82f6);
    color:#fff;
    border-radius:36px;
    padding:80px;
    text-align:center;
    overflow:hidden;
    position:relative;
}

.cta-box::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-120px;
    right:-80px;
}

.cta-box::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    left:-60px;
    bottom:-60px;
}

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

.cta-box h2{
    font-size:48px;
    margin-bottom:20px;
    font-weight:800;
}

.cta-box p{
    max-width:760px;
    margin:auto;
    line-height:1.8;
    font-size:18px;
    opacity:.95;
}

.cta-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta-section .btn-primary{
    background:#fff;
    color:#0071E3;
}

.cta-section .btn-primary:hover{
    transform:translateY(-4px);
}

.cta-section .btn-secondary{
    background:transparent;
    color:#fff;
    border:2px solid rgba(255,255,255,.45);
}

.cta-section .btn-secondary:hover{
    background:#fff;
    color:#0071E3;
}

/*======================================================
    COUNTER ANIMATION
======================================================*/

.counter{
    transition:.3s ease;
}

.counter.animate{
    animation:popCounter .6s ease;
}

@keyframes popCounter{

    0%{
        transform:scale(.75);
        opacity:.5;
    }

    70%{
        transform:scale(1.12);
    }

    100%{
        transform:scale(1);
        opacity:1;
    }

}

/*======================================================
    TABLET
======================================================*/

@media (max-width:992px){

.stats-wrapper{
    grid-template-columns:repeat(2,1fr);
}

.cta-box{
    padding:60px 40px;
}

.cta-box h2{
    font-size:38px;
}

.cta-box p{
    font-size:17px;
}

}

/*======================================================
    MOBILE
======================================================*/

@media (max-width:768px){

.statistics{
    padding:70px 0;
}

.stats-wrapper{
    grid-template-columns:1fr;
    gap:20px;
}

.stat-box{
    padding:32px 24px;
}

.counter{
    font-size:44px;
}

.stat-box h4{
    font-size:20px;
}

.cta-section{
    padding:70px 0;
}

.cta-box{
    padding:50px 28px;
    border-radius:24px;
}

.cta-box h2{
    font-size:30px;
}

.cta-box p{
    font-size:16px;
}

.cta-buttons{
    flex-direction:column;
    align-items:center;
}

.cta-buttons .btn{
    width:100%;
    max-width:320px;
}

}

/*======================================================
    SMALL MOBILE
======================================================*/

@media (max-width:480px){

.counter{
    font-size:38px;
}

.stat-box{
    border-radius:20px;
}

.cta-box h2{
    font-size:26px;
}

.cta-box{
    padding:40px 22px;
}

}
/*====================================================
  TESTIMONIALS SECTION
====================================================*/

.testimonials {
    position: relative;
    padding: 120px 0;
    background: #f8fafc;
    overflow: hidden;
}

/* Background Glow */

.testimonials::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(0, 113, 227, .10),
            transparent 70%);
    top: -180px;
    right: -180px;
    z-index: 0;
}

.testimonials::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(0, 113, 227, .08),
            transparent 70%);
    bottom: -120px;
    left: -120px;
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

/*====================================================
  GRID
====================================================*/

.testimonial-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 32px;

    margin-top: 70px;

}

/*====================================================
  CARD
====================================================*/

.testimonial-card {

    position: relative;

    background: rgba(255,255,255,.78);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,.55);

    border-radius: 28px;

    padding: 40px;

    transition: .35s ease;

    overflow: hidden;

    box-shadow:

        0 15px 40px rgba(0,0,0,.06);

}

.testimonial-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(135deg,
        rgba(0,113,227,.06),
        transparent);

    opacity:0;

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-12px);

    box-shadow:

        0 25px 60px rgba(0,0,0,.12);

}

.testimonial-card:hover::before{

    opacity:1;

}

/* Featured Card */

.testimonial-card.featured{

    background:linear-gradient(
        135deg,
        #0071E3,
        #4AA3FF);

    color:#fff;

    transform:scale(1.04);

}

.testimonial-card.featured p,

.testimonial-card.featured span,

.testimonial-card.featured h4{

    color:#fff;

}

/*====================================================
  QUOTE ICON
====================================================*/

.quote-icon{

    width:70px;

    height:70px;

    border-radius:20px;

    background:#0071E3;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:28px;

    font-size:26px;

    color:#fff;

    box-shadow:

        0 12px 30px rgba(0,113,227,.35);

}

.featured .quote-icon{

    background:#fff;

    color:#0071E3;

}

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

.testimonial-card p{

    color:#555;

    font-size:16px;

    line-height:1.9;

    margin-bottom:35px;

}

/*====================================================
  USER
====================================================*/

.testimonial-user{

    display:flex;

    align-items:center;

    gap:18px;

}

.avatar{

    width:70px;

    height:70px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #0071E3,
        #5AB4FF);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    flex-shrink:0;

}

.featured .avatar{

    background:#fff;

    color:#0071E3;

}

.testimonial-user h4{

    font-size:18px;

    font-weight:700;

    margin-bottom:6px;

    color:#111;

}

.testimonial-user span{

    color:#666;

    font-size:14px;

}

/*====================================================
  HOVER
====================================================*/

.testimonial-card:hover .avatar{

    transform:rotate(10deg) scale(1.08);

    transition:.4s;

}

.testimonial-card:hover .quote-icon{

    transform:rotate(-8deg);

    transition:.4s;

}

/*====================================================
  FADE ANIMATION
====================================================*/

@keyframes testimonialFade{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.testimonial-card{

    animation:testimonialFade .8s ease forwards;

}

.testimonial-card:nth-child(2){

    animation-delay:.15s;

}

.testimonial-card:nth-child(3){

    animation-delay:.3s;

}

/*====================================================
  RESPONSIVE
====================================================*/

@media(max-width:1100px){

.testimonial-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.testimonials{

padding:80px 0;

}

.testimonial-grid{

grid-template-columns:1fr;

gap:24px;

margin-top:45px;

}

.testimonial-card{

padding:28px;

}

.testimonial-card.featured{

transform:none;

}

.quote-icon{

width:60px;

height:60px;

font-size:22px;

margin-bottom:22px;

}

.avatar{

width:60px;

height:60px;

font-size:22px;

}

.testimonial-user h4{

font-size:17px;

}

.testimonial-card p{

font-size:15px;

line-height:1.8;

}

}

@media(max-width:480px){

.testimonial-card{

padding:22px;

border-radius:20px;

}

.testimonial-user{

gap:14px;

}

.avatar{

width:55px;

height:55px;

font-size:20px;

}

.quote-icon{

width:55px;

height:55px;

font-size:20px;

}

.testimonial-user h4{

font-size:16px;

}

.testimonial-user span{

font-size:13px;

}

}
/*=========================================================
  FAQ SECTION
=========================================================*/

.faq {
    padding: 120px 0;
    background: #f5f5f7;
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(0, 113, 227, 0.08),
            transparent 70%);
    top: -250px;
    right: -150px;
    border-radius: 50%;
}

.faq::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle,
            rgba(0, 113, 227, 0.06),
            transparent 70%);
    bottom: -200px;
    left: -150px;
    border-radius: 50%;
}

.faq .container {
    position: relative;
    z-index: 2;
}

/*-----------------------------------------
Section Heading
-----------------------------------------*/

.faq .section-header {
    max-width: 760px;
    margin: auto;
    text-align: center;
    margin-bottom: 70px;
}

.faq .section-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 20px;
    line-height: 1.2;
}

.faq .section-header p {
    color: #6e6e73;
    font-size: 18px;
    line-height: 1.8;
}

/*-----------------------------------------
Wrapper
-----------------------------------------*/

.faq-wrapper {
    max-width: 900px;
    margin: auto;
}

/*-----------------------------------------
FAQ Card
-----------------------------------------*/

.faq-item {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(18px);
    border-radius: 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(255,255,255,.6);
    box-shadow: 0 12px 35px rgba(0,0,0,.06);

    overflow: hidden;

    transition: .35s ease;
}

.faq-item:hover{
    transform: translateY(-4px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

/*-----------------------------------------
Question
-----------------------------------------*/

.faq-question{

    width:100%;
    border:none;
    background:transparent;

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

    padding:28px 30px;

    cursor:pointer;

    font-size:18px;
    font-weight:700;

    color:#1d1d1f;

    transition:.3s;
}

.faq-question:hover{

    color:#0071e3;

}

.faq-question span{

    text-align:left;
    flex:1;
    padding-right:20px;

}

/*-----------------------------------------
Plus Icon
-----------------------------------------*/

.faq-question i{

    width:42px;
    height:42px;

    border-radius:50%;

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

    background:#f2f2f2;

    color:#0071e3;

    transition:.35s;

    flex-shrink:0;

}

/*-----------------------------------------
Answer
-----------------------------------------*/

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:
        max-height .45s ease,
        padding .35s ease;

    padding:0 30px;

}

.faq-answer p{

    color:#6e6e73;

    line-height:1.9;

    font-size:16px;

    margin-bottom:18px;

}

.faq-answer ul{

    padding-left:22px;
    margin-bottom:20px;

}

.faq-answer li{

    margin-bottom:10px;

    color:#6e6e73;

    line-height:1.8;

}

/*-----------------------------------------
Active State
-----------------------------------------*/

.faq-item.active{

    border-color:#0071e3;

    box-shadow:
    0 25px 60px rgba(0,113,227,.15);

}

.faq-item.active .faq-answer{

    max-height:600px;

    padding:
        0
        30px
        30px;

}

.faq-item.active .faq-question{

    color:#0071e3;

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

    background:#0071e3;

    color:#fff;

}

/*-----------------------------------------
Smooth Animation
-----------------------------------------*/

.faq-item{

    opacity:0;
    transform:translateY(30px);

    animation:faqFade .8s forwards;

}

.faq-item:nth-child(2){

    animation-delay:.1s;

}

.faq-item:nth-child(3){

    animation-delay:.2s;

}

.faq-item:nth-child(4){

    animation-delay:.3s;

}

.faq-item:nth-child(5){

    animation-delay:.4s;

}

.faq-item:nth-child(6){

    animation-delay:.5s;

}

@keyframes faqFade{

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/*-----------------------------------------
Scrollbar (Long Answers)
-----------------------------------------*/

.faq-answer::-webkit-scrollbar{

    width:8px;

}

.faq-answer::-webkit-scrollbar-thumb{

    background:#0071e3;
    border-radius:20px;

}

/*-----------------------------------------
Responsive Tablet
-----------------------------------------*/

@media (max-width:992px){

    .faq{

        padding:90px 0;

    }

    .faq .section-header h2{

        font-size:40px;

    }

    .faq-question{

        font-size:17px;

        padding:24px;

    }

}

/*-----------------------------------------
Responsive Mobile
-----------------------------------------*/

@media (max-width:768px){

    .faq{

        padding:70px 0;

    }

    .faq .section-header{

        margin-bottom:45px;

    }

    .faq .section-header h2{

        font-size:32px;

    }

    .faq .section-header p{

        font-size:16px;

    }

    .faq-question{

        padding:20px;

        font-size:16px;

        align-items:flex-start;

    }

    .faq-question i{

        width:36px;
        height:36px;
        font-size:14px;

    }

    .faq-answer{

        padding:0 20px;

    }

    .faq-item.active .faq-answer{

        padding:
            0
            20px
            20px;

    }

}

/*-----------------------------------------
Small Devices
-----------------------------------------*/

@media (max-width:480px){

    .faq{

        padding:60px 0;

    }

    .faq .section-header h2{

        font-size:28px;

    }

    .faq-question{

        font-size:15px;

    }

    .faq-answer p,
    .faq-answer li{

        font-size:15px;

    }

}

/* =====================================================
   GALLERY SECTION
===================================================== */

.gallery {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
    overflow: hidden;
}

/* Gallery Grid - 3x3 Tile Layout */
.gallery-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 1fr);
gap: 30px;
margin-top: 60px;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    padding: 30px 25px;
    transform: translateY(100%);
    transition: var(--transition);
    color: var(--white);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.gallery-overlay p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Hover Effects */
.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Focus State for Accessibility */
.gallery-item:focus {
    outline: 3px solid var(--primary);
    outline-offset: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
.gallery-grid {
grid-template-columns: repeat(2, 1fr);
grid-template-rows: auto;
gap: 20px;
}
    
    .gallery-overlay {
        padding: 20px 18px;
    }
    
    .gallery-overlay h3 {
        font-size: 1.1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
.gallery-grid {
grid-template-columns: 1fr;
grid-template-rows: auto;
gap: 18px;
}
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .gallery-item,
    .gallery-item img,
    .gallery-overlay {
        transition: none;
    }
    
    .gallery-item:hover img {
        transform: none;
    }
}

/* =====================================================
   GALLERY MODAL POPUP
===================================================== */

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.gallery-modal-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.gallery-modal-close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: var(--white);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.gallery-modal-close:hover,
.gallery-modal-close:focus {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.gallery-modal-caption {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(10px);
    max-width: 80%;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .gallery-modal-content {
        max-width: 95%;
        max-height: 80vh;
    }
    
    .gallery-modal-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
        width: 45px;
        height: 45px;
    }
    
    .gallery-modal-caption {
        bottom: 20px;
        font-size: 0.95rem;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .gallery-modal-close {
        top: 15px;
        right: 15px;
        font-size: 35px;
        width: 40px;
        height: 40px;
    }
    
    .gallery-modal-caption {
        bottom: 15px;
        font-size: 0.85rem;
        padding: 10px 15px;
        max-width: 90%;
    }
}

/* =====================================================
   CONTACT SECTION
===================================================== */

.contact {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
    overflow: hidden;
}

.contact::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle,
            rgba(0, 113, 227, 0.10),
            transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-top: 60px;
}

/* =====================================
   LEFT SIDE
===================================== */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    border-radius: 22px;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.8);
    box-shadow: 0 18px 45px rgba(15,23,42,.08);
    transition: .35s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0,113,227,.18);
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#0071e3,#42a5ff);
    color: #fff;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-card h3 {
    margin: 0;
    font-size: 1.15rem;
    color: #111827;
}

.contact-card p {
    margin: 8px 0 4px;
    font-weight: 600;
    color: #0071e3;
}

.contact-card span {
    display: block;
    color: #6b7280;
    font-size: .93rem;
    line-height: 1.5;
}

/* =====================================
   SOCIAL
===================================== */

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

.social-links a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #0071e3;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: .3s;
}

.social-links a:hover {
    color: #fff;
    background: #0071e3;
    transform: translateY(-5px) scale(1.05);
}

/* =====================================
   FORM
===================================== */

.contact-form-container {
    background: rgba(255,255,255,.82);
    border-radius: 28px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 30px 70px rgba(15,23,42,.08);
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-size: .95rem;
    font-weight: 600;
    color: #111827;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid #d9dee7;
    background: #fff;
    font-size: .97rem;
    transition: .3s;
    outline: none;
    resize: none;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0071e3;
    box-shadow: 0 0 0 4px rgba(0,113,227,.12);
}

.form-group textarea {
    min-height: 150px;
}

.submit-btn {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg,#0071e3,#42a5ff);
    transition: .35s;
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,113,227,.28);
}

/* =====================================
   MAP
===================================== */

.map-section {
    margin-top: 70px;
}

.map-placeholder {
    text-align: center;
    padding: 70px 40px;
    border-radius: 28px;
    background: linear-gradient(135deg,#0071e3,#3d9cff);
    color: #fff;
    box-shadow: 0 30px 70px rgba(0,113,227,.25);
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 25px;
}

.map-placeholder h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.map-placeholder p {
    opacity: .9;
    margin-bottom: 30px;
}

.map-placeholder .btn-secondary {
    background: #fff;
    color: #0071e3;
}

.map-placeholder .btn-secondary:hover {
    background: #f3f4f6;
}

/* =====================================
   MOBILE
===================================== */

@media (max-width:992px){

.contact-wrapper{
    grid-template-columns:1fr;
}

.contact-info{
    order:2;
}

.contact-form-container{
    order:1;
}

}

@media (max-width:768px){

.contact{
    padding:80px 0;
}

.contact-form-container{
    padding:28px;
}

.form-row{
    grid-template-columns:1fr;
    gap:18px;
}

.contact-card{
    padding:20px;
}

.map-placeholder{
    padding:50px 25px;
}

.map-placeholder h3{
    font-size:1.6rem;
}

}

@media (max-width:480px){

.contact-icon{
    width:55px;
    height:55px;
    font-size:1.2rem;
}

.contact-card{
    gap:15px;
}

.submit-btn{
    width:100%;
    justify-content:center;
}

.social-links{
    justify-content:center;
    flex-wrap:wrap;
}

}
/* ======================================================
   FOOTER
====================================================== */

.footer {
    position: relative;
    background: #0f172a;
    color: #f8fafc;
    padding: 80px 0 25px;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right,
            rgba(0, 113, 227, .15),
            transparent 45%),
        radial-gradient(circle at bottom left,
            rgba(59, 130, 246, .12),
            transparent 45%);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* ==========================================
   GRID
========================================== */

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* ==========================================
   COLUMNS
========================================== */

.footer-column h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

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

/* ==========================================
   LOGO
========================================== */

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-bottom: 24px;
}

.footer-logo .logo-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
}

.footer-logo .logo-text {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .4px;
}

.footer-description {
    max-width: 360px;
    margin-bottom: 30px;
    color: #cbd5e1;
    line-height: 1.8;
}

/* ==========================================
   LINKS
========================================== */

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #cbd5e1;
    transition: .3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-column ul li a:hover {
    color: #4da3ff;
    transform: translateX(6px);
}

/* ==========================================
   CONTACT INFO
========================================== */

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #cbd5e1;
    line-height: 1.7;
}

.footer-contact li i {
    color: #4da3ff;
    min-width: 18px;
    margin-top: 4px;
}

/* ==========================================
   SOCIAL ICONS
========================================== */

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.footer-social a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    transition: .35s ease;
}

.footer-social a:hover {
    background: #0071e3;
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,113,227,.35);
}

/* ==========================================
   DIVIDER
========================================== */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    color: #94a3b8;
    font-size: 15px;
}

/* ==========================================
   BOTTOM LINKS
========================================== */

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: .3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: #4da3ff;
}

/* ==========================================
   ANIMATION
========================================== */

.footer-column {
    opacity: 0;
    transform: translateY(30px);
    animation: footerFade .8s ease forwards;
}

.footer-column:nth-child(2) {
    animation-delay: .15s;
}

.footer-column:nth-child(3) {
    animation-delay: .30s;
}

.footer-column:nth-child(4) {
    animation-delay: .45s;
}

@keyframes footerFade {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 992px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

}

@media (max-width: 768px) {

    .footer {
        padding: 60px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-logo .logo-text {
        font-size: 22px;
    }

}

@media (max-width: 480px) {

    .footer-social {
        justify-content: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-logo {
        justify-content: center;
    }

}
/*=========================================================
  NEWSLETTER SECTION
=========================================================*/

.newsletter{
    padding:90px 0;
    background:linear-gradient(135deg,#0f172a,#1e293b);
    position:relative;
    overflow:hidden;
}

.newsletter::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    top:-250px;
    right:-150px;
    filter:blur(40px);
}

.newsletter::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(0,113,227,.12);
    left:-120px;
    bottom:-120px;
    filter:blur(60px);
}

.newsletter .container{
    position:relative;
    z-index:2;
}

.newsletter-content{
    max-width:760px;
    margin:auto;
    text-align:center;
}

.newsletter-content h2{
    color:#fff;
    font-size:44px;
    font-weight:700;
    margin-bottom:18px;
    line-height:1.2;
}

.newsletter-content p{
    color:rgba(255,255,255,.75);
    font-size:18px;
    line-height:1.8;
    margin-bottom:40px;
}

.newsletter-form{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
}

.newsletter-form input{
    flex:1;
    min-width:320px;
    max-width:520px;
    height:60px;
    border:none;
    border-radius:50px;
    padding:0 28px;
    font-size:16px;
    outline:none;
    background:#fff;
    transition:.35s;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.newsletter-form input:focus{
    transform:translateY(-2px);
    box-shadow:0 20px 50px rgba(0,113,227,.35);
}

.newsletter-form .btn{
    height:60px;
    padding:0 34px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    border:none;
    cursor:pointer;
    transition:.35s;
}

.newsletter-form .btn-primary{
    background:#0071E3;
    color:#fff;
}

.newsletter-form .btn-primary:hover{
    background:#0062c6;
    transform:translateY(-3px);
    box-shadow:0 18px 40px rgba(0,113,227,.4);
}

/*=========================================================
  BACK TO TOP BUTTON
=========================================================*/

.back-to-top{
    position:fixed;
    right:30px;
    bottom:95px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#0071E3;
    color:#fff;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    z-index:999;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.35s;
    box-shadow:0 12px 30px rgba(0,113,227,.35);
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.back-to-top:hover{
    background:#005fc1;
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(0,113,227,.45);
}

.back-to-top:active{
    transform:scale(.95);
}

/*=========================================================
  FLOATING WHATSAPP BUTTON
=========================================================*/

.whatsapp-btn{
    position:fixed;
    right:30px;
    bottom:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:28px;
    z-index:999;
    box-shadow:0 12px 35px rgba(37,211,102,.35);
    transition:.35s;
    animation:whatsappPulse 2.5s infinite;
}

.whatsapp-btn:hover{
    transform:translateY(-4px) scale(1.05);
    box-shadow:0 18px 45px rgba(37,211,102,.45);
}

.whatsapp-btn::before{
    content:"";
    position:absolute;
    inset:-8px;
    border-radius:50%;
    border:2px solid rgba(37,211,102,.35);
    animation:ripple 2s infinite;
}

/*=========================================================
  FLOATING LABELS
=========================================================*/

.back-to-top::after,
.whatsapp-btn::after{
    position:absolute;
    right:70px;
    white-space:nowrap;
    background:#111827;
    color:#fff;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.back-to-top::after{
    content:"Back to Top";
}

.whatsapp-btn::after{
    content:"Chat with us";
}

.back-to-top:hover::after,
.whatsapp-btn:hover::after{
    opacity:1;
    visibility:visible;
}

/*=========================================================
  ANIMATIONS
=========================================================*/

@keyframes whatsappPulse{

    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(37,211,102,.4);
    }

    70%{
        transform:scale(1.05);
        box-shadow:0 0 0 20px rgba(37,211,102,0);
    }

    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

@keyframes ripple{

    0%{
        transform:scale(.8);
        opacity:1;
    }

    100%{
        transform:scale(1.6);
        opacity:0;
    }

}

@keyframes floatY{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0);
    }

}

/* Floating animation for action buttons */

.back-to-top.show{
    animation:floatY 3s ease-in-out infinite;
}

/*=========================================================
  END PART 7C-1
  NEXT:
  PART 7C-2
  TABLET RESPONSIVE MEDIA QUERIES
=========================================================*/
/*=========================================================
    TABLET RESPONSIVE
    992px and Below
=========================================================*/

@media (max-width: 992px) {

    :root{
        --section-padding:80px;
    }

    .container{
        width:92%;
    }

    /*--------------------------
        Navigation
    --------------------------*/

    .nav-links{
        display:none;
    }

    .btn-nav{
        display:none;
    }

    .menu-toggle{
        display:flex;
        flex-direction:column;
        justify-content:center;
        gap:5px;
        cursor:pointer;
    }

    .menu-toggle span{
        width:28px;
        height:3px;
        border-radius:50px;
        background:#111827;
        transition:.35s;
    }

    /*--------------------------
        Hero
    --------------------------*/

    .hero{
        padding:140px 0 90px;
    }

    .hero .container{
        grid-template-columns:1fr;
        text-align:center;
        gap:60px;
    }

    .hero-content{
        max-width:100%;
    }

    .hero-title{
        font-size:56px;
    }

    .hero-description{
        margin:25px auto;
        max-width:700px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-stats{
        justify-content:center;
        flex-wrap:wrap;
        gap:25px;
    }

    .hero-image{
        order:-1;
    }

    /*--------------------------
        About
    --------------------------*/

    .about-grid{
        grid-template-columns:1fr;
        gap:60px;
    }

    /*--------------------------
        Programs
    --------------------------*/

    .program-grid{
        grid-template-columns:repeat(2,1fr);
        gap:28px;
    }

    /*--------------------------
        Hardware
    --------------------------*/

    .hardware-grid{
        grid-template-columns:repeat(3,1fr);
        gap:24px;
    }

    .hardware-features{
        grid-template-columns:repeat(2,1fr);
    }

    /*--------------------------
        Timeline
    --------------------------*/

    .timeline::before{
        left:22px;
    }

    .timeline-item{
        padding-left:70px;
    }

    .timeline-dot{
        left:12px;
    }

    /*--------------------------
        Projects
    --------------------------*/

    .projects-grid{
        grid-template-columns:repeat(2,1fr);
        gap:28px;
    }

    .project-filter{
        flex-wrap:wrap;
        justify-content:center;
    }

    /*--------------------------
        Why Choose
    --------------------------*/

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    /*--------------------------
        Statistics
    --------------------------*/

    .stats-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

    /*--------------------------
        Highlights
    --------------------------*/

    .highlight-grid{
        grid-template-columns:repeat(2,1fr);
    }

    /*--------------------------
        Testimonials
    --------------------------*/

    .testimonial-grid{
        grid-template-columns:1fr;
    }

    /*--------------------------
        Contact
    --------------------------*/

    .contact-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .contact-info{
        order:2;
    }

    .contact-form-container{
        order:1;
    }

    .form-row{
        grid-template-columns:1fr;
        gap:20px;
    }

    /*--------------------------
        Newsletter
    --------------------------*/

    .newsletter-content{
        text-align:center;
    }

    .newsletter-form{
        flex-direction:column;
        align-items:center;
        gap:20px;
    }

    .newsletter-form input{
        width:100%;
        max-width:550px;
    }

    .newsletter-form button{
        width:250px;
    }

    /*--------------------------
        Footer
    --------------------------*/

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
        gap:45px;
    }

    .footer-bottom{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

}

/*=========================================================
    LARGE TABLETS
    768px - 991px
=========================================================*/

@media (min-width:768px) and (max-width:991px){

    .hero-title{
        font-size:52px;
    }

    .section-header h2{
        font-size:42px;
    }

    .program-card,
    .project-card,
    .hardware-card,
    .why-card,
    .summary-card{
        padding:28px;
    }

    .floating-card{
        transform:scale(.9);
    }

    .robot-card{
        width:420px;
        margin:auto;
    }

}
/*=========================================================
    PART 7C-3
    MOBILE MEDIA QUERIES
    (Phones: 768px and below)
=========================================================*/

@media (max-width:768px){

/*==============================
    GLOBAL
==============================*/

html{
    font-size:15px;
}

body{
    overflow-x:hidden;
}

.container{
    width:92%;
    margin:auto;
}

section{
    padding:70px 0;
}

.section-header{
    margin-bottom:50px;
}

.section-header h2{
    font-size:2rem;
    line-height:1.3;
}

.section-header p{
    font-size:15px;
}

/*==============================
    HEADER
==============================*/

.header{
    padding:15px 0;
}

.navbar{
    height:70px;
}

.logo{
    font-size:22px;
}

.logo-icon{
    width:42px;
    height:42px;
}

/*==============================
    MOBILE MENU
==============================*/

.menu-toggle{
    display:flex;
}

.nav-links{

    position:fixed;

    top:80px;

    left:-100%;

    width:100%;

    height:calc(100vh - 80px);

    background:#ffffff;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    align-items:center;

    gap:25px;

    padding-top:40px;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    z-index:999;

}

.nav-links.active{
    left:0;
}

.btn-nav{
    display:none;
}

/*==============================
    HERO
==============================*/

.hero{
    padding-top:130px;
}

.hero .container{

    display:flex;

    flex-direction:column;

    gap:60px;

}

.hero-content{

    text-align:center;

}

.hero-title{

    font-size:2.8rem;

    line-height:1.15;

}

.hero-description{

    font-size:16px;

}

.hero-buttons{

    justify-content:center;

    flex-direction:column;

    gap:15px;

}

.hero-buttons .btn{

    width:100%;

}

.hero-image{

    width:100%;

}

.robot-card{

    width:100%;

}

.hero-stats{

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.stat-item h3{

    font-size:28px;

}

/*==============================
    ABOUT
==============================*/

.about-grid{

    display:grid;

    grid-template-columns:1fr;

    gap:40px;

}

.feature{

    padding:18px;

}

.feature-icon{

    width:60px;
    height:60px;

}

/*==============================
    PROGRAMS
==============================*/

.program-grid{

    grid-template-columns:1fr;

}

.program-card{

    padding:30px;

}

/*==============================
    HARDWARE
==============================*/

.hardware-grid{

    grid-template-columns:1fr;

}

.hardware-features{

    grid-template-columns:1fr;

}

/*==============================
    TIMELINE
==============================*/

.timeline::before{

    left:20px;

}

.timeline-item{

    padding-left:60px;

}

.timeline-dot{

    left:11px;

}

.timeline-content{

    width:100%;

}

/*==============================
    PROJECTS
==============================*/

.project-filter{

    flex-wrap:wrap;

    gap:10px;

}

.projects-grid{

    grid-template-columns:1fr;

}

.project-card{

    margin:auto;

}

/*==============================
    WHY US
==============================*/

.why-grid{

    grid-template-columns:1fr;

}

/*==============================
    STATISTICS
==============================*/

.stats-wrapper{

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.stat-box{

    padding:25px;

}

.counter{

    font-size:2rem;

}

/*==============================
    HIGHLIGHTS
==============================*/

.highlight-grid{

    grid-template-columns:1fr;

}

/*==============================
    TESTIMONIALS
==============================*/

.testimonial-grid{

    grid-template-columns:1fr;

}

/*==============================
    FAQ
==============================*/

.faq-question{

    font-size:16px;

    padding:20px;

}

.faq-answer{

    padding:0 20px 20px;

}

/*==============================
    CONTACT
==============================*/

.contact-wrapper{

    grid-template-columns:1fr;

    gap:40px;

}

.contact-info{

    order:2;

}

.contact-form-container{

    order:1;

}

.form-row{

    display:block;

}

.form-group{

    margin-bottom:20px;

}

.contact-card{

    padding:20px;

}

.map-placeholder{

    padding:45px 20px;

}

/*==============================
    NEWSLETTER
==============================*/

.newsletter-content{

    padding:45px 25px;

}

.newsletter-content h2{

    font-size:2rem;

}

.newsletter-form{

    flex-direction:column;

    gap:15px;

}

.newsletter-form input{

    width:100%;

}

.newsletter-form button{

    width:100%;

}

/*==============================
    FOOTER
==============================*/

.footer{

    text-align:center;

}

.footer-grid{

    grid-template-columns:1fr;

    gap:40px;

}

.footer-column{

    margin-bottom:10px;

}

.footer-social{

    justify-content:center;

}

.footer-bottom{

    display:flex;

    flex-direction:column;

    gap:20px;

    text-align:center;

}

.footer-links{

    justify-content:center;

    flex-wrap:wrap;

}

/*==============================
    BUTTONS
==============================*/

.btn{

    width:100%;

    text-align:center;

}

.cta-buttons{

    flex-direction:column;

}

.cta-buttons .btn{

    width:100%;

}

/*==============================
    FLOATING BUTTONS
==============================*/

.back-to-top{

    width:52px;
    height:52px;

    right:20px;

    bottom:90px;

}

.whatsapp-btn{

    width:60px;
    height:60px;

    right:18px;

    bottom:20px;

    font-size:24px;

}

/*==============================
    ORBS
==============================*/

.gradient-orb{

    opacity:.18;

    filter:blur(70px);

}

/*==============================
    IMAGES
==============================*/

img{

    max-width:100%;

    height:auto;

}

/*==============================
    UTILITIES
==============================*/

.hide-mobile{

    display:none !important;

}

.show-mobile{

    display:block !important;

}

}

/*=========================================================
END OF PART 7C-3
=========================================================*/
/* =====================================================
   PART 7C-4
   Small Devices + Landscape + Utility Classes
   Apple Inspired Responsive CSS
===================================================== */

/* ==========================================
   SMALL DEVICES
   (Phones up to 480px)
========================================== */

@media (max-width:480px){

    html{
        font-size:14px;
    }

    .container{
        width:92%;
        padding:0;
    }

    section{
        padding:60px 0;
    }

    h1{
        font-size:2.1rem;
        line-height:1.2;
    }

    h2{
        font-size:1.8rem;
    }

    h3{
        font-size:1.2rem;
    }

    p{
        font-size:.95rem;
    }

    .hero{
        min-height:90vh;
    }

    .hero-buttons{
        flex-direction:column;
        gap:15px;
    }

    .hero-buttons .btn{
        width:100%;
        text-align:center;
    }

    .hero-stats{
        grid-template-columns:1fr;
        gap:15px;
    }

    .program-grid,
    .hardware-grid,
    .projects-grid,
    .why-grid,
    .testimonial-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .timeline{
        padding-left:20px;
    }

    .timeline::before{
        left:10px;
    }

    .timeline-dot{
        left:1px;
    }

    .timeline-content{
        margin-left:20px;
    }

}

/* ==========================================
   LANDSCAPE MOBILE
========================================== */

@media (max-height:600px) and (orientation:landscape){

    .hero{
        min-height:auto;
        padding:120px 0 80px;
    }

    .hero-content{
        padding:20px 0;
    }

}

/* ==========================================
   LARGE DESKTOPS
========================================== */

@media (min-width:1400px){

    .container{
        max-width:1320px;
    }

    h1{
        font-size:5rem;
    }

    h2{
        font-size:3.5rem;
    }

    .hero{
        min-height:100vh;
    }

}

/* ==========================================
   ACCESSIBILITY
========================================== */

:focus-visible{

    outline:3px solid #0071E3;
    outline-offset:4px;

}

::selection{

    background:#0071E3;
    color:#fff;

}

img{

    max-width:100%;
    display:block;

}

/* ==========================================
   UTILITIES
========================================== */

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

.text-left{
    text-align:left;
}

.text-right{
    text-align:right;
}

.w-100{
    width:100%;
}

.h-100{
    height:100%;
}

.d-flex{
    display:flex;
}

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

.align-center{
    align-items:center;
}

.justify-center{
    justify-content:center;
}

.justify-between{
    justify-content:space-between;
}

.gap-10{
    gap:10px;
}

.gap-20{
    gap:20px;
}

.mt-20{
    margin-top:20px;
}

.mt-40{
    margin-top:40px;
}

.mb-20{
    margin-bottom:20px;
}

.mb-40{
    margin-bottom:40px;
}

.pt-50{
    padding-top:50px;
}

.pb-50{
    padding-bottom:50px;
}

.rounded{
    border-radius:12px;
}

.rounded-lg{
    border-radius:24px;
}

.shadow{

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

}

.shadow-lg{

    box-shadow:
    0 20px 60px rgba(0,0,0,.12);

}

.glass{

    background:rgba(255,255,255,.65);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.3);

}

.hidden{
    display:none !important;
}

.visible{
    display:block !important;
}

/* ==========================================
   ANIMATION HELPERS
========================================== */

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:
        opacity .7s ease,
        transform .7s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

.fade{

    opacity:0;

    transition:.6s;

}

.fade.show{

    opacity:1;

}

.scale{

    transform:scale(.9);

    opacity:0;

    transition:.6s;

}

.scale.show{

    transform:scale(1);

    opacity:1;

}

/* ==========================================
   SMOOTH SCROLL
========================================== */

html{

    scroll-behavior:smooth;

}

/* ==========================================
   CUSTOM SCROLLBAR
========================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f5f5f7;

}

::-webkit-scrollbar-thumb{

    background:#0071E3;

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:#0055b8;

}

/* ==========================================
   PRINT
========================================== */

@media print{

    nav,
    footer,
    .back-to-top,
    .whatsapp-btn{

        display:none;

    }

    body{

        background:#fff;

        color:#000;

    }

}

/* =====================================================
   END OF style.css
===================================================== */
/* =====================================================
   PART 8A
   UTILITIES + TABLET RESPONSIVE (≤1024px)
   Apple Inspired Design
=====================================================*/

/* ===============================
   Utility Classes
================================*/

.container{
    width:min(1200px,92%);
    margin:0 auto;
}

.section{
    padding:100px 0;
}

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

.text-left{
    text-align:left;
}

.text-right{
    text-align:right;
}

.d-flex{
    display:flex;
}

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

.flex-wrap{
    flex-wrap:wrap;
}

.align-center{
    align-items:center;
}

.justify-center{
    justify-content:center;
}

.justify-between{
    justify-content:space-between;
}

.gap-10{
    gap:10px;
}

.gap-20{
    gap:20px;
}

.gap-30{
    gap:30px;
}

.w-100{
    width:100%;
}

.h-100{
    height:100%;
}

.mt-20{
    margin-top:20px;
}

.mt-40{
    margin-top:40px;
}

.mt-60{
    margin-top:60px;
}

.mb-20{
    margin-bottom:20px;
}

.mb-40{
    margin-bottom:40px;
}

.mb-60{
    margin-bottom:60px;
}

.p-20{
    padding:20px;
}

.p-30{
    padding:30px;
}

.p-40{
    padding:40px;
}

.rounded{
    border-radius:16px;
}

.rounded-lg{
    border-radius:30px;
}

.shadow{
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.glass{
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.5);
}

.text-gradient{

    background:linear-gradient(90deg,
            #0071e3,
            #42a5ff);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hide{
    display:none!important;
}

.show{
    display:block!important;
}

.opacity-0{
    opacity:0;
}

.opacity-1{
    opacity:1;
}

.transition{
    transition:.35s ease;
}

/* ===============================
   Scroll Animation
================================*/

.fade-up{

    opacity:0;

    transform:translateY(60px);

    transition:
            opacity .8s ease,
            transform .8s ease;
}

.fade-up.active{

    opacity:1;

    transform:translateY(0);

}

.fade-left{

    opacity:0;

    transform:translateX(-50px);

    transition:.8s ease;
}

.fade-left.active{

    opacity:1;

    transform:translateX(0);
}

.fade-right{

    opacity:0;

    transform:translateX(50px);

    transition:.8s ease;
}

.fade-right.active{

    opacity:1;

    transform:translateX(0);

}

/* ===============================
   Card Hover
================================*/

.program-card,
.hardware-card,
.project-card,
.why-card,
.summary-card,
.testimonial-card,
.feature-box{

    transition:.35s ease;

}

.program-card:hover,
.hardware-card:hover,
.project-card:hover,
.why-card:hover,
.summary-card:hover,
.testimonial-card:hover,
.feature-box:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

/* ===============================
   Tablet Responsive
================================*/

@media (max-width:1024px){

    section{

        padding:80px 0;

    }

    .hero .container{

        grid-template-columns:1fr;

        gap:60px;

        text-align:center;

    }

    .hero-image{

        order:-1;

        max-width:500px;

        margin:auto;

    }

    .hero-buttons{

        justify-content:center;

        flex-wrap:wrap;

    }

    .hero-stats{

        justify-content:center;

        flex-wrap:wrap;

    }

    .about-grid{

        grid-template-columns:1fr;

        gap:60px;

    }

    .program-grid{

        grid-template-columns:
                repeat(2,1fr);

    }

    .hardware-grid{

        grid-template-columns:
                repeat(3,1fr);

    }

    .projects-grid{

        grid-template-columns:
                repeat(2,1fr);

    }

    .why-grid{

        grid-template-columns:
                repeat(2,1fr);

    }

    .highlight-grid{

        grid-template-columns:
                repeat(2,1fr);

    }

    .journey-summary{

        grid-template-columns:1fr;

    }

    .testimonial-grid{

        grid-template-columns:1fr;

    }

    .contact-wrapper{

        grid-template-columns:1fr;

    }

    .footer-grid{

        grid-template-columns:
                repeat(2,1fr);

        gap:40px;

    }

    .timeline{

        padding-left:25px;

    }

    .timeline::before{

        left:12px;

    }

    .timeline-dot{

        left:4px;

    }

    .cta-box{

        padding:60px 40px;

    }

    .newsletter-content{

        padding:60px 30px;

    }

    .newsletter-form{

        flex-direction:column;

    }

    .newsletter-form input{

        width:100%;

    }

    .newsletter-form button{

        width:100%;

    }

    .contact-form .form-row{

        grid-template-columns:1fr;

    }

    .section-header h2{

        font-size:42px;

    }

    .hero-title{

        font-size:58px;

    }

    .hero-description{

        max-width:700px;

        margin:auto;

    }

    .robot-card{

        transform:scale(.9);

    }

    .floating-card{

        transform:scale(.9);

    }

}

/* ===== End Part 8A ===== */
/*====================================================
  MOBILE RESPONSIVE (≤768px)
====================================================*/

@media (max-width:768px){

/*----------------------------------
General
----------------------------------*/

html{
    font-size:15px;
    scroll-padding-top:80px;
}

body{
    overflow-x:hidden;
}

.container{
    width:92%;
    max-width:100%;
}

/*----------------------------------
Section
----------------------------------*/

section{
    padding:70px 0;
}

.section-header{
    margin-bottom:45px;
}

.section-header h2{
    font-size:2rem;
    line-height:1.2;
}

.section-header p{
    font-size:1rem;
    width:100%;
}

/*----------------------------------
Header
----------------------------------*/

.header{
    padding:14px 0;
}

.navbar{
    height:70px;
}

.logo-text{
    font-size:1.15rem;
}

.btn-nav{
    display:none;
}

/*----------------------------------
Mobile Navigation
----------------------------------*/

.menu-toggle{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    width:46px;
    height:46px;
    border:none;
    background:none;
    cursor:pointer;
    z-index:1002;
}

.menu-toggle span{
    width:24px;
    height:2px;
    margin:3px 0;
    background:#111;
    transition:.3s;
}

.menu-toggle.active span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}

.nav-links{
    position:fixed;
    top:0;
    right:-100%;
    width:82%;
    height:100vh;

    background:#fff;

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

    gap:35px;

    transition:.35s;

    box-shadow:-10px 0 35px rgba(0,0,0,.12);

    z-index:1001;
}

.nav-links.active{
    right:0;
}

.nav-links li{
    width:100%;
    text-align:center;
}

.nav-links a{
    display:block;
    font-size:1.2rem;
    padding:12px;
}

/*----------------------------------
Hero
----------------------------------*/

.hero{
    padding-top:130px;
    min-height:auto;
}

.hero .container{
    display:grid;
    grid-template-columns:1fr;
    gap:50px;
}

.hero-content{
    text-align:center;
}

.hero-title{
    font-size:2.6rem;
    line-height:1.15;
}

.hero-description{
    font-size:1.05rem;
}

.hero-buttons{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-top:35px;
}

.hero-buttons .btn{
    width:100%;
}

.hero-stats{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:45px;
}

.stat-item{
    padding:18px;
}

.hero-image{
    order:-1;
}

.robot-card{
    width:100%;
}

.floating-card{
    transform:scale(.85);
}

/*----------------------------------
About
----------------------------------*/

.about-grid{
    grid-template-columns:1fr;
    gap:40px;
}

.feature{
    flex-direction:column;
    text-align:center;
}

.feature-icon{
    margin:0 auto 18px;
}

.glass-card{
    padding:35px;
}

/*----------------------------------
Programs
----------------------------------*/

.program-grid{
    grid-template-columns:1fr;
}

.program-card{
    padding:32px;
}

/*----------------------------------
Hardware
----------------------------------*/

.hardware-grid{
    grid-template-columns:1fr;
}

.hardware-features{
    grid-template-columns:1fr;
}

/*----------------------------------
Timeline
----------------------------------*/

.timeline{
    margin-left:20px;
}

.timeline::before{
    left:0;
}

.timeline-item{
    padding-left:35px;
}

.timeline-dot{
    left:-8px;
}

.timeline-content{
    padding:24px;
}

/*----------------------------------
Projects
----------------------------------*/

.project-filter{
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
}

.projects-grid{
    grid-template-columns:1fr;
}

.project-image{
    height:180px;
}

/*----------------------------------
Statistics
----------------------------------*/

.stats-wrapper{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.stat-box{
    padding:28px;
}

.counter{
    font-size:2.3rem;
}

/*----------------------------------
Why Us
----------------------------------*/

.why-grid{
    grid-template-columns:1fr;
}

.highlight-grid{
    grid-template-columns:1fr;
}

/*----------------------------------
Testimonials
----------------------------------*/

.testimonial-grid{
    grid-template-columns:1fr;
}

/*----------------------------------
FAQ
----------------------------------*/

.faq-question{
    font-size:1rem;
    padding:20px;
}

.faq-answer{
    padding:0 20px 20px;
}

/*----------------------------------
Contact
----------------------------------*/

.contact-wrapper{
    grid-template-columns:1fr;
    gap:40px;
}

.contact-form-container{
    padding:35px;
}

.form-row{
    grid-template-columns:1fr;
}

.contact-card{
    flex-direction:column;
    text-align:center;
}

.social-links{
    justify-content:center;
}

/*----------------------------------
Newsletter
----------------------------------*/

.newsletter-form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.newsletter-form input{
    width:100%;
}

/*----------------------------------
Footer
----------------------------------*/

.footer-grid{
    grid-template-columns:1fr;
    gap:40px;
}

.footer-bottom{
    display:flex;
    flex-direction:column;
    gap:20px;
    text-align:center;
}

.footer-links{
    justify-content:center;
    flex-wrap:wrap;
}

/*----------------------------------
Buttons
----------------------------------*/

.btn{
    width:100%;
    justify-content:center;
}

.projects-cta .btn,
.cta-buttons .btn{
    width:100%;
}

/*----------------------------------
Floating Buttons
----------------------------------*/

.back-to-top{
    right:18px;
    bottom:18px;
    width:48px;
    height:48px;
}

.whatsapp-btn{
    right:18px;
    bottom:80px;
    width:56px;
    height:56px;
}

/*----------------------------------
Spacing Utilities
----------------------------------*/

.mt-5{margin-top:2rem;}
.mb-5{margin-bottom:2rem;}
.pt-5{padding-top:2rem;}
.pb-5{padding-bottom:2rem;}

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

.hide-mobile{
    display:none !important;
}

.show-mobile{
    display:block !important;
}

img{
    max-width:100%;
    height:auto;
}

iframe{
    width:100%;
}

table{
    display:block;
    overflow-x:auto;
}

}
/*====================================================
  SMALL MOBILE RESPONSIVE (≤576px)
====================================================*/

@media (max-width:576px){

/*----------------------------------
Root
----------------------------------*/

html{
    font-size:14px;
}

body{
    overflow-x:hidden;
}

.container{
    width:94%;
    padding:0 12px;
}

/*----------------------------------
Sections
----------------------------------*/

section{
    padding:60px 0;
}

.section-header{
    margin-bottom:35px;
}

.section-tag{
    font-size:.75rem;
    padding:6px 14px;
}

.section-header h2{
    font-size:1.8rem;
    line-height:1.25;
}

.section-header p{
    font-size:.95rem;
}

/*----------------------------------
Navigation
----------------------------------*/

.navbar{
    height:64px;
}

.logo{
    gap:10px;
}

.logo-icon{
    width:38px;
    height:38px;
    font-size:1rem;
}

.logo-text{
    font-size:1rem;
}

.nav-links{
    width:100%;
    padding:80px 20px;
}

/*----------------------------------
Hero
----------------------------------*/

.hero{
    padding-top:110px;
}

.hero-title{
    font-size:2rem;
    line-height:1.2;
}

.hero-description{
    font-size:.95rem;
}

.hero-buttons{
    gap:12px;
}

.hero-buttons .btn{
    padding:14px 18px;
}

.hero-stats{
    grid-template-columns:1fr;
    gap:15px;
}

.stat-item{
    padding:18px;
}

.hero-image{
    margin-top:10px;
}

.robot-card,
.glass-card{
    padding:22px;
}

.floating-card{
    display:none;
}

/*----------------------------------
About
----------------------------------*/

.about-grid{
    gap:30px;
}

.about-image img{
    border-radius:20px;
}

.feature{
    gap:15px;
}

.feature-icon{
    width:55px;
    height:55px;
    font-size:1.2rem;
}

/*----------------------------------
Programs
----------------------------------*/

.program-grid{
    gap:20px;
}

.program-card{
    padding:24px;
}

.program-card h3{
    font-size:1.3rem;
}

.program-card ul li{
    font-size:.92rem;
}

.program-icon{
    width:65px;
    height:65px;
    font-size:1.5rem;
}

/*----------------------------------
Hardware
----------------------------------*/

.hardware-grid{
    gap:20px;
}

.hardware-card{
    padding:22px;
}

.hardware-icon{
    width:65px;
    height:65px;
    font-size:1.5rem;
}

/*----------------------------------
Timeline
----------------------------------*/

.timeline{
    margin-left:12px;
}

.timeline-item{
    padding-left:26px;
    margin-bottom:28px;
}

.timeline-content{
    padding:20px;
}

.timeline-class{
    font-size:.8rem;
}

/*----------------------------------
Projects
----------------------------------*/

.project-filter{
    gap:8px;
}

.filter-btn{
    width:100%;
}

.project-card{
    border-radius:18px;
}

.project-image{
    height:160px;
    font-size:2.6rem;
}

.project-content{
    padding:20px;
}

.project-tech{
    gap:8px;
}

.project-tech span{
    font-size:.75rem;
}

/*----------------------------------
Statistics
----------------------------------*/

.stats-wrapper{
    grid-template-columns:1fr;
}

.stat-box{
    padding:24px;
}

.counter{
    font-size:2rem;
}

/*----------------------------------
Why Us
----------------------------------*/

.why-card,
.highlight-card{
    padding:24px;
}

.why-icon{
    width:60px;
    height:60px;
    font-size:1.4rem;
}

/*----------------------------------
Testimonials
----------------------------------*/

.testimonial-card{
    padding:24px;
}

.avatar{
    width:52px;
    height:52px;
}

/*----------------------------------
FAQ
----------------------------------*/

.faq-question{
    padding:18px;
    font-size:.95rem;
}

.faq-answer{
    padding:0 18px 18px;
}

/*----------------------------------
Contact
----------------------------------*/

.contact-card{
    padding:20px;
}

.contact-form-container{
    padding:24px;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
    padding:14px;
    font-size:.95rem;
}

.submit-btn{
    width:100%;
}

.map-placeholder{
    padding:35px 20px;
}

/*----------------------------------
Newsletter
----------------------------------*/

.newsletter{
    padding:60px 0;
}

.newsletter h2{
    font-size:1.7rem;
}

.newsletter-form input{
    padding:15px;
}

/*----------------------------------
Footer
----------------------------------*/

.footer{
    padding-top:60px;
}

.footer-grid{
    gap:30px;
}

.footer-column h3{
    margin-bottom:16px;
}

.footer-bottom{
    padding-top:25px;
}

.footer-links{
    gap:12px;
}

/*----------------------------------
Buttons
----------------------------------*/

.btn{
    padding:14px 18px;
    font-size:.95rem;
}

/*----------------------------------
Floating Buttons
----------------------------------*/

.back-to-top{
    width:44px;
    height:44px;
    right:15px;
    bottom:15px;
}

.whatsapp-btn{
    width:52px;
    height:52px;
    right:15px;
    bottom:70px;
    font-size:1.4rem;
}

/*----------------------------------
Utilities
----------------------------------*/

.text-center-mobile{
    text-align:center;
}

.hide-xs{
    display:none !important;
}

.show-xs{
    display:block !important;
}

}
/*====================================================
  PART 8C-2
  LANDSCAPE PHONES + ACCESSIBILITY
====================================================*/

/*----------------------------------------------------
Landscape Phones
(Height is small, width is larger)
----------------------------------------------------*/
@media (max-height: 500px) and (orientation: landscape) {

    .hero {
        min-height: auto;
        padding: 110px 0 70px;
    }

    .hero .container {
        gap: 30px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-description {
        max-width: 650px;
    }

    .hero-image {
        max-width: 420px;
        margin: 0 auto;
    }

    .robot-card {
        transform: scale(.85);
    }

    .floating-card {
        display: none;
    }

    .nav-links {
        overflow-y: auto;
        justify-content: flex-start;
        padding: 100px 0 40px;
    }

    section {
        padding: 60px 0;
    }
}

/*====================================================
KEYBOARD ACCESSIBILITY
====================================================*/

:focus {
    outline: none;
}

:focus-visible {

    outline: 3px solid #0071e3;
    outline-offset: 3px;
    border-radius: 8px;

}

/* Better focus for buttons */

button:focus-visible,
.btn:focus-visible {

    box-shadow:
        0 0 0 4px rgba(0,113,227,.18);

}

/* Links */

a:focus-visible {

    color: #0071e3;
    text-decoration: underline;

}

/* Inputs */

input:focus-visible,
textarea:focus-visible,
select:focus-visible {

    border-color: #0071e3;

    box-shadow:
        0 0 0 4px rgba(0,113,227,.15);

}

/* Cards */

.program-card:focus-within,
.project-card:focus-within,
.hardware-card:focus-within,
.why-card:focus-within,
.testimonial-card:focus-within {

    transform: translateY(-4px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.12);

}

/* FAQ */

.faq-question:focus-visible {

    background: rgba(0,113,227,.06);

}

/*====================================================
SKIP LINK
====================================================*/

.skip-link{

    position:absolute;

    top:-60px;
    left:20px;

    background:#111;
    color:#fff;

    padding:12px 18px;

    border-radius:8px;

    z-index:9999;

    transition:.25s;

}

.skip-link:focus{

    top:20px;

}

/*====================================================
REDUCED MOTION
====================================================*/

@media (prefers-reduced-motion: reduce){

    *,
    *::before,
    *::after{

        animation-duration:0.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:0.01ms !important;

        scroll-behavior:auto !important;

    }

    .floating-card,
    .floating-shape,
    .robot-card,
    .hero-image img{

        animation:none !important;
        transform:none !important;

    }

    .program-card:hover,
    .project-card:hover,
    .hardware-card:hover,
    .why-card:hover,
    .testimonial-card:hover{

        transform:none !important;

    }

    .counter{

        transition:none !important;

    }

}

/*====================================================
HIGH CONTRAST MODE
====================================================*/

@media (prefers-contrast: more){

    body{

        background:#fff;
        color:#000;

    }

    .btn-primary{

        background:#000;
        color:#fff;
        border:2px solid #000;

    }

    .btn-secondary{

        background:#fff;
        color:#000;
        border:2px solid #000;

    }

    .program-card,
    .hardware-card,
    .project-card,
    .why-card,
    .testimonial-card,
    .glass-card{

        border:2px solid #000;

        box-shadow:none;

    }

}

/*====================================================
SELECTION
====================================================*/

::selection{

    background:#0071e3;
    color:#fff;

}

::-moz-selection{

    background:#0071e3;
    color:#fff;

}

/*====================================================
SCROLLBAR (Desktop browsers)
====================================================*/

::-webkit-scrollbar{

    width:10px;
    height:10px;

}

::-webkit-scrollbar-track{

    background:#f3f3f3;

}

::-webkit-scrollbar-thumb{

    background:#c7c7c7;
    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#9d9d9d;

}

/*====================================================
DISABLED ELEMENTS
====================================================*/

button:disabled,
input:disabled,
select:disabled,
textarea:disabled{

    opacity:.6;
    cursor:not-allowed;

}

/*====================================================
UTILITY CLASSES
====================================================*/

.visually-hidden{

    position:absolute !important;

    width:1px;
    height:1px;

    padding:0;
    margin:-1px;

    overflow:hidden;

    clip:rect(0,0,0,0);
    clip-path:inset(50%);

    white-space:nowrap;

    border:0;

}

.pointer{
    cursor:pointer;
}

.no-select{

    user-select:none;

}

.w-100{
    width:100%;
}

.h-100{
    height:100%;
}

.rounded{
    border-radius:12px;
}

.rounded-lg{
    border-radius:20px;
}

.shadow-sm{
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.shadow-lg{
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}

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

.d-flex{
    display:flex;
}

.align-center{
    align-items:center;
}

.justify-center{
    justify-content:center;
}

.gap-1{
    gap:1rem;
}

.gap-2{
    gap:2rem;
}

/*====================================================
END OF PART 8C-2
NEXT:
PART 8C-3
(Print Styles + Dark Mode + Final Utility Classes)
====================================================*/

/*====================================================
  PART 8C-3
  PRINT STYLES + DARK MODE + FINAL UTILITIES
====================================================*/

/*====================================================
PRINT STYLES
====================================================*/

@media print {

    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
        animation: none !important;
        transition: none !important;
    }

    html,
    body {
        background: #fff;
        font-size: 12pt;
        line-height: 1.5;
    }

    .header,
    .menu-toggle,
    .hero-buttons,
    .newsletter,
    .contact-form-container,
    .back-to-top,
    .whatsapp-btn,
    .footer-social,
    .social-links,
    video,
    iframe {
        display: none !important;
    }

    section {
        page-break-inside: avoid;
        padding: 20px 0 !important;
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    h1,
    h2,
    h3 {
        page-break-after: avoid;
    }

    p,
    li {
        orphans: 3;
        widows: 3;
    }

    a,
    a:visited {
        color: #000;
        text-decoration: underline;
    }

    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 10pt;
    }

    .container {
        width: 100%;
        max-width: 100%;
    }

    .footer {
        border-top: 1px solid #ccc;
        margin-top: 20px;
        padding-top: 20px;
    }
}

/*====================================================
DARK MODE
====================================================*/

@media (prefers-color-scheme: dark) {

:root{

    --bg:#0b0b0d;
    --surface:#151518;
    --surface-2:#1d1d22;

    --text:#f5f5f7;
    --text-light:#c8c8cc;

    --border:#2d2d33;

    --primary:#2997ff;

}

html,
body{

    background:var(--bg);
    color:var(--text);

}

.header{

    background:rgba(15,15,18,.85);
    backdrop-filter:blur(18px);

    border-bottom:1px solid var(--border);

}

.nav-links{
    background:transparent;
}

.nav-links a{

    color:var(--text);

}

.section-header p,
.hero-description,
.program-card p,
.project-card p,
.hardware-card p,
.why-card p,
.testimonial-card p,
.footer-description{

    color:var(--text-light);

}

.glass-card,
.program-card,
.project-card,
.hardware-card,
.why-card,
.testimonial-card,
.summary-card,
.feature-box,
.contact-form-container,
.contact-card,
.faq-item{

    background:var(--surface);

    border:1px solid var(--border);

}

input,
textarea,
select{

    background:var(--surface-2);
    color:var(--text);

    border:1px solid var(--border);

}

input::placeholder,
textarea::placeholder{

    color:#999;

}

.footer{

    background:#090909;

    border-top:1px solid var(--border);

}

.footer a{

    color:var(--text-light);

}

.footer a:hover{

    color:#fff;

}

.newsletter{

    background:linear-gradient(
        135deg,
        #111,
        #1b1b1f
    );

}

.back-to-top{

    background:#222;

    color:#fff;

}

.whatsapp-btn{

    box-shadow:0 15px 35px rgba(0,0,0,.45);

}

}

/*====================================================
FINAL UTILITY CLASSES
====================================================*/

.mx-auto{
    margin-left:auto;
    margin-right:auto;
}

.mt-0{margin-top:0;}
.mt-1{margin-top:.5rem;}
.mt-2{margin-top:1rem;}
.mt-3{margin-top:1.5rem;}
.mt-4{margin-top:2rem;}
.mt-5{margin-top:3rem;}

.mb-0{margin-bottom:0;}
.mb-1{margin-bottom:.5rem;}
.mb-2{margin-bottom:1rem;}
.mb-3{margin-bottom:1.5rem;}
.mb-4{margin-bottom:2rem;}
.mb-5{margin-bottom:3rem;}

.pt-0{padding-top:0;}
.pt-1{padding-top:.5rem;}
.pt-2{padding-top:1rem;}
.pt-3{padding-top:1.5rem;}
.pt-4{padding-top:2rem;}
.pt-5{padding-top:3rem;}

.pb-0{padding-bottom:0;}
.pb-1{padding-bottom:.5rem;}
.pb-2{padding-bottom:1rem;}
.pb-3{padding-bottom:1.5rem;}
.pb-4{padding-bottom:2rem;}
.pb-5{padding-bottom:3rem;}

.d-none{display:none!important;}
.d-block{display:block!important;}
.d-inline{display:inline!important;}
.d-inline-block{display:inline-block!important;}

.flex{display:flex;}
.grid{display:grid;}

.flex-column{flex-direction:column;}
.flex-wrap{flex-wrap:wrap;}

.justify-start{justify-content:flex-start;}
.justify-center{justify-content:center;}
.justify-end{justify-content:flex-end;}
.justify-between{justify-content:space-between;}

.align-start{align-items:flex-start;}
.align-center{align-items:center;}
.align-end{align-items:flex-end;}

.text-left{text-align:left;}
.text-center{text-align:center;}
.text-right{text-align:right;}

.text-primary{color:var(--primary);}
.text-muted{color:var(--text-light);}

.bg-primary{background:var(--primary);}
.bg-light{background:#f5f5f7;}
.bg-dark{background:#111;}

.rounded-sm{border-radius:6px;}
.rounded{border-radius:12px;}
.rounded-lg{border-radius:20px;}
.rounded-xl{border-radius:32px;}
.rounded-pill{border-radius:999px;}

.shadow-none{box-shadow:none;}
.shadow-sm{box-shadow:0 8px 20px rgba(0,0,0,.08);}
.shadow{box-shadow:0 15px 35px rgba(0,0,0,.12);}
.shadow-lg{box-shadow:0 25px 60px rgba(0,0,0,.18);}

.w-25{width:25%;}
.w-50{width:50%;}
.w-75{width:75%;}
.w-100{width:100%;}

.h-25{height:25%;}
.h-50{height:50%;}
.h-75{height:75%;}
.h-100{height:100%;}

.overflow-hidden{overflow:hidden;}
.position-relative{position:relative;}
.position-absolute{position:absolute;}

.opacity-0{opacity:0;}
.opacity-50{opacity:.5;}
.opacity-75{opacity:.75;}
.opacity-100{opacity:1;}

.cursor-pointer{cursor:pointer;}
.user-select-none{user-select:none;}

.transition{
    transition:all .3s ease;
}

/*====================================================
END OF style.css
====================================================*/