@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root{
    --maincolor:#e0569f;
    --secondcolor:#e0569f;
    --thirdcolor:#e0569f;
    --textcolor:#4A5764;
    --white:#ffffff;
    --grey-50:#f8fafc;
    --grey-100:#e5e7eb;
    --grey-300:#9ca3af;
    --grey-500:#6b7280;
    --grey-900:#111827;
    --pink:#e0569f;
    --magenta:#e0569f;
    --pink-soft:rgba(224,86,159,0.14);
    --pink-wash:rgba(224,86,159,0.08);
    --grad-accent: linear-gradient(90deg,#e0569f,#f9a8d4);
    --radius-lg: 24px;
    --radius-sm: 16px;
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --ease: cubic-bezier(0.22,1,0.36,1);
    --font-heading: "Inter", sans-serif;
}
*{
    margin:0; 
    padding:0;
    box-sizing: border-box;
    outline: none; 
    border:none;
    text-decoration: none;
    text-transform: capitalize;
    transition:all .2s linear;
    font-family: "Inter", sans-serif;
    
}

html{
    font-size: 70%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body {
    font-size: 1.8rem;
    line-height: 1.75;
    color: var(--textcolor);
    background: linear-gradient(180deg, #ffffff 0%, #fffdfd 100%);
}

body, p, li, a, span, button, label, input, textarea, select {
    font-size: inherit;
}

section, .section, .main-about, .hero-section {
    padding-block: clamp(4.5rem, 7vw, 6.5rem);
}

.container {
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
}

.section,
.main-about,
.hero-section {
    padding-inline: clamp(1.5rem, 4vw, 7rem);
}

.hero-copy h1 {
    font-size: clamp(3.2rem, 4.8vw, 4.8rem);
    line-height: 1.1;
}

.hero-copy h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.2;
}

.hero-copy p,
.about-copy p,
.entity-desc,
.director-bio,
.section-desc,
.section-head p {
    font-size: 1.75rem;
    line-height: 2.9rem;
}

.about-copy h2,
.section-head h2,
.section-heading,
.about-heading {
    font-size: clamp(2.5rem, 3.4vw, 3.4rem);
    line-height: 1.2;
}

.nav-menu li a,
.btn,
.about-point,
.entity-name,
.director-name,
.director-role,
.entity-tag {
    font-size: 1.7rem;
}

header {
    border-bottom: 1px solid #e5e7eb;
    padding: 0 24px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 40px;
}

.social-icons {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: 0;
}

 .logo {
    width: 150px;
}
.logo img{
    width: 100%;
}

nav {
      flex-grow: 1;
      margin: 0 40px;
    }
    ul.nav-menu {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 16px; 
      padding: 0;
      margin: 0;
      align-items: center;
    }
    ul.nav-menu li a {
      font-weight: 500;
      font-size: 1.6rem;
      padding: 10px 14px;
      border-radius: 10px;
      transition: background-color 0.3s ease, color 0.3s ease;
      display: inline-block;
      color: #1f2937;
    }
    ul.nav-menu li a:hover,
    ul.nav-menu li a:focus-visible {
      background-color: #ede9fe;
      color: #e0569f;
      outline: none;
    }

.social-icons {
    margin-left: auto;
      display: flex;
      gap: 24px;
      align-items: center;
    }
    .social-icons a {
      display: inline-flex;
      width: 24px;
      height: 24px;
      transition: fill 0.3s ease;
    }
    .social-icons a:hover svg,
    .social-icons a:focus-visible svg {
      fill: #e0569f;
      outline: none;
    }
    .social-icons svg {
      width: 100%;
      height: 100%;
      fill: #e0569f; 
      flex-shrink: 0;
    }

 @media (max-width: 768px) {
      header {
        flex-wrap: wrap;
        height: auto;
        padding: 16px 24px;
        gap: 12px;
        justify-content: center;
      }
      nav {
        order: 3;
        width: 100%;
        margin: 0;
      }
      ul.nav-menu {
        justify-content: space-around;
        gap: 12px;
      }
      .logo {
        order: 1;
        flex-grow: 1;
        text-align: center;
      }
      .social-icons {
        order: 2;
        width: 100%;
        justify-content: center;
        gap: 32px;
      }
    }

.main-home {
    position: relative;
    height: 100vh; /* or any specific height */
    overflow: hidden;
}

#myVideo {
    position: absolute;
    top: 10px;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: 100%;
    z-index: -1; /* Send video behind content */
    object-fit: cover; /* Keeps aspect ratio and covers entire area */
}

.home {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 40px;
    color: white;
}

Optional styles for better readability on video
.home-left-content, .home-right-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.home{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.home .home-left-content{
    flex: 1 1 40rem;
}

.home-left-content span{
    font-size: 2rem;
    color: var(--maincolor);
    padding: 1rem 0;
    font-weight: bolder;
}
.home-left-content h2{
    font-size: 48px;
    margin: 1rem 0;
    
}
.home-left-content p{
    font-size: 1.7rem;
    color: var(--textcolor);
    line-height: 3rem;
}

.home-btn{
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}
.home-btn a{
    display: inline-block;
    padding: 1.5rem 3rem;
    background-color: var(--maincolor);
    font-size: 1.7rem;
    color: white;
    transition: 0.5s ease;
}
.home-btn a:hover{
    padding: 1.5rem 2.5rem;
}


.homebtnsec{
    background:transparent !important;
    color: var(--textcolor) !important;
    border: 1px solid var(--maincolor);
}
.homebtnsec:hover{
    background-color: var(--secondcolor) !important;
    color: white !important;
}

.home .home-right-content{
    flex: 1 1 50rem;
}

.home .home-right-content img{
    width: 100%;
    margin-top: 4rem;
}

.technology{
    padding: 3rem 7%;
}

.main-technology{
    display: grid;
               grid-template-columns: 400px 400px 400px;
		grid-template-rows: 400px; 
        grid-gap: 50px;
    justify-content: space-between;
    flex-wrap: initial;
    margin-top: -100px;
}
.inner-technology1 .tech-link {
    display: block;
    text-decoration: none;
    color: inherit;
}


/* Institutions section */
.institution-section .container { padding: 4rem 7%; }
.institution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
  align-items: stretch;
}
.institution-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--grey-100);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.institution-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.institution-image {
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex: 0 0 auto;
}
.institution-body, .entity-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex: 1 1 auto;
}
.entity-name { font-size: 1.9rem; font-weight:700; color:var(--grey-900); }
.entity-desc { font-size: 1.4rem; color:var(--grey-700); line-height:1.75; }
.entity-cta { margin-top:auto; font-weight:700; color:var(--magenta); display:inline-flex; align-items:center; gap:8px; font-size:1.05rem; }
.entity-tag { font-size: 0.9rem; color: var(--pink); font-weight:700; text-transform:uppercase; letter-spacing:0.12em; }
@media (max-width: 1100px) { .institution-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .institution-grid { grid-template-columns: 1fr; } .entity-desc { font-size: 1.05rem; } .institution-image { aspect-ratio: 3/2; } }

/* About us section  */
.inner-technology1 .tech-box {
  padding: 3rem 3rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	background-image: url(images/medi.png);
    cursor: pointer;
    aspect-ratio: 1 / 1;
    border-radius: 50px;
    border: 1.5px solid #e0569f;
    z-index: 1;
    display: relative;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.2s;
}

.inner-technology1 .tech-link:hover .tech-box {
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    cursor: pointer;
}

.inner-technology2 .tech-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.inner-technology2 .tech-box {
    flex: 1 1 300px;
    padding: 3rem 3rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	background-image: url(images/awc.png);
    cursor: pointer;
    aspect-ratio: 1 / 1;
    border-radius: 50px;
    border: 1.5px solid #e0569f;
    z-index: 1;
    display: relative;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.2s;
}

.inner-technology2 .tech-link:hover .tech-box {
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    cursor: pointer;
}

.inner-technology3 .tech-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.inner-technology3 .tech-box {
    flex: 1 1 300px;
    padding: 3rem 3rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	background-image: url(images/cca.png);
    cursor: pointer;
    aspect-ratio: 1 / 1;
    border-radius: 50px;
    border: 1.5px solid #e0569f;
    z-index: 1;
    display: relative;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.2s;
}

.inner-technology3 .tech-link:hover .tech-box {
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    cursor: pointer;
}

.inner-technology4 .tech-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.inner-technology4 .tech-box {
    flex: 1 1 300px;
    padding: 3rem 3rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	background-image: url(images/an.png);
    cursor: pointer;
    aspect-ratio: 1 / 1;
    border-radius: 50px;
    border: 1.5px solid #e0569f;
    z-index: 1;
    display: relative;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.2s;
}

.inner-technology4 .tech-link:hover .tech-box {
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    cursor: pointer;
}

.inner-technology5 .tech-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.inner-technology5 .tech-box {
    flex: 1 1 300px;
    padding: 3rem 3rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	background-image: url(images/ap.png);
    cursor: pointer;
    aspect-ratio: 1 / 1;
    border-radius: 50px;
    border: 1.5px solid #e0569f;
    z-index: 1;
    display: relative;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.2s;
}

.inner-technology5 .tech-link:hover .tech-box {
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    cursor: pointer;
}
.entities { background: var(--grey-50); position: relative; }
.entities::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--grey-200), transparent);
}

.entities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.entity-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--grey-100); transition: all 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.entity-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--pink-soft);
}

.entity-img {
  width: 100%; aspect-ratio: 16/10; background: var(--grey-50);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: var(--grey-300); font-size: 0.75rem; position: relative; overflow: hidden;
}
.entity-img svg { width: 32px; height: 32px; opacity: 0.3; }

/* Gradient overlay on hover */
.entity-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(155,27,108,0.05));
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.entity-card:hover .entity-img::after { opacity: 1; }

.entity-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }

.entity-tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--pink); margin-bottom: 8px;
}
.entity-name {
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600;
  color: var(--grey-900); line-height: 1.3; margin-bottom: 10px;
}
.entity-desc {
  font-size: 1.4rem; color: var(--grey-500); line-height: 2.25rem; flex: 1;
}
.entity-cta {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
  font-size: 0.8rem; font-weight: 600; color: var(--magenta);
  transition: gap 0.3s var(--ease);
}
.entity-card:hover .entity-cta { gap: 10px; }
.entity-cta svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.entity-card:hover .entity-cta svg { transform: translateX(2px); }

/* About us section  */
.main-about{
    padding: 5rem 7%;
    width: 100%;
    background: linear-gradient(180deg, rgba(224,86,159,0.08), rgba(255,255,255,0.96));
    position: relative;
    overflow: hidden;
}
.main-about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(224,86,159,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.main-about .about-heading{
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: clamp(3.8rem, 4vw, 6rem);
    font-weight: 800;
    color: var(--maincolor);
    margin-bottom: 3rem;
    letter-spacing: 1px;
}
.about-grid{
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(320px, 1.1fr) minmax(320px, 1fr);
    gap: 3rem;
    align-items: center;
}
.about-visual{
    display: flex;
    justify-content: center;
}
.about-image-card{
    width: 100%;
    max-width: 520px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(224,86,159,0.14);
    background: #fff;
}
.about-image-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.image-caption{
    padding: 1.5rem 1.8rem;
    font-size: 1.3rem;
    color: var(--grey-700);
    background: #fff;
}
.about-copy{
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}
.about-subtitle{
    display: inline-block;
    font-size: 1.15rem;
    color: var(--pink);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.about-copy h2{
    font-size: clamp(3rem, 3.5vw, 4.4rem);
    line-height: 1.05;
    color: var(--grey-900);
    margin: 0;
}
.about-copy p{
    font-size: 1.72rem;
    color: var(--textcolor);
    line-height: 2.9rem;
    margin: 0;
}
.about-highlights{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.about-highlight{
    background: rgba(224,86,159,0.08);
    border-radius: 22px;
    padding: 1.35rem 1.5rem;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
}
.about-highlight strong{
    font-size: 1.4rem;
    color: var(--grey-900);
}
.about-highlight span{
    font-size: 1rem;
    color: var(--grey-600);
    line-height: 1.6;
}
.aboutsec-content{
    line-height: 2.5rem !important;
}
.about-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--white); border-radius: var(--radius-lg); padding: 22px 28px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--grey-100);
  display: flex; align-items: center; gap: 16px;
}
.about-float-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--pink-wash); display: flex; align-items: center; justify-content: center;
}
.about-float-icon svg { width: 22px; height: 22px; color: var(--magenta); }
.about-float .num { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--grey-900); display: block; line-height: 1.1; }
.about-float .lbl { font-size: 0.75rem; color: var(--grey-500); }

.about-text .section-heading { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; color: var(--grey-500); font-size: 0.98rem; line-height: 1.8; }

.about-points {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; margin-top: 32px;
}
.about-point {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 500; color: var(--grey-700);
}
.about-point .check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: var(--pink-wash); display: flex; align-items: center; justify-content: center;
}
.about-point .check svg { width: 11px; height: 11px; color: var(--magenta); }

@media (max-width: 980px) {
    .about-grid{ grid-template-columns: 1fr; }
    .about-highlights{ grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .main-about{ padding: 3rem 4%; }
    .about-heading{ font-size: 3.8rem; }
    .about-copy p{ font-size: 1.45rem; line-height: 2.4rem; }
}
.directors {
  background: var(--white);
  position: relative;
  padding: 5rem 7%;
  border-top: 6px solid rgba(224,86,159,0.12);
  box-shadow: inset 0 1px 0 rgba(224,86,159,0.08);
  margin-bottom: 5rem;
}

.directors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 340px));
  gap: 24px;
  align-items: start;
  justify-content: center;
  width: min(100%, 1060px);
  margin: 0 auto;
}

.director-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--grey-100); transition: all 0.4s var(--ease);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.director-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--pink-soft); }

.director-photo {
  width: 100%; aspect-ratio: 1/1; background: var(--grey-50);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: var(--grey-300); font-size: 0.72rem; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--grey-100);
  flex: 0 0 auto;
}
.director-photo span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--white);
}
.director-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 12px;
}
.director-photo svg { width: 52px; height: 52px; opacity: 0.25; }

/* Accent bar below photo */
.director-photo::after {
  content: ''; position: absolute; bottom: 0; left: 20%; right: 20%; height: 2px;
  background: var(--grad-accent); border-radius: 2px; opacity: 0;
  transition: all 0.4s var(--ease);
}
.director-card:hover .director-photo::after { opacity: 1; left: 10%; right: 10%; }

.director-body { padding: 24px 22px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1 1 auto; justify-content: flex-start; }

.director-role {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--pink); margin-bottom: 10px;
}
.director-name {
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600;
  color: var(--grey-900); margin-bottom: 10px;
}
.director-bio {
  font-size: 1.28rem; color: var(--grey-500); line-height: 2.2rem; margin-bottom: 18px;
}
.director-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 600; color: var(--magenta);
  padding: 7px 18px; border: 1.5px solid var(--grey-200); border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
}
.director-link:hover { border-color: var(--magenta); background: var(--pink-wash); }
.director-link svg { width: 13px; height: 13px; }

.director-photo--placeholder {
  background: linear-gradient(135deg, rgba(224,86,159,0.08), rgba(224,86,159,0.02));
  color: var(--pink);
  font-size: 1rem;
  font-weight: 600;
}

.director-photo--placeholder span {
  padding: 0.75rem 1rem;
  border: 1px dashed rgba(224,86,159,0.35);
  border-radius: 12px;
}

.section-head-center {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--pink);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-heading {
  font-size: clamp(3.2rem, 4vw, 5.4rem);
  color: #111;
  margin-bottom: 1rem;
  line-height: 1.05;
}

.section-desc {
  font-size: 1.6rem;
  color: var(--textcolor);
  line-height: 2.45rem;
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 1080px) {
  .directors-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .directors-grid { grid-template-columns: 1fr; }
}

.events-section {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.events-section h2 {
    font-size: 5rem;
    margin-bottom: 32px;
    color: #e0569f;
    letter-spacing: 1px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

.event-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s;
}

.event-item:hover {
    transform: translateY(-6px) scale(1.03);
}

.event-item img,
.event-item video {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background: #222;
    border-bottom: 1px solid #eee;
}

.event-item video {
    background: #000;
}

.event-caption {
    padding: 14px 10px;
    font-size: 1.1rem;
    color: #444;
    background: #f1f1f1;
    width: 100%;
    text-align: center;
}

/* ...existing code... */
.main-review{
    padding: 2.5rem 7%;
    width: 100%;
    background-image: url(images/bg1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Lighten effect using overlay */
    position: relative;
}
.main-review::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.5); /* adjust opacity for lightness */
    backdrop-filter: blur(4px); /* adjust px for blur strength */
    z-index: 0;
    pointer-events: none;
}
.main-review > * {
    position: relative;
    z-index: 1;
}


.review-heading{
    text-align: center;
}

.review-heading h1{
    font-size: 40px;
    color: var(--maincolor);
    padding-bottom: 3rem;
}
.review-inner-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    text-align: center;
   padding: 4rem 0;
    
}
.review-box{
    flex: 1 1 300px;
    padding: 1rem;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 0 50px 0 0;
    border: 2px solid var(--maincolor);
    cursor: pointer;
    transition: 1s;
}
.review-box:hover{
 
    border-radius: 50px 0 0 0;
    
}

.review-box img{
    border-radius: 100%;
    width: 100px;
    transition: 1s;
}
.review-box:hover img{
    transform: scale(1.1);
}
.review-stars{
    padding: 1rem 0;
}
.review-stars i{
    font-size: 2rem;
    color: var(--secondcolor);
    margin: 0.2rem;
}
.review-box h2{
    font-size: 2rem;
    padding-top: 2rem;
}
.review-box p{
    font-size: 1.5rem;
    padding: 1rem 1rem;
    padding-bottom: 2rem;
    line-height: 2.5rem;
}
#chatbot-widget {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
}

#chatbot-icon {
    background: grey;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    cursor: pointer;
    transition: 0.2s;
}

#chatbot-icon:hover {
    background: #e0569f;
}

#chatbot-popup {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    overflow: hidden;
    animation: chatbot-pop 0.2s;
}

@keyframes chatbot-pop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.chatbot-header {
    background: #e0569f;
    color: #fff;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.1rem;
}

#chatbot-close {
    cursor: pointer;
    font-size: 1.3rem;
}

.chatbot-body {
    padding: 18px 16px;
}

.chatbot-questions {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
}

.chatbot-questions li {
    background: #f1f1f1;
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.chatbot-questions li:hover {
    background: #e3eafc;
}
.main-footer {
    padding: 2rem 7%;
    background-color: #e0569f;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.footer-content {
    flex: 1 1 200px;
    text-align: center;
    color: white;
    font-size: 1.4rem;
}
.footer-content h1 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}
.footer-contact {
    margin: 0.5rem 0;
    color: #fff;
    font-size: 1.4rem;
    line-height: 2.2rem;
}
.footer-contact i {
    margin-right: 8px;
    color: white;
}

@media (max-width:768px) {

    html{
        font-size: 55%;
    }

    .right-icons{
        display: flex;
        align-items: center;
    }

    #menu-bars{
        
        display: initial;
    }

    header{
        padding: 2rem;
        background-color: white;
    }

    .navbar{
        position: absolute;
        top: 100%;
        left: -100%;
        height: 100vh;
        width: 100%;
        background-color: white;
    }
    .navbar.active{
        left: 0;
    }
    .navbar a{
        display: block;
        margin: 2rem;
        padding: 1rem;
        border: 1px solid var(--textcolor);
    }

    .home .home-left-content{
        margin-top: 50px;
        padding: 2rem;
    }

    .home .home-left-content h2{
        font-size: 30px;
    }
    .main-technology{
        
        margin-top: 0;
    }

    .about-right-content h2{
        font-size: 20px;
    }
    
}

body {
  background: linear-gradient(180deg, #fdfefe 0%, #f7f8fc 100%);
  color: #1f2937;
  font-size: 1.8rem;
  line-height: 1.75;
}
.container {
  width: min(1240px, calc(100% - 4rem));
  margin: 0 auto;
}
header {
  background: #fff;
  box-shadow: 0 12px 32px rgba(15,23,42,0.06);
}
.logo img {
  max-height: 62px;
}
ul.nav-menu li a {
  color: #1f2937;
}
.hero-section {
  position: relative;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(17,24,39,0.72), rgba(17,24,39,0.28)), url('images/ahc.jpeg') center/cover no-repeat;
  color: #fff;
}
.hero-inner {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 6rem 0;
}
.hero-copy {
  max-width: 640px;
  z-index: 1;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.4rem;
}
.hero-copy h1 {
  font-size: clamp(3.6rem, 5vw, 5.6rem);
  line-height: 1.02;
  margin-bottom: 1.4rem;
}
.hero-copy p {
  font-size: 1.55rem;
  max-width: 620px;
  line-height: 2.6rem;
  color: rgba(255,255,255,0.92);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.45rem 2.4rem;
  border-radius: 999px;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: #e0569f;
  color: #fff;
}
.btn-secondary {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
}
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(224,86,159,0.2);
}
.section-head {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(2.8rem, 3vw, 4rem);
  margin: 1rem 0 1rem;
  line-height: 1.1;
}
.institution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 1.8rem;
}
.institution-card {
  display: block;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 22px 50px rgba(15,23,42,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.institution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(15,23,42,0.14);
}
.institution-image {
  height: 250px;
  background-size: cover;
  background-position: center;
}
.institution-body {
  padding: 2.2rem;
}
.institution-body h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: #111827;
}
.institution-body p {
  font-size: 1.45rem;
  color: #4b5563;
  line-height: 2.2rem;
  margin: 0;
}
.main-footer {
  padding: 4rem 7%;
  background: #111827;
  color: #f8fafc;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.footer-brand h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #fff;
}
.footer-brand p,
.footer-contact p {
  font-size: 1.45rem;
  line-height: 2.4rem;
  color: rgba(248,250,252,0.82);
}
.footer-links h3,
.footer-contact h3 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: #fff;
}
.footer-links a {
  display: block;
  color: rgba(248,250,252,0.86);
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.6rem;
  color: rgba(248,250,252,0.72);
}
@media (max-width: 1080px) {
  .institution-grid { grid-template-columns: repeat(2, minmax(240px, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .hero-inner { padding: 4rem 0; }
  .hero-copy h1 { font-size: 3.4rem; }
  .hero-copy p { font-size: 1.4rem; }
}
@media (max-width: 620px) {
  html { font-size: 55%; }
  header { padding: 16px 20px; }
  ul.nav-menu { flex-wrap: wrap; gap: 12px; }
  .hero-inner { padding: 3rem 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; justify-content: center; }
}
