 main.container {
      margin-top: 20px !important; /* Strongly reduce space after navbar */
      padding-top: 0 !important;
    }

    /* Remove any extra margin/padding from the first section */
    #company-overview .about2-section {
      margin-top: 0 !important;
      padding-top: 0 !important;
    }

    .about2-section {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    #company-overview h2 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 3.5rem;
      margin-bottom: 30px;
      color:rgb(255, 85, 85); /* Gold accent for premium feel */
      text-shadow: 0 2px 10px rgba(0,0,0,0.3);
      position: relative;
      display: inline-block;
    }

    #company-overview h2::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 4px;
      background: linear-gradient(to right, transparent, rgb(255, 85, 85), transparent);
      border-radius: 2px;
    }

    #company-overview .about2-box {
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 50px 40px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.2);
      font-size: 1.15rem;
      line-height: 1.8;
      text-align: left;
      animation: fadeInUp 1.2s ease-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    /* === FIX 2: Clean & Compact Sidebar - No unnecessary space === */
    .about-sidebar {
      position: sticky;
      top: 100px;
      height: calc(100vh - 150px);
      background-color: #ffffff;
      padding: 25px 20px; /* Reduced top/bottom padding */
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      border: 1px solid #e9ecef;
      overflow-y: auto;
    }

    .about-sidebar h4 {
      margin-bottom: 18px; /* Tight space below title */
      font-weight: 700;
      color: #212529;
      font-size: 1.3rem;
      position: relative;
      padding-bottom: 10px;
    }

    .about-sidebar h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background-color: #0d6efd;
      border-radius: 2px;
    }

    .about-sidebar ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px; /* Compact, consistent spacing between links */
    }

    .about-sidebar ul li {
      margin: 0; /* Remove all individual margins */
    }

    .about-sidebar ul li a {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #495057;
      text-decoration: none;
      font-weight: 500;
      padding: 12px 16px; /* Slightly reduced padding */
      border-radius: 10px;
      transition: all 0.3s ease;
      font-size: 1.05rem;
    }

    .about-sidebar ul li a i {
      font-size: 1.3rem;
      width: 28px;
      text-align: center;
      color: #6c757d;
      transition: color 0.3s ease;
    }

    .about-sidebar ul li a:hover,
    .about-sidebar ul li a.active {
      background-color: #0d6efd;
      color: white;
      transform: translateX(8px);
      box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
    }

    .about-sidebar ul li a:hover i,
    .about-sidebar ul li a.active i {
      color: white;
    }

    /* Hide sections by default */
    .content-section {
      display: none;
    }
    .content-section.active {
      display: block;
    }

    /* Responsive adjustments */
    @media (max-width: 991px) {
      .about-sidebar {
        position: static;
        top: auto;
        height: auto;
        margin-bottom: 30px;
        padding: 20px 15px;
      }

      .about-sidebar ul {
        gap: 8px;
      }

      .about-sidebar ul li a {
        padding: 10px 14px;
        font-size: 1rem;
      }

      main.container {
        margin-top: 10px !important;
      }
    }

    @media (max-width: 576px) {
      .about-sidebar ul {
        gap: 6px;
      }

      .about-sidebar ul li a {
        font-size: 0.95rem;
        gap: 10px;
        padding: 10px 12px;
      }

      .about-sidebar ul li a i {
        font-size: 1.1rem;
      }
    }

    /* Keep your other custom styles (timeline, footer, etc.) unchanged */
    /* ... (all other styles you had remain here) ... */

    .gars-footer {
      position: relative;
      width: 100%;
      height: 500px;
      background: 
          linear-gradient(rgba(255, 253, 253, 0.5), rgba(255, 253, 253, 0.5)),
          url('assets/img/01\ MP\ oils\ family.jpg') center/cover no-repeat;
      overflow: hidden;
      color: black;
    }

    .whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 60px;
      right:10px;
      background-color: #25d366;
      color: #fff;
      border-radius: 50px;
      text-align: center;
      font-size: 30px;
      box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: all 0.3s ease;
    }
    
    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
    }
    
    .whatsapp-icon {
      margin-top: 15px;
    }

    /* Timeline styles (kept as is) */
    :root {
      --light-red: #ffb3b3;
      --light-blue: #b3d1ff;
      --text-color: #333333;
      --line-color: #e0e0e0;
      --arrow-color: #a0a0a0;
    }

    .timeline::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 4px;
      background: var(--line-color);
      transform: translateX(-50%);
    }
/* Timeline line */
.timeline {
    position: relative;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--line-color);
    transform: translateX(-50%);
}

/* Timeline items */
.timeline-item {
    position: relative;
    margin-bottom: 10px;
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    animation: slideIn 1s ease-out forwards;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

/* Content box */
.timeline-box {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.timeline-year {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-color);
}

.timeline-desc {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

/* Colored borders */
.timeline-item:nth-child(odd) .timeline-box {
    border-left: 5px solid var(--light-red);
}

.timeline-item:nth-child(even) .timeline-box {
    border-right: 5px solid var(--light-blue);
}

/* Circle on timeline */
.timeline-dot {
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--line-color);
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

/* Arrow connectors */
.timeline-arrow {
    position: absolute;
    top: 40px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-arrow {
    right: -20px;
    border-left: 15px solid var(--light-red);
}

.timeline-item:nth-child(even) .timeline-arrow {
    left: -20px;
    border-right: 15px solid var(--light-blue);
}

/* Animations */
@keyframes fadeInTitle {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-50px); }
    to   { opacity: 1; transform: translateX(0); }
}

.timeline-item:nth-child(even) {
    animation-name: slideInRight;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Sequential animation delays */
.timeline-item:nth-child(1)  { animation-delay: 0.2s; }
.timeline-item:nth-child(2)  { animation-delay: 0.4s; }
.timeline-item:nth-child(3)  { animation-delay: 0.6s; }
.timeline-item:nth-child(4)  { animation-delay: 0.8s; }
.timeline-item:nth-child(5)  { animation-delay: 1.0s; }
.timeline-item:nth-child(6)  { animation-delay: 1.2s; }
.timeline-item:nth-child(7)  { animation-delay: 1.4s; }
.timeline-item:nth-child(8)  { animation-delay: 1.6s; }
.timeline-item:nth-child(9)  { animation-delay: 1.8s; }
.timeline-item:nth-child(10) { animation-delay: 2.0s; }

/* Responsive - Mobile */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 50px;
        padding-right: 20px;
    }

    .timeline-dot {
        left: 10px !important;
        right: auto !important;
    }

    .timeline-arrow {
        left: 20px !important;
        right: auto !important;
        border-right: 15px solid var(--light-blue) !important;
        border-left: none !important;
    }

    .timeline-item:nth-child(odd) .timeline-arrow {
        border-right: 15px solid var(--light-red) !important;
    }
}






    /* Enhanced Sidebar Styles */
    .about-sidebar {
      position: sticky;
      top: 100px;
      height: calc(100vh - 150px); /* Makes sidebar taller, filling most of the viewport height */
      background-color: #ffffff;
      padding: 30px 20px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      border: 1px solid #e9ecef;
      overflow-y: auto; /* Allows scrolling inside sidebar if content grows */
    }

    .about-sidebar h4 {
      margin-bottom: 25px;
      font-weight: 700;
      color: #212529;
      font-size: 1.3rem;
      position: relative;
      padding-bottom: 10px;
    }

    .about-sidebar h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background-color: #0d6efd;
      border-radius: 2px;
    }

    .about-sidebar ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      justify-content: center; /* Vertically centers the links when there's extra space */
      height: 100%; /* Takes full height for centering */
    }

    .about-sidebar ul li {
      margin-bottom: 20px; /* Increased spacing between items for better look in taller sidebar */
    }

    .about-sidebar ul li a {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #495057;
      text-decoration: none;
      font-weight: 500;
      padding: 14px 18px;
      border-radius: 10px;
      transition: all 0.3s ease;
      font-size: 1.05rem;
    }

    .about-sidebar ul li a i {
      font-size: 1.3rem;
      width: 28px;
      text-align: center;
      color: #6c757d;
      transition: color 0.3s ease;
    }

    .about-sidebar ul li a:hover,
    .about-sidebar ul li a.active {
      background-color: #0d6efd;
      color: white;
      transform: translateX(8px);
      box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
    }

    .about-sidebar ul li a:hover i,
    .about-sidebar ul li a.active i {
      color: white;
    }

    /* Hide sections by default */
    .content-section {
      display: none;
    }
    .content-section.active {
      display: block;
    }

    /* Reduced top spacing after navbar */
    main.container {
      margin-top: 10px !important; /* Reduced from my-5 (which is 3rem ≈ 48px) */
    }

    /* Responsive adjustments */
    @media (max-width: 991px) {
      .about-sidebar {
        position: static;
        top: auto;
        height: auto;
        margin-bottom: 40px;
        padding: 25px 20px;
      }

      .about-sidebar ul {
        height: auto;
        justify-content: flex-start;
      }

      .about-sidebar ul li {
        margin-bottom: 12px;
      }

      main.container {
        margin-top: 10px !important;
      }
    }

    @media (max-width: 576px) {
      .about-sidebar ul li a {
        font-size: 0.95rem;
        gap: 10px;
        padding: 12px 14px;
      }

      .about-sidebar ul li a i {
        font-size: 1.1rem;
      }
    }

   /* Enhanced Gallery Styles */
.gallery-item {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.gallery-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.12);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(204, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.overlay-content {
  color: white;
  text-align: left;
}

.overlay-content h5 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.overlay-content p {
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
}

.gars-footer {
    position: relative;
    width: 100%;
    height: 500px;
    background: 
        linear-gradient(rgba(255, 253, 253, 0.7), rgba(255, 253, 253, 0.7)),  /* transparency layer */
        url('assets/img/01\ MP\ oils\ family.jpg') center/cover no-repeat;
    overflow: hidden;
    color: black;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-img {
    height: 280px;
  }
  
  .overlay-content h5 {
    font-size: 1.2rem;
  }
}

/* Contact Button - Premium Red Style */
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #c00 0%, #a00 100%);
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(200, 0, 0, 0.35);
  transition: all 0.35s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(200, 0, 0, 0.45);
  background: linear-gradient(135deg, #d00 0%, #b00 100%);
  color: white;
}

.contact-btn:active {
  transform: translateY(1px);
}

.contact-btn i {
  font-size: 1.3rem;
}

/* Optional shine effect */
.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.3),
    transparent
  );
  transition: 0.7s;
}

.contact-btn:hover::before {
  left: 100%;
}

 .team-section {
      padding: 80px 50px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-title {
      text-align: center;
      font-size: 36px;
      color: #c00;
      margin-bottom: 60px;
      font-weight: 600;
    }

    .team-member {
      display: flex;
      align-items: center;
      margin-bottom: 80px;
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease-out;
    }

    .team-member.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .team-member.reverse {
      flex-direction: row-reverse;
    }

    .member-image {
      flex: 1;
      position: relative;
      max-width: 400px;
    }

    .member-image img {
      width: 100%;
      height: auto;
      border-radius: 0;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: transform 0.4s ease;
    }

    .image-border {
      position: absolute;
      top: -20px;
      left: -20px;
      width: 100%;
      height: 100%;
      border: 8px solid #c00;
      z-index: -1;
    }

    .member-details {
      flex: 1.2;
      padding: 0 50px;
    }

    .member-title {
      color: #c00;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 8px;
    }

    .member-name {
      font-size: 28px;
      color: #333;
      margin: 0 0 20px 0;
      font-weight: 600;
    }

    .member-message {
      color: #555;
      line-height: 1.8;
      margin-bottom: 20px;
      font-size: 15px;
    }

    .read-more {
      color: #c00;
      text-decoration: none;
      font-weight: 500;
      font-size: 14px;
    }

    .read-more:hover {
      text-decoration: underline;
    }

    .social-icons {
      margin: 20px 0;
    }

    .social-icons a {
      margin-right: 12px;
      opacity: 0.7;
      transition: opacity 0.3s;
    }

    .social-icons a:hover {
      opacity: 1;
    }

    .contact-info {
      color: #c00;
      font-weight: 500;
      margin: 10px 0;
    }

    .qr-code {
      margin-top: 20px;
      text-align: left;
    }

    .qr-code img {
      width: 250px;
      height: 200px;
    
      padding: 5px;
      background: white;
    }

    /* Hover Effect */
    .team-member:hover .member-image img {
      transform: scale(1.05);
    }

    @media (max-width: 992px) {
      .team-member, .team-member.reverse {
        flex-direction: column;
        text-align: center;
      }

      .member-image {
        max-width: 300px;
        margin-bottom: 30px;
      }

      .image-border {
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
      }

      .member-details {
        padding: 0 20px;
      }

      .qr-code {
        text-align: center;
      }
    }