/* ================= GLOBAL ================= */
body {
  font-family: "Noto Sans Assamese", sans-serif;
  /* font-family: 'Segoe UI', sans-serif; */
  margin: 0;
  background: #edecec;
  scroll-behavior: smooth;
}

a {
  transition: all 0.3s ease;
}



/*=============PAGE1=================*/
/* ================= HERO ================= */

.hero {
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;

background: linear-gradient(90deg,rgba(153, 224, 45, 1) 0%, rgba(240, 237, 91, 1) 57%, rgba(86, 186, 28, 1) 99%);
  color: black;
  text-align: center;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
}

.hero-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}



/* Logo */
.hero-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
  
  /* Soft edge fade */
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 90%);
  mask-image: radial-gradient(circle, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 80%);

  /* Warm glow matching yellow/green bg */
  filter: drop-shadow(0 0 10px rgba(255, 255, 150, 0.7));

}

/* Text */
.hero-main h1 {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-main h2 {
  font-size: 18px;
  font-weight: 500;
}






/* ================= NAVBAR ================= */

.custom-navbar {
  background: #000;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}


.navbar-inner {
  justify-content: center;
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 12px 20px;
}

.navbar-inner a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  position: relative;
}

.navbar-inner i{
  color: white;
}

/* underline hover animation */
.navbar-inner a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #ff5722;
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

.navbar-inner a:hover::after {
  width: 100%;
}

.navbar-inner a:hover {
  color: #ff5722;
}

.home-icon {
  background: #0d6efd;
  padding: 6px 10px;
  border-radius: 4px;
  transition: 0.3s;
}

.home-icon:hover {
  background: #ff5722;
}

/* Highlight active menu */
.custom-navbar a.active {
  color: #f10404;
}


/* Navbar base */
.custom-navbar {
  background: #000;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Inner layout */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

/* Links */
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
}


/* ================= HOME SECTION ================= */

.home-section {
  max-width: 1230px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
  padding: 0 15px;
}

/* ================= SLIDER ================= */

.slider {
  height: 630px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: white;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.25);
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.7); /* ✅ transparent white */
  color: black;
  padding: 12px 16px;
  font-size: 18px;
  font-weight: 600;
}

/* Slider buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ff5722;
  border: none;
  color: #fff;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 4px;
  z-index: 10;
}

.slider-btn.left {
  left: 10px;
}

.slider-btn.right {
  right: 10px;
}

.slider-btn:hover {
  background: #e64a19;
}





/* ================= PRINCIPAL MESSAGE ================= */

.message-box {
  height: 630px;
  width: 500px;
  background: black;
  color: white;
  padding: 22px;
  border-radius: 10px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.message-box:hover {
  transform: translateY(-3px);
}

.message-box h3 {
  color:#f78b07;
  text-align: center;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 6px;
}

.principal-info {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin: bottom 0;
  ;
}

.principal-info p{
  font-size: 16px;
  text-align: justify;
  line-height: 1.6;
}

.right{
  text-align: right;
}

.principal-info img {
  width: 160px;
  height: 140px;
  border-radius: 6px;
  border: 1px solid black;
  transition: 0.3s;
  overflow: hidden;
  flex-shrink: 0;
}





/* ================= EVENTS/GALLEY ================= */


/* Section */
.container {
  width: 90%;
  max-width: 1200px; 
  margin: 0 auto;
   border-radius: 6px;
  
}

.container h2{
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* TOP GRID */
.events-top {
  display: flex;
  padding-bottom: 30px;
  gap: 15px;
  justify-content: space-evenly; 
}

.small-card {
  flex: 1; 
  height: 120px;
 
}

.small-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.small-card:hover img {
  transform: scale(1.01);
}


/* FEATURED CARD */
/* Container */
.featured-event {
  display: flex;
  gap: 25px;
  margin-top: 20px;
}

.featured-images {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.featured-images img {
  width: 48%;
  height: 150px;
  object-fit: cover;
  
}




/* Each block */
.event-block {
  width: 48%;
  
}

/* Title */
.event-block h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1px;
}

/* Date */
.event-block .date {
  font-size: 13px;
  font-weight: 600;
  color: #191919;
  margin-bottom: 5px;
}

/* Image */
.event-block img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
  
}

.event-block:hover img {
  transform: scale(1.01);
}


/* Description */
.event-block .desc {
  font-size: 16px;
  font-weight: 500;
}

/* GAlley */
/* ===== SECTION ===== */
.gallery-section {
  padding: 40px 0;
}

.gallery-section h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* ===== CAROUSEL WRAPPER ===== */

/* Slider container */
.custom-slider {
  position: relative;
  overflow: hidden;
}

/* Wrapper */
.slides-wrapper {
  display: flex;
  transition: transform 0.4s ease;
  padding-bottom: 10px;
}

/* Each slide (2 items) */
.slide {
  min-width: 100%;
  display: flex;
  gap: 20px;
}

/* Each item */
.slide-item {
  width: 50%;
  padding: 8px;
}

/* Image */
.slide-item img {
  width: 100%;
  height: 80%;
  border: 1px solid black;
  object-fit: cover;
}

/* Title */
.slide-item h4 {
  font-size: 14px;
  font-weight: 550;
  margin-top: 5px;
}

/* Buttons */
.slider-btn {
  position: absolute;
  top: 47%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  border: none;
  padding: 2px 4px;
  cursor: pointer;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}



/* ================= TESTIMONIALS ================= */
.testimonial-section h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  padding-top: 30px;
  margin-bottom: 50px;
}

.testimonial-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.testimonial-card {
  width: 300px;
  /* height: 300px; */
  padding: 40px 30px;
  text-align: center;
  background: #f0efef;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-left: 5px solid rgb(255, 166, 0);
}

/* Profile Image */
.testimonial-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #d0d9e8;
  margin-bottom: 20px;
}

/* Name */
.testimonial-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #0d0f11;
}

/* Quote */
.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  color: #3b454f;
  line-height: 1.6;
}



/* ================= FOOTER ================= */

.bg-dark {
  background: #111 !important;
}

footer .container {
  background: #111;
}

footer a {
  text-decoration: none;
  transition: 0.3s;
}

.mb-2 a{
  color: white;
}

.mb-2 a:hover{
  color: orange !important;
}
footer a:hover {
  color: #19a443 !important;
}





/**/
/* Button */
.contact-btn {
  position: fixed;
  right: 0;
  top: 70%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: #ec521e;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  border-radius: 0px 8px 8px 0px;
  font-weight: bold;
  z-index: 1000;
}

/* Panel */
.contact-panel {
  background-color:;
  position: fixed;
  right: -300px;
  top: 450px;
  width: 300px;
  height: 200px;
  background: #fff;
  border-radius:5px;
  box-shadow: -3px 0 10px rgba(0,0,0,0.2);
  padding: 20px;
  transition: 0.4s;
  z-index: 999;
}

/* Active state */
.contact-panel.active {
  right: 48px;
}

/* Close button */
.close-btn {
  font-size: 22px;
  cursor: pointer;
  float: right;
}


/**/
/* ================= RESPONSIVE DESIGN ================= */

/* Tablet (â‰¤ 992px) */
@media (max-width: 992px) {

  .home-section {
    grid-template-columns: 1fr; /* stack */
  }

  .message-box {
    width: 100%;
    height: auto;
  }

  .custom-navbar {
    width: 100%;
  }

  .navbar-inner {
    flex-wrap: wrap;
    gap: 15px;
  }

  .slider {
    height: 400px;
  }
}


/* Mobile (â‰¤ 768px) */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 28px;
  }

  .hero h2 {
    font-size: 20px;
  }

  .hero p {
    font-size: 16px;
  }

  .principal-info {
    flex-direction: column; /* image on top */
    align-items: center;
    text-align: center;
  }

  .principal-info img {
    width: 120px;
    height: 100px;
  }

  .principal-info p {
    text-align: justify;
  }

  .right {
    text-align: center; /* better for mobile */
  }

  .slider {
    height: 300px;
  }

  .slide-caption {
    font-size: 14px;
  }

  .events-top {
    flex-direction: column;
  }

  .small-card {
    width: 100%;
  }

  .featured-event {
    flex-direction: column;
  }

  .event-block {
    width: 100%;
  }

  .slide {
    flex-direction: column;
  }

  .slide-item {
    width: 100%;
  }

  .testimonial-container {
    flex-direction: column;
    align-items: center;
  }

}


/* Small Mobile (â‰¤ 480px) */
@media (max-width: 480px) {

  .hero h1 {
    font-size: 22px;
  }

  .hero p {
    font-size: 14px;
  }

  .navbar-inner {
    gap: 10px;
  }

  .message-box {
    padding: 15px;
  }

}

@media (max-width: 1000px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #000;
    width: 100%;
    flex-direction: column;
    align-items: center;

    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}