/* SECTION */
.ct-section{
    max-width:1200px;
    margin:auto;
    padding:60px 20px;
}

/* HEADER */
.ct-header{
    text-align:center;
    margin-bottom:50px;
}

.ct-header h1{
    font-size:36px;
    margin-bottom:10px;
    color:#0b3158;
}

.ct-header p{
    color:#64748b;
}

/* CARDS */
.ct-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-bottom:50px;
}

.ct-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid #0b315852;
    text-align:center;
    transition:0.3s;
    position:relative;
    overflow:hidden;
}

/* GRADIENT TOP BORDER */
.ct-card::before{
    content:"";
    position:absolute;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#96232a,#0b3158);
    top:0;
    left:-100%;
    transition:0.4s;
}

.ct-card:hover::before{
    left:0;
}

.ct-card:hover{
    transform:translateY(-10px);
}

/* ICON */
.ct-icon{
    font-size:32px;
    margin-bottom:15px;
    color:#96232a;
}

/* TEXT */
.ct-card h3{
    margin-bottom:8px;
    color:#0b3158;
}

.ct-card a{
    text-decoration:none;
    color:#64748b;
    transition:0.3s;
}

.ct-card a:hover{
    color:#96232a;
}

/* MAP */
.ct-map{
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    border:4px solid #fff;
}

.ct-map iframe{
    width:100%;
    height:400px;
    border:0;
}

/* RESPONSIVE */
@media(max-width:600px){
    .ct-header h1{
        font-size:28px;
    }
}
    
.acdm-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== Animations ===== */
@keyframes acdm-fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Feature Cards ===== */
/* .acdm-features {
  padding: 60px 0;
} */

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

.acdm-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  animation: acdm-fadeUp 0.6s ease forwards;
  opacity: 0;
}

/* Stagger effect */
.acdm-card:nth-child(1) { animation-delay: 0.1s; }
.acdm-card:nth-child(2) { animation-delay: 0.2s; }
.acdm-card:nth-child(3) { animation-delay: 0.3s; }
.acdm-card:nth-child(4) { animation-delay: 0.4s; }
.acdm-card:nth-child(5) { animation-delay: 0.5s; }
.acdm-card:nth-child(6) { animation-delay: 0.6s; }

.acdm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.acdm-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  height: 60%;
  width: 5px;
  background: linear-gradient(#1f3c88, #b22222);
  border-radius: 5px;
}

.acdm-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #1f3c88;
}

.acdm-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ===== Journey Section ===== */
.acdm-journey {
  padding: 60px 0;
  text-align: center;
}

.acdm-journey h2 {
  margin-bottom: 40px;
  font-size: 28px;
  animation: acdm-fadeUp 0.6s ease forwards;
}

.acdm-journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.acdm-journey-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  animation: acdm-fadeUp 0.6s ease forwards;
  opacity: 0;
}

/* Stagger */
.acdm-journey-card:nth-child(1) { animation-delay: 0.2s; }
.acdm-journey-card:nth-child(2) { animation-delay: 0.3s; }
.acdm-journey-card:nth-child(3) { animation-delay: 0.4s; }
.acdm-journey-card:nth-child(4) { animation-delay: 0.5s; }

.acdm-journey-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.acdm-circle {
  width: 45px;
  height: 45px;
  background: #b22222;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.acdm-journey-card:hover .acdm-circle {
  transform: scale(1.1);
}

.acdm-journey-card h4 {
  margin-bottom: 8px;
}

.acdm-journey-card p {
  font-size: 14px;
  color: #555;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .acdm-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 600px) {
  .acdm-grid,
  .acdm-journey-grid {
    grid-template-columns: 1fr;
  }
}


/* WRAPPER */
.admsn-wrap {
    max-width: 1000px;
    margin: auto;
    padding: 2px 3%;
}

/* TITLE */
.admsn-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.admsn-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #2563eb;
    position: absolute;
    bottom: -10px;
    left: 0;
}

/* INFO BLOCK */
.admsn-info-block {
    border-left: 3px solid #2563eb;
    padding-left: 25px;
    margin-bottom: 50px;
}

.admsn-info-item {
    padding: 18px 0;
    border-bottom: 1px solid #e2e8f0;
    transition: 0.3s;
}

.admsn-info-item:last-child {
    border-bottom: none;
}

.admsn-info-item:hover {
    transform: translateX(6px);
}

/* SCHOOL NAME */
.admsn-info-item h3 {
    font-size: 15px;
    letter-spacing: 0.5px;
    color: #2563eb;
    margin-bottom: 6px;
}

/* PHONE */
.admsn-info-item p {
    font-size: 14px;
    color: #64748b;
}

/* WHY SECTION */
.admsn-why-title {
    font-size: 26px;
    margin-bottom: 25px;
}

.admsn-why-list {
    display: grid;
    gap: 12px;
    margin-bottom: 40px;
}

.admsn-why-item {
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 8px;
    border-left: 4px solid #0f172a;
    font-size: 14px;
    color: #475569;
    transition: 0.3s;
}

.admsn-why-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

/* QUOTE */
.admsn-quote {
    font-style: italic;
    font-size: 17px;
    color: #334155;
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 3px solid #cbd5f5;
}

/* FOOTER */
.admsn-footer p {
    font-size: 14px;
    color: #64748b;
}

.admsn-footer strong {
    display: block;
    margin-top: 6px;
    font-size: 16px;
    color: #0f172a;
}

/* RESPONSIVE */
@media(max-width: 600px) {
    .admsn-title {
        font-size: 24px;
    }

    .admsn-why-title {
        font-size: 22px;
    }
}