/* =========================================
   ROOT THEME VARIABLES
========================================= */

:root {
    --primary: #65e4b3;
    --primary-dark: #42c998;
    --primary-light: #9af0cd;

    --text-main: #ffffff;
    --text-soft: rgba(255,255,255,0.9);

    --bg-dark: #0f172a;
    --bg-light: #f8fafc;

    --unizik-green-1: #338a72; /* darkest */
    --unizik-green-2: #2b7a63; /* darker */
    --unizik-green-3: #4bb08a; /* medium-dark */
    --unizik-green-4: #1a5c3d; /* lighter, for contrast */
    --unizik-dark-green: #1a5c3d;
    --unizik-light-green: #e1f0e8;
    --input-border: #ced4da;

    --shadow-soft: 0 2px 3px rgba(0,0,0,0.15);
}

/* Light Theme */
[data-theme="light"] {
  --text-main: #ffffff;
  --text-soft: rgba(255,255,255,0.85);
  --navbar-bg: rgba(0,0,0,0.2); /* darker overlay */
}

/* Dark Theme */
[data-theme="dark"] {
  --text-main: var(--bg-dark);
  --text-soft: #334155;
  --navbar-bg: rgba(0,0,0,0.2); /* darker overlay for consistency */
}















/* ================================
   Navbar
================================= */
.navbar {
    background-color: var(--navbar-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Container */
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.navbar-logo{
    height:50px;
    width:50px;
}

/* Navigation Links */
.navbar .nav-link {
  color: var(--text-soft);
  font-weight: 500;
  transition: all 0.25s ease;
}

.navbar .nav-link:hover {
  color: var(--primary);
  transform: scale(1.05);
}

/* Buttons */
.navbar .btn-primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border: none;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.25s ease;
  color: var(--text-main);
  box-shadow: var(--shadow-soft);
}

.navbar .btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.navbar .btn-outline-light {
  border-color: var(--text-main);
  color: var(--text-main);
}

.navbar .btn-outline-light:hover {
  background-color: var(--text-main);
  color: var(--bg-dark);
}

/* Spacing */
.navbar-nav .nav-item {
  margin-left: 0;
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .navbar-nav {
    gap: 1rem;
  }
}














/* =========================================
   HERO SECTION
========================================= */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

/* =========================================
   HERO BACKGROUND
========================================= */

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}


.gradient-animation {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    #0f172a,
    #1e293b,
    var(--primary),
    #0e8863,
    #0f172a
  );

  background-size: 400% 400%;   
  animation: gradientMove 12s ease infinite;
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-contents {
  position: relative;
  z-index: 2;
  max-width: 850px;
}



/* =========================================
   HERO TEXT
========================================= */

.hero-titles span {
    font-weight: 800;
    line-height: 1.1;
    display: block;
    margin-block-start: 35px;
    font-size: 42px;
    font-family: verdana;
    text-shadow: 2px 2px 8px rgba(0,0,0,.5);
    background: linear-gradient(135deg,#ffffff,#e2e8f0,#cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInScale 1.5s ease-out;
}


.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-top: 1.2rem;
  color: var(--text-soft);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   HERO BUTTONS
========================================= */

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-primary-custom {
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary-dark)
  );
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 8px;
  color: white;
  box-shadow: var(--shadow-soft);
  transition: all 0.25s ease;
}


.btn-primary-custom:hover {
  transform: translateY(-2px);
  background: linear-gradient(
    135deg,
    var(--primary-light),
    var(--primary)
  );
}


.btn-outline-custom {
  border: 2px solid white;
  color: white;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.25s ease;
}


.btn-outline-custom:hover {
  background: white;
  color: #0f172a;
}




/* =========================================
   SCROLL INDICATOR
========================================= */

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}


.scroll-arrow {
  font-size: 1.5rem;
  color: white;
  animation: bounce 2s infinite;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


/* =========================================
   RESPONSIVE DESIGN
========================================= */


@media (max-width: 768px) {

  
    .hero-titles span {
        margin: 20px;
        font-size: 25px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: row;
        font-size: 16px;
    }

}













/* =========================================
   CARD SECTION
========================================= */

/* ==========================
   Card Section Base
========================== */
.the-card-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fffe, #e8f5f3);
  overflow: hidden;
}

[data-theme="dark"] .the-card-section {
  background: linear-gradient(135deg, #0a1a0f, #1a2f1f);
}


/* ==========================
   Container & Text Animations
========================== */
.the-card-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.the-card-content {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(.25,.46,.45,.94);
}

.the-card-section.animate-in .the-card-content {
  opacity: 1;
  transform: translateY(0);
}

.the-card-title {
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeSlideDown 0.8s ease forwards;
  animation-delay: 0.2s;
}

.the-card-description p {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

/* Features Grid */
.the-card-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(34,197,94,.1);
  border-radius: 12px;
  border: 1px solid rgba(34,197,94,.2);
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
}

/* Staggered feature animation */
.the-card-section.animate-in .feature-item:nth-child(1) { animation: fadeSlideUp 0.6s ease forwards; animation-delay: 0.6s; }
.the-card-section.animate-in .feature-item:nth-child(2) { animation: fadeSlideUp 0.6s ease forwards; animation-delay: 0.8s; }
.the-card-section.animate-in .feature-item:nth-child(3) { animation: fadeSlideUp 0.6s ease forwards; animation-delay: 1s; }
.the-card-section.animate-in .feature-item:nth-child(4) { animation: fadeSlideUp 0.6s ease forwards; animation-delay: 1.2s; }

.feature-item:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 8px 25px rgba(34,197,94,0.7);
}

/* ==========================
   Card Mockup / Image
========================== */
.the-card-image {
  flex: 1 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(30px);
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
}

.the-card-section.animate-in .the-card-image {
  transform: translateX(0);
}

/* Glow behind card */
.card-mockup::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34,197,94,0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.card-mockup {
  position: relative;
  perspective: 1000px;
  z-index: 1;
}

.smart-card {
  width: 320px;
  height: 200px;
  background: linear-gradient(135deg,#ffffff,#f8fafc);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,.1),0 0 0 1px rgba(255,255,255,.5);
  padding: 20px;
  position: relative;
  transform: rotateY(-5deg) rotateX(5deg);
  transition: transform .3s ease;
}

.smart-card:hover {
  transform: rotateY(-2deg) rotateX(2deg) scale(1.03);
  box-shadow: 0 25px 50px rgba(34,197,94,0.25);
}

[data-theme="dark"] .smart-card {
  background: linear-gradient(135deg,#1f2937,#374151);
  box-shadow: 0 20px 40px rgba(0,0,0,.3),0 0 0 1px rgba(255,255,255,.1);
}

/* ==========================
   Animations
========================== */
@keyframes fadeSlideDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}


.the-card-section {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s cubic-bezier(.25,.46,.45,.94);
  overflow: hidden; /* prevent horizontal scroll */
}

/* Optional: container to clip extra width */
.the-card-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  overflow: hidden; /* clips child translateX */
}

/* When in view */
.the-card-section.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* Child content fade/slide effects */
.the-card-content,
.the-card-title,
.the-card-description p,
.feature-item,
.the-card-image {
  opacity: 0;
  transform: translateY(20px); /* slight vertical offset for fade in */
  transition: all 0.6s ease-out;
}

.the-card-section.in-view .the-card-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.the-card-section.in-view .the-card-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.the-card-section.in-view .the-card-description p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.the-card-section.in-view .feature-item:nth-child(1) { 
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
.the-card-section.in-view .feature-item:nth-child(2) { 
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}
.the-card-section.in-view .feature-item:nth-child(3) { 
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}
.the-card-section.in-view .feature-item:nth-child(4) { 
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.the-card-section.in-view .the-card-image {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}












/* =========================================
   USE CASES SECTION
========================================= */

.use-cases-section {
  padding:100px 20px;
  background:linear-gradient(135deg,#f8fffe,#e8f5f3);
}

[data-theme="dark"] .use-cases-section{
  background:linear-gradient(135deg,#0a1a0f,#1a2f1f);
}

@media (max-width: 768px) {
    .use-cases-section .container .cont{
        padding: 50px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

}


/* ===============================
   SECTION HEADER
================================ */

.use-cases-header{
  text-align:center;
  margin-bottom:70px;
}

.use-cases-title{
  font-weight:800;
  font-size:2.5rem;
  color:var(--primary-dark);
}

.use-cases-subtitle{
  max-width:650px;
  margin:auto;
  font-size:1.1rem;
  color:#666;
}


/* Dark Theme Header */

[data-theme="dark"] .use-cases-title{
  background:linear-gradient(135deg,#7dd3a0,#a8e6cf);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

[data-theme="dark"] .use-cases-subtitle{
  color:#aaa;
}

/* ===============================
   USE CASE CARDS
================================ */

.use-case-card{
  position:relative;
  width: 300px;
  height: 320px;
  border-radius:20px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:flex-end;
  box-shadow:0 15px 40px rgba(0,0,0,0.12);
  transition:all .35s ease;
}

.use-case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.7);
}


/* ===============================
   DARK OVERLAY
================================ */

.use-case-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.3)
  );
  z-index:1;
}



/* ===============================
   CARD CONTENT
================================ */

.use-case-content{
  position:relative;
  color: var(--text-main);
  padding:25px;
  width:100%;
  text-align:left;
  z-index:2;
}

.use-case-content h3{
  font-size:1.6rem;
  font-weight:700;
  margin-bottom:5px;
}

.use-case-content p{
  font-size:.95rem;
  opacity:.9;
  margin-bottom:15px;
}



/* ===============================
   BUTTON
================================ */

.use-case-btn{
  display:inline-block;
  padding:9px 22px;
  border-radius:25px;
  background:#16a44b;
  color:white;
  font-weight:600;
  text-decoration:none;
  font-size:.85rem;
  transition:.3s;
}

.use-case-btn:hover{
  background:#0f7a36;
  transform:translateY(-2px);
}








/* =========================================
   ANIMATIONS
========================================= */

@keyframes fadeInUp {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {
  .the-card-section { padding: 60px 0; }
  .the-card-content { flex-direction: column-reverse; gap: 40px; text-align: center; }
  .the-card-title { font-size: 20px; }
  .the-card-features { grid-template-columns: 1fr; }
  .the-card-image { transform: translateY(30px); }
  .the-card-section.animate-in .the-card-image { transform: translateY(0); }
  .smart-card { width: 280px; height: 175px; transform: none; }
  .smart-card:hover { transform: scale(1.02); }
  .use-cases-title { font-size: 2.2rem; }
  .use-cases-subtitle { font-size: 1rem; }
  .use-cases-grid { gap: 20px; }
  .use-case-card { width: 100%; max-width: 300px; height: 320px; }
}

@media (max-width: 480px) {
  .the-card-container { padding: 0 15px; }
  .the-card-title { font-size: 2rem; }
  .the-card-description { font-size: 1rem; }
  .smart-card { width: 260px; height: 160px; padding: 15px; }
  .feature-item { padding: 12px 15px; }
  .use-cases-grid { flex-direction: column; align-items: center; }
  .use-case-card { width: 100%; max-width: 280px; }
  .use-cases-title { font-size: 1.8rem; }
}











/* =========================================
   USE CASE PAGE
========================================= */

.use-case-page {
  min-height: 100vh;
  background: #f8fffe;
  padding-top: 80px;
}

[data-theme="dark"] .use-case-page {
  background: #0a1a0f;
}

/* =========================================
   HERO SECTION
========================================= */

.use-case-hero {
  height: calc(60vh + 40px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -80px;
  padding-top: 80px;
}

.parallax-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.parallax-image {
  width: 120%;
  height: 120%;
  background-size: cover;
  background-position: 50%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  transform: translateZ(0);
  will-change: transform;
}

.hero-overlay,
.parallax-image {
  position: absolute;
  top: 0;
  left: 0;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15,23,42,.85),
    rgba(30,41,59,.9) 50%,
    rgba(15,23,42,.95)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 20px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-40px);
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0,0,0,.7);
  margin: 0;
  background: linear-gradient(135deg,#ffffff,#e2e8f0,#cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  animation: fadeInScale 1.5s ease-out;
}

.hero-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(135deg,#60a5fa,#3b82f6);
  animation: expandLine 2s ease-out .5s forwards;
}

/* =========================================
   CONTENT SECTION
========================================= */

/* .use-case-content {
  padding: 100px 20px 120px;
  background: linear-gradient(135deg,#f8fffe,#e8f5f3);
}

[data-theme="dark"] .use-case-content {
  background: linear-gradient(135deg,#0a1a0f,#1a2f1f);
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.content-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2d5a3d;
  margin-bottom: 40px;
  background: linear-gradient(135deg,#2d5a3d,#4a8b5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="dark"] .content-title {
  background: linear-gradient(135deg,#7dd3a0,#a8e6cf);
}

.content-paragraph {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 50px;
  text-align: left;
}

[data-theme="dark"] .content-paragraph {
  color: #b0b0b0;
} */

/* =========================================
   CTA SECTION
========================================= */

.cta-section {
  margin-top: 60px;
  position: relative;
  background: linear-gradient(135deg,#f1f5f9,#e2e8f0);
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
  overflow: hidden;
}

[data-theme="dark"] .cta-section {
  background: linear-gradient(135deg,#1e293b,#334155);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}

.cta-section:before {
  content: "";
  position: absolute;
  top:0;
  left:-100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,transparent,rgba(59,130,246,.1),transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.cta-section:after {
  content:"";
  position:absolute;
  top:-50%;
  right:-50%;
  width:200px;
  height:200px;
  background: radial-gradient(circle,rgba(34,197,94,.1) 0,transparent 70%);
  border-radius:50%;
  animation: float 6s ease-in-out infinite;
}

.cta-content { position: relative; z-index:2; }

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  background: linear-gradient(135deg,#1e293b,#475569);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="dark"] .cta-title {
  background: linear-gradient(135deg,#f1f5f9,#cbd5e1);
}

.cta-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

[data-theme="dark"] .cta-subtitle {
  color: #94a3b8;
}

.cta-button {
  background: linear-gradient(135deg,#059669,#3bf66e);
  color: white;
  border: none;
  padding: 20px 50px;
  border-radius: 60px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 15px 35px rgba(37,99,235,.3);
  position: relative;
  overflow: hidden;
}

.cta-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);
  transition: left .6s;
}

.cta-button:hover {
  background: linear-gradient(135deg,#0ff567,#0f9621);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 25px 50px rgba(37,99,235,.4);
}

.cta-button:hover:before { left: 100%; }
.cta-button:active { transform: translateY(-2px) scale(1.02); }

.cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: #64748b;
  font-weight: 500;
}

[data-theme="dark"] .cta-feature { color: #94a3b8; }

.cta-feature:before {
  content: "✓";
  color: #22c55e;
  font-weight: 700;
  font-size: 1.1rem;
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes fadeInScale {
  0% { opacity:0; transform: scale(.8) translateY(30px); }
  100% { opacity:1; transform: scale(1) translateY(0); }
}

@keyframes expandLine {
  0% { width:0; }
  100% { width:120px; }
}

@keyframes shimmer {
  0% { left:-100%; }
  50% { left:100%; }
  100% { left:100%; }
}

@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:768px){
  .use-case-hero, .use-case-page{padding-top:60px}
  .use-case-hero{height:calc(50vh + 30px);margin-top:-60px}
  .hero-content{transform:translateY(-30px)}
  .parallax-image{background-attachment:scroll}
  .hero-title{font-size:2.5rem}
  .content-title{font-size:2rem}
  .content-paragraph{font-size:1.1rem}
  .use-case-content{padding:80px 20px 100px}
  .cta-section{padding:40px 20px;margin-top:40px}
  .cta-title{font-size:1.6rem}
  .cta-button,.cta-subtitle{font-size:1rem}
  .cta-button{padding:18px 40px;letter-spacing:1px}
  .cta-features{gap:20px;margin-top:30px}
  .cta-feature{font-size:.85rem}
}

@media (max-width:480px){
  .use-case-hero, .use-case-page{padding-top:50px}
  .use-case-hero{height:calc(45vh + 25px);margin-top:-50px}
  .hero-content{transform:translateY(-25px)}
  .hero-title{font-size:2rem}
  .content-title{font-size:1.8rem}
  .use-case-content{padding:60px 15px 80px}
  .cta-section{padding:30px 15px}
  .cta-features{flex-direction:column;align-items:center;gap:15px}
}












/* =========================================
   FAQ SECTION
========================================= */

/* FAQ Background */

.faq-section{
  background: linear-gradient(
    135deg,
    var(--bg-light),
    #e2e8f0
  );
}


/* Title */

.faq-title{
  font-weight:800;
  font-size:2.5rem;
  color:var(--primary-dark);
}

.faq-subtitle{
  font-size:1.1rem;
  color: #666;
}

.title-accent{
  animation:bounce 2s infinite;
}


/* Accordion Card */

.faq-card{
  border:none;
  border-radius:14px;
  margin-bottom:1rem;

  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  overflow:hidden;
}


/* Question Button */

.faq-question{
  display:flex;
  align-items:center;
  gap:1rem;

  font-weight:600;
  font-size:1.05rem;

  background:white;
}


/* Remove default bootstrap arrow */

.accordion-button::after{
  display:none;
}


/* Icon */

.question-icon{
  width:40px;
  height:40px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:10px;

  background:linear-gradient(
    135deg,
    var(--primary-light),
    var(--primary)
  );
}


/* Category Tag */

.category-tag{
  background:var(--primary);
  color:white;
  font-size:.75rem;
}


/* Answer */

.accordion-body{
  background:#fafafa;
  line-height:1.7;
  color:#475569;
}


/* Hover Effect */

.faq-card:hover{
  transform:translateY(-3px);
  transition:.3s;
}


/* Support CTA */

.support-cta{
  background:linear-gradient(
    135deg,
    var(--primary),
    var(--primary-dark)
  );

  padding:3rem 2rem;
  border-radius:20px;
  color:white;
}


/* Animation */

@keyframes bounce{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}










/* ===============================
   Footer
================================ */

.footer {
  background: linear-gradient(
    120deg,
    #0f172a,
    #1e293b,
    var(--primary),
    #0e8863,
    #0f172a
  ); /* darker than #16a44b */

  color: var(--text-main);
  position: relative;
  overflow: hidden;
}

/* top accent glow */
.footer::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;

  background: linear-gradient(
    90deg,
    transparent,
    var(--primary),
    transparent
  );
}

/* ===============================
   Footer Brand
================================ */

.footer-brand h3{
  font-weight:700;
  font-size:1.4rem;
  margin-bottom:1rem;
}

.footer-brand p{
  color: var(--text-soft);
  line-height:1.7;
  font-size:0.95rem;
}

/* ===============================
   Footer Headings
================================ */

.footer-heading{
  font-weight:600;
  margin-bottom:1.2rem;
  font-size:1.05rem;
}

/* ===============================
   Footer Links
================================ */

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li{
  margin-bottom:0.6rem;
}

.footer-links a{
  color:var(--text-soft);
  text-decoration:none;
  font-size:0.9rem;

  transition:all .25s ease;
}

.footer-links a:hover{
  color:white;
  padding-left:6px;
}

/* ===============================
   Footer Bottom
================================ */

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.15);
  margin-top:3rem;
  padding-top:1.5rem;

  font-size:0.85rem;
  color:var(--text-soft);
}

.footer-bottom a{
  color:white;
  font-weight:600;
  text-decoration:none;
}

.footer-bottom a:hover{
  color:var(--primary);
}

/* ===============================
   Responsive
================================ */

@media (max-width:768px){

  .footer-brand{
    margin-bottom:2rem;
  }

}













/* =================================================
   GLOBAL ANIMATIONS
================================================= */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* =================================================
   PRELOADER
================================================= */

.preloader-overlay {
  position: fixed;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: linear-gradient(
    135deg,
    #0f4c3a,
    #1a7a5e 50%,
    #0f4c3a
  );

  z-index: 9999;
}

.preloader-content {
  text-align: center;
  color: white;

  animation: fadeOut 1s ease forwards;
  animation-delay: 4s;
}

.preloader-gif {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.preloader-text {
  font-size: 1.2rem;
  font-weight: 600;
}

/* =================================================
   DIALOG OVERLAY
================================================= */

.dialog-overlay {
  position: fixed;
  inset: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 1rem;

  background: rgba(0,0,0,.65);
  backdrop-filter: blur(6px);

  z-index: 10000;
  animation: fadeIn .3s ease-out;
}

/* =================================================
   DIALOG BOX
================================================= */

.dialog {
  width: 100%;
  max-width: 600px;
  max-height: 90vh;

  background: white;
  border-radius: 24px;

  overflow-y: auto;

  padding: 2rem;

  box-shadow:
    0 25px 50px rgba(0,0,0,.25),
    0 0 0 1px rgba(255,255,255,.05);

  animation: slideUp .4s cubic-bezier(.34,1.56,.64,1);
}

/* =================================================
   DIALOG HEADER
================================================= */

.dialog-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.dialog h3 {
  margin: 0;
  font-size: 1.6rem;
  color: #0f4c3a;
}

/* =================================================
   STUDENT CARD
================================================= */

.student-card {
  background: linear-gradient(135deg,#f8fafc,#e2e8f0);

  border-radius: 16px;
  padding: 2rem;

  border: 1px solid #e2e8f0;
  margin-bottom: 2rem;
}

.student-avatar {
  width: 80px;
  height: 80px;

  margin: 0 auto 1.5rem;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 1.4rem;

  color: white;

  background: linear-gradient(
    135deg,
    #1a7a5e,
    #0f4c3a
  );

  box-shadow: 0 8px 25px rgba(26,122,94,.3);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: .75rem 0;

  border-bottom: 1px solid rgba(0,0,0,.05);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  color: #6b7280;
  font-size: .9rem;
}

.detail-value {
  font-weight: 600;
  color: #1f2937;
}

/* =================================================
   BUTTONS
================================================= */

.dialog-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.dialog-btn {
  border: none;
  border-radius: 16px;

  padding: 1rem 2rem;

  font-weight: 600;
  font-size: 1rem;

  cursor: pointer;

  transition: all .3s ease;
}

.dialog-btn.primary {
  color: white;

  background: linear-gradient(
    135deg,
    #1a7a5e,
    #0f4c3a
  );

  box-shadow: 0 4px 15px rgba(26,122,94,.4);
}

.dialog-btn.secondary {
  background: #f3f4f6;
  color: #6b7280;

  border: 2px solid #e5e7eb;
}

.dialog-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,.15);
}

/* =================================================
   FORM
================================================= */

.enrollment-form {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-label {
  display: block;
  margin-bottom: .5rem;

  font-weight: 600;
  font-size: .9rem;

  color: #0f4c3a;
}

.form-input,
.form-select {
  width: 100%;

  padding: .75rem 1rem;

  border-radius: 12px;
  border: 2px solid #e5e7eb;

  font-size: 1rem;

  transition: all .3s ease;
}

.form-input:focus,
.form-select:focus {
  outline: none;

  border-color: #1a7a5e;

  box-shadow: 0 0 0 3px rgba(26,122,94,.1);
}

/* =================================================
   ENROLL BUTTON
================================================= */

.enroll-button {
  width: 100%;

  margin-top: 1.5rem;
  padding: 1rem 2rem;

  border-radius: 12px;
  border: none;

  font-weight: 700;
  font-size: 1.1rem;

  cursor: pointer;

  color: white;

  background: linear-gradient(
    135deg,
    #1a7a5e,
    #0f4c3a
  );

  transition: all .3s ease;
}

.enroll-button:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(26,122,94,.3);
}

/* =================================================
   RESPONSIVE
================================================= */

@media (max-width: 768px) {

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .dialog {
    padding: 1.5rem;
  }

  .dialog-actions {
    flex-direction: column;
  }

  .dialog-btn {
    width: 100%;
  }

}

@media (max-width: 480px) {

  .dialog {
    padding: 1rem;
  }

  .form-input,
  .form-select {
    font-size: .9rem;
  }

}









/* =========================================
   GLOBAL PAGE SETTINGS
========================================= */

html {
  scroll-behavior: smooth;
}

.main-page {
  min-height: 100vh;
}


/* =========================================
   PLACEHOLDER / SECTION LAYOUT
========================================= */

.placeholder-section {
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;
}


/* =========================================
   CARD BACKGROUND SECTION
========================================= */

.card-section {
  background: rgba(248, 250, 252, 0.3);
}

/* Dark Mode */

[data-theme="dark"] .card-section {
  background: rgba(15, 23, 42, 0.3);
}


/* =========================================
   PLACEHOLDER CONTENT
========================================= */

.placeholder-content {
  text-align: center;

  max-width: 32rem;
  padding: 0 1rem;
}

.placeholder-title {
  font-size: 2.25rem;
  font-weight: 700;

  color: var(--foreground);

  margin-bottom: 1rem;
}

.placeholder-description {
  font-size: 1.125rem;
  line-height: 1.6;

  color: var(--muted-foreground);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (min-width: 768px) {

  .placeholder-title {
    font-size: 2.5rem;
  }

}













.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s ease-in-out;
  font-family: inherit;
  white-space: nowrap;
}

.btn:focus {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Sizes */
.btn--small { padding: 8px 16px; font-size: 14px; height: 36px; }
.btn--medium { padding: 12px 24px; font-size: 16px; height: 44px; }
.btn--large { padding: 16px 32px; font-size: 18px; height: 52px; }

/* Variants */
.btn--primary {
  background-color: #10b981;
  color: white;
}
.btn--primary:hover { background-color: #059669; transform: translateY(-1px); }
.btn--primary:active { background-color: #047857; transform: translateY(0); }

.btn--secondary {
  background-color: #f3f4f6;
  color: #374151;
}
.btn--secondary:hover { background-color: #e5e7eb; }
.btn--secondary:active { background-color: #d1d5db; }

.btn--outline {
  background-color: transparent;
  color: #10b981;
  border: 2px solid #10b981;
}
.btn--outline:hover { background-color: #10b981; color: white; }
.btn--outline:active { background-color: #059669; }

.btn--ghost {
  background-color: transparent;
  color: #10b981;
}
.btn--ghost:hover { background-color: #ecfdf5; }
.btn--ghost:active { background-color: #d1fae5; }

/* Dark Mode Overrides */
[data-theme=dark] .btn--secondary { background-color: #374151; color: #f9fafb; }
[data-theme=dark] .btn--outline { border-color: #174131; color: #c5dad2; }
[data-theme=dark] .btn--ghost { color: #34d399; }













.navigation-mobile-controls { display: flex; align-items: center; gap: .5rem; }
@media (max-width:768px){ .navigation-mobile-controls{display:none} }

.mobile-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .5rem;
  border-radius: .375rem;
  color: var(--foreground-color);
  background: none;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
}
.mobile-menu-button:hover { color: #059669; background-color: var(--muted-color); }
.mobile-menu-button:focus { outline: none; box-shadow: 0 0 0 2px #059669; }

.mobile-menu {
  overflow: hidden;
  background-color: rgba(var(--background-rgb), .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: all .3s ease-in-out;
}
@media (min-width:768px){ .mobile-menu { display: none; } }

.mobile-menu-open { max-height: 24rem; opacity:1; transform: translateY(0); }
.mobile-menu-closed { max-height:0; opacity:0; transform: translateY(-1rem); }

.mobile-menu-content {
  padding: .5rem .5rem .75rem;
  display: flex; flex-direction: column; gap: .25rem;
}
@media (min-width:640px){ .mobile-menu-content{padding:.5rem .75rem .75rem} }

.mobile-menu-link {
  display: block;
  color: var(--foreground-color);
  padding: .5rem .75rem;
  border-radius: .375rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s ease;
}
.mobile-menu-link:hover { color:#059669; background-color: var(--muted-color); }

.mobile-menu-button-container { padding-top:1rem; padding-bottom:.5rem; }
.mobile-menu-enroll-button { width: 100%; }
















/* Use case pages */

/* CEP Use Cases Hero Section */
.cep-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    text-align: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.cep-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.7);
}

.cep-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeSlideDown 1s ease forwards;
    opacity: 0;
}

.cep-hero-title {
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--primary-dark);
}

/* Content Section */
.cep-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1rem; /* responsive padding */
    animation: fadeSlideUp 1s ease forwards;
    opacity: 0;
    animation-delay: 0.5s;
}

.cep-title {
    font-weight: 800;
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.cep-paragraph {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

/* CTA Section */
.cep-cta {
    background-color: var(--primary-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    animation: fadeSlideUp 1s ease forwards;
    opacity: 0;
    animation-delay: 1s;
}

.cep-cta-title {
    font-weight: 800;
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.cep-cta-subtitle {
    margin-bottom: 1.5rem;
}

.cep-cta-button {
    position: relative;
    overflow: hidden;
    background-color: var(--primary-dark);
    border: none;
    color: var(--text-main);
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 8px;
    margin-block-end: 20px;
    box-shadow: 2px 2px 8px #0004;

    /* Smooth zoom pulse */
    animation: zoomPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.cep-cta-button:hover {
    color: var(--text-main);
    transform: scale(1.1);
}

/* CTA Features */
.cep-cta-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    animation: fadeIn 1s ease forwards;
    opacity: 0;
    animation-delay: 1.5s;
}

.cep-feature {
    background: linear-gradient(
        120deg,
        #0f172a,
        #1e293b,
        var(--primary),
        #0f172a
    );
    color: var(--text-main);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.cep-feature:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Animations */
@keyframes zoomPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes fadeSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Responsive Typography */
@media (max-width: 768px) {
    .cep-hero-title {
        font-size: 2rem;
    }
    .cep-title {
        font-size: 1.5rem;
    }
    .cep-cta-title {
        font-size: 1.4rem;
    }
    .cep-paragraph {
        font-size: 1rem;
    }
}













/* Enrollment Page Css Styles */
.enrollment-bg {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: linear-gradient(120deg, var(--unizik-green-1), var(--unizik-green-2), var(--unizik-green-3), var(--unizik-green-4));
  background-size: 800% 800%;
  animation: gradientShift 20s ease infinite;
}

/* Gradient animation keyframes */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.enrollment-card {
    margin: 90px 0;
    max-width: 770px;
    width: 100%;
    border-radius: 15px;
}

.unizik-green-text {
    color: var(--unizik-dark-green);
}

.university-name {
    line-height: 1.2;
    color: var(--unizik-dark-green);
    letter-spacing: 0.5px;
    font-weight: 600;
    font-size: 24px;
}

.programme-subtitle {
    font-size: 0.75rem;
    color: #6c757d;
    letter-spacing: 0.5px;
}

.enrollment-main-title {
    color: var(--unizik-dark-green);
    font-size: 1.75rem;
    font-weight: 800;
}

/* Passport Upload Box Refinement */
.passport-upload-box {
    width: 200px;
    height: 240px;
    border: 2px dashed #cbd5e0;
    border-radius: 12px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.passport-upload-box:hover {
    border-color: var(--unizik-dark-green);
    background-color: #f9fafb;
}

.upload-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--unizik-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--unizik-dark-green);
}
.student-info-text {
    border-bottom: 1px solid lightgrey;
    margin-block-end: 20px;
}

.click-text {
    font-size: 1rem;
    color: #333;
}

.upload-requirements {
    font-size: 0.8rem;
    line-height: 1.4;
}

.unizik-logo-img {
    height: 80px;
    width: auto;
}

.custom-input {
    border-radius: 8px;
    border: 1px solid var(--input-border);
    padding: 0.6rem;
    font-size: 0.9rem;
}

.custom-input:focus {
    border-color: var(--unizik-green);
    box-shadow: 0 0 0 0.2rem rgba(26, 92, 61, 0.25);
}

.enrollment-btn {
    background-color: var(--unizik-green-2);
    color: white;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    text-transform: capitalize;
}

.enrollment-btn:hover {
    background-color: #14462e;
    color: #f1f1f1;
}

/* For the select arrows to match the bold style in image */
.form-select {
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}


/* ===== Responsive tweaks ===== */
@media (max-width: 768px) {
    .enrollment-card {
      max-width: 100%;
      width: 100%;       /* form width 90% on phones */
      padding: 1rem;    /* reduce padding */
    }

    /* Header texts */
    .university-name {
        font-size: 1.2rem; /* smaller on phones */
        line-height: 1.1;
    }

    .unizik-logo-img {
      height: 65px;
      width: auto;
    }

    .programme-subtitle {
        font-size: 0.6rem;
    }

    .enrollment-main-title {
        font-size: 1.4rem;
        text-align: center;
    }

    /* Passport upload box smaller */
    .passport-upload-box {
        width: 150px;
        height: 180px;
    }

    .upload-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .click-text {
        font-size: 0.9rem;
    }

    .upload-requirements {
        font-size: 0.7rem;
    }

    /* Inputs and selects take full width */
    .custom-input, .form-select {
        font-size: 0.85rem;
    }

    .student-info-text h6,
    .student-info-text p {
        font-size: 0.8rem;
    }

    .enrollment-btn {
        font-size: 0.95rem;
        padding: 0.6rem;
    }
}



.error-message{
    font-size: 0.8rem;
}












/* ==========================
   GENERAL PROFILE & PAGE STYLES
   ========================== */
.profile-container {
    background-color: var(--bg-light);
    min-height: 100vh;
    padding: 0 10px;
}

.prof-cont {
    margin-top: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 5px;
}

/* Profile Image */
.profile-img-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem auto;
    position: relative;
}
#profile_passport {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* Buttons */
.btn-primary-action,
.btn-unizik-action {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Info text */
.info-item small {
    font-size: 0.75rem;
}
.info-item span {
    font-size: 0.8rem;
    word-break: break-word;
}

/* Badges */
.badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
}

/* QR Wrapper */
.qr-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto 1rem auto;
}

/* Virtual ID text */
.qr-wrapper + p {
    font-size: 0.65rem;
    text-align: center;
}

/* ==========================
   RESPONSIVE MEDIA QUERIES
   ========================== */

/* Medium phones: 576px to 767px */
@media (max-width: 767px) {
  .profile-img-wrapper {
      width: 120px;
      height: 120px;
  }
  .btn-primary-action,
  .btn-unizik-action {
      font-size: 0.8rem;
      padding: 0.4rem 0.6rem;
  }
  .info-item small {
      font-size: 0.65rem;
  }
  .info-item span {
      font-size: 0.75rem;
  }
  .badge {
      font-size: 0.65rem;
      padding: 0.25rem 0.6rem;
  }
  #profile_name {
      font-size: 1rem;
      word-break: break-word;
      text-align: center;
  }
}

/* Small phones: <576px */
@media (max-width: 575px) {
  .profile-img-wrapper {
      width: 100px;
      height: 100px;
  }
  .btn-primary-action,
  .btn-unizik-action {
      font-size: 0.7rem;
      padding: 0.35rem 0.5rem;
  }
  .info-item small {
      font-size: 0.7rem;
  }
  .info-item span {
      font-size: 0.7rem;
  }
  .badge {
      font-size: 0.6rem;
      padding: 0.2rem 0.5rem;
  }
  #profile_name {
      font-size: 0.9rem;
      word-break: break-word;
      text-align: center;
  }
}

/* Extra small devices: <400px */
@media (max-width: 400px) {
  .btn-primary-action,
  .btn-unizik-action {
      font-size: 0.65rem;
      padding: 0.3rem 0.5rem;
  }
  .info-item small {
      font-size: 0.65rem;
  }
  .info-item span {
      font-size: 0.65rem;
  }
  .badge {
      font-size: 0.55rem;
      padding: 0.2rem 0.4rem;
  }
  #profile_name {
      font-size: 0.85rem;
  }
}











/* STUDENT INFO PAGE */
#profile-con {
  inset: 0;
  background: linear-gradient(120deg,
      #0f172a,
      #1e293b,
      var(--primary),
      #0e8863,
      #0f172a);

  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
}