
  /* GLOBAL BASE */
 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 :root {
   --royal-navy: #071b2e;
   --royal-gold: #c9a24d;
   --soft-gold: #ead8b0;
   --ivory: #fffaf0;
   --ink: #1e1e1e;
   --muted: #555;
 }

 body {
   font-family: 'Poppins', sans-serif;
   background: linear-gradient(180deg, #fffaf0, #f6f0e4);
   color: var(--ink);
   line-height: 1.8;
 }

/* SECTION LAYOUT */

 section {
   padding: 110px 9%;
 }

 .section-title {
   text-align: center;
   font-family: 'Playfair Display', serif;
   font-size: 36px;
   color: var(--royal-navy);
   margin-bottom: 70px;
   position: relative;
 }

 .section-title::after {
   content: "";
   width: 90px;
   height: 3px;
   background: var(--royal-gold);
   display: block;
   margin: 14px auto 0;
 }



 /* CONTENT BOX (Vision, Reason, Summary) */


 .uyr-box {
   background: linear-gradient(180deg, #fffdf8, #fffaf0);
   border: 1px solid var(--soft-gold);
   border-radius: 22px;
   padding: 42px 46px;
   margin-bottom: 70px;
   box-shadow: 0 18px 45px rgba(0, 0, 0, .06);
 }

 .uyr-box h2 {
   font-family: 'Playfair Display', serif;
   font-size: 28px;
   color: var(--royal-navy);
   margin-bottom: 18px;
 }

 .uyr-box h3 {
   font-size: 20px;
   color: var(--royal-navy);
   margin-top: 28px;
   margin-bottom: 12px;
 }

 .uyr-box p {
   font-size: 15.5px;
   color: var(--muted);
   margin-bottom: 18px;
 }


   /* GRID (CORE WORKS) */

 .uyr-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 32px;
   margin-bottom: 80px;
 }

 .uyr-card {
   background: linear-gradient(180deg, #ffffff, #fffaf0);
   border: 1px solid var(--soft-gold);
   border-radius: 22px;
   padding: 34px 28px;
   transition: .35s ease;
 }

 .uyr-card h3 {
   font-size: 18px;
   color: var(--royal-navy);
   margin-bottom: 10px;
 }

 .uyr-card p {
   font-size: 14.5px;
   color: var(--muted);
 }

 .uyr-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 22px 50px rgba(0, 0, 0, .08);
 }


/* PROJECT LIST STYLE */


.uyr-box ul {
   margin-left: 20px;
   margin-bottom: 24px;
 }

 .uyr-box ul li {
   list-style: none;
   font-size: 14.5px;
   color: var(--muted);
   margin-bottom: 10px;
   padding-left: 22px;
   position: relative;
 }

 .uyr-box ul li::before {
   content: "◆";
   position: absolute;
   left: 0;
   top: 0;
   font-size: 12px;
   color: var(--royal-gold);
 }

 
  /* SCROLL REVEAL EFFECT */

 .reveal {
   opacity: 0;
   transform: translateY(40px);
   transition: opacity .8s ease, transform .8s ease;
 }

 .reveal.active {
   opacity: 1;
   transform: translateY(0);
 }


/* RESPONSIVE */


 @media(max-width:768px) {
   section {
     padding: 90px 7%;
   }

   .section-title {
     font-size: 30px;
   }

   .uyr-box {
     padding: 32px 28px;
   }
 }


  /* CONTENT BOXES */

 .uyr-box {
   background: var(--card-bg);
   padding: 45px;
   border-radius: 24px;
   border: 1px solid var(--soft-gold);
   box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
   margin-bottom: 60px;
 }

 .uyr-box h2 {
   font-family: 'Playfair Display', serif;
   color: var(--royal-gold);
   margin-bottom: 20px;
 }

 .uyr-box p {
   line-height: 1.8;
   font-size: 15px;
 }

   /* GRID CARDS */

 .uyr-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 35px;
 }

 .uyr-card {
   background: var(--card-bg);
   padding: 30px;
   border-radius: 22px;
   border: 1px solid var(--soft-gold);
   box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
   transition: .4s cubic-bezier(.23, 1, .32, 1);
 }

 .uyr-card:hover {
   transform: translateY(-10px) scale(1.02);
 }

 .uyr-card h3 {
   font-family: 'Playfair Display', serif;
   color: var(--royal-gold);
   margin-bottom: 12px;
 }

 
       /* TEAM SECTION */
     
 .team-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 20px;
 }

 .team-card {
   text-align: center;
   background: linear-gradient(180deg, #fffaf0, #fdf6ea);
   padding: 20px 10px;
   border-radius: 24px;
   border: 1px solid var(--soft-gold);
   transition: .4s;
  
 }

 body.dark .team-card {
   background: #0d2a45;
 }

 .team-card img {
   width: 160px;
   height: 160px;
   border-radius: 50%;
   border: 6px solid var(--soft-gold);
   margin: 0 auto 20px;
   object-fit: cover;
 }

    /* Name */
    .team-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 18px;
        color: #8b6a3e;
        margin-bottom: 6px;
    }

    /* Role */
    .team-card span {
        display: block;
        font-size: 21px;
        font-weight: 500;
        color: #c9a24d;
        margin-bottom: 14px;
    }

    /* Description */
    .team-card p {
        font-size: 14.5px;
        line-height: 1.7;
        color: #4a4a4a;
    }

   /* CONTENT BOXES */

 .contact-wrapper {
   max-width: 700px;
   margin: auto;
   background: var(--card-bg);
   padding: 50px;
   border-radius: 28px;
   border: 1px solid var(--soft-gold);
 }

 .contact-form {
   display: flex;
   flex-direction: column;
   gap: 22px;
 }

 .contact-form input,
 .contact-form textarea {
   padding: 16px;
   border-radius: 14px;
   border: 1px solid var(--soft-gold);
   font-family: 'Poppins';
 }

 .contact-form button {
   padding: 16px;
   border: none;
   border-radius: 50px;
   background: linear-gradient(135deg, #c9a24d, #8b6a3e);
   color: #fff;
   font-weight: 600;
   cursor: pointer;
 }
 .reveal {
   opacity: 0;
   transform: translateY(40px);
   transition: 1s ease;
 }

 .reveal.active {
   opacity: 1;
   transform: none;
 }





.ambassador-section{
  background:#1f4f78;
  padding:60px 0;
  border-radius:20px;
  margin:30px;
}

.container{
  background:#fff;
  border-radius:20px;
  padding:50px 20px;
  max-width:1000px;
  margin:auto;
  text-align:center;
}

h2{
  margin-bottom:40px;
}

.slider{
  overflow:hidden;
  position:relative;
}

.slides{
  display:flex;
  transition:0.4s ease;
}

.card{
  min-width:100%;
  padding:30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card img{
  width:80px;
  height:80px;
  border-radius:50%;
  margin-bottom:0 auto 15px auto;
display:block;
}


.card h3{
  margin-bottom:5px;
}

.card p{
  color:#555;
  margin-bottom:5px;
}

.card span{
  font-size:14px;
  color:#777;
}

.dots{
  margin-top:20px;
}

.dot{
  height:10px;
  width:10px;
  margin:0 5px;
  background:#ccc;
  border-radius:50%;
  display:inline-block;
  cursor:pointer;
}

.dot.active{
  background:#1f4f78;
}











/* Section Heading */
.section-king {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin: 50px 0 30px;
  color: #222;
  position: relative;
}

.section-king::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #c9a24d;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}

/* Team Row Layout */
.team-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 0 8%;
  margin-bottom: 60px;
}

/* Individual Member Card */
.member {
  background: #ffffff;
  text-align: center;
  padding: 25px 15px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Member Image */
.member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #c9a24d;;
}

/* Member Name */
.member h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #111;
  font-weight: 600;
}

/* Member Role */
.member p {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-king {
    font-size: 26px;
  }

  .member {
    padding: 20px 10px;
  }

  .member img {
    width: 100px;
    height: 100px;
  }
}














/* ===== BACKGROUND LAYERS ===== */

.bg-layer{
  position:fixed;
  inset:0;
  background:radial-gradient(circle at 20% 30%, rgba(0,123,255,0.15), transparent 60%),
             radial-gradient(circle at 80% 70%, rgba(255,215,0,0.1), transparent 60%);
  z-index:-2;
  animation:floatBg 12s ease-in-out infinite alternate;
}

@keyframes floatBg{
  0%{transform:translateY(0px);}
  100%{transform:translateY(-40px);}
}

#bg-canvas{
  position:fixed;
  inset:0;
  z-index:-1;
}

/* Navbar glass on scroll */
.navbar{
  transition:.4s ease;
}

.navbar.scrolled{
  backdrop-filter:blur(12px);
  background:rgba(0,0,0,0.4);
}

/* Hero polish */
.hero h1 span{
  display:inline-block;
  opacity:0;
}

/* Premium Card Hover */
.uyr-card,
.team-card,
.card{
  transition:transform .4s ease, box-shadow .4s ease;
  transform-style:preserve-3d;
}

.uyr-card:hover,
.team-card:hover,
.card:hover{
  transform:rotateX(6deg) rotateY(-6deg) scale(1.03);
  box-shadow:0 25px 50px rgba(0,0,0,.3);
}

























  
  
  .social-section {
    margin-top: 20px;
}

.social-icons a {
    color: white;
    font-size: 22px;
    margin: 0 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #25D366; 
}

.group-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: 0.3s;
}

.group-btn:hover {
    background: #1ebe5d;
}
  


