/* ===== GENERAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #F9FAFB;
  color: #333;
  line-height: 1.6;
}

/* ===== HEADER ===== */
header {
  background-color: #003366;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ===== LOGO STYLES ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.4rem;
  font-weight: bold;
  color: gold; /* You can change this to match your home color */
  cursor: pointer;
  animation: floatLogo 3s ease-in-out infinite;
}

.logo img {
  width: 60px;
  height: auto;
  animation: spinLogo 10s linear infinite;
}

/* Gentle float animation */
@keyframes floatLogo {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Slow spinning animation (optional for logo image) */
@keyframes spinLogo {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
}
}


nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #FFD700;
}

.login-btn {
  background: #FFD700;
  color: #003366 !important;
  padding: 6px 14px;
  border-radius: 4px;
  transition: 0.3s;
}

.login-btn:hover {
  background: #fff;
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.slide {
  display: none;
  position: relative;
}

.slide img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  filter: brightness(75%);
}

.text {
  color: #FFD700;
  font-size: 2em;
  font-weight: bold;
  position: absolute;
  bottom: 60px;
  left: 50px;
  text-shadow: 2px 2px 8px #000;
}

/* Navigation arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 45%;
  width: auto;
  padding: 12px;
  color: white;
  font-weight: bold;
  font-size: 22px;
  user-select: none;
  transition: 0.3s;
}

.next { right: 0; }
.prev:hover, .next:hover { color: #FFD700; }

/* Fade Animation */
.fade {
  animation: fade 1s ease-in-out;
}
@keyframes fade {
  from { opacity: .4; }
  to { opacity: 1; }
}

/* ===== ABOUT SECTION ===== */
.about {
  text-align: center;
  padding: 80px 15%;
  background-color: #fff;
}

.about h2 {
  color: #003366;
  font-size: 2em;
  margin-bottom: 15px;
}

.about p {
  max-width: 800px;
  margin: 0 auto 20px;
}

.btn {
  background: #003366;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #FFD700;
  color: #003366;
}

/* ===== FACULTIES SECTION ===== */
.faculties {
  background: #F9FAFB;
  padding: 80px 10%;
  text-align: center;
}

.faculties h2 {
  color: #003366;
  margin-bottom: 40px;
}

.faculty-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.faculty-cards .card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.faculty-cards .card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: #003366;
  margin-bottom: 10px;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
  background: #003366;
  color: #fff;
  padding: 80px 10%;
  text-align: center;
}

.why-choose-us h2 {
  color: #FFD700;
  margin-bottom: 30px;
}

.reasons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.reason {
  background: #00264d;
  padding: 20px 25px;
  border-radius: 8px;
  min-width: 220px;
  transition: 0.3s;
}

.reason:hover {
  background: #FFD700;
  color: #003366;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: #fff;
  text-align: center;
  padding: 80px 10%;
}

.testimonials h2 {
  color: #003366;
  margin-bottom: 40px;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.testimonial-cards .card {
  background: #F9FAFB;
  padding: 25px;
  border-radius: 10px;
  max-width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  /*background-color: #cfb106;*/
}

.testimonial-cards .card p {
  font-style: italic;
  margin-bottom: 15px;
}

/* ===== CAMPUS LIFE ===== */
.campus-life {
  background: #F9FAFB;
  text-align: center;
  padding: 80px 10%;
}

.campus-life h2 {
  color: #003366;
  margin-bottom: 20px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.gallery img {
  width: 30%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* ===== ADMISSION HIGHLIGHT ===== */
.admission-highlight {
  background: #003366;
  color: #fff;
  text-align: center;
  padding: 80px 10%;
}

.admission-highlight h2 {
  color: #FFD700;
  font-size: 2em;
}

.admission-highlight p {
  margin: 20px 0;
  font-size: 1.1em;
}

.admission-highlight .btn {
  background: #FFD700;
  color: #003366;
  font-weight: bold;
}

/* ===== FOOTER ===== */
footer {
  background: #00264d;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}

footer a {
  color: #FFD700;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .gallery img {
    width: 90%;
  }

  .faculty-cards {
    grid-template-columns: 1fr;
  }

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

  .text {
    font-size: 1.3em;
    bottom: 40px;
    left: 20px;
  }
}

/*login page*/

/* Login Page Styles */
.login-body {
  background: linear-gradient(120deg, #4e54c8, #8f94fb);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: 'Poppins', sans-serif;
}

.login-container {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  width: 380px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  text-align: center;
}

.login-title {
  color: #4e54c8;
  margin-bottom: 5px;
}

.login-sub {
  color: #666;
  margin-bottom: 25px;
  font-size: 14px;
}

.input-group {
  text-align: left;
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  color: #444;
  margin-bottom: 5px;
}

.input-group input, .input-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
}

.login-btn {
  width: 100%;
  padding: 12px;
  background: #4e54c8;
  border: none;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.login-btn:hover {
  background: gold;
}

.login-footer {
  margin-top: 15px;
  font-size: 12px;
  color: #888;
}

/* Form Toggle Text */
.toggle-text {
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}

.toggle-text a {
  color: #4e54c8;
  text-decoration: none;
  font-weight: 600;
}

.toggle-text a:hover {
  text-decoration: underline;
}


/*dashboard*/

/* Dashboard Styles */
.dashboard-body {
  background: #f9fafc;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

.dashboard-header {
  background: #4e54c8;
  color: gold;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-header.staff {
  background: #1c1f4a;
}

.dashboard-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.dashboard-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.dashboard-nav a:hover {
  text-decoration: underline;
}

.dashboard-main {
  padding: 40px 80px;
}

.welcome-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 40px;
}

.grid-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.btn {
  background: #4e54c8;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
}

.btn:hover {
  background: #3b3fa8;
}

.dashboard-footer {
  text-align: center;
  padding: 20px;
  background: #4e54c8;
  color: white;
  margin-top: 40px;
}

/* =======================
   ABOUT PAGE STYLES
======================= */

.about-page {
  font-family: 'Poppins', sans-serif;
  background: #f9f9ff;
  color: #333;
  line-height: 1.7;
}

/* Header */
.about-header {
  background: linear-gradient(90deg,  #004aad, );
  color: gold;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-header h1 {
  font-size: 1.6em;
  font-weight: 600;
  
}

.about-header nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.about-header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.about-header nav ul li a:hover,
.about-header nav ul li a.active {
  color: #ffd54f;
}

/* Hero section */
.about-hero {
  
  height: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.about-overlay {
  background:   #004aad;
  text-align: center;
  padding: 30px;
  border-radius: 10px;
}

.about-hero h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: gold;
}

.about-content {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.about-content section {
  margin-bottom: 50px;
}

.about-content h3 {
  font-size: 1.8em;
  color: #004aad;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 1.05em;
  margin-bottom: 10px;
  color: #444;
}

.about-achievements ul {
  list-style: none;
  padding: 0;
}

.about-achievements li {
  background: #fff;
  margin: 10px 0;
  padding: 12px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Call to action */
.cta-box {
  text-align: center;
  margin-top: 30px;
}

.cta-btn {
  background:#004aad;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #004aad;
}

/* Footer */
.about-footer {
  text-align: center;
  background: #004aad;
  color: #fff;
  padding: 20px 10px;
  margin-top: 40px;
}

/*graduage page*/
.graduate {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  text-align: center;
  background: linear-gradient(90deg, #1d2671, );
  color: white;
  padding: 15px 10px;
  position: relative;
 
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
}

.graduates-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 60px;
  justify-content: center;
}

.card {
  perspective: 1000px;
}

.inner {
  position: relative;
  width: 100%;
  height: 350px;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.card:hover .inner {
  transform: rotateY(180deg);
}

.front, .back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  backface-visibility: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.front {
  background: white;
  text-align: center;
  padding: 20px;
}

.front img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  border-radius: 15px;
}

.front h2 {
  margin: 10px 0 5px;
  color: #222;
}

.front p {
  color: #777;
}

.back {
  background: linear-gradient(135deg, #f7797d, #FBD786, #C6FFDD);
  color: #222;
  transform: rotateY(180deg);
  text-align: center;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.back h3 {
  margin-bottom: 10px;
  color: #111;
}

.back p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== FACULTIES PAGE (Blue + Gold Theme) ===== */
.fac-header {
  background: linear-gradient(135deg, #004aad, #ffbf00);
  color: white;
  text-align: center;
  padding: 3rem 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.fac-header h1 {
  font-size: 2.8rem;
  letter-spacing: 1px;
  font-weight: 700;
}

.faculties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  background: #f9f9f9;
}

.faculty-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 2px solid #ffbf00;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.4s ease;
}

.faculty-card:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #004aad, #ffbf00);
  color: white;
}

.meet-lecturers {
  background: linear-gradient(135deg, #ffbf00, #004aad);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.lecturers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.lecturer-card {
  background: white;
  color: #004aad;
  border-radius: 15px;
  padding: 1rem;
  width: 250px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.lecturer-card:hover {
  transform: translateY(-8px);
}

.lecturer-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  border: 3px solid #ffbf00;
}

.fac-footer {
  background: #004aad;
  color: white;
  text-align: center;
  padding: 1rem 0;
}

/* ===== Modal Style ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  width: 90%;
  max-width: 600px;
  color: #004aad;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

.close {
  float: right;
  font-size: 1.5rem;
  color: #ffbf00;
  cursor: pointer;
}

.close:hover {
  color: #004aad;
}

/*admission*/
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f7faff;
  color: #333;
}

header.hero {
  background: linear-gradient(90deg, #0a1d56, #1f3b92);
  color: gold;
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 20px;
}

.cta-button {
  background: gold;
  color: #0a1d56;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}
.cta-button:hover {
  background: #0a1d56;
  color: gold;
}

.container {
  width: 90%;
  max-width: 900px;
  margin: 40px auto;
}

h2 {
  color: #0a1d56;
  margin-bottom: 15px;
}

ul, ol {
  margin-left: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
}

table, th, td {
  border: 1px solid #ccc;
}

th, td {
  padding: 12px;
  text-align: left;
}

.accordion {
  background: #0a1d56;
  color: gold;
  cursor: pointer;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 5px;
  transition: 0.3s;
}

.accordion:hover {
  background: gold;
  color: #0a1d56;
}

.panel {
  display: none;
  background: #e8f0ff;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.form-section input, .form-section select {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  width: 100%;
  margin-bottom: 15px;
}

.form-section button {
  padding: 15px;
  border: none;
  border-radius: 25px;
  background: #0a1d56;
  color: gold;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.form-section button:hover {
  background: gold;
  color: #0a1d56;
}

footer {
  background: #0a1d56;
  color: white;
  text-align: center;
  padding: 25px 10px;
  margin-top: 40px;
  border-top: 4px solid gold;
}

/*new student dashboard*/
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f7faff;
  color: #333;
}

.dashboard-header {
  background: linear-gradient(90deg, #0a1d56, #1f3b92);
  color: gold;
  text-align: center;
  padding: 60px 20px;
}

.dashboard-header h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.dashboard-container {
  width: 90%;
  max-width: 900px;
  margin: 30px auto;
}

section {
  margin-bottom: 30px;
}

h2 {
  color: #0a1d56;
  margin-bottom: 15px;
}

ul, ol {
  margin-left: 20px;
}

ul li a {
  color: #0a1d56;
  text-decoration: none;
}

ul li a:hover {
  text-decoration: underline;
}

footer {
  background: #0a1d56;
  color: white;
  text-align: center;
  padding: 20px 10px;
  border-top: 4px solid gold;
}

/* ===== FLOATING BACK TO HOME BUTTON ===== */
.back-home-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color:blue; /* your home color */
  color: #fff;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0, 77, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-home-btn:hover {
  background-color: gold;
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0, 77, 0, 0.4);
}

/*contact page*/
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f7faff;
  color: #333;
  scroll-behavior: smooth;
}

.contact-hero {
  background: linear-gradient(90deg, #1f3b92, #0a1d56);
  color: gold;
  text-align: center;
  padding: 10px 15px;
  transition: all 0.5s ease;
  position: relative;
}

.contact-hero:hover {
  background: linear-gradient(90deg, #0a1d56, #1f3b92);
}

.contact-hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
  transition: transform 0.3s;
}

.contact-hero h1:hover {
  transform: scale(1.05);
}

.contact-hero p {
  font-size: 20px;
  transition: color 0.3s;
}

.contact-hero p:hover {
  color: #ffd700; /* gold highlight */
}

.container {
  width: 90%;
  max-width: 900px;
  margin: 40px auto;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  font-size: 18px;
  margin-bottom: 10px;
  transition: transform 0.3s, color 0.3s;
}

.contact-info ul li:hover {
  color: #0a1d56;
  transform: translateX(10px);
}

.contact-info i {
  color: #0a1d56;
  margin-right: 10px;
}

.contact-form-section input,
.contact-form-section textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form-section input:focus,
.contact-form-section textarea:focus {
  border-color: #1f3b92;
  box-shadow: 0 0 8px rgba(31, 59, 146, 0.5);
  outline: none;
}

.contact-form-section button {
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  background: #0a1d56;
  color: gold;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form-section button:hover {
  background: gold;
  color: #0a1d56;
  transform: scale(1.05);
}

.map-section {
  margin-top: 40px;
  transition: transform 0.3s;
}

.map-section:hover {
  transform: scale(1.02);
}

.map-container iframe {
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.map-container iframe:hover {
  transform: scale(1.01);
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

footer {
  background: #0a1d56;
  color: white;
  text-align: center;
  padding: 20px 10px;
  border-top: 4px solid gold;
  transition: background 0.3s;
}

footer:hover {
  background: #1f3b92;
}

/*thank you page*/
/* ===== THANK-YOU PAGE (scoped) ===== */
.thankyou-page {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #002147, #ffcc33);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
}

.thankyou-wrapper {
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
}

.thankyou-container {
  background: #fff;
  text-align: center;
  padding: 48px 40px;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
  max-width: 560px;
  width: 90%;
  animation: ty-fade 1s ease;
}

.ty-logo {
  width: 90px;
  height: auto;
  margin-bottom: 15px;
  animation: ty-float 4s ease-in-out infinite;
}

.ty-heading {
  font-size: 2.3rem;
  color: #002147;
  margin-bottom: 10px;
}

.ty-text {
  font-size: 1.05rem;
  color: #444;
  margin: 8px 0 15px;
}

.ty-loader {
  margin: 25px auto;
  border: 6px solid #eee;
  border-top: 6px solid #ffcc33;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  animation: ty-spin 1.5s linear infinite;
}

.ty-redirect {
  font-size: 0.95rem;
  color: #002147;
  font-weight: 500;
}

.ty-btn {
  display: inline-block;
  background: #002147;
  color: #fff;
  padding: 12px 28px;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 18px;
}
.ty-btn:hover {
  background: #ffcc33;
  color: #002147;
  transform: translateY(-3px);
}

/* Canvas (flowers) sits behind content */
#flowerCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Animations */
@keyframes ty-spin {
  to { transform: rotate(360deg); }
}
@keyframes ty-fade {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes ty-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

