/* ==========================
   Global Reset
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #04325d;
  color: #070707;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Utility */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ==========================
   Hero Section
========================== */
.hero {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(120deg, #0a0f70, #01032a);
  color: rgb(236, 236, 237);
  text-align: center;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  background: rgba(255, 255, 255, 0.05);
  top: -25%;
  left: -25%;
  transform: rotate(25deg);
  animation: shine 6s infinite linear;
}

@keyframes shine {
  from { transform: rotate(25deg) translateX(-100%); }
  to   { transform: rotate(25deg) translateX(100%); }
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
  font-weight: bold;
}

.hero-content span { color: #ffd700; }

.hero-content p {
  font-size: 20px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ffd700;
  color: #222;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}

.btn:hover {
  background: white;
  color: #4e54c8;
  transform: translateY(-3px);
  box-shadow: 0px 6px 20px rgba(0,0,0,0.3);
}

.btn.small { padding: 8px 18px; font-size: 14px; }

/* Animated text in hero */
.animate-text { display: inline-block; animation: fade 1s ease-in-out; }
.fade { animation: fade 1s ease-in-out; }
@keyframes fade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==========================
   Section Animations
========================== */
section { opacity: 1; transform: none; }
html.enhanced section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
html.enhanced section.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================
   Courses Section
========================== */
.courses-preview {
  padding: 60px 20px;
  text-align: center;
  background: #03124d; /* keep dark theme */
}

.courses-preview h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #ffd700;
  position: relative;
}

.courses-preview h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #ffd700;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.course-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.course-card img {
  width: 100%;
  max-width: 300px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.course-card h3 {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #000000;
}

.course-card p {
  font-size: 0.95rem;
  color: #577093;
  line-height: 1.5;
}

/* ==========================
   About Section
========================== */
.section { padding: 60px 10%; background: #fff; }
.section.alt { background: #f7f9fc; }
.section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.section .text { flex: 1 1 50%; }
.section .image { flex: 1 1 40%; }
.section img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.section h2 { margin-bottom: 15px; color: #0d47a1; }

/* ==========================
   Contact Form (Animated Box)
========================== */
.contact-form {
  max-width: 500px;
  margin: 30px auto;
  padding: 25px;
  border-radius: 12px;
  background: linear-gradient(-45deg, #001f3f, #0056b3, #0074d9, #00aaff);
  background-size: 400% 400%;
  animation: gradientBG 10s ease infinite;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  color: white;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
  margin-bottom: 12px;
}

.contact-form button {
  padding: 12px;
  width: 100%;
  background: #ffcc00;
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s ease;
}
.contact-form button:hover {
  background: #ffaa00;
  transform: scale(1.05);
}

/* ==========================
   Image Gallery
========================== */
.image-gallery {
  padding: 70px 20px;
  text-align: center;
  background: #f5f7ff;
}
.image-gallery h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #000dff;
}
.gallery-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.gallery-item {
  width: 300px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
  transform: scale(0.9);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.gallery-item img {
  width: 100%;
  transition: transform 0.6s ease;
}
.gallery-item:hover { transform: scale(1.05); box-shadow: 0px 15px 30px rgba(0,0,0,0.2); }
.gallery-item:hover img { transform: scale(1.1) rotate(2deg); }

/* ==========================
   Tech Hero
========================== */
.tech-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("https://www.digitalvidya.com/blog/wp-content/uploads/2019/07/Computer-Courses_5e88b07dcfc3aaf35cdab473242649d4-1.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
}
.tech-hero h1 { font-size: 3rem; background: rgba(0,0,0,0.5); padding: 10px 20px; border-radius: 8px; }

/* ==========================
   Back to Top Button
========================== */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #4e54c8;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 15px;
  cursor: pointer;
  font-size: 20px;
  display: none;
  transition: all 0.3s ease;
  z-index: 1000;
}
#backToTop:hover {
  background: #ffd700;
  color: #2630ec;
  transform: scale(1.1);
}

/* ==========================
   Accessibility
========================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ==========================
   Logo
========================== */
.logo img {
  height: 100px;
  width: 100px;
  
}

/* ==========================
   Dropdown
========================== */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 40px;
  left: 0;
  background: white;
  list-style: none;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  min-width: 160px;
  border-radius: 8px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
  z-index: 999;
}
.dropdown-menu li a {
  padding: 10px 15px;
  color: #333;
  display: block;
}
.dropdown-menu li a:hover {
  background: #f5f5f5;
  color: #4e54c8;
}
.dropdown:hover .dropdown-menu { display: flex; }

/* Team Marquee Section */
.team {
  text-align: center;
  padding: 60px 20px;
  background: #f7f9fc;
  overflow: hidden;
}

.team h2 {
  margin-bottom: 30px;
  color: #0d47a1;
  font-size: 30px;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll-left 25s linear infinite;
}

.team-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  width: 260px;
  min-width: 260px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px) scale(1.08);
}

.team-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* Infinite scrolling effect */
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Half, because we duplicated */
}


/* ==========================
   Global Reset
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #04325d;
  color: #070707;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ==========================
   Hero Section
========================== */
.hero {
  background: url(/assets/images/hero.jpg) no-repeat center center/cover;
  min-height: 100vh;              /* full screen height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;                   /* make text white */
  position: relative;
}

/* Dark overlay for readability */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);    /* dark overlay */
  z-index: 1;
}

/* Ensure content shows above overlay */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 span {
  color: #2dc8e4; /* highlight with yellow/gold */
}

.hero .btn {
  margin: 8px;
}

/* ==========================
   Section Animations
========================== */
section { opacity: 1; transform: none; }
html.enhanced section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
html.enhanced section.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================
   Courses Section
========================== */
.courses-preview {
  padding: 60px 20px;
  text-align: center;
  background: #03124d;
}

.courses-preview h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #ffd700;
  position: relative;
}

.courses-preview h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #ffd700;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.course-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.course-card img {
  width: 100%;
  max-width: 300px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.course-card h3 {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #000000;
}

.course-card p {
  font-size: 0.95rem;
  color: #577093;
  line-height: 1.5;
}

/* ==========================
   About Section
========================== */
.section { padding: 60px 10%; background: #fff; }
.section.alt { background: #f7f9fc; }
.section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.section .text { flex: 1 1 50%; }
.section .image { flex: 1 1 40%; }
.section img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.section h2 { margin-bottom: 15px; color: #0d47a1; }

/* ==========================
   Contact Form (Animated Box)
========================== */
.contact-form {
  max-width: 500px;
  margin: 30px auto;
  padding: 25px;
  border-radius: 12px;
  background: linear-gradient(-45deg, #001f3f, #0056b3, #0074d9, #00aaff);
  background-size: 400% 400%;
  animation: gradientBG 10s ease infinite;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  color: white;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
  margin-bottom: 12px;
}

.contact-form button {
  padding: 12px;
  width: 100%;
  background: #ffcc00;
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s ease;
}
.contact-form button:hover {
  background: #ffaa00;
  transform: scale(1.05);
}

/* ==========================
   Image Gallery
========================== */
.image-gallery {
  padding: 70px 20px;
  text-align: center;
  background: #f5f7ff;
}
.image-gallery h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #000dff;
}
.gallery-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.gallery-item {
  width: 300px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
  transform: scale(0.9);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.gallery-item img {
  width: 100%;
  transition: transform 0.6s ease;
}
.gallery-item:hover { transform: scale(1.05); box-shadow: 0px 15px 30px rgba(0,0,0,0.2); }
.gallery-item:hover img { transform: scale(1.1) rotate(2deg); }

/* ==========================
   Tech Hero
========================== */
.tech-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("https://www.digitalvidya.com/blog/wp-content/uploads/2019/07/Computer-Courses_5e88b07dcfc3aaf35cdab473242649d4-1.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
}
.tech-hero h1 {
  font-size: 3rem;
  background: rgba(0,0,0,0.5);
  padding: 10px 20px;
  border-radius: 8px;
}

/* ==========================
   Back to Top Button
========================== */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #4e54c8;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 15px;
  cursor: pointer;
  font-size: 20px;
  display: none;
  transition: all 0.3s ease;
  z-index: 1000;
}
#backToTop:hover {
  background: #ffd700;
  color: #2630ec;
  transform: scale(1.1);
}

/* ==========================
   Logo
========================== */
.logo img {
  height: 50px;
  width: auto;
  display: block;
}

/* ==========================
   Dropdown
========================== */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 40px;
  left: 0;
  background: white;
  list-style: none;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  min-width: 160px;
  border-radius: 8px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
  z-index: 999;
}
.dropdown-menu li a {
  padding: 10px 15px;
  color: #333;
  display: block;
}
.dropdown-menu li a:hover {
  background: #f5f5f5;
  color: #4e54c8;
}
.dropdown:hover .dropdown-menu { display: flex; }

/* ==========================
   Team Marquee Section
========================== */
.team {
  text-align: center;
  padding: 60px 20px;
  background: #f7f9fc;
  overflow: hidden;
}

.team h2 {
  margin-bottom: 30px;
  color: #0d47a1;
  font-size: 30px;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll-left 25s linear infinite;
}

.team-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  width: 260px;
  min-width: 260px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover { transform: translateY(-8px) scale(1.08); }

.team-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* Infinite scrolling effect */
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.registration-card {
  text-decoration: none;   /* remove underline */
  color: inherit;          /* keep original text color */
  display: block;          /* make sure the link fills the card */
}

.registration-card h3,
.registration-card p {
  text-decoration: none;
  color: inherit;
}

.register-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #1e3a8a;       /* Dark blue */
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.register-btn:hover {
  background: #2563eb;       /* Lighter blue */
  transform: translateY(-2px);
}

.register-btn:active {
  background: #0d47a1;       /* Even darker when clicked */
  transform: translateY(0);
}

.certifications-gallery {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.certifications-gallery h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #0a0f70;
}

.masonry-grid {
  column-count: 3; /* number of columns */
  column-gap: 15px;
}

.masonry-grid img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 10px;
  display: block;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.masonry-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 992px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .masonry-grid {
    column-count: 1;
  }
}


/* ==========================
   Admission Hero
========================== */
.admission-hero {
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(120deg, #0a0f70, #01032a);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.admission-hero::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  background: rgba(255, 255, 255, 0.05);
  top: -25%;
  left: -25%;
  transform: rotate(25deg);
  animation: shine 6s infinite linear;
}

.admission-hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.admission-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* ==========================
   Admission Form
========================== */
.admission-form-section {
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

.admission-form {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
  width: 100%;
  max-width: 600px;
}

.admission-form h2 {
  margin: 20px 0 10px;
  color: #0a0f70;
}

.admission-form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
}

.admission-form input,
.admission-form select,
.admission-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 16px;
}

.admission-form input:focus,
.admission-form select:focus,
.admission-form textarea:focus {
  border-color: #0a0f70;
  outline: none;
  box-shadow: 0 0 5px rgba(10, 15, 112, 0.5);
}

.admission-form button {
  background: #ffd700;
  color: #000;
  border: none;
  padding: 14px;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.admission-form button:hover {
  background: #ffaa00;
  transform: scale(1.05);
}


/* ==========================
   Blogs Section
========================== */
.blogs-preview {
  padding: 60px 20px;
  background: #f7f9fc;
  text-align: center;
}

.blogs-preview h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #0d47a1;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s ease;
  text-align: left;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.blog-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.blog-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.read-btn {
  background: #ffd700;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.read-btn:hover {
  background: #ff9900;
  color: white;
}

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 25px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  text-align: center;
}

.modal-buttons {
  margin-top: 20px;
}

.modal-buttons button {
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  background: #0d47a1;
  color: white;
  cursor: pointer;
}

.modal-buttons button:hover {
  background: #ffd700;
  color: #000;
}

/* Animated inline tagline (typing + caret) */
.hero-title {
  font-size: 2.2rem;            /* adjust to fit your hero */
  font-weight: 700;
  color: #fff;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-title .static {
  color: #ffd700;               /* gold static part */
  font-weight: 800;
}

/* typed text */
.typed {
  color: #ffffff;
  font-weight: 600;
  min-width: 280px;            /* prevents jump when empty; adjust as needed */
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  position: relative;
}

/* caret */
.typed::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: #ffd700;
  margin-left: 6px;
  vertical-align: middle;
  animation: blink-caret 0.8s steps(1) infinite;
}


.marquee {
  width: 100%;
  overflow: hidden;
  background: #025ba8; /* background color */
  padding: 10px 0;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: scroll 12s linear infinite;
}

.marquee-content span {
  color: white;
  font-size: 1.75rem; /* h3 size */
  font-weight: bold;
  padding-right: 100px; /* space between loops */
  white-space: nowrap;
}

@keyframes scroll {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

    .navbar .nav-link {
  font-weight: 600; /* or 500 if you want semi-bold */
}

/*COLLAB BUTTON*/
/* Blinking outlined button */
.blink-btn {
  border: 2px solid #f39c12;   /* yellow border */
  color: #f39c12;              /* yellow text */
  background: transparent;     /* no fill */
  font-weight: bold;
  animation: blink 1.5s infinite;
  transition: all 0.3s ease;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.blink-btn:hover {
  background: #f39c12;   /* yellow fill */
  color: #fff;           /* white text */
  opacity: 1;            /* stop dimming when hovered */
}

 .navbar .nav-link {
    color: #fff !important;   /* make text white */
    font-weight: bold;        /* make text bold */
  }
  .navbar .nav-link:hover {
    color: #ffd700 !important; /* gold hover effect (optional) */
  }

  /* Navbar fix */
.navbar {
  position: fixed;     /* navbar ko fixed banata hai */
  top: 0;              /* top se chipka deta hai */
  left: 0;             /* left se chipka deta hai */
  width: 100%;         /* poori screen cover karega */
  z-index: 1030;       /* content ke upar dikhne ke liye */
  color: #030642;
}

/* Navbar ke niche ka content chipke na */
body {
  padding-top: 70px;   /* navbar ki height jitna space niche create karega */
}
