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

html, body{
    overflow-x:hidden;
}

body{
    /* max-width: 1200px; */
    margin: 0 auto;
    width: 100%;
    font-family:google sans, sans-serif;
}

/* NAVBAR */

.navbar{
    height:70px;
    /* match other sections' inner width */
    max-width:1200px;
    margin:0 auto;
    padding:0 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid #ddd;
    background:white;
}

.logo{
    width:220px;
    display:flex;
    align-items:center;
}

.logo img{
    max-width:100%;
    height:auto;
    max-height:25px;
    object-fit:contain;
}

.nav-links{
    display:flex;
    padding-right:10rem;
    gap:18px;
    font-size:13px;
    color:#666;
    font-weight: 600;
    letter-spacing: 0%;
}

.nav-links li{
    display:flex;
    align-items:center;
    gap:6px;
    color: #404040;
}

.nav-links2 li{
    background: #f2f2f7;
    padding:8px 10px;
    border-radius: 6px;
    color: #262626;
}

.demo-btn{
    background:#6367ff;
    color:white;
    border:none;
    padding:11px 22px;
    border-radius:8px;
    cursor:pointer;
}

/* HERO */

.hero{
    position:relative;
    text-align:center;
    padding:70px 20px 100px;
    overflow:hidden;
    isolation:isolate;
    max-width:100vw;
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
}

.hero::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:450px;
    background:linear-gradient(
        to bottom,
        rgba(180,175,253,0) 0%,
        rgba(180,175,253,0.3) 40%,
        rgba(180,175,253,0.7) 75%,
        rgba(180,175,253,1) 100%
    );
    z-index:0;
}

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

.hero h1{
    font-size:64px;
    line-height:1.1;
    color:#3f3f45;
    margin-bottom:20px;
    font-weight:700;
}

.hero h1 span{
    color:#616af9;
}

.hero p{
    max-width:650px;
    margin:auto;
    color:#666;
    line-height:1.5;
}

/* BUTTONS */

.buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:35px;
}

.primary-btn{
    background:#6367ff;
    color:white;
    border:none;
    padding:18px 35px;
    border-radius:12px;
    font-weight:600;
    cursor:pointer;
    font-size:14px;
}

/* Anchor/button appearance: remove underline when using anchors as buttons */
a.primary-btn, a.btn, a.btn-primary{
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

a.primary-btn, a.btn-primary{
    color:white;
}

a.primary-btn:hover, a.btn:hover, a.btn-primary:hover{
    text-decoration:none;
}

.secondary-btn{
    background:#ededff;
    color:#6367ff;
    border:none;
    padding:18px 35px;
    border-radius:12px;
    font-weight:600;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
}

.secondary-btn svg{
    width:14px;
    height:14px;
}

/* PREVIEW CARD */

.preview-card{
    width:980px;
    height:640px;
    margin:72px auto 0;
    display:flex;
    background:#fff;
    border:1px solid #ECEEF5;
    border-radius:18px;
    overflow:hidden;
    box-shadow:
        0 8px 24px rgba(17,24,39,.05),
        0 20px 50px rgba(17,24,39,.04);
    position:relative;
    z-index:5;
    text-align:left;
}

/* SIDEBAR */

.sidebar{
    width:210px;
    min-width:190px;
    background:#fff;
    border-right:1px solid #EEF2F6;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.sidebar-top{
    padding-top:24px;
}

.sidebar-logo{
    padding:0 22px 6px;
    display:flex;
    align-items:center;
    gap:8px;
}

.sidebar-logo img{
    display:block;
    width:auto;
    max-height:22px;
    margin-top:6px;
}

.sidebar-nav{
    display:flex;
    flex-direction:column;
    gap:4px;
    padding:0 12px;
    margin-top:6px;
}

.sidebar-link{
    height:44px;
    display:flex;
    align-items:center;
    gap:12px;
    padding:0 14px;
    border-radius:10px;
    color:#667085;
    text-decoration:none;
    font-size:13px;
    font-weight:500;
}

.sidebar-link svg{
    width:17px;
    height:17px;
    flex-shrink:0;
    opacity:.8;
}

.sidebar-link:hover{
    background:#F8FAFC;
}

.sidebar-link.active{
    background:#EEF2FF;
    color:#5B64FF;
    font-weight:600;
}

.sidebar-link.active svg{
    opacity:1;
}

.badge{
    margin-left:auto;
    width:18px;
    height:18px;
    border-radius:50%;
    background:#F04461;
    color:#fff;
    font-size:10px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* SIDEBAR BOTTOM */

.sidebar-bottom{
    border-top:1px solid #EEF2F6;
    padding:4px 12px;
}

.sidebar-bottom > a.sidebar-link + a.sidebar-link {
    margin-top:-10px;
}

.dark-mode{
    display:flex;
    justify-content:flex-start;
    align-items:center;
    gap:10px;
    margin:5px 8px;
    font-size:12px;
    color:#667085;
}

.switch{
    position:relative;
    width:28px;
    height:15px;
    flex-shrink:0;
}

.switch input{
    display:none;
}

.slider{
    position:absolute;
    inset:0;
    background:#E5E7EB;
    border-radius:999px;
}

.slider::before{
    content:"";
    position:absolute;
    width:9px;
    height:9px;
    background:#fff;
    border-radius:50%;
    left:3px;
    top:3px;
    transition:transform .25s;
    box-shadow:0 1px 2px rgba(0,0,0,.12);
}

.switch input:checked + .slider{
    background:#5B64FF;
}

.switch input:checked + .slider::before{
    transform:translateX(16px);
}

/* PROFILE */

.profile{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:18px;
    padding:8px;
    border-radius:10px;
}

.profile:hover{
    background:#F8F9FC;
}

.avatar{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#344054;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:12px;
    flex-shrink:0;
}

.profile-info{
    flex:1;
    min-width:0;
}

.profile-info h5{
    font-size:12px;
    color:#1D2939;
    margin:0 0 2px;
}

.profile-info small{
    color:#98A2B3;
    font-size:11px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    display:block;
}

.logout img{
    width:15px;
    height:15px;
}

/* DASHBOARD */

.dashboard{
    flex:1;
    background:#FFFFFF;
    padding:28px;
    display:flex;
    flex-direction:column;
    overflow:hidden;
}

.dashboard-header{
    padding-bottom:16px;
    border-bottom:1px solid #EEF2F7;
    flex-shrink:0;
}

/* Mobile preview: hide the large preview card on small screens and
   show the mobile mockup image instead. */
.hero-mobile-preview{
    display:none;
    max-width:360px;
    width:80%;
    height:auto;
    margin:24px auto 0;
}

@media (max-width: 768px){
    .preview-card{
        display:none !important;
    }

    .hero-mobile-preview{
        display:block;
    }
}

.dashboard-header h2{
    font-size:22px;
    font-weight:700;
    color:#111827;
    margin:0 0 4px;
    letter-spacing:-.5px;
}

.dashboard-header p{
    font-size:13px;
    color:#98A2B3;
    margin:0;
}

/* TOOLBAR */

.dashboard-toolbar{
    display:flex;
    align-items:center;
    gap:14px;
    margin:20px 0 24px;
    flex-shrink:0;
}

.search-field{
    flex:1;
    height:46px;
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:12px;
    display:flex;
    align-items:center;
    padding:0 16px;
}

.search-field svg{
    width:16px;
    height:16px;
    margin-right:10px;
    color:#9CA3AF;
    flex-shrink:0;
}

.search-field input{
    flex:1;
    border:none;
    outline:none;
    background:transparent;
    font-size:14px;
    color:#374151;
}

.search-field input::placeholder{
    color:#9CA3AF;
}

.search-field:focus-within{
    border-color:#5B64FF;
    box-shadow:0 0 0 3px rgba(91,100,255,.10);
}

.toolbar-btn{
    height:46px;
    padding:0 18px;
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:12px;
    display:flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
    font-size:13px;
    font-weight:500;
    color:#4B5563;
    white-space:nowrap;
}

.toolbar-btn svg{
    width:15px;
    height:15px;
    opacity:.75;
}

.toolbar-btn:hover{
    background:#F9FAFB;
}

.hero-mobile-preview{
    display:none;
}

/* COURSE GRID */

.course-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
    flex:1;
    align-content:start;
    overflow-y:auto;
    padding-right:6px;
}

/* COURSE CARD */

.course-card{
    background:#fff;
    border:1px solid #ECEFF5;
    border-radius:12px;
    min-height:64px;
    padding:14px 16px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition:.18s ease;
    cursor:pointer;
    box-shadow:none;
    position:relative;
}

.course-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:3px;
    background:transparent;
    border-radius:12px 12px 0 0;
}

.course-card:hover::before{
    background:#5B64FF;
}

.course-card:hover{
    border-color:#D9DEEA;
    background:#FCFCFE;
    transform:none;
    box-shadow:none;
}

/* Visual selected state when card is chosen via JS */
.course-card.selected{
    border-color:#D9DEEA;
    background:#FCFCFE;
}

.course-card.selected::before{
    background:#5B64FF;
}

.course-details{
    display:flex;
    flex-direction:column;
    gap:4px;
    min-width:0;
}

.course-title-row{
    display:flex;
    align-items:center;
    gap:8px;
}

.course-code{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:max-content;
    flex-shrink:0;
    padding:4px 8px;
    border-radius:6px;
    background:#EEF2FF;
    color:#5B64FF;
    font-size:10px;
    font-weight:700;
    letter-spacing:.3px;
}

.course-card h4{
    font-size:14px;
    font-weight:600;
    color:#1F2937;
    line-height:1.3;
    margin:0;
    letter-spacing:-.2px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.course-card p{
    font-size:12px;
    color:#98A2B3;
    line-height:1.45;
    margin:0;
    padding-left:3px;
}

/* CUSTOM RADIO BUTTON */

.radio-wrapper{
    margin-left:16px;
    flex-shrink:0;
    cursor:pointer;
}

.course-card input[type="radio"]{
    position:absolute;
    opacity:0;
    width:0;
    height:0;
}

.radio{
    display:block;
    width:18px;
    height:18px;
    border:2px solid #D0D5DD;
    border-radius:50%;
    position:relative;
    transition:.2s;
}

.course-card:hover .radio{
    border-color:#98A2B3;
}

.course-card input[type="radio"]:checked + .radio{
    border-color:#5B64FF;
}

.course-card input[type="radio"]:checked + .radio::after{
    content:"";
    position:absolute;
    width:8px;
    height:8px;
    border-radius:50%;
    background:#5B64FF;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

/* DASHBOARD FOOTER */

.dashboard-footer{
    margin-top:24px;
    padding-top:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-shrink:0;
}

/* PAGINATION */

.pagination{
    display:flex;
    align-items:center;
    gap:8px;
}

.page-arrow{
    width:34px;
    height:34px;
    border:1px solid #E5E7EB;
    background:#fff;
    border-radius:10px;
    color:#667085;
    font-size:16px;
    cursor:pointer;
    transition:.2s;
    display:flex;
    justify-content:center;
    align-items:center;
}

.page-arrow:hover{
    background:#F8FAFC;
}

.page-number{
    width:34px;
    height:34px;
    border:none;
    background:transparent;
    border-radius:50%;
    color:#667085;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
    transition:.2s;
    display:flex;
    justify-content:center;
    align-items:center;
}

.page-number:hover{
    background:#EEF2FF;
}

.page-number.active{
    background:#5B64FF;
    color:#fff;
}

.page-dots{
    color:#98A2B3;
    font-size:13px;
    padding:0 2px;
}

/* FOOTER BUTTONS */

.footer-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.clear-btn{
    padding:12px 22px;
    background:#F2F4F7;
    border:none;
    border-radius:10px;
    color:#667085;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
    transition:.2s;
    letter-spacing:.2px;
}

.clear-btn:hover{
    background:#E9EDF3;
}

.activate-btn{
    padding:12px 24px;
    border:none;
    border-radius:10px;
    background:#5B64FF;
    color:#fff;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
    transition:.2s;
    letter-spacing:.2px;
    box-shadow:
        0 8px 20px rgba(91,100,255,.25);
}

.activate-btn:hover{
    background:#4E57F5;
    transform:translateY(-1px);
}

/* SCROLLBAR */

.course-grid::-webkit-scrollbar{
    width:6px;
}

.course-grid::-webkit-scrollbar-track{
    background:transparent;
}

.course-grid::-webkit-scrollbar-thumb{
    background:#D6DBE6;
    border-radius:999px;
}

.course-grid{
    scrollbar-width:thin;
    scrollbar-color:#D0D5DD transparent;
}

/* GLOBAL TRANSITIONS */

.preview-card *{
    transition:
        background-color .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.preview-card button:active{
    transform:scale(.98);
}

.pagination button:active{
    transform:scale(.95);
}

.activate-btn:active{
    transform:scale(.97);
}

.clear-btn:active{
    transform:scale(.97);
}

.pagination span{
    user-select:none;
}


/* INNER CONTENT WRAPPERS - keep content at original width while section bg goes full-bleed */

.features-inner{
    max-width:1200px;
    margin:0 auto;
    padding:0 8%;
}

.how-inner{
    max-width:1200px;
    margin:0 auto;
    padding:0 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.solutions-inner{
    max-width:1200px;
    margin:0 auto;
    padding:0 8%;
}

/* FEATURES */

.features-section{
    padding:70px 0 80px;
    background:#fff;
    font-family: google sans, Arial, Helvetica, sans-serif;
    max-width:100vw;
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
}

.features-header{
    text-align:center;
    margin-bottom:40px;
}

.features-header h2{
    font-size:30px;
    margin-bottom:10px;
}

.features-header p{
    font-size:13px;
    color:#5f5f5f;
    line-height:1.4;
}

.feature-cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}

.feature-card{
    background:white;
    border-radius:10px;
    padding:25px 20px;
    min-height:115px;
    border:1px solid #eee;
    border-top:2px solid #6367ff;
    box-shadow:0 8px 20px rgba(0,0,0,.04);
}

.feature-icon{
    margin-bottom:10px;
}

.feature-card h3{
    font-size:16px;
    margin-bottom:10px;
    color:#000;
}

.feature-card p{
    font-size:12px;
    color:#5d5d5d;
    line-height:1.35;
}

/* HOW SECTION */

.how-section{
    background:#edeeff;
    padding:90px 0;
    font-family:google sans, Arial, Helvetica, sans-serif;
    max-width:100vw;
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
}

.how-left{
    max-width:520px;
}

.how-badge{
    display:inline-block;
    background:#cccdfe;
    color:#6367ff;
    font-size:12px;
    font-weight:600;
    padding:9px 16px;
    border-radius:6px;
    margin-bottom:24px;
}

.how-left h2{
    font-size:36px;
    line-height:1.15;
    color:#6367ff;
    font-weight:500;
    margin-bottom:20px;
}

.how-left p{
    color:#5f5f5f;
    font-size:15px;
    line-height:1.55;
    max-width:500px;
    margin-bottom:32px;
}

.how-buttons{
    display:flex;
    align-items:center;
    gap:16px;
}

.how-buttons .primary-btn{
    padding:15px 24px;
    border-radius:8px;
    font-size:13px;
}

.how-buttons .secondary-btn{
    padding:15px 24px;
    border-radius:8px;
    font-size:13px;
    background:#cccdfe;
    color:#6367ff;
}

.how-buttons .secondary-btn img{
    width:18px;
}

/* RIGHT SIDE */

.how-right{
    display:flex;
    flex-direction:column;
    gap:44px;
    position:relative;
    flex:1;
    padding-left:90px;
}

.timeline-curve{
    position:absolute;
    left:0;
    top:0;
    width:90px;
    height:100%;
    z-index:0;
}

.timeline-row{
    display:flex;
    align-items:flex-start;
    gap:24px;
    position:relative;
    z-index:1;
}

.timeline-number{
    width:48px;
    height:48px;
    background:#c0c2fd;
    color:#6367ff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    flex-shrink:0;
    position:absolute;
    left:-69px;
    top:0;
    z-index:2;
}

.timeline-content{
    padding-top:6px;
}

.timeline-content h3{
    color:#6367ff;
    font-size:18px;
    margin-bottom:8px;
}

.timeline-content p{
    color:#5f5f5f;
    font-size:13px;
    line-height:1.4;
    max-width:390px;
}

/* INSTITUTION SECTION */

.institution-section{
    background:#f3f4ff;
    padding:90px 0;
    font-family:google sans, Arial, Helvetica, sans-serif;
    max-width:100vw;
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
}

.institution-left h2{
    color:#07137c;
    font-size:32px;
    font-weight:500;
    margin-bottom:18px;
}

.institution-left p{
    color:#5f5f5f;
    font-size:14px;
    line-height:1.45;
    max-width:520px;
    margin-bottom:30px;
}

.institution-right{
    display:flex;
    gap:35px;
    align-items:flex-start;
}

.institution-timeline{
    position:relative;
    display:flex;
    flex-direction:column;
    gap:42px;
}

.institution-timeline::before{
    content:"";
    position:absolute;
    top:34px;
    left:24px;
    width:3px;
    height:140px;
    background:#c3c6ff;
    border-radius:20px;
}

.institution-timeline span{
    width:50px;
    height:50px;
    background:#c3c6ff;
    color:#07137c;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    position:relative;
    z-index:2;
}

.institution-texts{
    display:flex;
    flex-direction:column;
    gap:38px;
}

.institution-texts h3{
    color:#07137c;
    font-size:18px;
    margin-bottom:7px;
}

.institution-texts p{
    color:#5f5f5f;
    font-size:13px;
    line-height:1.4;
    max-width:420px;
}

/* SOLUTIONS SECTION */

.solutions-section{
    background:#fff;
    padding:90px 0 100px;
    max-width:100vw;
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
}

.solutions-header{
    text-align:center;
    margin-bottom:40px;
}

.solutions-header h2{
    font-size:30px;
    color:#000;
    margin-bottom:12px;
}

.solutions-header p{
    color:#5f5f5f;
    font-size:16px;
    line-height:1.4;
}

.solution-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:34px;
    max-width:930px;
    margin:0 auto;
}

.solution-card{
    background:white;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.04);
}

.solution-title{
    background:#eef0ff;
    text-align:center;
    padding:16px;
    font-size:14px;
    font-weight:700;
    color:#000;
}

.solution-content{
    padding:28px 22px;
}

.solution-content h4{
    font-size:13px;
    margin-bottom:8px;
    color:#000;
}

.solution-content p{
    font-size:12px;
    color:#333;
    line-height:1.35;
}

.solution-content hr{
    border:none;
    border-top:1px solid #ddd;
    margin:24px 0;
}


/* CTA SECTION */
.campus-cta{
  max-width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  min-height:570px;
  background:#eff0fb;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:70px 20px;
  color:white;

  position:relative;
  overflow:hidden;
}

.campus-cta::after{
  content:"";
  position:absolute;
  display:block;

  width:70rem;
  height:450px;
  border-radius:50px;

  background:url("/img/Glass.png") center/cover no-repeat;

  z-index:1;
}

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

.cta-content h1{
  font-size:46px;
  line-height:1.2;
  font-weight:700;
  margin-bottom:22px;
}

.cta-content p{
  font-size:18px;
  margin-bottom:45px;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
}

.btn{
  text-decoration:none;
  border-radius:9px;
  padding:17px 24px;
  font-size:15px;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:18px;
}

.btn-primary{
  background:#6367ff;
  color:white;
}

.btn-secondary{
  background:#c8c9ff;
  color:#6367FF;
  display: none;
}

.play-icon{
  width:18px;
  height:18px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.play-icon img{
  width:100%;
  height:100%;
  object-fit:contain;
}




/* FOOTER SECTION */

/* .footer{
    background:#10193b;
    color:#fff;
    padding:40px 7%;
    font-size:semibold 14px/1.5;
}

.footer .newsletter-divider{
    border:none;
    height:1px;
    margin:35px 0;
    border-top:1px solid #5469d4;
}

.footer .newsletter-divider2{
    border:none;
    height:1px;
    margin:35px calc(-50.5vw + 50%);
    border-top:1px solid #5469d4;
    width: 100vw;
} */

/* NEWSLETTER */

/* .footer-newsletter{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.footer-newsletter h3{
    font-size:24px;
    margin-bottom:10px;
}

.footer-newsletter p{
    color:#c7cbe7;
}

.newsletter-form{
    display:flex;
    gap:12px;
}

.newsletter-form input{
    width:280px;
    height:48px;
    border:none;
    border-radius:8px;
    padding:0 16px;
    font-size:15px;
}

.newsletter-form button{
    border:none;
    background:#5469d4;
    color:#fff;
    padding:0 15px;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
    font-size: 15px;
} */

/* MAIN FOOTER */

/* .footer-main{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-brand img{
    font-size:48px;
    margin-bottom:20px;
}

.footer-brand p{
    line-height:1.7;
    max-width:320px;
}

.aws-badges{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.badge1{
    width:90px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.footer-column{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.footer-column h4{
    margin-bottom:10px;
}

.footer-column a{
    color:#ffffff;
    text-decoration:none;
}

.footer-column a:hover{
    color:#fff;
} */

/* ADDRESSES */

/* .footer-addresses h3{
    margin-bottom:25px; 
} 

.address-grid{ 
    display:grid; 
    grid-template-columns:repeat(3,1fr); 
    gap:25px; 
} 

.address-item{
    display:flex;
    gap:12px;
    align-items:center;
}

.address-item span{ 
    width:32px; height:32px;
    min-width:32px; border-radius:50%; 
    background:#d9d8ff; 
    display:flex; 
    align-items:center; 
    justify-content:center; 
    overflow:hidden; 
} 

.address-item span img{ 
    width:26px; 
    height:26px; 
    border-radius:50%; 
    object-fit:cover; 
} 

.uk-flag{
    transform:scale(1.25);
    margin-top:7px;
}

.address-item p{ 
    color:#ffffff; 
    line-height:1.6; 
}

.address-item strong{
  font-weight:700;
} */

/* BOTTOM */

/* .footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-bottom p{
    color:#c7cbe7;
}

.social-icons{
    display:flex;
    gap:18px;
}

.social-icons a{
    color:white;
    font-size:22px;
} */

/* MOBILE RESPONSIVE VIEW */
@media (max-width: 768px){
 
  body{ overflow-x:hidden; }
 
  .navbar{
    height:52px;
    padding:0 18px;
  }
 
  .logo{ width:90px; }
  .logo img{ max-height:20px; width:auto; }
 
  .nav-links,
  .contact-btn{ display:none; }
 
  .demo-btn{
    display:block;
    padding:8px 14px;
    font-size:11px;
    margin-left:auto;
  }
 
  .menu-icon{
    display:none;
  }
 
 
  .hero{
    padding:45px 16px 50px;
  }
 
  .grid-bg{
    top:140px;
    width:430px;
    height:520px;
    background-size:38px 38px;
    opacity:.45;
  }
 
  .hero::after{
    height:260px;
    z-index:0;
  }
 
  .hero-content{
    position:relative;
    z-index:2;
  }
 
  .checkit-logo img{ width:160px; }
 
  .hero h1{
    font-size:24px;
    line-height:1.15;
    margin-bottom:10px;
  }
 
  .hero p{
    font-size:11px;
    line-height:1.35;
    max-width:300px;
  }
 
  .buttons,
  .how-buttons,
  .cta-buttons{
    flex-direction:column;
    width:100%;
    gap:10px;
  }
 
  .primary-btn,
  .secondary-btn,
  .btn{
    width:100%;
    justify-content:center;
    padding:15px 20px;
    font-size:11px;
    border-radius:8px;
  }
 
  .preview-card{
    display:none;
  }
 
  .hero-mobile-preview{
    display:block;
    position:relative;
    z-index:2;
    width:100%;
    max-width:400px;
    margin:30px auto 0;
    border-radius:14px;
  }
 
  .portal{
    transform:scale(.52);
  }
 
  .features-section{
    padding:45px 16px 55px;
  }
 
  .features-inner{
    padding:0;
  }
 
  .features-header{
    text-align:left;
    margin-bottom:25px;
  }
 
  .features-header h2{
    font-size:26px;
    line-height:1.15;
  }
 
  .features-header p{
    font-size:11px;
  }
 
  .feature-cards{
    grid-template-columns:1fr;
    gap:16px;
  }
 
  .feature-card{
    padding:24px 18px;
    border-top:2px solid #6c63ff;
    border-radius:8px;
  }
 
  .how-section,
  .institution-section{
    padding:55px 0;
  }
 
  .institution-section{
    background:#f3f4ff;
  }
 
  .how-section{
    background:#eef0ff;
  }
 
  .how-inner{
    grid-template-columns:1fr;
    padding:0 16px;
    gap:38px;
  }
 
  .how-left h2{
    font-size:27px;
    line-height:1.12;
  }
 
  .how-left p{
    font-size:12px;
    line-height:1.4;
  }
 
    .how-right{
        gap:16px;
        /* keep left padding so curve and numbers align with desktop */
        padding-left:90px;
        position:relative;
    }

    .timeline-curve{
        display:block;
        position:absolute;
        left:0;
        top:0;
        width:90px;
        height:100%;
        z-index:0;
    }

    .timeline-row{
        gap:14px;
        align-items:flex-start;
        position:relative;
        z-index:1;
    }

    .timeline-number{
        position:absolute;
        left:-69px;
        top:0;
        width:36px;
        height:36px;
        font-size:12px;
        z-index:2;
        display:flex;
        align-items:center;
        justify-content:center;
    }
 
  .timeline-content{
    padding-top:2px;
  }
 
  .timeline-content h3{
    font-size:14px;
  }
 
  .timeline-content p{
    font-size:11px;
    line-height:1.35;
  }
 
  .solutions-section{
    padding:65px 0 85px;
    overflow:hidden;
  }
 
  .solutions-inner{
    padding:0;
  }
 
  .solutions-header{
    padding:0 18px;
  }
 
  .solutions-header h2{
    font-size:25px;
    line-height:1.15;
  }
 
  .solutions-header p{
    font-size:13px;
  }
 
  .solution-cards{
    display:flex;
    gap:24px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding:0 48px;
    max-width:none;
  }
 
  .solution-card{
    min-width:245px;
    scroll-snap-align:center;
  }
 
  .solution-content{
    padding:28px 22px;
  }
 
  .campus-cta{
    min-height:540px;
    padding:70px 20px;
    background: #eff0fb;
  }
 
  .campus-cta::after{
    width:750px;
    height:450px;
    bottom:-170px;
    left:50%;
    background-size:contain;
    background-repeat:no-repeat;
    opacity:0;
  }
 
  .cta-content h1{
    font-size:29px;
    line-height:1.25;
    color: #6367FF;
  }
 
  .cta-content p{
    font-size:16px;
    line-height:1.5;
    color: #606068;
  }
 
  .cta-buttons{
    gap: 18px;
  }
 
  .footer{
    display:block;
    padding:40px 20px;
  }
 
  .footer-newsletter{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
  }
 
  .newsletter-left{
    width:100%;
  }
 
  .footer-newsletter h3{
    font-size:22px;
  }
 
  .newsletter-form{
    width:100%;
    flex-direction:column;
  }
 
  .newsletter-form input{
    width:100%;
  }
 
  .newsletter-form button{
    width:100%;
    height:48px;
  }
 
  .footer-main{
    grid-template-columns:1fr;
    gap:32px;
  }
 
  .footer-brand img{
    max-width:160px;
  }
 
  .footer-brand p{
    max-width:100%;
  }
 
  .footer-brand p br{
    display:none;
  }
 
  .aws-badges{
    flex-wrap:wrap;
  }
 
  .footer-column{
    gap:10px;
  }
 
  .footer .newsletter-divider2{
    margin:30px -20px;
    width:calc(100% + 40px);
  }
 
  .address-grid{
    grid-template-columns:1fr;
    gap:18px;
  }
 
  .footer-addresses h3{
    margin-bottom:20px;
  }
 
  .address-item{
    align-items:flex-start;
  }
 
  .address-item span{
    margin-top:4px;
  }
 
  .address-item p{
    font-size:13px;
    line-height:1.5;
  }
 
  .address-item p br{
    display:none;
  }
 
  .footer-bottom{
    flex-direction:column;
    gap:18px;
    text-align:center;
  }
 
  .social-icons{
    justify-content:center;
  }
}