/*
====================================================
Authors:
1. Sujay V Kulkarni
   - Portfolio: bit.ly/sujayvitae
   - GitHub: https://github.com/SujayKulkarni-2211
   - LinkedIn: https://www.linkedin.com/in/sujay-kulkarni-51391b286/
2. Deepti Jain
   - LinkedIn: https://www.linkedin.com/in/deepti-jain-0319662b0/

Project Links:
- GitHub Repository: https://github.com/yourusername/projectname
- Website: https://yourwebsite.com

Created: December 2024
====================================================
*/

/* General Body Styling */
body {
    font-family: 'Montserrat', Arial, sans-serif;
    scroll-behavior: smooth;
    background-color: #fcf1e9;
    color: #000f49; /* Dark blue text */
    font-size: 16px;
  }
  
  /* Hero Gradient Background */
  .hero-gradient {
    background: linear-gradient(135deg, #000f49 0%, #1a237e 100%);
    color: white;
  }
  
  /* Navbar Styling */
.navbar {
    background: linear-gradient(to right, #000f49, #3b5998); /* Dark gradient background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Navbar Links */
  .navbar a {
    transition: color 0.3s ease;
    color: #606060;
    padding: 0 10px; /* Decreased padding for compact alignment */
    font-size: 0.9rem; /* Slightly smaller font size */
    white-space: nowrap; /* Prevent text wrapping */
  }
  
  .navbar a:hover {
    color: #fcf1e9; /* Light cream hover color */
  }
  
  .navbar-logo {
    font-weight: 700;
    letter-spacing: 1px;
    color: #fcf1e9; /* Light cream color */
  }
  
  /* Navbar Container */
  .fixed {
    padding: 0.5rem 0; /* Reduced vertical padding */
  }
  
  /* Dropdown Styling */
  .relative .absolute {
    position: absolute; /* Ensure dropdown stays aligned */
    top: 100%; /* Dropdown aligns just below the button */
    left: 0;
    z-index: 50;
    white-space: nowrap; /* Prevent wrapping */
  }
  
  .relative .absolute a {
    padding: 10px 15px; /* Smaller padding for dropdown */
  }
  
  
  /* Card Hover Effect */
  .card-hover {
    transition: transform 0.3s ease-in-out;
  }
  
  .card-hover:hover {
    transform: translateY(-5px);
  }
  
  /* Timeline Styling */
  .timeline-container {
    position: relative;
  }
  
  .timeline-container::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #000f49;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
  }
  
  @media (max-width: 768px) {
    .timeline-container::after {
      left: 31px;
    }
  }
  
  /* Animation for Fade-Up Effect */
  .animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* FAQ Section Styling */
  .faq-section {
   
    padding: 1.5rem;
    border-radius: 10px;
    
  }
  
  .faq-question {
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .faq-answer {
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  
  /* Button Styling */
  .register-btn {
    background: #000f49;
    color: #fcf1e9; /* Light cream text */
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    transition: background 0.3s ease;
  }
  
  .register-btn:hover {
    background: #1a237e; /* Slightly lighter blue */
  }
 /* Accordion Button Styling */
.accordion-button {
    background-color: #fcf1e9; /* Default background color */
    color: #000f49; /* Default text color */
    font-weight: bold;
    padding: 15px;
    text-align: left;
    border: none;
    cursor: pointer;
    outline: none;
    width: 100%;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  /* Hover State for Accordion Button */
  .accordion-button:hover {
    background-color: #1a237e; /* Blue background */
    color: #ffffff; /* White text */
  }
  
  /* Active State for Accordion Button (When Clicked) */
  .accordion-item.active .accordion-button {
    background-color: #ffd700; /* Golden background */
    color: #1a237e; /* Blue text */
  }
  
  /* Accordion Body Styling */
  .accordion-body {
    display: none;
    padding: 15px;
    background-color: #ffffff; /* White background */
    color: #000000; /* Black text */
    font-size: 1rem;
    border-top: 1px solid #ddd;
  }
  
  /* Show Accordion Body When Active */
  .accordion-item.active .accordion-body {
    display: block;
  }

  /* Timeline Styling */
.timeline {
    border-left: 4px solid #000f49;
    padding-left: 20px;
    position: relative;
  }
  
  .timeline-day {
    margin-bottom: 30px;
  }
  
  .timeline-events {
    position: relative;
  }
  
  .timeline-event {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
  }
  
  .timeline-event::before {
    content: '';
    position: absolute;
    top: 0;
    left: -24px;
    height: 100%;
    width: 2px;
    background-color: #000f49;
    z-index: -1;
  }
  
  .timeline-icon {
    background-color: #1a237e;
    color: #fff;
    font-size: 1.5rem;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
  }
  
  .timeline-content {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: calc(100% - 70px); /* Adjust to make space for icons */
  }
  
  .event-time {
    font-size: 1rem;
    color: #1a237e;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  p {
    margin: 0;
  }
  
  /* Day Title */
  .day-title {
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #000f49;
  }

  /* Reach Section Styling */
#reach {
    background-color: #f9fafb; /* Light gray background */
  }
  
  .location-item iframe {
    border-radius: 8px; /* Rounded corners for map */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  }
  
  .location-item p {
    margin-top: 1rem;
    font-size: 1rem;
    color: #606060; /* Subtle gray for text */
  }
  
  .location-item strong {
    font-size: 1.1rem;
    color: #000f49; /* Highlighted for location name */
  }
  
  /* Responsive Layout */
  .grid {
    display: grid;
    grid-template-columns: 1fr; /* Default: single column */
    gap: 20px; /* Space between items */
  }
  
  @media (min-width: 768px) {
    .grid {
      grid-template-columns: 1fr 1fr; /* Two columns for medium screens and up */
    }
  }

  /* Icon beside Reach Us title */
#reach h2 i {
    font-size: 2rem;
    vertical-align: middle;
    color: #1a237e;
    margin-right: 8px;
  }
/* Contact Section Styling */
#contact {
    background-color: #f9fafb; /* Light gray background */
  }
  
  /* Title Styling */
  #contact h2 {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000f49;
  }
  
  #contact h2 i {
    font-size: 2.5rem;
    color: #1a237e;
    margin-right: 8px;
  }
  
  /* Contact Container Styling */
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Elevated shadow */
  }
  
  /* Contact Details Styling */
  .contact-details {
    flex: 1;
  }
  
  .contact-details .flex {
    align-items: center;
  }
  
  .contact-details i {
    color: #1a237e;
    transition: transform 0.3s ease;
  }
  
  .contact-details a {
    color: #1a237e;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
  }
  
  .contact-details a:hover {
    text-decoration: underline;
  }
  
  .contact-details p {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
  }
  
  /* Contact Image Styling */
  .contact-image {
    flex: 1;
  }
  
  .contact-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Elevated shadow */
    transition: transform 0.3s ease;
  }
  
  .contact-image img:hover {
    transform: scale(1.05); /* Subtle zoom on hover */
  }
  
  /* Responsive Layout */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column; /* Stack details and image */
    }
  
    .contact-details {
      text-align: center; /* Center-align details on small screens */
      padding-right: 0;
    }
  
    .contact-image {
      margin-top: 20px; /* Add spacing for stacked layout */
    }
  }

  .mobile-menu-open {
    overflow: hidden;
  }
    
  
 