.footer{
    background:#174a7c;
    color:white;
    font-family:Arial, sans-serif;
}

.footer-container{
    width:90%;
    margin:auto;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    padding:50px 0;
}

.footer-column{
    width:23%;
}

.footer-column h3{
    color:#66ff99;
    margin-bottom:15px;
}

.footer-column p{
    line-height:1.8;
    font-size:15px;
}

.footer-column a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

.footer-column ul{
    list-style:none;
    padding:0;
}

.footer-column ul li{
    margin-bottom:10px;
    position:relative;
    padding-left:15px;
}

.footer-column ul li::before{
    content:"•";
    color:#66ff99;
    position:absolute;
    left:0;
}

.footer-bottom{
    background:#0d2d63;
    text-align:center;
    padding:15px;
    font-size:14px;
}

/* Responsive */
@media(max-width:900px){
    .footer-column{
        width:48%;
        margin-bottom:30px;
    }
}

@media(max-width:600px){
    .footer-column{
        width:100%;
    }
}








* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.slider {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 300%;
    animation: slide 9s infinite;
}

.slide {
    width: 100%;
    height: 300px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: white;
}
 
 
 
 @keyframes slide {
    0% { transform: translateX(0); }
    33% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}
























/* Reset & Typography */
 body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    gap: 40px; /* Space between image and text */
}

/* Image Styling */
.hero-image {
    flex: 1;
}

.image-frame {
    border: 15px solid #222; /* The "tablet/frame" look */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-frame img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Text Styling */
.hero-text {
    flex: 1.2;
}

.subheadline {
    color: #2e7d32; /* The green color */
    font-size: 1.5rem;
    font-weight: 300;
}

  h1 {
    color: #004d40; /* Darker University green */
    font-size: 3rem;
    margin-top: 0;
    font-weight: 800;
}

.intro-text {
    font-weight: 500;
    margin-bottom: 20px;
}

/* Checkmark List */
.features {
    list-style: none;
    padding: 0;
}

.features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #1b5e20;
    font-weight: 600;
}

.features li::before {
    content: '✔'; /* You can use a FontAwesome icon here instead */
    position: absolute;
    left: 0;
    background: #4caf50;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 500px;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  display: flex;
}

.slide.active {
  display: flex;
}

.content {
  width: 50%;
  padding: 60px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.content p {
  margin-bottom: 20px;
  font-size: 16px;
}

.btn {
  background: yellow;
  color: black;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 10px;
}

.image {
  width: 50%;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Background colors */
.red { background: #e60000; }
.blue { background: #0044cc; }
.green { background: #008060; }

/* Arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
  background: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

/* Dots */
.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 5px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .slide {
    flex-direction: column;
  }
  .content, .image {
    width: 100%;
    height: 50%;
  }
}





body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.stats {
  display: flex;
  justify-content: space-between;
  background: #2e9e1c;
  color: white;
  text-align: center;
}

.stat-box {
  flex: 1;
  padding: 60px 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.stat-box:last-child {
  border-right: none;
}

.stat-box h2 {
  font-size: 40px;
  margin: 0;
  font-weight: bold;
}

.stat-box p {
  font-size: 18px;
  margin-top: 10px;
}

.news-section{
    width:100%;
    padding:60px 5%;
    background:#f5f5f5;
    position:relative;
}

.section-title{
    font-size:38px;
    color:#066b1f;
    margin-bottom:30px;
    font-weight:700;
}

.slider-container{
    overflow:hidden;
}

.news-slider{
    display:flex;
    gap:25px;
    overflow-x:auto;
    scroll-behavior:smooth;
}

.news-slider::-webkit-scrollbar{
    display:none;
}

.news-card{
    min-width:350px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.news-image{
    height:240px;
}

.news-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.news-content{
    padding:22px;
}

.news-title{
    font-size:20px;
    line-height:1.5;
    color:#066b1f;
    margin-bottom:15px;
}

.news-meta{
    display:flex;
    gap:20px;
    color:#777;
    margin-bottom:18px;
}

.news-desc{
    color:#555;
    line-height:1.8;
}

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#066b1f;
    color:#fff;
    cursor:pointer;
}

.prev-btn{
    left:10px;
}

.next-btn{
    right:10px;
}





/* ===== GOOGLE FONT ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:#efefef;
}

/* ===== SECTION ===== */
.key-links-section{
    width:100%;
    padding:60px 8%;
    position:relative;
}

/* ===== TOP LINE ===== */
.top-line{
    width:220px;
    height:4px;
    background:#15803d;
    margin-bottom:25px;
}

/* ===== TITLE ===== */
.section-title{
    text-align:center;
    font-size:55px;
    font-weight:700;
    color:#1e3a5f;
    margin-bottom:50px;
    text-shadow:0 5px 10px rgba(0,0,0,0.25);
}

.section-title span{
    color:#0f9d2f;
}

/* ===== GRID ===== */
.links-container{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap:28px;
    max-width:1100px;
    margin:auto;
}

/* ===== CARD ===== */
.link-card{
    background:linear-gradient(135deg,#14b86e,#0ce30c);
    border-radius:35px;
    padding:45px 25px;
    text-align:center;
    text-decoration:none;
    color:#fff;
    transition:0.4s ease;
    box-shadow:
        0 15px 30px rgba(0,0,0,0.25);
    position:relative;
    overflow:hidden;
}

/* Hover Effect */
.link-card:hover{
    transform:translateY(-10px) scale(1.03);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.3);
}

/* Shine Effect */
.link-card::before{
    content:"";
    position:absolute;
    top:-100%;
    left:-100%;
    width:200%;
    height:200%;
    background:rgba(255,255,255,0.08);
    transform:rotate(25deg);
    transition:0.6s;
}

.link-card:hover::before{
    top:-40%;
    left:-40%;
}

/* ===== ICON ===== */
.link-card i{
    font-size:42px;
    margin-bottom:20px;
    display:block;
}

/* ===== TEXT ===== */
.link-card h3{
    font-size:26px;
    font-weight:500;
    line-height:1.4;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){

    .section-title{
        font-size:40px;
    }

    .link-card{
        padding:35px 20px;
    }

    .link-card h3{
        font-size:22px;
    }
}


/* ===== GOOGLE FONT ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:#efefef;
}

/* ===== SECTION ===== */
.news-section{
    width:100%;
    padding:60px 6%;
}

/* ===== CONTAINER ===== */
.news-container{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
    gap:40px;
}

/* ===== CARD ===== */
.news-card{
    background:#fff;
    overflow:hidden;
    box-shadow:0 5px 18px rgba(0,0,0,0.15);
    transition:0.4s ease;
    border-radius:4px;
}

.news-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* ===== IMAGE ===== */
.news-image{
    width:100%;
    height:430px;
    overflow:hidden;
}

.news-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

.news-card:hover img{
    transform:scale(1.08);
}

/* ===== CONTENT ===== */
.news-content{
    padding:35px 25px;
    text-align:center;
    background:#f3f3f3;
    min-height:210px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* ===== TITLE ===== */
.news-content h3{
    font-size:22px;
    line-height:1.5;
    font-weight:500;
    color:#1f7a1f;
    text-transform:uppercase;
    transition:0.3s ease;
    cursor:pointer;
}

.news-content h3:hover{
    text-decoration:underline;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){

    .news-image{
        height:320px;
    }

    .news-content{
        min-height:auto;
        padding:25px 20px;
    }

    .news-content h3{
        font-size:18px;
    }
}