/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  width: 100%;
}

p{
    line-height: 1.5;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  z-index: 1000;
}

/* Logo */
.logo {
  font-size: 22px;
  font-weight: bold;
  color: #cccccc;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

/* Register Button */
.btn {
  padding: 10px 22px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #333;
}

/* Menu Icon */
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #242424;
}


/* Responsive Menu */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: #fff;
    width: 250px;
    padding: 20px;
    gap: 30px;
    border-left: 1px solid #eee;
    height: calc(100% - 70px);
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-icon {
    display: block;
  }

  .btn {
    display: none;
  }

  header {
  padding: 13px 30px;
}

.nav-links a {
  color: #000;
}
}



/* Header when scrolled */
header.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

  .logo{
  color: #000000;
}

.nav-links a {
  color: #000000;
  
}
}





/* Nav */
.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
}

/* Button */
.btn {
  padding: 10px 22px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #333;
}

/* Optional spacing for page content */



.hero {
  height: 100vh;
  width: 100%;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url('img/pexels-antonio-jamal-roberson-261338-3678057.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 8%;
  color: #fff;
}

/* Hero Text */
.hero-text {
  max-width: 600px;
}

/* Title */
.hero-text h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Subtitle */
.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #f1f1f1;
}

/* Date line */
.hero-text p strong {
  font-weight: 600;
  color: #ffffff;
}

/* Button */
.hero .btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 32px;
  background: #ffffff;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.hero .btn:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 768px) {
  .hero {
    padding: 0 5%;
    text-align: center;
    height: 80vh;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}










/* General Section Styling */
.section {
  padding: 100px 8%;
  background: #ffffff;
}

/* About Layout */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Image Container */
.aboutimg {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.aboutimg img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

/* Text Content */
#about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #111;
}

#about p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
  max-width: 550px;
}

/* Highlights Grid */
.highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.highlights div {
  background: #f7f7f7;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #222;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.highlights div:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* Responsive Design */
@media (max-width: 900px) {
  #about {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 5%;
  }

  #about h2 {
    font-size: 2.1rem;
  }

  .highlights {
    grid-template-columns: 1fr;
  }
}
 











/* Light Section */
.section.light {
  padding: 100px 8%;
  background: #f9fafb;
  text-align: center;
}

/* Section Title */
.section.light h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #111;
}

/* Grid Layout */
.section.light .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Cards */
.section.light .grid > div {
  background: #ffffff;
  padding: 45px 40px;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover Effect */
.section.light .grid > div:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Card Titles */
.section.light h3 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: #000;
  font-weight: 600;
}

/* Card Text */
.section.light p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .section.light {
    padding: 80px 5%;
  }

  .section.light h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .section.light .grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}













/* Speakers Section */
#speakers {
  padding: 100px 8%;
  background: #ffffff;
  text-align: center;
}

/* Section Title */
#speakers h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #111;
}

/* Grid Layout */
#speakers .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Speaker Card */
#speakers .card {
  background: #f9fafb;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover Effect */
#speakers .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

/* Speaker Image */
#speakers .card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* Card Content */
#speakers .card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 22px 0 8px;
  color: #000;
}

#speakers .card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 900px) {
  #speakers {
    padding: 80px 5%;
  }

  #speakers .grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #speakers h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  #speakers .card img {
    height: 240px;
  }
}












/* Partners Section */
.sectionn {
  padding: 90px 8%;
  background: #f9fafb;
  text-align: center;
}

/* Section Title */
.sectionn h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
}

/* Partners Logos */
.partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* Logo Images */
.partners img {
  max-width: 180px;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

/* Hover Effect */
.partners img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .section {
    padding: 70px 5%;
  }

  .section h2 {
    font-size: 2.2rem;
  }

  .partners {
    gap: 40px;
  }

  .partners img {
    max-width: 140px;
  }
}


















.partners img { width:150px; margin:20px; }

form input, form button {
  width:100%; padding:12px; margin:10px 0;
}

/* Contact Section */
#contact {
  padding: 100px 8%;
  background: #ffffff;
  text-align: center;
  color: #111;
}

/* Contact Section Title */
#contact h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Contact Details */
#contact p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #555;
}

/* Footer */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 35px 0;
  font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #contact {
    padding: 70px 5%;
  }

  #contact h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  #contact p {
    font-size: 1rem;
  }

  footer {
    font-size: 0.9rem;
    padding: 30px 0;
  }
}












