/* Reset */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Segoe UI, sans-serif;
}

/* Header */
.site-header{
  width:100%;
  background:#ffffff;
  border-bottom:1px solid #eaeaea;
}

/* Container */
.header-container{
  max-width:1200px;
  margin:auto;
  padding:14px 20px;
  display:flex;
  align-items:center;
}

/* Logo */
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:20px;
  font-weight:600;
  color:#111;
}

.logo img{
  height:60px;
  width:auto;
  object-fit:contain;
}

/* HERO BANNER */
.hero-banner{
  width:100%;
  height:768px; /* matches banner height */
  background-image:url("../images/images/10/bg.webp"); /* 1366 x 768 image */
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  display:flex;
  align-items:center;
}

/* Container */
.hero-container{
  max-width:1200px;
  margin:auto;
  width:100%;
  padding:20px;
  display:flex;
  justify-content:flex-end; /* form space on right */
}

/* Empty Form Area */
.form-space{
  width:420px;
  /* height:450px; */
  text-align: center;
  background: white;
  border-radius: 9px;
  /* border:1px dashed rgba(255,255,255,0.6); */
  backdrop-filter:blur(5px);
}

/* Responsive */
@media(max-width:900px){

  .hero-banner{
    height:auto;
    padding:60px 0;
  }

  .hero-container{
    justify-content:center;
  }

  .form-space{
    width:90%;
    height:320px;
  }
}

.mega-marquee { 
    background: linear-gradient(90deg, #dc2626, #ef4444); 
    color:#fff; 
    padding: 18px 0; 
    overflow:hidden; 
}
.mega-track { 
    display:flex; 
    gap: 48px; 
    white-space: nowrap; 
    will-change: transform; 
    align-items:center; 
}
.mega-track .item { 
    font-size: clamp(1.1rem, 2.6vw, 2rem); 
    font-weight: 700; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}
.mega-track .item i { font-size: 1.5rem; }
.mega-sep { opacity:.6; }

    .ReviewsMarquee { padding: 60px 0 80px; }
    .section-title h2 {

      text-align: center;
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .rm-wrap {
      position: relative;
      overflow: hidden;
    }

    .rm-row {
      display: flex;
      gap: 22px;
      white-space: nowrap;
    }

    .rm-track {
      display: inline-flex;
      gap: 22px;
    }

    .rm-card {
      width: 480px;
      max-width: 90vw;
      background: #fff;
      border: 1px solid rgba(0,0,0,.1);
      border-radius: 14px;
      padding: 20px 22px;
      display: flex;
      flex-direction: column;
      white-space: normal;
    }

    .rm-head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px;
    }

    .rm-avatar {
        border-radius: 50% !important;
      border:1px #555 solid !important;
        width: 60px;
        height: 60px !important;
      object-fit: cover;
    }

    .rm-name { font-weight: 600; }
    .rm-meta { font-size: .9rem; color: var(--gray); }

    .rm-text {
      font-size: .95rem;
      line-height: 1.55;
      margin: 5px 0 12px;
    }

    .linkedin {
      font-size: .95rem;
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: auto;
      color: #0A66C2;
      text-decoration: none;
      font-weight: 500;
    }

    .container { width:100%; max-width:1200px; margin:0 auto; padding:0 20px; }
    .section-title {  text-align:center; }
    .section-title h2 { font-size: clamp(1.8rem, 4vw, 2.2rem); color:#0b1220; font-weight:700; }
    .section-title p { color: var(--gray); margin-top: 8px; }

/* Specializations */
.specializations { padding: 60px 0 100px; background: var(--light); position: relative; isolation: isolate; overflow-x: hidden; }
.specializations .container { overflow: hidden; padding-bottom: 20px; }
.spec-rail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 0; }
@media (max-width: 900px) { .spec-rail { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .spec-rail { grid-template-columns: 1fr; } }
.spec-card { min-width: 0; width: 100%; background:#fff; border:1px solid rgba(15,23,42,0.08); border-radius:20px; padding-top:24px; box-shadow:0 10px 30px rgba(0,0,0,0.06); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; position: relative; overflow: hidden; display:flex; flex-direction:column; }
.spec-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); border-color: rgba(59,130,246,0.4); }
.spec-card.active { border-color: rgba(59,130,246,0.5); box-shadow: 0 0 0 3px rgba(59,130,246,0.15), 0 20px 50px rgba(0,0,0,0.12); }
.spec-card > * { padding: 0 24px; }
.spec-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: #dc2626; color: #ffffff; margin-bottom: 16px; margin-top: 24px; font-size: 1.3rem; align-self: flex-start; padding: 0; margin-left: 24px; }
.spec-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 12px; white-space: normal; color:#0b1220; }
.spec-card p { font-size: 0.9rem; color: var(--gray); line-height:1.6; margin-bottom: 16px; }
.pill-tags { display:flex; flex-wrap:wrap; gap:8px; margin: 0 0 12px; }
.pill-tag { font-size:.8rem; padding:6px 10px; border-radius:999px; background: rgba(15,23,42,0.08); color:#0b1220; }
.spec-image { width: 100%; height: 200px; overflow: hidden; margin: 8px 0 0 0; padding: 0; border-radius: 0; }
.spec-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.spec-card:hover .spec-image img { transform: scale(1.05); }
.spec-card .learn-more { display:inline-flex; align-items:center; gap:8px; padding:6px 12px; font-size:.85rem; margin: 16px 24px 24px; background: rgba(15,23,42,0.06); color:#0b1220; text-decoration:none; border-radius:999px; font-weight:500; transition: all .3s ease; width:fit-content; }
.spec-card .learn-more:hover { background:#0b1220; color:#fff; transform: translateX(4px); }

   .about-section {
  padding: 80px 0;
  background: #fafafa;
  font-family: "Raleway", sans-serif;
}

.about-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* IMAGE SIDE */
.about-image {
  position: relative;
  flex: 1;
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
}

/* FLOATING CARD */
.floating-card {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: #fff;
  padding: 24px;
  max-width: 260px;
  border-top: 4px solid #eb3535;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.floating-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
}

.floating-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* CONTENT SIDE */
.about-content {
  flex: 1;
}

.tagline {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #333;
  font-size: 13px;
  margin-bottom: 20px;
}

.about-content h2 {
  /* font-family: "Cinzel", serif; */
  font-size: 38px;
  margin: 0 0 15px;
}

.subtitle {
  color: #666;
  margin-bottom: 25px;
}

/* FEATURES */
.features {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.features ul {
  list-style: none;
  padding: 0;
}

.features li {
  margin-bottom: 10px;
  font-weight: 600;
  position: relative;
  padding-left: 18px;
}

.features li::before {
  content: "•";   
  position: absolute;
  left: 0;
  color: #eb3535;
  font-size: 18px;
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  background: #eb3535;
  color: #fff;
  padding: 12px 26px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 40px;
}

/* STATS */
.stats {
  display: flex;
  gap: 40px;
}

.stat span {
  font-family: "Cinzel", serif;
  font-size: 42px;
  color: #eb3535;
  font-weight: 700;
}

.stat p {
  margin-top: 6px;
  font-weight: 600;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }

  .floating-card {
    right: 10px;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }
}
/* Section */
.accman-edge{
  padding:90px 5vw;
  background:linear-gradient(180deg,#f8fafc 0%,#ffffff 100%);
  text-align:center;
}

/* Header */
.edge-header{
  max-width:900px;
  margin:0 auto 60px auto;
}

.edge-header h2{
  font-size:clamp(2.2rem,4vw,3rem);
  font-weight:700;
  margin-bottom:12px;
}

.edge-header span{
  color:var(--red);
}

.edge-header p{
  color:var(--muted);
  font-size:1.05rem;
  max-width:700px;
  margin:auto;
  line-height:1.6;
}

/* Bento Grid */
.bento-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,320px));
  gap:26px;
  justify-content:center;
  margin:auto;
}

/* Cards */
.bento-card{
  background:#ffffff;
  border-radius:22px;
  padding:32px 28px;
  box-shadow:0 14px 35px rgba(15,23,42,0.08);
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  transition:all 0.35s ease;
  position:relative;
  overflow:hidden;
  min-height:220px;
}

/* Hover glow */
.bento-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,transparent,rgba(177,18,38,0.05));
  opacity:0;
  transition:opacity .35s ease;
}

.bento-card:hover::after{
  opacity:1;
}

.bento-card:hover{
  transform:translateY(-10px);
  box-shadow:0 22px 50px rgba(15,23,42,0.12);
}

/* Icon */
.bento-icon{
  font-size:2rem;
  color:var(--red);
  margin-bottom:18px;
}

/* Text */
.bento-card h3{
  font-size:1.2rem;
  font-weight:600;
  color:var(--red);
  margin-bottom:10px;
}

.bento-card p{
  font-size:0.95rem;
  line-height:1.6;
  color:var(--muted);
  margin:0;
}

/* Large Cards */
.span-2{
  grid-column:span 2;
}

/* Mobile */
@media(max-width:900px){
  .span-2{
    grid-column:span 1;
  }
}


/*Placement*?
/* SECTION */
.placement-section{
  padding:80px 0;
  background:#f8fafc;
  text-align:center;
  overflow:hidden;
}

.section-title h3{
  font-size:32px;
  margin-bottom:6px;
}

.section-title p{
  color:#64748b;
  margin-bottom:50px;
}

/* SLIDER WRAPPER */
.logo-slider{
  overflow:hidden;
  width:100%;
  position:relative;
  margin:30px 0;
}

/* TRACK */
.logo-track{
  display:flex;
  align-items:center;      /* Ã¢Å“â€¦ vertical center */
  gap:80px;
  width:max-content;
  animation:scroll 30s linear infinite;
}

/* reverse row */
.logo-slider.reverse .logo-track{
  animation-direction:reverse;
}

/* LOGOS */
.logo-track img{
  height:55px;             /* Ã¢Å“â€¦ uniform logo size */
  width:auto;
  object-fit:contain;
  flex-shrink:0;
  filter:grayscale(100%);
  opacity:.75;
  transition:all .35s ease;
}

/* hover effect */
.logo-track img:hover{
  filter:grayscale(0%);
  opacity:1;
  transform:scale(1.08);
}

/* animation */
@keyframes scroll{
  from { transform:translateX(0); }
  to { transform:translateX(-50%); }
}

/* pause on hover */
.logo-slider:hover .logo-track{
  animation-play-state:paused;
}

/* MOBILE */
@media(max-width:768px){
  .logo-track{
    gap:45px;
  }

  .logo-track img{
    height:40px;
  }
}

.logo-slider::before,
.logo-slider::after{
  content:"";
  position:absolute;
  top:0;
  width:120px;
  height:100%;
  z-index:2;
  pointer-events:none;
}

.logo-slider::before{
  left:0;
  background:linear-gradient(to right,#f8fafc,transparent);
}

.logo-slider::after{
  right:0;
  background:linear-gradient(to left,#f8fafc,transparent);
}

/* ===============================
   PROGRAM LIST SECTION
================================ */

.program-list-section{
    font-family:'Poppins',sans-serif;
    padding:90px 20px;
    position:relative;
    overflow:hidden;
    background:#000;
}

/* Background Image (30% opacity) */
.program-list-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("https://accman.in/wp-content/uploads/2026/02/Constitution.webp")
               center/cover no-repeat;
    opacity:100%;
    z-index:0;
}

/* Original Dark Gradient Overlay */
.program-list-section::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 80% 50%, rgba(235,53,53,.18), transparent 45%),
        linear-gradient(
            90deg,
            rgba(0,0,0,.96) 0%,
            rgba(0,0,0,.88) 55%,
            rgba(20,10,20,.92) 100%
        );
    z-index:1;
}

.program-container{
    max-width:1100px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* ================= HEADING ================= */

.program-header{
    text-align:center;
    margin-bottom:50px;
}

.program-header h2{
    font-size:clamp(2rem,4vw,2.6rem);
    font-weight:600;
    color:#ffffff;
    letter-spacing:.5px;
}

.program-header p{
    color:#cfcfcf;
    margin-top:8px;
    font-size:.95rem;
}

/* ================= GRID ================= */

.program-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

@media(max-width:768px){
    .program-grid{
        grid-template-columns:1fr;
        gap:14px;
    }
}

/* ================= LIST CARD ================= */

.program-item{
    position:relative;
    padding:18px 22px;
    border-radius:8px;

    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,0.15);
    transition:.35s ease;
    overflow:hidden;
     display:block;
    text-decoration:none;
    color:inherit;
}

/* Left accent line */
.program-item::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    height:100%;
    width:3px;
    background:#eb3535;
}

/* Glossy shine swipe */
.program-item::after{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );
    transform:skewX(-25deg);
    transition:.7s ease;
}

.program-item:hover::after{
    left:130%;
}

.program-item:hover{
    transform:translateY(-4px);
    border-color:#eb3535;
    box-shadow:0 0 28px rgba(235,53,53,.25);
}

/* ================= TEXT ================= */

.program-type{
    font-size:.75rem;
    color:#9ca3af;
    margin-bottom:3px;
}

.program-title{
    color:#ffffff;
    font-size:1.05rem;
    font-weight:500;
}

/* Arrow */
.program-arrow{
    position:absolute;
    right:16px;
    top:50%;
    transform:translateY(-50%);
    width:28px;
    height:28px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    transition:.3s ease;
}

.program-item:hover .program-arrow{
    border-color:#eb3535;
    color:#fff;
}

@media (max-width:768px){

  .program-list-section{
      padding:55px 14px;
  }

  .program-header{
      margin-bottom:28px;
  }

  .program-header h2{
      font-size:1.6rem;
  }

  .program-header p{
      font-size:.85rem;
  }

  /* tighter grid spacing */
  .program-grid{
      gap:10px;
  }

  /* compact cards */
  .program-item{
      padding:12px 16px;
      border-radius:6px;
  }

  /* smaller PGDM label */
  .program-type{
      font-size:.65rem;
      margin-bottom:2px;
  }

  /* tighter title */
  .program-title{
      font-size:.92rem;
      line-height:1.25;
      padding-right:36px; /* space for arrow */
  }

  /* smaller arrow */
  .program-arrow{
      right:12px;
      width:22px;
      height:22px;
  }

  .program-arrow svg{
      width:18px;
      height:18px;
  }
}


/* ===============================
   FOOTER
=================================*/

.footer{
  background:#0f172a;   /* dark professional navy */
  color:#cbd5e1;
  padding:70px 0 0;
  font-size:15px;
}

.footer a{
  color:#cbd5e1;
  text-decoration:none;
  transition:0.3s ease;
}

.footer a:hover{
  color:#ffffff;
}

/* Footer Logo Area */
.footer-info img{
  max-width:220px;
  height:auto;
}

.footer-info a{
  display:inline-block;
  line-height:1.7;
  color:#94a3b8;
}

/* ===============================
   Bottom Footer
=================================*/

.bottom-footer{
  border-top:1px solid rgba(255,255,255,0.08);
  margin-top:40px;
  padding:20px 0;
}

/* Footer List */
.bottom-footer-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  align-items:center;
}

.bottom-footer-list li p{
  margin:0;
  color:#94a3b8;
  font-size:14px;
}

/* ===============================
   Social Icons
=================================*/

.foo-socials{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  justify-content:flex-end;
  gap:12px;
}

.foo-socials li a{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  color:#fff;
  transition:all .3s ease;
  font-size:15px;
}

.foo-socials li a:hover{
  background:#b11226; /* ACCMAN red */
  transform:translateY(-3px);
}

/* ===============================
   Responsive
=================================*/

@media(max-width:991px){

  .bottom-footer .row{
    text-align:center;
  }

  .bottom-footer-list{
    justify-content:center;
    margin-bottom:15px;
  }

  .foo-socials{
    justify-content:center;
  }
}

@media(max-width:576px){

  .footer{
    padding-top:50px;
  }

  .footer-info{
    text-align:center;
  }

  .footer-info img{
    margin:auto;
  }

}
