@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Elms+Sans:ital,wght@0,100..900;1,100..900&family=Karla:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  scrollbar-width: thin;
  scrollbar-color: #821B3B #f9d8e2;
}
body {
  background: #f5f5f5;
  min-height: 100vh;
  max-width: 100vw;
  
}
/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 0.9rem;
}

::-webkit-scrollbar-track {
  background: linear-gradient(75deg, #f9d8e2 0%, #ceafb9 100%);
}

::-webkit-scrollbar-thumb {
  background: #821B3B;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #501024;
}

     /* Header */
/*Top header coding*/
.header{
      background:#F7F8F9;
      padding:18px 12px 5px 12px;
    }

    .top_container{
      width:100%;
      margin:0 auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      position: relative;
      z-index: 5;
    }

    /* Logo */
    .logo{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
.logo img{
	max-height: 60px;
	padding: 5px 5px 5px 15px;
}

    /* Header info wrapper (right side) */
    .header-info{
      display:flex;
      align-items:center;
      gap:18px;
    }
    /* Right grouped contact info */
    .contact-info{
      display:flex;
      align-items:center;
      gap:12px;
		margin-right: 15px;
    }
    /* Each info box (shared) */
    .info-box{
      display:flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border-radius:8px;
      cursor:pointer;
      position:relative;
      user-select:none;
      transition:transform .12s, background .12s;
      background:transparent;
      min-width:0;
    }
    .info-box:focus{
		outline:2px solid rgba(233,30,99,.14);
		outline-offset:2px;
}
    .info-box:hover{
		transform:translateY(-2px);
}
    .icon-circle{
      	width:36px;
		height:36px;
		border-radius:50%;
		display:flex;
		align-items:center;
		justify-content:center;
		background:#edb7b7;
		color:#ce2c4d;
		font-size:1rem;
		flex-shrink:0;
    }
.info-box:hover .icon-circle{
	background-color: #ce2c4d;
	color: white;
}
    .info-text p{
      font: size 0.9rem; 
		line-height:1.15; 
		color:#222;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:220px;
    }
.info-text span {
	display: block;
	color: #666;
	font-size: 0.8rem;
}
    .info-text strong{
		display:block;
		font-weight:600;
		font-size:0.9rem;
}

    /* Tooltip (hidden by default) */
    .tooltip{
      position:absolute;
      right:100%;
      top: 50%;
      transform:translateY(-50%) translateX(6px);
      background:#edb7b7;
      color:#501024;
      padding:6px 9px;
      border-radius:6px;
      font-size:0.8rem;
      opacity:0;
      pointer-events:none;
      transition:opacity .18s, transform .18s;
      white-space:nowrap;
      z-index: 1000 !important;
    }
    .tooltip.show{
      opacity:1;
      transform:translateY(-50%) translateX(-12px);
    }

    /* Small arrow under tooltip */
    .tooltip::before{
      content:"";
      position:absolute;
      left: 100%;
      top: 50%;
      transform: translateY(-50%);
      margin-right: -5px; /* Half of the border-width to center the arrow */
      border-width: 5px;
      border-style: solid;
      border-color: transparent transparent transparent #555;
    }
    /* Responsive behavior */
    @media (max-width:850px){
      .top_container{padding:5px; gap:8px}
      /* Keep logo at left; control layout with header-info */
      .header-info{gap:8px; align-items:flex-start}

      /* Hide address to free space */
      .address{display:none}

      /* Make contact-info compact and stacked on the right */
      .contact-info{
        display:flex;
        flex-direction:row; /*type here column to change call and email orientation*/
        align-items:flex; /* right-aligned */
        gap:6px;
      }
      /* Reduce sizes to fit */
      .icon-circle{
		  width:30px;
		  height:30px;
		  font-size:0.8rem;
		}
      .info-box{padding:6px 8px}
      .info-text p{font-size:0.8rem; max-width:160px}
      .logo h1{font-size:1.1rem}
      .logo p{font-size:0.7rem}
      .tooltip{font-size:0.7rem; padding:5px 8px}
    }

    /* Very small screens: allow tiny shrink but keep clickable */
    @media (max-width:600px){
		.phone{display: none;}
      .info-text p{max-width:150px}
      .icon-circle{width:28px;height:28px}
      .logo .icon{width:40px;height:40px}
    }
	@media (max-width:450px){
  .time{display: none;}
  
  /* ✅ Center logo perfectly */
  .logo {
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .logo img{
    max-height: 80px;
    padding: 0px 10px;
    display: block;
    margin: 0 auto;
  }

  /* ✅ Stack header items vertically for clarity */
  .top_container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .header-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/* Main Nav Bar Coding */
.nav-container{
  width: 100%;
  margin:auto;
  padding:0 15px;
}
.nav-header{
  position: sticky;
  top: 0;
  width: 100%;
  padding-left: 20px;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.675);
  z-index: 10;
   background: rgb(227,211,227);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.nav-header .nav-container{
  display: flex;
  align-items: center;
  justify-content:space-between;
}
.nav-header .nav-main-logo img{
  vertical-align: middle;
  max-height: 40px;
  margin: 15px 0;
}
.nav-header .menu .head{
    display: none;
}
.nav-header .menu ul{
  list-style: none;
}
.nav-header .menu > ul > li{
  display: inline-block;
}
.nav-header .menu .dropdown{
    position: relative;
}
.nav-header .menu > ul > li:not(:last-child){
  margin-right: 20px;
}
.nav-header .menu a{
    text-decoration: none;
    text-transform: capitalize;
    font-size: 1rem;
    color: #821B3B;
    font-style: bold;
    font-weight: 600;
    line-height: 1.5;
    display: block;
}
.nav-header .menu > ul > li > a{
    padding: 18px 0;
}
.nav-header .menu > ul > .dropdown > a{
    padding-right: 10px;
}
.nav-header .menu i{
    font-size: 0.6rem;
    pointer-events: none;
    user-select: none;
    position: absolute;
    color: hsl(0, 0%, 100%);
    top: calc(50% - 5px);
}
.nav-header .menu > ul > li > i{
    right: 0;
}
.nav-header .menu .sub-menu{
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 230px;
    z-index: 10;
    transform-origin: top;
    transform: scaleY(0);
    visibility: hidden;
    opacity: 0;
    background: linear-gradient(180deg, #ffffff 0%, #e7e7e7 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.nav-header .menu li:hover > .sub-menu{
    opacity: 1;
    transform: none;
    visibility: visible;
    transition: all .3s ease;
}
.nav-header .menu .sub-menu a:hover {
  background-color: #9b1d45;
  border-left: 4px solid #ce2c4d;
  color: white;
}
.nav-header .menu a:hover{
    color: #bb2946;
}
.nav-header .menu .sub-menu a{
    padding: 6px 24px;
}
.nav-header .menu .sub-menu .dropdown > a{
    padding-right: 15px;
}
.nav-header .menu .sub-menu span{
    background-image: linear-gradient(hsl(0,0%,100%), hsl(0,0%,100%));
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size .5s ease;
}
.nav-header .menu span{
    background-image: linear-gradient(#ce2c4d,#9b1d45);
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: center bottom;
    transition: background-size .5s ease;
}
.nav-header .menu li:hover > a span,
.nav-header .menu .sub-menu li:hover > a span{
    background-size: 100% 2px;
}
.nav-header .menu .sub-menu i{
    transform: rotate(-90deg);
    right: 24px;
}
.nav-header .menu .sub-menu-right{
    left: 100%;
    top: 0;
    /*for making right side sub menu just type left: auto and right: 100%*/
}
/*from here may be not count as nav coding*/
.nav-header-right{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-header-right *{
  margin-left: 5px;
}
.nav-header-right .open-menu-btn, .nav-header-right .open-side-bar{
  display: none;
}
.nav-header-right h2{
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  color: #9b1d45;
}
.nav-header-right .open-menu-btn, .nav-header-right .open-side-bar{
    /* position: absolute; */
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    font-size: 1.5rem;
    color: #821b3c;
    background-color: transparent;
    position: relative;
    cursor: pointer;
    border: none;
    transition: all 0.5s ease;
 }
 .open-menu-btn:hover{
  transform: rotate(180deg) scale(1.2);
}
.open-side-bar:hover{
  color: #501024;
  transform: scale(1.1);
}
/*from here mobile counting started*/
@media (max-width: 1024px){
  .nav-header{
    padding: 12px 0;
 }
 .nav-header-right .open-menu-btn {
  display: inline-flex;
 }
 .nav-header .menu{
    position: fixed;
    right: 0;
    top: 0;
    text-align: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #e7e7e7 100%);;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.5);
  border-radius: 10px;
    padding: 15px 30px 30px;
    overflow-y: auto;
    z-index: 10;
    transform: translateX(100%);
    transition: transform .5s ease;
}
.nav-header .menu .dropdown.active > i{
    transform: rotate(180deg);
    background-color: hsla(0, 0%, 100%, 0.25);
}
.nav-header .menu .dropdown.active > .sub-menu{
    display: block;
}
 .nav-header .menu .head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
 }
.nav-header .menu .close-menu-btn{
    height: 35px;
    width: 35px;
    font-size: 1.5rem;
    color: #821b3c;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
    border: none;

    /* Smooth animation */
    transition: transform 0.5s ease-in-out;
}

.nav-header .menu .close-menu-btn::before,
.nav-header .menu .close-menu-btn::after{
    content: "";
    position: absolute;
    width: 80%;
    height: 2px;
    background-color: #821b3c;
}

.nav-header .menu .close-menu-btn::before{
    transform: rotate(45deg);
}

.nav-header .menu .close-menu-btn::after{
    transform: rotate(-45deg);
}

/* Rotate + scale on hover */
.nav-header .menu .close-menu-btn:hover{
    transform: rotate(180deg) scale(1.2);
}

    .nav-header .menu.open{
        transform: none;
    }
  .nav-header .menu > ul > li{
    display: block;
}
 .nav-header .menu > ul > li:not(:last-child){
    margin-right: 0;
 }
  .nav-header .menu li{
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.25);}
     
 .nav-header .menu > ul > li > a{
    padding: 12px 0;
 }
 .nav-header .menu > ul > .dropdown > a{
    padding-right: 10px;
 }
  .nav-header .menu i{
    height: 30px;
    width: 30px;
    border: 1px solid hsls(0, 0%, 100%, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
    top: 7px;
  }
   .nav-header .menu .sub-menu{
    position: static;
    transform: none;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    padding: 0;
    transition: none;
    width: 100%;
    display: none;
   }
    .nav-header .menu .sub-menu li:last-child{
    border: none;
    }
    .nav-header .menu .sub-menu a{
    padding: 12px 0 12px 15px;
    }
    .nav-header .menu .sub-menu .sub-menu a{
    padding-left: 30px;}
    .nav-header .menu .sub-menu .sub-menu .sub-menu a{
    padding-left: 45px;}
    .nav-header .menu .sub-menu span{
        background-image: none;
    }
    .nav-header .menu .sub-menu i{
        right: 0px;
        transform: none;
    }   
 }
 
 /* ================= FOOTER ================= */

.site-footer {
  background: #6a102c; /* light black / dark */
  padding: 60px 20px 30px;
  color: #fff;
  position: relative;
  z-index: 20;
}

.footer-container {
  max-width: 1800px;
  margin: 0 auto;
  padding-inline: 25px;
}

/* Main Title */
.footer-title {
  text-align: center;
  color: #ffffff;
  font-size: 3rem;
  margin-bottom: 16px;
}

/* Divider */
.footer-divider {
  border: none;
  height: 1px;
  background: #ffffff;
  margin: 24px 0;
}

/* Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

/* Column Headings */
.footer-col h2 {
  color: #ffffffd0;
  font-size: 1.3rem;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

/* Underline style */
.footer-col {
  border-left: 2px solid #ffffffd0;
  padding-left: 5px;
}
.footer-col:first-child{
  border-left: none;
}
.footer-col h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60%;
  height: 2px;
  background: #ffffffd0;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-col a:hover,
.footer-col a:focus {
  color: #F0C993;
}

/* Bottom copyright */
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #cccccc;
  margin-top: 20px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-col:nth-child(4) {
    border-left: none;
  }
}

@media (max-width: 768px) {
  .footer-title {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-col:nth-child(3){
    border-left: none;
  }
  .footer-col:nth-child(4) {
    border-left: 2px solid #f99720d0;
  }
}

@media (max-width: 480px) {
  .footer-title {
    font-size: 1.7rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-col{
    border-left: none;
    border-bottom: 2px solid #f99720d0;
    padding-bottom: 25px;
  }
  .footer-col:nth-child(4) {
    border: none;
  }
}
/* Section isolation */
.cmf-section {
  background: #fff;
  padding: 70px 20px;
  display: flex;
  justify-content: center;
}

/* Wrapper */
.cmf-form-wrapper {
  max-width: 720px;
  width: 100%;
}

/* Heading */
.cmf-heading {
  font-size: 32px;
  font-weight: 700;
  color: #501024;
  margin-bottom: 12px;
}

/* Description */
.cmf-description {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 35px;
}

/* Form */
.cmf-form {
  width: 100%;
}

/* Field group */
.cmf-field {
  margin-bottom: 20px;
}

/* Inputs */
.cmf-input,
.cmf-textarea {
  width: 100%;
  padding: 16px 14px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #e3e3e3;
  background: #fff;
  color: #501024;
  transition: all 0.3s ease;
}

/* Placeholder */
.cmf-input::placeholder,
.cmf-textarea::placeholder {
  color: #999;
}

/* Focus state */
.cmf-input:focus,
.cmf-textarea:focus {
  border-color: #e91e63;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.12);
  outline: none;
}

/* Submit button */
.cmf-btn-gradient {
  width: 100%;
  padding: 18px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  border: none;
  border-radius: 10px;
  background: linear-gradient(
    to right,
    #A02149 0%,
    #e91e63 50%,
    #ce2c4d 100%
  );
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 22px rgba(206, 44, 77, 0.35);
  position: relative;
  overflow: hidden;
}

/* Shine animation */
.cmf-btn-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.05)
  );
  transition: left 0.6s ease;
}

/* Hover effects */
.cmf-btn-gradient:hover::before {
  left: 100%;
}

.cmf-btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(233, 30, 99, 0.45);
}

/* Active state */
.cmf-btn-gradient:active {
  transform: translateY(-1px);
}


/* Mobile responsiveness */
@media (max-width: 768px) {
  .cmf-heading {
    font-size: 26px;
  }
}


/* ==================== side bar with content section ==================== */
        .main-wrapper {
            display: flex;
            width: 100%;
            min-height: calc(100vh - 200px);
        }

        /* ==================== LEFT SIDEBAR (Fixed) ==================== */
        .sidebar {
            position: fixed;
            left: 0;
            top: 0;
            bottom: 0;
            width: 300px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-right: 1px solid rgba(168, 85, 247, 0.1);
            box-shadow: 0 10px 40px rgba(168, 85, 247, 0.1);
            z-index: 5;
            display: flex;
            flex-direction: column;
            transform: translateX(-100%);
            transition: transform 0.5s ease-out;
            margin-top: 140px; /* Initial margin - will be controlled by JS */
            margin-bottom: 0; /* Will be controlled by JS */
        }

        .sidebar.open {
            transform: translateX(0);
        }

        /* Mobile: Full height sidebar */
        @media (max-width: 1279px) {
            .sidebar {
                top: 0 !important;
                bottom: 0 !important;
                margin-top: 0 !important;
                margin-bottom: 0 !important;
                height: 100vh !important;
                border-radius: 0;
                z-index: 1000 !important;
                width: 300px !important;
            }
            .nav-header-right .open-side-bar {
                display: inline-flex;
            }
        }

        /* Desktop: Keep dynamic margins */
        @media (min-width: 1280px) {
            .sidebar {
                transform: translateX(0);
            }
        }

        /* Sidebar Header */
        .sidebar-header {
            padding: 20px;
            border-bottom: 1px solid rgba(168, 85, 247, 0.1);
        }

        .header-content {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .header-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .header-text h2 {
            font-size: 18px;
            font-weight: 700;
            color: #1f2937;
            line-height: 1.2;
        }

        .lesson-count {
            font-size: 12px;
            color: #ce2c4d;
            font-weight: 600;
        }

        /* Progress Bar */
        .progress-container {
            margin-top: 16px;
        }

        .progress-info {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            margin-bottom: 6px;
        }

        .progress-info span:first-child {
            color: #6b7280;
        }

        .progress-percent {
            font-weight: 700;
            color: #821B3B;
        }

        .progress-bar {
            height: 8px;
            background: rgba(168, 85, 247, 0.1);
            border-radius: 999px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            width: 35%;
            background: linear-gradient(90deg, #a855f7, #ce2c4d);
            border-radius: 999px;
            transition: width 0.7s ease-out;
        }

        /* Sidebar Content (Scrollable) */
        .sidebar-content {
            flex: 1;
            overflow-y: auto;
            padding: 12px;
        }

        .sidebar-content::-webkit-scrollbar {
            width: 6px;
        }

        .sidebar-content::-webkit-scrollbar-track {
            background: transparent;
            margin: 8px 0;
        }

        .sidebar-content::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #ce2c4d, #ec4899);
            border-radius: 10px;
        }

        .sidebar-content::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #9333ea, #ce2c4d);
        }

        .lessons-nav {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        /* Lesson Links */
        .lesson-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px;
            border-radius: 12px;
            text-decoration: none;
            color: #4b5563;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .lesson-link:hover {
            background: rgba(168, 85, 247, 0.05);
            color: #1f2937;
        }

        .lesson-link.active {
            background: linear-gradient(135deg, #ce2c4d, #9233eacb);
            color: white;
            box-shadow: 0 4px 6px rgba(168, 85, 247, 0.3);
            transform: scale(1.02);
        }

        .lesson-link.active .lesson-number {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .lesson-number {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: rgba(168, 85, 247, 0.1);
            color: #ce2c4d;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            transition: all 0.3s;
        }

        .lesson-link:hover .lesson-number {
            background: rgba(168, 85, 247, 0.2);
        }

        .lesson-title {
            font-size: 14px;
            font-weight: 500;
            line-height: 1.3;
        }

        .lesson-link.active::after {
            content: '';
            position: absolute;
            right: 12px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: white;
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* Sidebar Footer */
        .sidebar-footer {
            padding: 16px;
            border-top: 1px solid rgba(168, 85, 247, 0.1);
            background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent);
            text-align: center;
        }

        .footer-label {
            font-size: 12px;
            color: #6b7280;
        }

        .footer-current {
            font-size: 14px;
            font-weight: 600;
            color: #ce2c4d;
        }
        /* Close button for mobile sidebar */
        .sidebar-close-btn {
            display: none; /* Hidden on desktop */
            position: absolute;
            top: 15px;
            right: 15px;
            width: 36px;
            height: 36px;
            background: rgba(168, 85, 247, 0.1);
            border: none;
            border-radius: 8px;
            color: #ce2c4d;
            font-size: 20px;
            cursor: pointer;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .sidebar-close-btn:hover {
            background: rgba(168, 85, 247, 0.2);
            transform: rotate(90deg);
        }

        .sidebar-close-btn i {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Show close button only on mobile */
        @media (max-width: 1279px) {
            .sidebar-close-btn {
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }
        /* ==================== OVERLAY ==================== */
        .overlay {
            position: fixed;
            inset: 0;
            top: 0px;
            background: rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(4px);
            z-index: 500;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        @media (min-width: 1280px) {
            .overlay {
                display: none;
            }
        }

        /* ==================== MAIN CONTENT AREA ==================== */
        .content-wrapper {
            flex: 1;
            display: flex;
            margin-left: 0;
            transition: margin-left 0.5s ease-out;
        }

        @media (min-width: 1280px) {
            .content-wrapper {
                margin-left: 300px;
            }
        }

        /* ==================== RIGHT SIDEBAR (Ads) ==================== */
        .right-sidebar {
            width: 280px;
            padding: 20px;
            background: #f9fafb;
            border-left: 1px solid #e5e7eb;
            flex-shrink: 0;
        }

        .ad-box {
            background: linear-gradient(135deg, #a855f7, #ce2c4d);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            color: white;
            text-align: center;
        }

        .ad-box h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .ad-box p {
            font-size: 0.9rem;
            opacity: 0.9;
            text-align: justify;
            text-align-last: left;
            margin-bottom: 15px;
        }

        .ad-box .ad-btn {
            background: white;
            color: #ce2c4d;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .ad-box .ad-btn:hover {
            transform: scale(1.05);
            background: #821b3c;
            color: white;
        }

        .ad-placeholder-side, .ad-placeholder-flat {
            background: #e5e7eb;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9ca3af;
            font-size: 14px;
            margin-bottom: 20px;
        }
        .ad-placeholder-side {min-height: 250px;}
        .ad-placeholder-flat {min-height: 100px;}

        /* Mobile content adjustments */
        @media (max-width: 768px) {
            .right-sidebar {
                display: none;
            }
            .main-content {
                padding: 20px 15px;
            }
            .main-content h1 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 350px) {
            .nav-header-right h2{
              /* display: none; */
              font-size: 0.9rem;
            }
            .logo img {
              max-height: 60px;
            }
        }
        @media (max-width: 270px) {
            .logo img {
              max-height: 40px;
            }
            .nav-header-right h2 {
              display: none;
            }
        }
/* Main Lesson Page Decoration */
.container_button
{
  margin: 0px;padding: 0px;box-sizing: border-box;text-align: center;width: 100%;display:inline-block;
}
		.prev {
			float: left;
		}
		.next {
			float: right;
		}
a.one {
  margin: 10px;position: relative;display: inline-block;color: rgb(255, 255, 255);background: #ce2c4d;padding: 10px 30px;font-size: 18px;letter-spacing: 1.6px;text-decoration: none;text-transform: uppercase;transition: .5s;transition-delay: .8s;border-radius: 8px;font-family: 'Poppins', sans-serif;
}
@media (max-width: 768px) {
  a.one {padding: 10px 20px; font-size: 1rem;}
}
.one:hover
{
  color: #ff4c60;text-shadow: 0 0 5px #ff4c60;letter-spacing: 4px;transition-delay: 1ms;background: #501024;
}
.one:active
{
  color: #ffffff;text-shadow: 0 0 5px #ff4c60;letter-spacing: 6px;transition-delay: 1ms;background: #ff4c60;
}
   a.one:visited {
   color:#fff;
   }
.one span
{
  position: absolute;display: block;background: #ff4c60;box-shadow: 0 0 5px #ff4c60;
}
.one span:nth-child(1)
{
  left: 0;top: 0;width: 50.5%;height: 2px;transform: scaleX(0);transition: transform .5s;transform-origin: left;
}
.one:hover span:nth-child(1)
{
  transform: scaleX(1);transform-origin: right;
}
.one span:nth-child(2)
{
  right: 0;bottom: 0;width: 50.5%;height: 2px;transform: scaleX(0);transition: transform .5s;transform-origin: right;
}
.one:hover span:nth-child(2)
{
  transform: scaleX(1);transform-origin: left;
}
.one span:nth-child(3)
{
  right: 0;bottom: 0;width: 2px;height: 100%;transform: scaleY(0);transition: transform .5s;transform-origin: top;transition-delay: .4s;
}
.one:hover span:nth-child(3)
{
  transform: scaleY(1);transform-origin: bottom;
}
.one span:nth-child(4)
{
  left: 0;top: 0;width: 2px;height: 100%;transform: scaleY(0);transition: transform .5s;transform-origin: bottom;transition-delay: .4s;
}
.one:hover span:nth-child(4)
{
  transform: scaleY(1);transform-origin: top;
}
.one span:nth-child(5)
{
  right: 0;top: 0;width: 50.5%;height: 2px;transform: scaleX(0);transition: transform .5s;transform-origin: left;transition-delay: .8s;
}
.one:hover span:nth-child(5)
{
  transform: scaleX(1);transform-origin: right;
}
.one span:nth-child(6)
{
  left: 0;bottom: 0;width: 50.5%;height: 2px;transform: scaleX(0);transition: transform .5s;transform-origin: right;transition-delay: .8s;
}
.one:hover span:nth-child(6)
{
  transform: scaleX(1);transform-origin: left;
}

/* content formatting codes */
.example-red.example-box {
    border-left: 6px solid #d72f4e;
    background: #f5f9ff;
}
.example-red.example-title {
        color: #d72f4e;
}
.example-red.example-result {
        background: #d72f4e;
}
.example-red.example-highlight {
        background: #fee8e8;
}
.example-blue.example-box {
    border-left: 6px solid #1a73e8;
    background: #f5f9ff;    
}
.example-blue.example-title {
        color: #1a73e8;
}
.example-blue.example-result {
        background: #1a73e8;
}
.example-blue.example-highlight {
        background: #e8f0fe;
}
.example-box, .addoninfo {
    max-width: 100%;
    padding: 22px 26px;
    margin-block: 15px;
    border-radius: 12px;
    font-family: "Segoe UI", Tahoma, sans-serif;
    box-shadow: 0 12px 30px rgba(26, 115, 232, 0.12);
}
.example-title, .addoninfo > h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}
.example-content, .addoninfo > p {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
}
.example-highlight {
    padding: 10px 14px;
    border-radius: 8px;
    margin: 12px 0;
}
.example-result {
    margin-top: 16px;
    padding: 14px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
}
/* Coloring Section */
.lesson-heading {
    background: linear-gradient(135deg, #d72f4e, #630db3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.headings {
  margin-top: 1.5rem;
  width: fit-content;
  margin-bottom: 1.25rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #e2e8f0;
  position: relative;
}
.headings::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,#1a73e8, #630db3, #d72f4e);
}
.red, .marker-red.list-num li::before, .marker-red.list-upper-roman li::before, .marker-red.list-lower-roman li::before, .marker-red.list-upper-alpha li::before, .marker-red.list-lower-alpha li::before, .marker-red.list-disc li::before, .marker-red.list-circle li::before, .marker-red.list-arrow li::before, .red-list.list-num li, .red-list.list-upper-roman li, .red-list.list-lower-roman li, .red-list.list-upper-alpha li, .red-list.list-lower-alpha li, .red-list.list-disc li, .red-list.list-circle li, .red-list.list-arrow li {color: #d72f4e;}
.blue, .marker-blue.list-num li::before, .marker-blue.list-upper-roman li::before, .marker-blue.list-lower-roman li::before, .marker-blue.list-upper-alpha li::before, .marker-blue.list-lower-alpha li::before, .marker-blue.list-disc li::before, .marker-blue.list-circle li::before, .marker-blue.list-arrow li::before, .blue-list.list-num li, .blue-list.list-upper-roman li, .blue-list.list-lower-roman li, .blue-list.list-upper-alpha li, .blue-list.list-lower-alpha li, .blue-list.list-disc li, .blue-list.list-circle li, .blue-list.list-arrow li {color: #073868;}
.orange, .marker-orange.list-num li::before, .marker-orange.list-upper-roman li::before, .marker-orange.list-lower-roman li::before, .marker-orange.list-upper-alpha li::before, .marker-orange.list-lower-alpha li::before, .marker-orange.list-disc li::before, .marker-orange.list-circle li::before, .marker-orange.list-arrow li::before, .orange-list.list-num li, .orange-list.list-upper-roman li, .orange-list.list-lower-roman li, .orange-list.list-upper-alpha li, .orange-list.list-lower-alpha li, .orange-list.list-disc li, .orange-list.list-circle li, .orange-list.list-arrow li {color: #f99720d0}
.purple, .marker-purple.list-num li::before, .marker-purple.list-upper-roman li::before, .marker-purple.list-lower-roman li::before, .marker-purple.list-upper-alpha li::before, .marker-purple.list-lower-alpha li::before, .marker-purple.list-disc li::before, .marker-purple.list-circle li::before, .marker-purple.list-arrow li::before, .purple-list.list-num li, .purple-list.list-upper-roman li, .purple-list.list-lower-roman li, .purple-list.list-upper-alpha li, .purple-list.list-lower-alpha li, .purple-list.list-disc li, .purple-list.list-circle li, .purple-list.list-arrow li {color: #630db3;}
.light-red {color: #E95263}
.white {color:white}
.black {color: #2f3031;}
.bg-white {background;:white}
.bg-red {background: #d72f4e;}
.bg-blue {background: #1a73e8;}
.bg-orange {background: #f99720d0}
.bg-purple {background: #630db3;}
.bg-light-orange {background: #FDCCB1;}
.bg-light-red {background: #E95263;}

/* Fonts sizing */
.font-1, h1 {font-size: 2rem;}
.font-2, h2 {font-size: 1.5rem;}
.font-3, h3 {font-size: 1.3rem;}
.font-4, h4 {font-size: 1.1rem;}
.font-5, p, h6, h5 {font-size: 1rem;}

/* weight */
.weight-1 {font-weight: 700;}
.weight-2 {font-weight: 600;}
.weight-3 {font-weight: 500;}
.weight-4 {font-weight: 400;}
.weight-5 {font-weight: 300;}

/* addoninfo borders */
.addoninfo.addon-blue {border-left: 6px solid #1a73e8;background: #ebf3fd; text-align: justify; text-align-last: left;}
.addon-blue :is(h1, h2, h3, h4, h5, h6), .content-section.section-blue :is(h1, h2, h3, h4, h5, h6), .addon-blue > blockquote::before {color: #1a73e8;}
.addoninfo.addon-red {border-left: 6px solid #d72f4e;background: #ffd6dd; text-align: justify; text-align-last: left;}
.addon-red :is(h1, h2, h3, h4, h5, h6), .content-section.section-red :is(h1, h2, h3, h4, h5, h6), .addon-red > blockquote::before {color: #d72f4e;}
.addoninfo.addon-purple {border-left: 6px solid #630db3;background: #f3e7ff; text-align: justify; text-align-last: left;}
.addon-purple :is(h1, h2, h3, h4, h5, h6), .content-section.section-purple :is(h1, h2, h3, h4, h5, h6), .addon-purple > blockquote::before {color: #630db3;}
.addoninfo.addon-orange {border-left: 6px solid #de8212;background: #ffefdcd0; text-align: justify; text-align-last: left;}
.addon-orange :is(h1, h2, h3, h4, h5, h6), .content-section.section-orange :is(h1, h2, h3, h4, h5, h6), .addon-orange > blockquote::before {color: #d0780c;}
.addoninfo.addon-green {border-left: 6px solid #2b870f;background: #e4f5df; text-align: justify; text-align-last: left;}
.addon-green :is(h1, h2, h3, h4, h5, h6), .content-section.section-green :is(h1, h2, h3, h4, h5, h6), .addon-green > blockquote::before {color: #2b870f;}
.content-section :is(h1, h2, h3, h4, h5, h6) {margin-bottom: 12px;}
.content-section.section-blue {background: #ebf3fd;}
.content-section.section-red {background: #ffd6dd;}
.content-section.section-purple {background: #f3e7ff;}
.content-section.section-orange {background: #ffefdcd0;}
.content-section.section-green {background: #e4f5df;}
/* Main Content */
.main-content {
        flex: 1;
        padding: 30px;
        min-height: calc(100vh - 200px);
        background: #fff;
        color: #2f3031;
}

.main-content h1 {
        font-size: 2rem;
        margin-bottom: 20px;
}

.main-content p {
        line-height: 1.7;
        margin-bottom: 15px;
}

.content-section {
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 25px;
        border: 1px solid #e8eef9;
        text-align: justify;
        text-align-last: left;
}

.content-section h2 {
        margin-bottom: 15px;
}
/* List Modifications */
.list-num, .list-upper-alpha, .list-lower-alpha, .list-upper-roman, .list-lower-roman, .list-circle, .list-disc, .list-arrow, .list-sub {
    list-style: none;
    padding-left: 0;
}
.list-num > li, .list-upper-alpha > li, .list-lower-alpha > li, .list-upper-roman > li, .list-lower-roman > li, .list-circle > li, .list-disc > li, .list-arrow > li, .list-sub > li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.list-num .li-body, .list-upper-alpha .li-body, .list-lower-alpha .li-body, .list-upper-roman .li-body, .list-lower-roman .li-body, .list-circle .li-body, .list-disc .li-body, .list-arrow .li-body, .list-sub .li-body {
  display: block;
}
.list-num .li-body > *, .list-upper-alpha .li-body > *, .list-lower-alpha .li-body > *, .list-upper-roman .li-body > *, .list-lower-roman .li-body > *, .list-circle .li-body > *, .list-disc .li-body > *, .list-arrow .li-body > *, .list-sub .li-body > *{
  margin-top: 6px;
}
.list-num .li-body > *:first-child, .list-upper-alpha .li-body > *:first-child, .list-lower-alpha .li-body > *:first-child, .list-upper-roman .li-body > *:first-child, .list-lower-roman .li-body > *:first-child, .list-circle .li-body > *:first-child, .list-disc .li-body > *:first-child, .list-arrow .li-body > *:first-child, .list-sub .li-body > *:first-child {
  margin-top: -5px;
}
.list-num > li::before, .list-upper-alpha > li::before, .list-lower-alpha > li::before, .list-upper-roman > li::before, .list-lower-roman > li::before, .list-circle > li::before, .list-disc > li::before, .list-arrow > li::before, .list-sub > li::before {
  font-weight: 600;
  min-width: 28px;
  text-align: right;
}
.list-num {counter-reset: item;}
.list-upper-alpha {counter-reset: alpha1;}
.list-lower-alpha {counter-reset: alpha2;}
.list-upper-roman {counter-reset: roman1;}
.list-lower-roman {counter-reset: roman2;}

.list-num li {counter-increment: item;}
.list-upper-alpha > li {counter-increment: alpha1;}
.list-lower-alpha > li {counter-increment: alpha2;}
.list-upper-roman > li {counter-increment: roman1;}
.list-lower-roman > li {counter-increment: roman2;}

.list-num li::before {content: counter(item) ". ";}
.list-upper-alpha > li::before {content: counter(alpha1, upper-alpha) ". ";}
.list-lower-alpha > li::before {content: counter(alpha2, lower-alpha) ". ";}
.list-upper-roman > li::before {content: counter(roman1, upper-roman) ". ";}
.list-lower-roman > li::before {content: counter(roman2, lower-roman) ". ";} 

.list-circle li::before {content: "\25CB";}
.list-disc li::before {content: "\25AA";}
.list-arrow li::before {content: "\25BA";}

/* Reset */
.list-color ul, .list-color ol {
    margin: 0;
    font-family: "Segoe UI", Tahoma, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    text-align: justify;
    text-align-last: left;
}

/* Nested indentation */
.sub-list-1{margin-left: -14px!important;}
.sub-list-2{margin-left: -20px!important;}
.sub-list-4{margin-left: 14px!important;}
.sub-list-5{margin-left: 20px!important;}
.sub-list-3{margin-left: -24px!important;}
.sub-list-6{margin-left: 24px!important;}
/* Smooth look */
.list-color li {
    margin-bottom: 8px;
    padding-left: 0px;   /* visual breathing space */
}

.list-soft li {
    padding: 3px 4px;
    border-radius: 8px;
}

.list-soft li:hover {
    background: rgba(0, 0, 0, 0.04);
}
@media (max-width: 768px) {
    .list-color ul,
    .list-color ol {
        padding-left: 0px;   /* gentle inset from screen edge */
    }
}
/* Status badge used for simple showing buttons */
.status {
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.status.denied {
    background: rgba(215, 47, 78, 0.15);
    color: #d72f4e;
}

.status.approved {
    background: rgba(26, 115, 232, 0.15);
    color: #1a73e8;
}

/* Table Wrapper */
.table-scroll-fix {
    width: 100%;
    max-width: 82vw;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}
.table-wrapper-red,
.table-wrapper-blue {
    width: max-content;        /* 🔑 stop shrinking */
    min-width: 100%;
}
.table-wrapper-blue {
    box-shadow: 0 12px 30px rgba(47, 109, 215, 0.15);
}
.table-wrapper-red {
    box-shadow: 0 12px 30px rgba(215, 47, 78, 0.15);
}

/* Table */
.modern-table-red, .modern-table-blue {
    width: auto;
    border-collapse: collapse;
    min-width: 700px;
}

/* Header */
.modern-table-red thead th, .modern-table-blue thead th {
    color: #fff;
    padding: 16px 16px;
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
}
.modern-table-blue thead th {
    background: #1a73e8;
}
.modern-table-red thead th {
    background: #d72f4e;
}

/* Body cells */
.modern-table-red tbody td, .modern-table-blue tbody td {
    padding: 12px 16px;
    font-size: 0.9rem;
    text-align: justify;
    text-align-last: left;
    color: #333;
    border-bottom: 1px solid #eee;
}

.modern-table-blue tbody tr {
    border-bottom: 2px solid #1a73e89e;
}
.modern-table-red tbody tr {
    border-bottom: 2px solid #ce2c4c81;
}

/* Hover effect */
.modern-table-red tbody tr:hover {
    background: #d72f4e;
}
.modern-table-red tbody tr:hover td {
    color: white;
}
.modern-table-blue tbody tr:hover {
    background: #1a73e8;
}
.modern-table-blue tbody tr:hover td {
    color: white;
}

/* Rounded corners */
.modern-table-red thead th:first-child,
.modern-table-blue thead th:first-child {
    border-top-left-radius: 14px;
}
.modern-table-red thead th:last-child,
.modern-table-blue thead th:last-child {
    border-top-right-radius: 14px;
}

/* Mobile responsive - reduce padding in parent too */
@media (max-width: 768px) { 
    .modern-table-red thead th, .modern-table-blue thead th,
    .modern-table-red tbody td, .modern-table-blue tbody td {
        padding: 16px 10px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {  
    .modern-table-red thead th, .modern-table-blue thead th,
    .modern-table-red tbody td, .modern-table-blue tbody td {
        padding: 12px 8px;
        font-size: 0.8rem;
    }
}
.image-center {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 24px 0;
}
/* another table that is more responsive */
.my-fix-table {
  border-collapse: collapse;
  width: 100%;
  margin: 5px;
  box-shadow: -1px -1px 5px 4px #ddd;
  font-size: 16px;
  border-color: #fff;
  font-family: 'Poppins', sans-serif;
}

.my-fix-table th, .my-fix-table td {
  text-align: left;
  padding: 12px;
  border: none;
  color: #2f3031;
  text-align: justify;
}

.my-fix-table tr {
  border-bottom: 1px solid #ddd;
}
	.my-fix-table tr th {
		background-color: #E63C4F;
        color: white;
		cursor: default;
	}
	.my-fix-table tr:nth-child(odd) {
		background-color: #FDCCB1;
	}
/* Thumbnail */
.image-center img {
    max-width: 100%;
    cursor: zoom-in;
    border-radius: 12px;
    transition: transform 0.35s ease;
}

/* Overlay state */
.image-center.active {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

/* Zoom animation */
.image-center.active img {
    max-width: 90%;
    max-height: 90%;
    transform: scale(1);
    cursor: zoom-out;
    animation: zoomIn 0.35s ease;
}

/* Close button */
.image-close {
    display: none;
}

.image-center.active .image-close {
    display: flex;
    position: absolute;
    top: 20px;
    right: 25px;
    width: 44px;
    height: 44px;
    font-size: 26px;
    color: #fff;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Animations */
@keyframes zoomIn {
    from { transform: scale(0.85); }
    to   { transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.quote {
    position: relative;
    margin: 2rem 0;
    padding: 2rem 2rem 2rem 3rem;
    
}

blockquote::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 4rem;
    opacity: 0.3;
    font-family: Georgia, serif;
}
.do-you-know {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  margin: 1.5rem 0;
}
.do-blue {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid #93c5fd;
    color: #1e40af;
}
.do-green {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #86efac;
    color: #166534;
}
.do-orange {
    background: linear-gradient(135deg, #fefce8, #fef9c3);
    border: 1px solid #dfc541;
    color: #7a4509;
}
.do-red {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 1px solid #fca5a5;
    color: #7f1d1d;
}
.do-purple {
    background: linear-gradient(135deg, #faf5ff, #f3e8ff);
    border: 1px solid #d8b4fe;
    color: #5b21b6;
}
strong {
    font-weight: 600;
    color: #1e293b;
}
/* Coming Soon Section */
.cmsk-coming-soon {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f7f7fb, #efe7f5);
    padding: 40px 20px;
}

.cmsk-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.cmsk-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Image */
.cmsk-image-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.cmsk-image {
    max-width: 220px;
    width: 100%;
    height: auto;
}

/* Text */
.cmsk-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.cmsk-description {
    font-size: 1.1rem;
    color: #555555;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Status */
.cmsk-status-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 30px;
    background: #f3f0ff;
}

.cmsk-status-dot {
    width: 10px;
    height: 10px;
    background: #6c4ce2;
    border-radius: 50%;
    animation: cmsk-pulse 1.5s infinite;
}

.cmsk-status-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #6c4ce2;
}

/* Animation */
@keyframes cmsk-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cmsk-title {
        font-size: 2rem;
    }

    .cmsk-description {
        font-size: 1rem;
    }

    .cmsk-content {
        padding: 40px 20px;
    }
}