:root {
    --iim-primary-blue: #003366;
    --iim-secondary-gold: #f7cf0d;
    --iim-accent-green: #40b93c;
    --iim-link-blue: #47a4e0;
    --iim-light-bg: #f8f9fa;
    --iim-text-dark: #212529;
    --iim-text-light: #ffffff;
}

/* --- Base Styles --- */
body {
    font-family: 'Lato', sans-serif;
    color: var(--iim-text-dark);

}

html,body {
    overflow-x: hidden!important; /* Prevent horizontal overflow */}

    .status-available {
      color: green;
      font-weight: 500;
    }

    .status-leave {
      color: orange;
      font-weight: 500;
    }

    .pagination {
      justify-content: center;
    }



    #orgchart-wrapper {
      width: 100%;
      height: 80vh;
      overflow-x: auto;
      overflow-y: auto;
      background: #f8f9fa;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 10px;
    }

    #myDiagramDiv {
      width: 1800px; /* Ensures horizontal space for full chart */
      height: 100%;
    }

    @media (max-width: 768px) {
      #myDiagramDiv {
        width: 1200px;
      }
    }

    
  .modern-table tbody tr td {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
 /* Fullscreen Preloader */
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Spinner Animation */
  .loader {
    width: 50px;
    height: 50px;
    border: 6px solid #e0e0e0;
    border-top: 6px solid #004d9a; /* Primary blue */
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  /* Keyframes for spin effect */
  @keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--iim-primary-blue);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase; /* Added from a later declaration */
}

.section-title::after {
    content: '';
    display: block;
    width: 70px; /* Adjusted to match the larger width */
    height: 4px;
    background: var(--iim-secondary-gold);
    margin: 0.5rem auto 0;
}

.btn-gold {
    background-color: var(--iim-secondary-gold);
    color: var(--iim-primary-blue);
    font-weight: 700;
}

.btn-gold:hover {
    background-color: #e0b900; /* Adjusted to match the specific hover color */
    color: #000; /* Added from a later declaration */
}

.card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); /* Combined with later card hover */
}



.form-control:focus {
    border-color: var(--iim-secondary-gold); /* Combined with later focus styles */
    box-shadow: 0 0 0 0.25rem rgba(247, 207, 13, 0.25); /* Combined with later focus styles */
    width: 100%; /* Ensures full width on focus */
}

/* Fix Select2 to look like Bootstrap 5 form-select */
.select2-container .select2-selection--single {
  height: calc(2.375rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  line-height: 1.5;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #212529;
  line-height: 1.5;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 2.375rem;
  right: 0.75rem;
}


/* --- Top Bar --- */
/* --- Top Bar --- */
.top-bar {
    background-color: #f1f1f1;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    border-bottom: 1px solid #dee2e6;
}

.top-bar a {
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.top-bar .top-bar-links a {
    color: var(--iim-primary-blue);
}

.top-bar a:hover {
    color: var(--iim-secondary-gold);
}

.top-bar .top-bar-links a[href^="mailto:"] {
    color: var(--iim-link-blue);
}

.top-bar i {
    color: var(--iim-primary-blue);
}

.top-bar .online-application {
    background-color: var(--iim-secondary-gold);
    color: var(--iim-primary-blue);
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.top-bar .online-application:hover {
    background-color: var(--iim-primary-blue);
    color: white;
}

.top-search-form {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 0.1rem 0.5rem;
}

.top-search-form input {
    border: none;
    background: transparent;
    outline: none;
    padding: 0.25rem 0.5rem;
    font-size: 0.9rem;
    width: 200px;
}

.top-search-form button {
    border: none;
    background: transparent;
    color: #6c757d;
    padding: 0.25rem;
    cursor: pointer;
}

/* --- Responsive: Make Top Bar mobile-friendly --- */
@media (max-width: 767.98px) {
    .top-bar {
        font-size: 0.8rem;
        padding: 0.75rem 1rem;
    }

    .top-bar .top-bar-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
        margin-top: 0.75rem;
    }

    .top-search-form input {
        width: 130px;
        font-size: 0.85rem;
    }

    .top-bar .online-application {
        align-self: stretch;
        text-align: center;
        width: 100%;
    }
}


/* --- Main Header & Navigation --- */
.main-header {
    background-color: var(--iim-primary-blue);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.main-header .navbar-brand span,
.main-header .nav-link {
    color: var(--iim-text-light);
}

.main-header .nav-link:hover,
.main-header .nav-link.active {
    color: var(--iim-secondary-gold);
}

.main-header .navbar-toggler {
    border-color: rgba(255,255,255,0.2);
}

.main-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
    border-radius: 0;
    border: 1px solid #ddd;
    border-top: 3px solid var(--iim-secondary-gold);
    margin-top: 0.5rem;
}

.dropdown-item {
    color: var(--iim-text-dark);
}

.dropdown-item i {
    color: var(--iim-primary-blue);
    margin-right: 0.5rem;
}

.dropdown-item:hover {
    background-color: var(--iim-primary-blue);
    color: white;
}





/* Base mega-dropdown */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;       /* Default width for large screens */
  max-width: 95vw;    /* Never overflow viewport width */
  z-index: 1050;
  background-color: #fff;
  border: 1px solid #ddd;
  border-top: 3px solid var(--iim-secondary-gold);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  display: none;
}

/* Columns: stack vertically if narrow */
.mega-dropdown .row {
  flex-wrap: wrap;   /* Allow wrapping if needed */
}

/* Each column */
.mega-dropdown .col-md-4 {
  min-width: 200px;  /* Prevent columns from shrinking too much */
}

/* Responsive behavior between 576px and 991.98px */
@media (min-width: 576px) and (max-width: 991.98px) {
  .mega-dropdown {
    width: auto;         /* Remove fixed width */
    left: 0;             /* Align dropdown to left of nav item */
    transform: none;     /* Remove centering transform */
    max-width: 95vw;     /* Prevent horizontal overflow */
    padding: 1rem 0.5rem;
  }
  .mega-dropdown .row {
    flex-wrap: wrap;
  }
  .mega-dropdown .col-md-4 {
    flex: 1 1 50%;       /* Two columns per row */
    max-width: 50%;
    min-width: 150px;
  }
}

/* Mobile view: stack columns vertically */
@media (max-width: 575.98px) {
  .mega-dropdown {
    position: static;
    width: 100%;
    transform: none;
    box-shadow: none;
    border-top: none;
    padding: 0.5rem 1rem;
  }
  .mega-dropdown .col-md-4 {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 0;
  }
}







@media (min-width: 992px) {
    .main-header .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* MOBILE BRAND TEXT SHORTEN TO "IIM" AFTER LOGO */
@media (max-width: 575.98px) {
    /* Hide full span text */
    .main-header .navbar-brand span {
        display: none;
    }

    /* Add "IIM" text after the logo */
    .main-header .navbar-brand {
        position: relative;
        display: flex;
        align-items: center;
    }

    .main-header .navbar-brand::after {
        content: "IIM";
        color: var(--iim-text-light);
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
        font-size: 1.5rem;
        margin-left: 0.5rem;
        white-space: nowrap;
    }

    /* Optionally smaller logo image on mobile */
    .main-header .navbar-brand img {
        height: 40px;
    }
}

/* --- Hero Sections (General) --- */
.bg-slide {
    height: 70vh; /* Full-screen height */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* --- Hero Section Slider (Home Page) --- */
.hero-slider {
    height: 70vh;
    position: relative;
    background-color: var(--iim-primary-blue); /* Fallback color */
}

.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    height: 100%;
}

.hero-slider .carousel-item {
    background-size: cover;
    background-position: center center;
}

.hero-slider .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 2rem;
}

.hero-slider h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
}

.hero-slider p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    max-width: 800px;
    margin: 1rem auto 2rem auto;
    color: rgba(255, 255, 255, 0.9);
}

.hero-slider .btn {
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
}

.hero-slider .btn-gold {
    background-color: var(--iim-secondary-gold);
    color: var(--iim-primary-blue);
}

.hero-slider .btn-gold:hover {
    background-color: #eabf00;
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.hero-slider .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.7);
    margin: 0 8px;
}

.hero-slider .carousel-indicators .active {
    background-color: var(--iim-secondary-gold);
}

/* Default desktop style */
.search_programme_hero {
    padding: 2.5rem 0;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 10;
}

/* Mobile screens: make it flow normally */
@media (max-width: 767.98px) {
    .search_programme_hero {
        position: static !important;
        z-index: auto;
           background-color: var(--iim-primary-blue);
    }
    
    /* Add bottom margin or padding to the carousel wrapper */
    #heroSlider {
        margin-bottom: 120px; /* Adjust this value as needed to match .search_programme_hero height */
    }
}

.search-button {
    background-color: var(--iim-accent-green);
    color: white;
    border: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: #36a332;
}

/* --- Information / Content Sections --- */
.info-section h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--iim-primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.quick-links-list {
    list-style: none;
    padding: 0;
}

.quick-links-list li a {
    display: block;
    padding: 0.75rem 0;
    text-decoration: none;
    color: var(--iim-text-dark);
    font-weight: 600;
    border-bottom: 1px solid #e0e0e0;
}

.quick-links-list li a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--iim-secondary-gold);
    margin-right: 10px;
    font-size: 0.8em;
}

.news-list-item,
.event-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.news-list-item .date {
    font-size: 0.85rem;
    color: #6c757d;
}

.news-list-item .title a {
    display: block;
    text-decoration: none;
    color: var(--iim-text-dark);
    font-weight: 700;
    line-height: 1.4;
}

.event-list-item .date {
    background-color: var(--iim-primary-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 700;
    text-align: center;
    margin-right: 1rem;
}

.event-list-item .date .day {
    display: block;
    font-size: 1.75rem;
    line-height: 1;
}

.event-list-item .date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* --- Footer --- */
/* --- Footer --- */
.main-footer {
    background-color: var(--iim-primary-blue);
    color: var(--iim-text-light);
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.main-footer h5 {
    color: var(--iim-secondary-gold);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.main-footer .footer-links {
    list-style: none;
    padding-left: 0;
}

.main-footer .footer-links li {
    margin-bottom: 0.75rem;
}

.main-footer .footer-links a {
    color: var(--iim-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-footer .footer-links a:hover {
    color: var(--iim-secondary-gold);
}

.main-footer .footer-links a[href^="mailto:"] {
    color: var(--iim-link-blue);
}

.footer-newsletter input {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--iim-text-light);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem 0 0 0.375rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    font-size: 1rem;
}

.footer-newsletter input::placeholder {
    color: rgba(255,255,255,0.6);
}

.footer-newsletter input:focus {
    background-color: rgba(255,255,255,0.2);
    border-color: var(--iim-secondary-gold);
    outline: none;
}

.footer-newsletter button {
    background-color: var(--iim-secondary-gold);
    color: var(--iim-primary-blue);
    border: none;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 0 0.375rem 0.375rem 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
    min-height: 42px;
    box-sizing: border-box;
}

.footer-newsletter button:hover {
    background-color: #e6bf06;
}

.footer-bottom {
    padding: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.visitors-counter {
    font-weight: 700;
    color: var(--iim-secondary-gold);
    font-size: 1.25rem;
}

/* Mobile responsiveness */
@media (max-width: 575.98px) {
    .footer-newsletter .input-group {
        /* flex-direction: column; */
    }

    .footer-newsletter input,
    .footer-newsletter button {
        border-radius: 0.375rem !important;
        width: 100%;
        font-size: 1.1rem;          /* Slightly larger font for readability */
        padding: 0.85rem 1rem;     /* More padding for easier tap targets */
        box-sizing: border-box;
   
    }

    .footer-newsletter input {
        background-color: rgba(255, 255, 255, 0.3) !important; /* More visible background */
        border: 1px solid rgba(255,255,255,0.4) !important;    /* Slightly stronger border */
        color: var(--iim-text-light) !important;                /* Ensure white text */
        min-height: 45px;
             width: 1005!important; /* Full width on mobile */
    }

    .footer-newsletter input::placeholder {
        color: rgba(255, 255, 255, 0.75) !important;
    }

    .footer-newsletter button {
        margin-top: 0.5rem;
        padding-left: 0;
        padding-right: 0;
        min-height: 45px;
    }
}

/* --- Page Specific Styles --- */

/* Admissions & Programs (General) */
.admissions-section,
.programs-section,
.application-section,
.mission-content,
.history-section,
.news-section,
.calendar-section {
    padding: 60px 0;
}

/* Calendar Page */
.calendar-hero {
    background-color: #004d9a;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.calendar-table {
    background: white;
    border-radius: 6px;
    box-shadow: 0 0 10px rgb(0 0 0 / 0.1);
}

.calendar-table th {
    background-color: #004d9a;
    color: white;
}

/* Admissions Page */
.admissions-hero {
    background-color: #004d9a;
    color: white;
    padding: 60px 0;
    text-align: center;
}

/* Undergraduate Programs Page */
.undergrad-hero {
    background-color: #004d9a;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.program-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px; /* Specific to this program card */
    background: white;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
    transition: transform 0.2s ease-in-out;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgb(0 0 0 / 0.15);
}

.program-icon {
    font-size: 40px;
    color: #004d9a;
    margin-bottom: 15px;
}

.program-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #004d9a;
}

.program-desc {
    font-size: 1rem;
    color: #444;
}

/* Postgraduate Programs Page */
.pg-hero {
    background-color: #004d9a;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.pg-hero + .programs-section .program-card { /* More specific selector for PG cards */
    padding: 25px; /* Different padding for PG cards */
    transition: box-shadow 0.3s ease;
}

.pg-hero + .programs-section .program-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.pg-hero + .programs-section .program-title {
    color: #004d9a;
    font-weight: 600;
    margin-bottom: 15px;
}

.apply-btn {
    background-color: #004d9a;
    border: none;
}

.apply-btn:hover {
    background-color: #003366;
}


/* Research Page */
.hero-research {
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)),
        url('img/research-banner.jpg') center/cover no-repeat;
    padding: 6rem 0;
    color: white;
    text-align: center;
}

.hero-research h1 {
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3rem);
}

/* News Page */
.news-hero {
    background-color: #004d9a;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.news-card {
    box-shadow: 0 0 10px rgb(0 0 0 / 0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgb(0 0 0 / 0.15);
}

.news-date {
    font-size: 0.85rem;
    color: #666;
}

/* Application Page */
.application-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.form-step {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Mission Page */
.mission-hero {
    background: #004d9a;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.mission-icon {
    color: #004d9a;
    font-size: 40px;
    margin-bottom: 20px;
}

/* Leadership Page */
.leadership-hero {
    background-color: #004d9a;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.leadership-card {
    border: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 12px;
    transition: transform 0.3s;
}

.leadership-card:hover {
    transform: translateY(-5px);
}

.leader-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.leader-title {
    font-weight: 600;
    font-size: 1.25rem;
}

.leader-role {
    font-size: 0.95rem;
    color: #666;
}

/* History Page */
.history-hero {
    background-color: #004d9a;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.history-timeline {
    position: relative;
    margin-top: 30px;
}

.timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 15px;
    height: 15px;
    background-color: #004d9a;
    border-radius: 50%;
}

.timeline-year {
    font-weight: bold;
    color: #004d9a;
}

/* Departments Page */
.departments-hero {
    background-color: #004d9a;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.departments-list {
    max-width: 800px;
    margin: 40px auto;
}

.department-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.department-item h3 {
    color: #004d9a;
    margin-bottom: 10px;
}

/* Contact Page */
.contact-hero {
    background-image: url('img/contact-banner.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 51, 102, 0.7);
}

.contact-hero h1 {
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.contact-info-icon {
    font-size: 1.5rem;
    color: var(--iim-primary-blue);
    margin-right: 1rem;
}

.contact-form-section {
    background-color: var(--iim-light-bg);
    padding: 4rem 0;
}

.btn-primary {
    background-color: var(--iim-secondary-gold);
    border-color: var(--iim-secondary-gold);
    color: var(--iim-primary-blue);
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #e6bf06;
}


.map-section p,
.map-section li {
  line-height: 1.7;        /* More vertical breathing space */
  margin-bottom: 0.75rem;  /* Adds space between lines */
  font-size: 1rem;         /* Clean readable size */
  color: #333;             /* Ensure good contrast */
}

.map-section h3 {
  margin-bottom: 1rem;     /* Space below title */
  line-height: 1.3;
}

.map-section ul {
  padding-left: 0;
  list-style: none;
}

.timeline {
  position: relative;
  padding-left: 2.5rem;
  margin-left: 0;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 2.5rem;
}

.timeline-icon {
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #007bff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .timeline {
    padding-left: 1rem;
  }

  .timeline-item {
    padding-left: 2.5rem;
  }

  .timeline-icon {
    left: 0;
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.75rem;
  }
}
