* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  padding-top: 60px;   /* keeps space for fixed header */
  display: flex;
  flex-direction: column;
  background: #111;
  color: #fff;
}

/* Top Bar */
.top-bar {
  background: #0a0a0a;
  padding: 10px 0;
  font-size: 12px;
}

.top-bar .container {
  width: 96;
  margin: auto;
  display: flex;
  justify-content: space-between;
  color: #ccc;
}

.top-bar span {
  color: #ff6600;
  font-weight: 600;
}

/* Header */
header {
  height: 60px;
  background: #fff;
  color: #000;
  padding: 15px 0;
}

.header-content {
  width: 95%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.auth-buttons {
      margin-left: 140px;
      margin-right: -270px;
}

.logo img {
  width: 17vw;
}

.highlight {
  color: #ff6600;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  
}

nav ul li a {
  margin-right: 20px;
  text-decoration: none;
  font-weight: 600;
  color: #000;

}

nav ul li a:hover {
  color: #ff6600;
}
nav{
  margin-right:290px;
}

.auth-buttons {
  margin-top:8px;
}

.auth-buttons button {
  padding: 8px 15px;
  margin-right: 15px;
  justify-content: space-between;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  margin-top: -10px;
}

.login-btn {
  margin-top: -30px;
  background-color: orangered;
  color: #fff;

}

.signup-btn {
  background-color: orangered;
  color: #fff;

  
}

.auth-buttons button:hover {
  opacity: 0.85;
}

.ri-menu-line {
  display: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* optional */
}

/* Prevent content from going under the navbar */
body {
    padding-top: 60px; /* adjust to match your header height */
}


/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  background: url("https://images.unsplash.com/photo-1521791136064-7986c2920216") no-repeat center center/cover;
  display: flex;
  align-items: center;
  padding: 0 10%;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-content h4 {
  color: #ff6600;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.orange {
  color: #ff6600;
}

.hero-content p {
  margin-bottom: 25px;
  color: #ddd;
  font-size: 16px;
}

.buttons {
  display: flex;
  gap: 15px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: 0.3s;
}

.btn-primary {
  background: #ff6600;
  color: #fff;
}

.btn-primary:hover {
  background: #e65500;
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

/* =======================
   ACTIVITIES / CARDS
   ======================= */

/* BACKGROUND FOR EACH SECTION (desktop) */
.activities {
  background: white;
}

/* GENERAL CARD STYLE (desktop) */
.card {
  height: 84vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 60px;
  box-sizing: border-box;
  background: white;
  /* base white section */
  border-bottom: 2px solid #eee;
}

/* ALTERNATE BACKGROUNDS FOR VARIATION (desktop) */
.card:nth-child(even) {
  background: #f7f7f7;
  background-color: #FEEDE6;
}

/* IMAGE WRAPPER (desktop) */
.img-box {
  width: 40%;
  display: flex;
  justify-content: center;
}

.img-box img {
  height: 55vh;
  width: 80%;
  object-fit: contain;
  border-radius: 10px;
}

/* CONTENT (desktop) */
.content-box {
  width: 55%;
  color: black;
}

.content-box h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #ff7a00;
  /* ORANGE heading */
  font-weight: 900;
}

.content-box p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #333;
}

/* BUTTON */
.btn {
  padding: 12px 30px;
  border: 2px solid #ff7a00;
  text-decoration: none;
  font-weight: bold;
  color: white;
  background: #ff7a00;
  border-radius: 6px;
  transition: 0.3s ease;
}

.btn:hover {
  background: white;
  color: #ff7a00;
  border-color: #ff7a00;
}

/* LEFT layout (1,3,5,7) */
.card.left {
  flex-direction: row;
}

/* RIGHT layout (2,4,6) */
.card.right {
  flex-direction: row-reverse;
}

/* ======= MOBILE CARD BEHAVIOUR (ALL ACTIVITIES SAME DESIGN) ======= */
@media (max-width: 900px) {
  .activities {
    background: #111;
    /* blend with site background for a continuous dark feel */
  }

  .card {
    background: #111;
    /* transparent black with low opacity */
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: auto;
    width: 100%;
    padding: 40px 20px;
    border-bottom: none;
    /* remove desktop separator line */
    overflow: hidden;
    margin-bottom: 20px;
    /* spacing between "panels" */
  }

  /* make ALL cards same – remove alternating backgrounds */
  .card:nth-child(even) {
    background: #111;
  }

  /* hide images completely in mobile so text sits on glass panel only */
  .img-box {
    display: none;
  }

  /* glass-effect content block */
  .content-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;

    background: #111;
    /* transparent black layer */
    /* backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6); */

    padding: 24px 20px;
    border-radius: 0px;

    color: #fff;
  }

  .content-box h2 {
    text-align: center;
    margin-bottom: 16px;
    color: #ff7a00;
    font-size: 28px;
  }

  .content-box p {
    color: #f3f3f3;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .btn {
    border-color: #ff7a00;
    background: #ff7a00;
    color: #fff;
  }
}

/* Footer */
footer {
  margin-top: auto;
  background: #0a0a0a;
  padding: 20px 10%;
  text-align: center;
  color: #aaa;
}

footer .links a {
  color: #ff6600;
  margin: 0 8px;
  text-decoration: none;
}

footer .links a:hover {
  text-decoration: underline;
}

footer .social a {
  margin: 0 10px;
  text-decoration: none;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    margin: 15px 0;
  }

  .contact {
    text-align: center;
  }

  .hero {
    height: auto;
    padding: 60px 5%;
  }

  .hero-content h1 {
    font-size: 32px;
  }
}

/* --- Internship Page Specific Styles --- */

.internship-page {
  padding: 40px 10%;
  background: #111;
}

.page-title {
  text-align: center;
  margin-bottom: 40px;
}

.page-title h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.page-title p {
  font-size: 18px;
  color: #ccc;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  gap: 15px;
  background: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-bar input,
.filter-bar select {
  flex-grow: 1;
  padding: 12px;
  font-size: 16px;
  background: #222;
  color: #fff;
  border: 1px solid #444;
  border-radius: 4px;
}

.filter-bar button {
  padding: 12px 30px;
  font-size: 16px;
  border: none;
}

/* Internship Listings Grid */
.internship-listings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* Individual Internship Card */
.internship-card {
  background: #222;
  border-radius: 8px;
  border-left: 4px solid #ff6600;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s;
}

.internship-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.card-header h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 5px;
}

.card-header .company {
  font-size: 16px;
  color: #ccc;
  font-weight: normal;
  margin-bottom: 20px;
}

.card-details p {
  color: #ddd;
  margin-bottom: 10px;
  font-size: 15px;
}

.card-details p strong {
  color: #aaa;
}

.card-footer {
  margin-top: 20px;
}

.btn-apply {
  display: block;
  width: 100%;
  text-align: center;
  background: #ff6600;
  color: #fff;
  padding: 12px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s;
}

.btn-apply:hover {
  background: #e65500;
}

/* --- Events Page Specific Styles --- */

.events-page {
  padding: 40px 10%;
  background: #111;
}

.event-month-group h2 {
  font-size: 24px;
  color: #ff6600;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.event-month-group:first-child h2 {
  margin-top: 0;
}

.event-card {
  display: flex;
  background: #222;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1px solid #333;
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.event-date {
  background: #1a1a1a;
  padding: 20px;
  text-align: center;
  color: #ff6600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 90px;
}

.event-date .day {
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}

.event-date .month {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
}

.event-details {
  padding: 20px;
  flex-grow: 1;
}

.event-details h3 {
  font-size: 20px;
  color: #fff;
  margin: 0 0 8px 0;
}

.event-details .meta {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 12px;
}

.event-details .description {
  font-size: 15px;
  color: #ddd;
  line-height: 1.5;
}

.event-action {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #333;
}

/* --- Training Page Specific Styles --- */

.training-page {
  padding: 40px 10%;
  background: #111;
}

.training-category h2 {
  font-size: 24px;
  color: #ff6600;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
  margin-top: 40px;
  margin-bottom: 30px;
}

.training-category:first-of-type h2 {
  margin-top: 0;
}

.training-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.training-card {
  background: #222;
  border: 1px solid #333;
  border-top: 4px solid #ff6600;
  border-radius: 8px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.training-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.training-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.training-card .description {
  color: #ccc;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.skills-tags span {
  background: #333;
  color: #ddd;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 500;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #aaa;
  padding-top: 15px;
  border-top: 1px solid #333;
  margin-bottom: 20px;
}

.card-action .btn-primary {
  width: 100%;
  text-align: center;
}

/* Responsive adjustment for padding */
@media (max-width: 768px) {
  .training-page {
    padding: 40px 5%;
  }
}

/* --- Placements Page Specific Styles --- */

.placement-page {
  padding: 40px 10%;
  background: #111;
}

/* Highlights Section */
.placement-highlights {
  background: #1a1a1a;
  padding: 40px;
  border-radius: 8px;
  margin: 40px 0;
}

.highlights-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.highlight-box .highlight-number {
  display: block;
  font-size: 36px;
  font-weight: bold;
  color: #ff6600;
  margin-bottom: 5px;
}

.highlight-box p {
  font-size: 16px;
  color: #ccc;
}

/* Recruiters Section */
.our-recruiters h2,
.student-testimonials h2 {
  font-size: 24px;
  color: #ff6600;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
  margin-bottom: 30px;
  text-align: center;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  align-items: center;
}

.logo-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
}

.logo-item:hover {
  transform: scale(1.05);
}

.logo-item img {
  max-width: 100%;
  height: auto;
  max-height: 50px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: filter 0.3s, opacity 0.3s;
}

.logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Testimonials Section */
.student-testimonials {
  margin-top: 60px;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: #222;
  border-left: 4px solid #ff6600;
  padding: 30px;
  border-radius: 8px;
}

.testimonial-card .quote {
  font-style: italic;
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card .quote::before {
  content: '“';
  font-size: 48px;
  color: #ff6600;
  position: absolute;
  top: -10px;
  left: -20px;
  opacity: 0.3;
}

.student-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid #333;
}

.student-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ff6600;
}

.student-details h4 {
  margin: 0;
  font-size: 18px;
}

.student-details .company {
  margin: 0;
  color: #aaa;
  font-size: 14px;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .placement-page {
    padding: 40px 5%;
  }
}

/* --- Center of Excellence Page Specific Styles --- */

.coe-page {
  padding: 40px 10%;
  background: #111;
}

/* Intro Section */
.coe-intro {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  background: #1a1a1a;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 50px;
  align-items: center;
}

.coe-intro h2 {
  font-size: 22px;
  color: #ff6600;
  margin-bottom: 15px;
}

.coe-intro p,
.coe-intro li {
  color: #ccc;
  line-height: 1.7;
}

.intro-benefits ul {
  list-style: none;
  padding: 0;
}

.intro-benefits li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* Our CoEs Section */
.our-coes h2 {
  font-size: 24px;
  color: #ff6600;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
  margin-bottom: 30px;
  text-align: center;
}

.coe-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.coe-card {
  background: #222;
  border: 1px solid #333;
  border-top: 4px solid #ff6600;
  border-radius: 8px;
  padding: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.coe-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.coe-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #444;
}

.coe-card-header img {
  height: 40px;
  max-width: 120px;
}

.coe-card-header h3 {
  margin: 0;
  font-size: 22px;
}

.coe-card p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.coe-card h4 {
  color: #ff6600;
  font-size: 16px;
  margin-bottom: 10px;
}

.coe-card ul {
  list-style: disc;
  padding-left: 20px;
  color: #ccc;
}

.coe-card ul li {
  margin-bottom: 8px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .coe-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .coe-page {
    padding: 40px 5%;
  }
}

/* --- Placement Committee Page Specific Styles --- */

.committee-page {
  padding: 40px 10%;
  background: #111;
}

/* Role Section */
.committee-role {
  text-align: center;
  background: #1a1a1a;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 50px;
}

.committee-role h2 {
  font-size: 22px;
  color: #ff6600;
  margin-bottom: 15px;
}

.committee-role p {
  color: #ccc;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* Section Titles */
.faculty-coordinators h2,
.student-coordinators h2 {
  font-size: 24px;
  color: #ff6600;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
  margin-bottom: 30px;
  text-align: center;
}

/* Members Grid */
.members-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.member-card {
  background: #222;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  border: 1px solid #333;
  transition: transform 0.3s, box-shadow 0.3s;
}

.member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.member-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
}

.member-info {
  padding: 20px;
}

.member-info h3 {
  margin: 0 0 5px 0;
  font-size: 20px;
}

.member-info .designation {
  color: #aaa;
  font-size: 15px;
  margin-bottom: 15px;
}

.contact-info a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: #ff6600;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  transition: background 0.3s;
}

.contact-info a:hover {
  background: #e65500;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .committee-page {
    padding: 40px 5%;
  }
}

/* --- IIC & Incubation Page Specific Styles --- */

.iic-page {
  padding: 40px 10%;
  background: #111;
}

/* Intro Section */
.iic-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.intro-box {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 8px;
  border-bottom: 3px solid #ff6600;
}

.intro-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #ff6600;
}

.intro-box p {
  color: #ccc;
  line-height: 1.7;
}

/* Startup Showcase Section */
.startup-showcase h2 {
  font-size: 24px;
  color: #ff6600;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
  margin-bottom: 30px;
  text-align: center;
}

.startups-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.startup-card {
  background: #222;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.startup-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.startup-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #444;
  background-color: #fff;
}

.startup-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.startup-card .sector {
  display: inline-block;
  background: #333;
  color: #ff6600;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 15px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.startup-card .description {
  color: #ccc;
  line-height: 1.6;
  min-height: 50px;
  margin-bottom: 20px;
}

/* Call to Action Section */
.iic-cta {
  background: linear-gradient(rgba(255, 102, 0, 0.1), rgba(17, 17, 17, 0.5)), #1a1a1a;
  text-align: center;
  padding: 50px;
  border-radius: 8px;
  margin-top: 60px;
}

.iic-cta h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.iic-cta p {
  color: #ccc;
  margin-bottom: 25px;
  font-size: 18px;
}

.iic-cta .btn-primary {
  padding: 15px 35px;
  font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .iic-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .iic-page {
    padding: 40px 5%;
  }
}

/* Responsive nav*/
@media (max-width: 600px) {

  /* hide the nav by default on mobile */
  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
  }

  .contact {
    width: 100%;
    margin-top: 10px;
  }

  .contact {
    display: none;
  }
  .login-btn,
.signup-btn {
  display: none;
}


  .container.header-content {
    justify-content: space-between;
  }

  /* show hamburger icon */
  .ri-menu-line {
    display: block;
    align-self: flex-end;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    margin: -25px 0px 0px 0px;
  }

  .logo img {
    width: 200px;
    margin: 0px 100px 0px 0px;
  }
}

/* =========================
   MOBILE NAVIGATION (≤600px)
   ========================= */
@media (max-width: 600px) {
  .container.header-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
  }

  .ri-menu-line {
    top: -13px;
    display: block !important;
    position: relative;
    z-index: 1001;
    font-size: 28px;
    color: #000;
    cursor: pointer;
  }

.logo{
  margin-top:-10px;
}

  .contact {
    display: none;
  }
    .login-btn,
.signup-btn {
  display:block;

}
.auth-buttons {
  display: flex;
  gap: 10px;               
  align-items: center;  
  margin-left: 55px;
}




  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 40%;
    right: 0;
    width: 80%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 8px;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
  }

  nav ul.active {
    display: flex;
  }
  button signup-btn{
    display:none;
  }


  nav ul li a {
    display: block;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 0;
    text-align: center;
  }

  nav ul li a:hover {
    background: #f5f5f5;
  }


}


/* DESKTOP NAVIGATION (≥601px) */
@media (min-width: 601px) {
  nav ul {
    display: flex !important;
    flex-direction: row;
    gap: 20px;
    background: transparent;
    padding: 0;
    margin: 0;
  }

  .ri-menu-line {
    display: none !important;
  }

  .contact {
    display: block !important;
  }
 

}

