  :root{
    --ink:#1A1A18;
    --ink-soft:#4A4A44;
    --parchment:#F7F3EA;
    --parchment-deep:#EFE8D8;
    --canopy:#1B4332;
    --canopy-deep:#10291F;
    --leaf:#2D6A4F;
    --leaf-soft:#E3EEE6;
    --clay:#C2754B;
    --clay-deep:#8F4F2E;
    --clay-soft:#F3E1D3;
    --line:#D8D0BC;
    --white:#FFFDF8;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--parchment);
    color:var(--ink);
    font-family:'Inter',sans-serif;
    line-height:1.6;
  }
  h1,h2,h3,h4{font-family:'Source Serif 4',serif; font-weight:600; color:var(--canopy-deep); letter-spacing:-0.01em;}
  .mono{font-family:'JetBrains Mono',monospace; letter-spacing:0.02em;}
  a{color:inherit; text-decoration:none;}
  img{display:block; max-width:100%;}

  /* ---------- top utility bar ---------- */
  .utility-bar{
    background:#980a1b; color:#D8E5DB;
    font-size:12.5px; font-family:'JetBrains Mono',monospace;
    display:flex; justify-content:space-between; align-items:center;
    padding:6px 40px; letter-spacing:0.03em;
  }
  .utility-bar a{opacity:0.85;}
  .utility-bar a:hover{opacity:1; text-decoration:underline;}

  /* ---------- header / nav ---------- */
  header{
    background:var(--canopy); color:var(--parchment);
    padding:0 40px;
    border-bottom:3px solid var(--clay);
	
  }
  .header-inner{
    display:flex; justify-content:space-between; align-items:center;
    padding:22px 0;
    max-width:1280px; margin:0 auto;
  }
  .brand{display:flex; align-items:center; gap:16px;}
  .crest{
    width:54px; height:54px; border-radius:50%;
    background:var(--parchment); color:var(--canopy);
    display:flex; align-items:center; justify-content:center;
    font-family:'Source Serif 4',serif; font-weight:700; font-size:20px;
    border:2px solid var(--clay);
    flex-shrink:0;
  }
  .brand-text h1{color:var(--parchment); font-size:23px; line-height:1.15; margin-bottom:2px;}
  .brand-text p{font-size:12px; color:#BFD3C6; font-family:'JetBrains Mono',monospace; letter-spacing:0.03em;}
  /*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #e3d5b5;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #F7F3EA;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--canopy);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--clay);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(8, 30, 91, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--canopy);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--clay);
}



.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--clay);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

  /* ---------- hero ---------- */
  .hero{
    position:relative;
    background:linear-gradient(160deg, var(--parchment-deep) 0%, var(--parchment) 55%, var(--leaf) 100%);
    color:#402c54);
    overflow:hidden;
  }
  .hero-inner{
    max-width:1280px; margin:0 auto;
    padding:72px 40px 0;
    display:grid; grid-template-columns:1.1fr 0.9fr; gap:50px; align-items:end;
  }
  .hero-eyebrow{
    font-family:'JetBrains Mono',monospace; font-size:12.5px; letter-spacing:0.12em;
    color:var(--clay-soft); text-transform:uppercase; margin-bottom:18px;
    display:flex; align-items:center; gap:10px;
  }
  .hero-eyebrow::before{content:""; width:28px; height:1px; background:var(--clay);}
  .hero h2{
    color:var(--10291F); font-size:30px; line-height:1.08; font-weight:500;
    max-width:620px; margin-bottom:22px;
  }
  .hero h1{
    color:var(--10291F); font-size:50px; line-height:1.08; font-weight:500;
    max-width:620px; margin-bottom:22px;
  }
  .hero h2 em{font-style:italic; color:#10291F;}
  .hero p.lead{
    font-size:17px; color:#canopy; max-width:540px; margin-bottom:10px; font-weight:400;
  }
  .hero p.lead1{
    font-size:14px; color:#canopy; max-width:540px; margin-bottom:34px; font-weight:400;
  }
  .hero-cta{display:flex; gap:14px; margin-bottom:64px; flex-wrap:wrap;}
  .btn{
    padding:13px 26px; border-radius:3px; font-weight:600; font-size:14px;
    display:inline-flex; align-items:center; gap:8px; transition:all .15s ease;
    border:1.5px solid transparent; cursor:pointer;
  }
  .btn-primary{background:var(--clay); color:var(--white);}
  .btn-primary:hover{background:var(--clay-deep);}
  .btn-ghost{background:var(--leaf); color:var(--white);}
  .btn-ghost:hover{background:rgba(247,243,234,0.12); color:var(--leaf); border-color: var(--leaf);}

  .hero-stats{
    display:grid; grid-template-columns:1fr 1fr; gap:1px;
    background:rgba(247,243,234,0.18);
    border:1px solid rgba(247,243,234,0.18);
    margin-bottom:0;
  }
  .stat{padding:22px 22px; background:rgba(16,41,31,0.35);}
  .stat .num{font-family:'Source Serif 4',serif; font-size:34px; font-weight:600; color:var(--white); line-height:1;}
  .stat .label{font-size:12px; color:#BFD3C6; margin-top:6px; font-family:'JetBrains Mono',monospace; letter-spacing:0.02em;}

.hero-photo-strip{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:2px;
    margin-top:50px;
}

.hero-photo-strip img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
  .ph{
    aspect-ratio:4/3; background:var(--leaf); position:relative; overflow:hidden;
    display:flex; align-items:flex-end;
  }
  .ph::before{
    content:""; position:absolute; inset:0;
    background:repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 2px, transparent 2px 14px);
  }
  .ph span{
    font-family:'JetBrains Mono',monospace; font-size:10.5px; color:#E3EEE6;
    position:relative; z-index:1; line-height:1.3;
  }
  /*.ph.ph1{background:#1F5C42;}
  .ph.ph2{background:var(--clay-deep);}
  .ph.ph3{background:#274E3D;}
  .ph.ph4{background:#3B6D11;}*/

  /* ---------- section shell ---------- */
  section{padding:76px 40px; max-width:1280px; margin:0 auto;}
  .section-head{display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:38px; flex-wrap:wrap; gap:16px;}
  .section-eyebrow{
    font-family:'JetBrains Mono',monospace; font-size:12px; letter-spacing:0.1em; text-transform:uppercase;
    color:var(--clay-deep); margin-bottom:10px; display:flex; align-items:center; gap:10px;
  }
  .section-eyebrow::before{content:""; width:20px; height:1px; background:var(--clay);}
  .section-head h2{font-size:32px;}
  .view-all{font-size:13.5px; font-weight:600; color:var(--leaf); border-bottom:1.5px solid var(--leaf); padding-bottom:2px;}
  .view-all:hover{color:var(--canopy-deep); border-color:var(--canopy-deep);}

  /* ---------- highlights / impact band ---------- */
  .impact{background:var(--canopy-deep); color:var(--parchment);}
  .impact-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:0; border-top:1px solid rgba(247,243,234,0.15);}
  .impact-cell{padding:34px 28px; border-right:1px solid rgba(247,243,234,0.15);}
  .impact-cell:last-child{border-right:none;}
  .impact-cell .icon-row{font-size:22px; color:var(--clay-soft); margin-bottom:14px; font-family:'Source Serif 4',serif;}
  .impact-cell h3{color:var(--white); font-size:17px; margin-bottom:8px;}
  .impact-cell p{font-size:13.5px; color:#BFD3C6;}

  /* ---------- about / what we do ---------- */
  .about-grid{display:grid; grid-template-columns:0.85fr 1.15fr; gap:40px; align-items:start;}
  .about-grid p{color:var(--ink-soft); font-size:15.5px; margin-bottom:8px;}
  .about-grid li{font-size:15.5px; color:var(--ink); margin-bottom:2px; margin-left:15px; }
  .pillars{display:flex; flex-direction:column; gap:0;}
  .pillar{
    display:grid; grid-template-columns:48px 1fr; gap:2px; padding:22px 0;
    border-top:1px solid var(--line);
  }
  .pillar:first-child{border-top:none;}
  .pillar .tag{font-family:'JetBrains Mono',monospace; font-size:13px; color:var(--clay-deep); padding-top:2px;}
  .pillar h4{font-size:14px; margin-bottom:6px;}
  .pillar p{font-size:14px; color:var(--ink-soft); margin-bottom:0;}
  .pillar li{font-size:12px; color:var(--ink-soft); margin-bottom:0;}

  /* ---------- upcoming events ---------- */
  .events-strip{background:var(--leaf-soft);}
  .event-list{display:flex; flex-direction:column; gap:0; border:1px solid var(--line); background:var(--white);}
  .event-row{
    display:grid; grid-template-columns:120px 1fr auto; gap:24px; align-items:center;
    padding:24px 28px; border-bottom:1px solid var(--line);
  }
  .event-row:last-child{border-bottom:none;}
  .event-date{
    font-family:'JetBrains Mono',monospace; text-align:center;
    background:var(--canopy); color:var(--parchment); border-radius:3px; padding:12px 6px;
  }
  .event-date .day{font-size:24px; font-weight:700; display:block; line-height:1;}
  .event-date .mon{font-size:11px; letter-spacing:0.08em; text-transform:uppercase; opacity:0.85;}
  .event-body h4{font-size:17px; margin-bottom:6px;}
  .event-body p{font-size:13.5px; color:var(--ink-soft);}
  .event-body .meta{font-family:'JetBrains Mono',monospace; font-size:12px; color:var(--clay-deep); margin-top:8px; display:flex; gap:16px;}
  .event-status{
    font-size:11.5px; font-weight:600; padding:6px 12px; border-radius:20px; white-space:nowrap;
    background:var(--clay-soft); color:var(--clay-deep); font-family:'JetBrains Mono',monospace;
  }
  .event-status.open{background:var(--leaf-soft); color:var(--leaf);}

  /* ---------- gallery / activities ---------- */
  .gallery-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr; grid-template-rows:auto auto; gap:14px;}
  .gallery-grid .g1{grid-row:span 2;}
  .gcard{
    background:var(--canopy); border-radius:4px; overflow:hidden; position:relative;
    display:flex; flex-direction:column; justify-content:flex-end; min-height:170px;
  }
  .gcard::before{content:""; position:absolute; inset:0; background:repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 16px);}
  .gcard .g1-fill{background:#1F5C42; min-height:380px;}
  .gcard.c2{background:var(--clay-deep);}
  .gcard.c3{background:#274E3D;}
  .gcard.c4{background:#3B6D11;}
  .gcard.c5{background:#2D6A4F;}
  .gcard-tag{
    position:relative; z-index:1; padding:16px;
    color:var(--parchment); font-size:13px; font-weight:600;
  }
  .gcard-tag span{display:block; font-family:'JetBrains Mono',monospace; font-size:11px; font-weight:400; color:#E8C9A8; margin-bottom:4px;}

  /* ---------- news cards ---------- */
  .news-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
  .news-card{border:1px solid var(--line); background:var(--white); display:flex; flex-direction:column;}
  .news-thumb{
    height:160px; background:var(--leaf); position:relative;
    display:flex; align-items:flex-start; justify-content:flex-end; padding:12px;
  }
  .news-thumb span{
    font-family:'JetBrains Mono',monospace; font-size:11px; background:var(--clay); color:var(--white);
    padding:4px 9px; border-radius:2px;
  }
  .news-body{padding:20px 22px; flex:1; display:flex; flex-direction:column;}
  .news-body .news-date{font-family:'JetBrains Mono',monospace; font-size:12px; color:var(--clay-deep); margin-bottom:10px;}
  .news-body h4{font-size:16.5px; margin-bottom:10px; line-height:1.3;}
  .news-body p{font-size:13.5px; color:var(--ink-soft); flex:1; margin-bottom:14px;}
  .news-link{font-size:13px; font-weight:600; color:var(--leaf); border-bottom:1.5px solid var(--leaf); width:fit-content;}

  /* ---------- numbers / why it matters ---------- */
  .why-band{background:var(--clay-soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
  .why-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:40px;}
  .why-grid blockquote{font-family:'Source Serif 4',serif; font-size:19px; font-style:italic; color:var(--canopy-deep); line-height:1.5;}
  .why-grid .who{font-family:'JetBrains Mono',monospace; font-size:12.5px; color:var(--clay-deep); margin-top:14px;}

  /* ---------- newsletter / CTA ---------- */
  .cta-band{
    background:var(--canopy); color:var(--parchment);
     align-items:center;
	
  }
  .cta-band .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}

.cta-band .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.cta-band .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
  .cta-band h2{color:var(--white); font-size:30px; margin-bottom:14px;}

  .subscribe{
    display:flex; gap:0; border:1.5px solid rgba(247,243,234,0.5); border-radius:3px; overflow:hidden;
  }
  .subscribe input{
    flex:1; background:transparent; border:none; color:var(--white); padding:14px 16px; font-size:14px;
  }
  .subscribe input::placeholder{color:#9FB8AB;}
  .subscribe button{
    background:var(--clay); color:var(--white); border:none; padding:14px 22px; font-weight:600; font-size:14px; cursor:pointer;
  }
  .subscribe button:hover{background:var(--clay-deep);}

  /* ---------- footer ---------- */
  footer{background:var(--canopy-deep); color:#BFD3C6; padding:56px 40px 24px;}
  .footer-inner{max-width:1280px; margin:0 auto;}
  .footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:40px; border-bottom:1px solid rgba(247,243,234,0.15);}
  .footer-grid h5{color:var(--parchment); font-size:13px; letter-spacing:0.06em; text-transform:uppercase; font-family:'JetBrains Mono',monospace; margin-bottom:16px; font-weight:500;}
  .footer-grid ul{list-style:none; display:flex; flex-direction:column; gap:10px; font-size:13.5px;}
  .footer-grid ul a:hover{color:var(--white); text-decoration:underline;}
  .footer-bottom{display:flex; justify-content:space-between; padding-top:22px; font-size:12.5px; flex-wrap:wrap; gap:10px;}

  /* ---------- annotation tags for redesign notes ---------- */
  .note{
    background:#FFF6E0; border:1px dashed var(--clay); color:var(--clay-deep);
    font-family:'JetBrains Mono',monospace; font-size:11.5px; padding:3px 9px; border-radius:3px;
    display:inline-block; margin-bottom:10px;
  }

  @media (max-width: 980px){
    .hero-inner{grid-template-columns:1fr;}
    .hero-photo-strip{grid-template-columns:repeat(2,1fr);}
    .about-grid, .impact-grid, .news-grid, .footer-grid{grid-template-columns:1fr 1fr;}
    .gallery-grid{grid-template-columns:1fr 1fr;}
    .gallery-grid .g1{grid-row:span 1;}
    .cta-band{grid-template-columns:1fr;}
    .why-grid{grid-template-columns:1fr;}
    nav ul{display:none;}
  }
  
  /*--------------------------------------------------------------
# elective Section
--------------------------------------------------------------*/

#elective {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url("images/cover1.png") no-repeat;
  background-size: cover;
  padding: 0;
}

#elective .elective-content {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
#elective:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#elective .elective-content h2 {
  color: #F7F3EA;
  margin-bottom: 30px;
  font-size: 50px;
  font-weight: 700;
}

#elective .elective-content h2 span {
  color: #50d8af;
  text-decoration: underline;
}

@media (max-width: 767px) {
  #elective .elective-content h2 {
    font-size: 34px;
  }
}

#elective .elective-content .btn-get-started,
#elective .elective-content .btn-projects {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
}

#elective .elective-content .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#elective .elective-content .btn-get-started:hover {
  background: #2D6A4F;
  border: 2px solid #2D6A4F;
}

#elective .elective-content .btn-projects {
  background: #50d8af;
  border: 2px solid #50d8af;
}

#elective .elective-content .btn-projects:hover {
  background: none;
  color: #50d8af;
}

#elective .elective-slider {
  z-index: 8;
  height: 60vh;
}

#elective .elective-slider::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 7;
}

#elective .elective-slider .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: opacity;
}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
#team {
  padding: 60px 0 60px 0;
}

#team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}

#team .member .member-img {
  position: relative;
  overflow: hidden;
}
#team .member .member-info {
  padding: 25px 15px;
}

#team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 16px;
  color: #222222;
}

#team .member .member-info span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #aaaaaa;
}

#team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

#team .team-item {
  background-color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: background-color ease-in-out 0.3s;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
}
#team .team-item:hover {
  background-color: #fff;
}
#team .team-item time {
  padding-bottom: 5px;
  display: inline-block;
}
#team .team-item .speaker {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  float: left;
  margin: 0 10px 10px 0;
}
#team .team-item .speaker img {
  height: 100%;
  transform: translateX(-50%);
  margin-left: 50%;
  transition: all ease-in-out 0.3s;
}
#team .team-item h4 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
}
#team .team-item h4 span {
  font-style: italic;
  color: #19328e;
  font-weight: normal;
  font-size: 16px;
}
#team .team-item p {
  font-size: 12px;
  font-style: italic;
  color: #152b79;
  margin-bottom: 0;
}
#team .social-icons {
    margin: 0;
    padding: 0;
}

#team .social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin-right: 8px;
    border-radius: 50%;
    background: #a8c0de;      /* Light blue circle */
    text-decoration: none;
    transition: all 0.3s ease;
}

#team .social-icons a img {
    width: 14px;
    height: 14px;
}

#team .social-icons a:hover {
    background: #5b86b0;      /* Darker blue on hover */
    transform: translateY(-2px);
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Elective Page Hero Section
--------------------------------------------------------------*/
#electivepg {
  width: 100%;
  min-height: 100vh;
  position: relative;
  background: url("images/electiveCover.png") center center no-repeat;
  background-size: cover;
  padding: 0;
  display: flex;
    align-items: flex-start;
}

#electivepg .container {
  padding-top: 80px;
}

#electivepg h1 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  color: #074a43;
}

#electivepg h1 span {
  color: #106eea;
}

#electivepg p {
  margin: 10px 0 30px;
  font-size: 20px;
  font-weight: 200;
  line-height: 1.5;
  color: #021715;
  text-align: justify;
}

#electivepg .btn-get-started {
  display: inline-block;
  padding: 10px 28px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: #074a43;
  border-radius: 4px;
  transition: all 0.3s ease;
}

#electivepg .btn-get-started:hover {
  background: #0d8c7f;
}

@media (min-width: 1024px) {
  #electivepg {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #electivepg .container {
    padding-top: 30px;
  }
}

@media (max-width: 768px) {
  #electivepg {
    min-height: 100vh;
    background-position: center;
  }

  #electivepg h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  #electivepg p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 25px;
  }

  #electivepg .btn-get-started {
    font-size: 13px;
    padding: 8px 22px;
  }
}

@media (max-height: 500px) {
  #electivepg {
    min-height: 120vh;
  }
}



/*--------------------------------------------------------------
Elective
--------------------------------------------------------------*/

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-bg {
  background-color: var(--leaf-soft);;
}

.section-header {
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 30px;
  color: #0c2e8a;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

/* activities Section
--------------------------------*/
#activities {
  padding: 40px 0;
}

#activities .box {
  padding: 40px;
  box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
  background: #fff;
  transition: 0.4s;
  height: 100%;
}

#activities .box:hover {
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
}

#activities .box .icon {
  float: left;
}

#activities .box .icon i {
  color: #444;
  font-size: 64px;
  transition: 0.5s;
  line-height: 0;
  margin-top: 34px;
}

#activities .box .icon i:before {
  background: #0c2e8a;
  background: linear-gradient(45deg, #50d8af 0%, #a3ebd5 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#activities .box h4 {
  margin-left: 100px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
}

#activities .box h4 a {
  color: #444;
}

#activities .box p {
  font-size: 14px;
  margin-left: 100px;
  margin-bottom: 0;
  line-height: 24px;
}

@media (max-width: 767px) {
  #activities .box .box {
    margin-bottom: 20px;
  }

  #activities .box .icon {
    float: none;
    text-align: center;
    padding-bottom: 15px;
  }

  #activities .box h4,
  #activities .box p {
    margin-left: 0;
    text-align: center;
  }
}

/* About Section
--------------------------------*/
#about1 {
  padding: 60px 0 30px 0;
}

#about1 .about-img {
  overflow: hidden;
}

#about1 .about-img img {
  margin-left: -15px;
  max-width: 100%;
}

@media (max-width: 768px) {
  #about1 .about-img {
    height: auto;
  }

  #about1 .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#about1 .content h2 {
  color: #0c2e8a;
  font-weight: 700;
  font-size: 36px;
  font-family: "Raleway", sans-serif;
}

#about1 .content h3 {
  color: #555;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
}

#about1 .content p {
  line-height: 26px;
}

#about1 .content p:last-child {
  margin-bottom: 0;
}

#about1 .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #50d8af;
}

#about1 .content ul {
  list-style: none;
  padding: 0;
}

#about1 .content ul li {
  padding-bottom: 10px;
}

/* Our Portfolio Section
--------------------------------*/
#portfolio {
  background: #fff;
  padding: 30px 0;
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 18px 12px 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #f7f7f7;
  border-radius: 4px;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #50d8af;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-item {
  margin-bottom: 30px;
  overflow: hidden;
}

#portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: #50d8af;
  padding: 15px 20px;
}

#portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

#portfolio .portfolio-item .portfolio-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

#portfolio .portfolio-item .portfolio-info .preview-link,
#portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: rgba(255, 255, 255, 0.6);
  transition: ease-in-out 0.3s;
}

#portfolio .portfolio-item .portfolio-info .preview-link:hover,
#portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-info .details-link {
  right: 15px;
}

#portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #50d8af;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #50d8af;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(12, 46, 138, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}
