
    body {
      font-family: 'Segoe UI', sans-serif;
     
      
    }

    /* Navbar */
    .navbar {
      height: 56px;
    }
.hero {
position:fixed;
  top: 56px;
  left: 0;
  width: 100%;
  height: calc(100vh - 56px);
  background-image: url("assets/images/iceets.png");
  background-size: cover;
  background-position: center;
 
  background-repeat: no-repeat;
  z-index: 0;  
 
}

   .hero-overlay {
  background: rgba(0, 0, 0, 0.55);
   
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 20px;

  
}

    /* Scrollable Content */
    .content-scroll {
      margin-top: 100vh;
      height: calc(100vh - 56px);
      overflow-y: auto;
      background: #ffffff;
    }

    .section-padding {
      padding: 70px 0;
    }

    .section-title {
      font-weight: 700;
      color: #0d6efd;
    }

    footer {
      background: #1a237e;
      color: #fff;
    }
    
    
    
  .hero {
  position: fixed;
  top: 56px; /* navbar height */
  left: 0;
  width: 100%;
  height: calc(100vh - 56px);
  z-index: -1;
}


/* Countdown Boxes */
#countdown .count-box {
  background: rgba(255, 255, 255, 0.15);
  padding: 15px 20px;
  border-radius: 10px;
  min-width: 80px;
  font-weight: 600;
  font-size: 1.2rem;
  color: #00ffcc;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

#countdown .count-box span {
  display: block;
  font-size: 0.8rem;
  color: #fff;
  margin-top: 5px;
}


 @media (max-width: 768px) {
  #countdown {
    flex-wrap: wrap;
    gap: 5px; /* smaller gaps between boxes */
    justify-content: center;
  }

  #countdown .count-box {
    min-width: 60px;       /* smaller width */
    padding: 10px 12px;    /* smaller padding */
    font-size: 1rem;       /* smaller font size */
    border-radius: 8px;    /* slightly smaller radius */
  }

  #countdown .count-box span {
    font-size: 0.7rem;     /* smaller label font */
  }
}


/* Mobile Menu Only - for screens smaller than lg (992px) */
@media (max-width: 991.98px) {

  /* Collapse menu background */
  .navbar-collapse {
    background-color: #1a237e;   /* dark background for mobile menu */
    padding: 1rem;
    border-radius: 0 0 10px 10px; /* rounded bottom corners */
  }

  /* Menu items styling */
  .navbar-collapse .nav-link {
    font-size: 1.1rem;
    color: #ffcc00 !important;    /* custom text color for mobile */
    padding: 0.75rem 0;
    text-align: center;
  }

  .navbar-collapse .nav-link:hover {
    color: #ffffff !important;    /* hover effect */
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
  }

  /* Toggler button styling */
  .navbar-toggler {
    border: 2px solid #ffcc00;
    border-radius: 5px;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,204,0,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
}


.modern-subtitle {
  color: #4dd0e1; /* cyan */
}

.modern-title {
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 229, 255, 0.35);
}








.conf-date-highlight {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ff6600, #ffb347); /* orange gradient */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conf-date-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  .conf-date-highlight {
    font-size: 1.3rem;
    padding: 0.5rem 1rem;
  }
}

/* Circular Icon Styling */
.icon-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #00d4ff);
    color: white;
    border-radius: 50%; /* Makes it perfectly round */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}

.icon-circle.alt {
    background: linear-gradient(135deg, #2a5298, #1e3c72);
}

.icon-box-modern {
    padding: 20px;
    border-radius: 20px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.icon-box-modern:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

/* Typography refinement */
.leading-relaxed {
    line-height: 1.8;
}

.tracking-widest {
    letter-spacing: 0.15em;
}

/* Image floating animation */
.main-image-holder {
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}


/* Animation for the circular badge */
.zoom-in-out {
  animation: pulse-blue 3s infinite ease-in-out;
}

@keyframes pulse-blue {
  0% { transform: scale(1); box-shadow: 0 10px 20px rgba(0, 123, 255, 0.1); }
  50% { transform: scale(1.05); box-shadow: 0 15px 30px rgba(0, 123, 255, 0.2); }
  100% { transform: scale(1); box-shadow: 0 10px 20px rgba(0, 123, 255, 0.1); }
}

/* Ensures the text doesn't wrap awkwardly */
.text-uppercase {
  white-space: nowrap;
}




.tracking-widest { letter-spacing: 0.2rem; }

.icon-circle-sm {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hover-up {
    transition: transform 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-5px);
}

.content-scroll {
  position: relative;
  z-index: 10;
  margin-top: 100vh; /* Pushes content below the first screen */
  background: #ffffff; /* Must be solid white to cover the image */
  width: 100%;
  
  /* REMOVE THESE IF THEY EXIST IN YOUR CODE:
     height: calc(100vh - 56px);  <-- DELETE
     overflow-y: auto;            <-- DELETE
  */
  
  height: auto; /* Let it grow with the content */
  overflow: visible; 
}



/* Section */
/* Track Cards */
.track-card {
  background: #ffffff;
  border: 2px solid #1a237e; /* visible border */
  border-radius: 20px;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  position: relative;
  overflow: hidden;
  min-height: 380px; /* uniform height */
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.track-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Track Icon Circle */
/* Track Icon Circle */
.track-icon {
  width: 50px;
  height: 50px;
  background: #1a237e;
  color: #ffffff;
  border: 3px solid #ff9800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  position: absolute;
  top: 20px;       /* move it fully inside */
  left: 20px;
  z-index: 10;
}

/* Track Title */
.track-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-left: 70px; /* space for circle icon */
  margin-bottom: 1rem;
  color: #1a237e;
}

/* Track List */
.track-list {
  list-style-type: disc;
  padding-left: 70px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Scroll Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animation Delay */
.scroll-animate.delay-1 { transition-delay: 0.1s; }
.scroll-animate.delay-2 { transition-delay: 0.2s; }
.scroll-animate.delay-3 { transition-delay: 0.3s; }



/* Animation State */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.dept-card {
  transition: all 0.3s ease;
  cursor: default;
}

.dept-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.icon-circle-sm {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.animated-slide {
  opacity: 0;
  transform: translateY(20px);
  animation: slideIn 1s forwards;
}

.animated-slide.delay-1 { animation-delay: 0.5s; }
.animated-slide.delay-2 { animation-delay: 1s; }

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




 
  

  :root {
    --primary: #6366f1;
    --accent: #f43f5e;
    --glass: rgba(255, 255, 255, 0.1);
    --bg-dark: #0f172a;
  }

  .iceets-container {
    background: radial-gradient(circle at top left, #1e293b, #0f172a);
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
    border-radius: 20px;
    color: white;
  }

  .grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
  }

  .card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }

  .card.wide {
    grid-column: 1 / -1;
  }

  .icon-box {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary);
    letter-spacing: 0.5px;
  }

  .dept-list {
    list-style: none;
    padding: 0;
  }

  .dept-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-weight: 300;
  }

  .scope-text {
    line-height: 1.8;
    font-weight: 300;
    font-size: 1.1rem;
    color: #cbd5e1;
  }

  .scope-text span {
    color: white;
    font-weight: 600;
    border-bottom: 2px solid var(--accent);
  }

  /* Animations */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .animate-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: var(--delay);
  }

  /* Glow Effect */
  .card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%);
    pointer-events: none;
  }

  @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;800&display=swap');

  .iceets-section {
    position: relative;
    padding: 60px 20px;
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
    color: #1a202c;
  }

  /* Floating Stars/Particles Background */
  .stars-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
  }

  .star {
    position: absolute;
    width: 8px; height: 8px;
    background: rgba(66, 153, 225, 0.2);
    border-radius: 50%;
    animation: float 15s infinite linear;
  }
  .star:nth-child(1) { top: 10%; left: 10%; animation-duration: 12s; }
  .star:nth-child(2) { top: 70%; left: 80%; animation-duration: 18s; }
  .star:nth-child(3) { top: 40%; left: 50%; width: 12px; height: 12px; }
  .star:nth-child(4) { top: 20%; left: 90%; background: rgba(246, 173, 85, 0.2); }

  @keyframes float {
    0% { transform: translateY(0) translateX(0) rotate(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px) rotate(360deg); opacity: 0; }
  }

  .content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .top-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
  }

  .modern-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid  #4299e1;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
  }

  .modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(66, 153, 225, 0.1);
    border-color: #4299e1;
  }

  .card-icon { font-size: 2.5rem; margin-bottom: 20px; }
  
  h3 { font-size: 1.4rem; color: #2d3748; margin-bottom: 20px; font-weight: 800; }

  .dept-list { list-style: none; padding: 0; }
  .dept-list li { 
    margin-bottom: 12px; 
    padding-left: 20px; 
    position: relative; 
    color: #4a5568;
  }
  .dept-list li::before {
    content: '→';
    position: absolute; left: 0; color: #4299e1;
  }

  .map-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #2d3748;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 0.9rem;
    transition: background 0.3s;
  }
  .map-btn:hover { background: #4299e1; }

  .scope-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    color: #4a5568;
    line-height: 1.8;
  }

  .animate-up {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 768px) {
    .modern-card { padding: 25px; }
  }

  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Syncopate:wght@700&display=swap');

  .modern-scope-section {
    position: relative;
    padding: 100px 40px;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    display: flex;
    justify-content: center;
  }

  /* --- Glowing Stars / Particles --- */
  .energy-field {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
  }

  .particle {
    position: absolute;
    width: 12px; height: 12px;
    background: #3182ce;
    border-radius: 50%;
    filter: blur(4px);
    box-shadow: 0 0 15px #63b3ed, 0 0 30px #63b3ed;
    animation: flowRandom 25s infinite linear;
    opacity: 0.4;
  }

  .particle:nth-child(1) { top: 10%; left: 20%; background: #4299e1; animation-duration: 18s; }
  .particle:nth-child(2) { top: 80%; left: 10%; background: #ecc94b; animation-duration: 22s; }
  .particle:nth-child(3) { top: 40%; left: 90%; background: #4fd1c5; animation-duration: 15s; }
  .particle:nth-child(4) { top: 70%; left: 70%; background: #3182ce; }
  .particle:nth-child(5) { top: 20%; left: 50%; background: #f56565; width: 15px; height: 15px; }
  .particle:nth-child(6) { top: 50%; left: 5%; background: #4299e1; }

  @keyframes flowRandom {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    20% { opacity: 0.6; }
    80% { opacity: 0.6; }
    100% { transform: translate(100px, -200px) scale(1.5); opacity: 0; }
  }

  /* --- Main Container --- */
  .scope-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
  }

  .header-group {
    text-align: center;
    margin-bottom: 40px;
  }

  .pulse-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
  }

  h3 {
    font-family: 'Syncopate', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #1a202c;
    font-size: 1.5rem;
    margin: 0;
  }

  .line-decorator {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3182ce, #63b3ed);
    margin: 15px auto;
    border-radius: 10px;
  }

  /* --- The Text Box --- */
  .text-glass-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid #82b1e0;
    padding: 50px;
    border-radius: 40px;
    box-shadow: 20px 20px 60px #d1d9e6, -20px -20px 60px #ffffff; /* Neumorphic effect */
    position: relative;
    transition: transform 0.3s ease;
  }

  .text-glass-box:hover {
    transform: translateY(-5px);
  }

  .justified-text {
    text-align: justify;
    line-height: 2;
    color: #4a5568;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 300;
  }

  .justified-text strong {
    color: #2b6cb0;
    font-weight: 600;
  }

  .corner-accent {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-bottom: 3px solid #3182ce;
    border-right: 3px solid #3182ce;
    border-bottom-right-radius: 15px;
    opacity: 0.3;
  }

  /* --- Animations --- */
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .slide-up {
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  }

  @import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;600;800&display=swap');

  .registration-portal {
    position: relative;
    padding: 100px 20px;
    background: #ffffff;
    font-family: 'Lexend', sans-serif;
    overflow: hidden;
  }

  /* --- Navy Circles Background --- */
  .geo-circle {
    position: absolute;
    border-radius: 50%;
    background: #1e3a8a;
    opacity: 0.03;
    z-index: 1;
  }
  .circle-1 { width: 500px; height: 500px; top: -100px; left: -100px; }
  .circle-2 { width: 300px; height: 300px; bottom: 10%; right: -50px; background: #3b82f6; }
  .circle-3 { width: 150px; height: 150px; top: 20%; right: 15%; border: 2px solid #1e3a8a; background: transparent; opacity: 0.1; }

  .content-limit {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
  }

  /* --- Header --- */
  .section-intro { text-align: center; margin-bottom: 60px; }
  .tagline { color: #3b82f6; font-weight: 900; letter-spacing: 3px; text-transform: uppercase; font-size: 0.8rem; }
  .main-title { font-size: 2.5rem; color: #0f172a; margin: 10px 0; font-weight: 800; }
  .accent-bar { width: 80px; height: 5px; background: #1e3a8a; margin: 0 auto; border-radius: 10px; }

  /* --- Timeline Card System --- */
  .dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
  }
  .date-card {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    position: relative;
  }
  .date-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(30,58,138,0.08); }
  .step-num { position: absolute; top: 20px; right: 20px; font-weight: 800; opacity: 0.1; font-size: 1.5rem; }
  .date-card h4 { color: #1e3a8a; font-size: 1.3rem; margin-bottom: 5px; font-weight: 800; }
  .date-card p { color: #64748b; font-size: 0.95rem; margin: 0; }
  .highlight { border-left: 5px solid #f59e0b; }
  .event-focus { background: #1e3a8a; color: white; border: none; }
  .event-focus h4 { color: #fbbf24; }
  .event-focus p { color: #cbd5e1; }

  /* --- Premium Table Design --- */
  .pricing-container {
    background: #ffffff;
    border-radius: 35px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
  }
  .table-branding {
    background: #0f172a;
    padding: 30px;
    text-align: center;
    color: #fff;
  }
  .table-branding h3 { margin: 0; font-weight: 600; letter-spacing: 1px; }

  .modern-table-wrapper { overflow-x: auto; padding: 20px; }
  .reg-table { width: 100%; border-collapse: separate; border-spacing: 0 10px; }
  .reg-table th { padding: 15px 25px; text-align: left; color: #94a3b8; font-size: 0.8rem; text-transform: uppercase; }
  .reg-table td { padding: 20px 25px; background: #f8fafc; color: #334155; border: none; transition: 0.2s; }
  .reg-table tr:hover td { background: #f1f5f9; }
  .reg-table td:first-child { border-radius: 15px 0 0 15px; }
  .reg-table td:last-child { border-radius: 0 15px 15px 0; text-align: right; }
  
  .cat-name { font-weight: 600; color: #1e3a8a; }
  .price-val { font-family: 'Courier New', Courier, monospace; font-weight: 800; color: #0f172a; font-size: 1.1rem; }
  
  .special-highlight td { background: #eff6ff !important; border: 1px dashed #3b82f6; }
  .mini-badge { background: #3b82f6; color: #fff; font-size: 0.6rem; padding: 3px 8px; border-radius: 4px; vertical-align: middle; margin-left: 10px; }

  .reg-footer { padding: 30px; background: #f1f5f9; font-size: 0.85rem; color: #475569; display: flex; flex-direction: column; gap: 10px; }

  /* --- Animation --- */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .animate-reveal { animation: fadeInUp 1s ease-out forwards; }

  @media (max-width: 768px) {
    .main-title { font-size: 1.8rem; }
    .reg-table td, .reg-table th { padding: 15px; font-size: 0.9rem; }
  }

  /* Hover Animations */
  .faculty-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15) !important;
    border-color: #3b82f6 !important;
  }
  
  .faculty-item {
    transition: all 0.2s ease;
    padding: 2px 0;
    border-bottom: 1px solid transparent;
  }

  .faculty-item:hover {
    color: #1e3a8a;
    padding-left: 5px;
    border-bottom: 1px solid #FFD700;
  }

  /* Dynamic Background Styling */
  .contact-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    filter: blur(60px);
    opacity: 0.2;
    z-index: 1;
    animation: floatCircles 20s infinite alternate ease-in-out;
  }
  .c-1 { width: 400px; height: 400px; top: -100px; left: -100px; }
  .c-2 { width: 300px; height: 300px; bottom: -50px; right: -50px; background: #FFD700; opacity: 0.1; }
  .c-3 { width: 150px; height: 150px; top: 20%; right: 10%; }

  .contact-ring {
    position: absolute;
    border: 2px solid #FFD700;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 1;
    animation: pulseRing 8s infinite ease-in-out;
  }
  .r-1 { width: 500px; height: 500px; bottom: -250px; left: 20%; }

  /* Card Styling */
  .contact-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s ease;
  }

  .contact-card:hover {
    transform: translateY(-15px);
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.07);
  }

  .card-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.1), transparent 70%);
    opacity: 0;
    transition: 0.4s;
  }
  .contact-card:hover .card-glow { opacity: 1; }

  .contact-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }
  .contact-role { color: #94a3b8; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; margin-bottom: 10px; }
  .contact-name { color: #ffffff; font-size: 1.4rem; margin: 0; font-weight: 700; }
  .contact-divider { width: 40px; height: 2px; background: #FFD700; margin: 20px auto; }
  
  .contact-link {
    color: #FFD700;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
  }
  .contact-link:hover { color: #ffffff; transform: scale(1.05); }

  /* Animations */
  @keyframes floatCircles {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
  }
  @keyframes pulseRing {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.2); opacity: 0.05; }
  }

    .track-card {
  transition: all 0.3s ease;
}

.track-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(30, 58, 138, 0.1);
  border-color: #FFD700 !important;
}

.modal-backdrop.show {
  opacity: 0.8;
  backdrop-filter: blur(5px);
}





 .track-card-new {
    position: relative;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    background: #0f172a;
    border: 2px solid #e2e8f0;
    transition: all 0.5s ease;
    cursor: pointer;
  }

  /* Initial Image State */
  .track-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
  }

  .track-image::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 20%, rgba(15, 23, 42, 0.9) 90%);
  }

  .track-badge {
    position: absolute;
    top: 15px; left: 15px;
    background: #FFD700;
    color: #0f172a;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 2;
  }

  .track-initial-title {
    position: absolute;
    bottom: 20px; left: 20px; right: 20px;
    z-index: 2;
    transition: opacity 0.3s;
  }

  .track-initial-title h5 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
  }

  /* Hover State Content */
  .track-content-hover {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    padding: 25px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: white;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto; 
    display: block;
  }

  .hover-title {
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
  }

  .track-list-new {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .track-list-new li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    opacity: 0.9;
  }

  .track-list-new li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FFD700;
  }

  /* The Hover Trigger */
  .track-card-new:hover {
    border-color: #FFD700;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  }

  .track-card-new:hover .track-image {
    transform: scale(1.1);
  }

  .track-card-new:hover .track-content-hover {
    opacity: 1;
    transform: translateY(0);
  }

  .track-card-new:hover .track-initial-title {
    opacity: 0;
  }
















