@font-face {
  font-family: 'uppea';
  src: url('fonts/UppEa Italic.ttf');
}

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
  color: #333;
  overflow-x: hidden;
}

/* ================= LOGO ================= */
#logo {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 50%;
}

/* LINKS */
a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: #000;
}

/* ================= POPUP ================= */

.popup-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #1a1a2e, #16213e, #0f3460);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 25px;
  z-index: 99999;

  transform: translateY(-100%);
  animation: slideDown 0.7s ease 2s forwards;
}

@keyframes slideDown {
  to {
    transform: translateY(0);
  }
}
#oriel-font-2{
  font-family :'uppea';
  font-size: 200%;
}
h
.popup-banner-content {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.oriel-font {
  font-weight: bold;
}

.popup-banner-btn {
  background: #fff;
  color: #0f3460;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
}

.popup-banner-close {
  font-size: 26px;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 50%;
}

.popup-banner-close:hover {
  background: rgba(255,255,255,0.2);
}

/* ================= NAVIGATION ================= */

.dropdown {
  position: fixed;
  top: 5px;
  left: 5px;
  z-index: 1000;
}

.btn {
  width: 150px;
  height: 50px;
  border-radius: 6px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn .icon {
  width: 40px;
  height: 40px;
  background: url('image-resources/menuuuuu.png') no-repeat center/contain;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 55px;
  left: 0;
  min-width: 210px;
  background: rgba(160,147,147,0.95);
  border-radius: 6px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  font-size: 15px;
}

.dropdown-content a:hover {
  background: #ddd;
}

.content-img {
  width: 25px;
}

/* FIX: remove hover gap bug */
.dropdown:hover {
  padding-bottom: 10px;
}

/* ================= HEADER ================= */

header {
  text-align: center;
  padding: 20px 0;
}

#top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

#title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-family: 'uppea', serif;
}

/* ================= HERO VIDEO ================= */


#vid {
  display: block;
  width: 100%;
  height: 90vh;
  object-fit: cover;
  border: none;
}


/* ================= ABOUT ================= */

#about-us {
  padding: 60px 20px;
}

.heading {
  font-size: 2.5rem;
  padding-left: 50px;
}

#abt {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 50px;
}

#abt-img {
  width: 500px;
  max-width: 100%;
}

/* ================= POLAROIDS FIXED ================= */

#polaroid-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 80px 20px;
}

.polaroid {
  width: 220px;
  background: #e2e6d2;
  border: 10px solid #e2e6d2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transform: rotate(-2deg);
  transition: 0.3s ease;
}

.polaroid:nth-child(even) {
  transform: rotate(2deg);
}

.polaroid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.container {
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

.polaroid:hover {
  transform: scale(1.05) rotate(0deg);
}

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

#footer {
  background: linear-gradient(135deg, #686c92, #4ba095);
  color: #fff;
  padding: 60px 40px 30px;
  text-align: center;
}

#footer hr {
  width: 70%;
  margin: 25px auto;
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.socials img,
#download-app-div img {
  width: 38px;
  height: 38px;
  opacity: 0.75;
  transition: 0.3s;
}

.socials img:hover,
#download-app-div img:hover {
  transform: scale(1.15);
  opacity: 1;
}

#login-tut {
  font-size: 13px;
  opacity: 0.65;
}

#login-tut a {
  color: #5dcaa5;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  #abt {
    flex-direction: column;
  }

  .dropdown-content {
    min-width: 180px;
  }
}



/* ================= CLEAN SECTION SYSTEM ================= */

.section {
  margin: 120px auto;
  max-width: 1100px;
  padding: 70px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* soft backgrounds */
.section-about {
  background: #e8f6f3;
}

.section-values {
  background: #fff4e6;
}

/* TEXT AREA */
.section-text {
  flex: 1;
}

.section-text h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-text p {
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ================= CIRCLE IMAGE SYSTEM ================= */

.circle-group {
  flex: 1;
  position: relative;
  width: 320px;
  height: 320px;
}

.circle-group img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  border: 4px solid white;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* triangle circle layout */
.circle-group img:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.circle-group img:nth-child(2) {
  bottom: 0;
  left: 0;
}

.circle-group img:nth-child(3) {
  bottom: 0;
  right: 0;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .section {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .circle-group {
    margin-top: 20px;
  }
}


/* ===================== CHAIRMAN + PRINCIPAL CLEAN CARDS ===================== */

.testimonial-chairman,
#testimonial-principal {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 80px 20px;
  margin: 80px 0;
}

/* Shared card style */
.testimonial-chairman #main-content,
#testimonial-principal #main-content {
  width: min(900px, 92%);
  background: linear-gradient(135deg, #f7f9fc, #e8eef7);
  border-radius: 25px;
  padding: 50px 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
}

/* Titles */
#chairman h2,
#testimonial-principal h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  font-family: 'uppea', serif;
  color: #1a1a2e;
}

/* ===================== CIRCULAR IMAGES ===================== */

#chairman-pic {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #0f3460;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  margin-bottom: 25px;
}

/* ===================== TEXT BOX ===================== */

#chairmans-message {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  background: rgba(255,255,255,0.7);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(6px);
}

/* ===================== DIFFERENT COLOR FOR PRINCIPAL ===================== */

#testimonial-principal #main-content {
  background: linear-gradient(135deg, #fff3e6, #ffe0c2);
}

#testimonial-principal #chairman-pic {
  border-color: #d97706;
}

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

@media (max-width: 768px) {
  #chairman-pic {
    width: 120px;
    height: 120px;
  }

  #chairmans-message {
    font-size: 0.95rem;
  }
}
/* ================= MENU BUTTON FIX ================= */

.btn {
  width: 150px;
  height: 55px;
  border-radius: 5px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* ICON */
.btn .icon {
  position: absolute;
  left: 12px;
  height: 40x;
  width: 35px;
  background: url('image-resources/menuuuuu.png') no-repeat center/contain;
  transition: all 0.5s ease;
}

/* TEXT */
.btn .text {
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

/* HOVER ANIMATION */
.dropdown:hover .icon {
  left: 50%;
  transform: translateX(-50%) scale(1.1);
  opacity: 0.9;
}

.dropdown:hover .text {
  opacity: 0;
  transform: translateY(-5px);
}

#abt{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 60px;
}

#abt-img{
  width: 420px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

#abt-us{
  max-width: 600px;
  font-size: 1.05rem;
  line-height: 1.8;
}

#about-hero{
  height:100vh;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  overflow:hidden;
}

.hero-slider{
  position:absolute;
  inset:0;
}

.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:1.0s ease;
}

.hero-slide.active{
  opacity:1;
}

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

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom,rgba(0,0,0,0.55),rgba(0,0,0,0.75));
}

.hero-text{
  position:relative;
  z-index:2;
  color:#fff;
}

.hero-title{
  font-size:clamp(3rem,7vw,6rem);
  font-family:'Crimson Pro',serif;
}

.hero-subtitle{
  font-style:italic;
  opacity:0.9;
}