:root {
    --primary: #003f5c;
    --secondary: #2f4b7c;
    --accent: #ffa600;
    --bg: #f4f4f4;
    --text-dark: #1a1a1a;
  }

  body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text-dark);
    margin: 0;
    scroll-behavior: smooth;
  }

  section {
    scroll-margin-top: 80px;
  }

  .carousel-inner img {
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.4);
  }

  .carousel-item {
    transition: transform 1s ease-in-out;
  }

  .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    animation: fadeInDown 1s ease-in-out;
  }

  .carousel-caption p {
    font-size: 1.25rem;
	  text-align:justify-left;
  }

  @keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  .navbar {
    background-color: var(--primary);
   /* background-color:white;*/
    z-index: 1050;
  }

  .nav-link {
   color: white !important;
   /*color:#2f4b7c;*/
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--accent) !important;
  }

  .about-section {    
    padding: 100px 20px;
    background: linear-gradient(135deg, #b2bfdb, #e7effb);
    text-align: center;
  }

  .about-section h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #003f5c;
    margin-bottom: 1rem;
  }

  .about-section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    margin: 10px auto 0;
    border-radius: 2px;
  }

  .about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.3s;
  }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .card-custom {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border: none;
  }

  .card-custom:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }

  .card-custom img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .card-custom .card-body {
    padding: 1.5rem;
  }

  .card-custom h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #003f5c;
    margin-bottom: 10px;
  }

  .card-custom p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
  }
  .services{
  margin-top:60px;
  }
  .services-heading {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #003f5c;
    position: relative;
  }

  .services-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    margin: 10px auto 0;
    border-radius: 2px;
  }

  .hero-section {
    margin:60px 0 30px 0;
    display: flex;
    justify-content: right;
    align-items: center;
    min-height: 80vh;
    padding-top: 60px;
  }
  .hero-image-wrapper {
    position: relative;
    z-index: 2;
    justify-content: center;
    /* Controls how much the image overlaps into the green box */
    margin-right: -120px;
  }
  .hero-image {
    width: 350px;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: block;
    border-radius: 8px;
   
  }
  .hero-content {    
    background: linear-gradient(135deg, #203a43, #4f798d);
    color: #fff;
    padding: 48px 48px 48px 160px;
    max-width: 900px;
    min-width: 400px;
    box-sizing: border-box;
    border-radius: 0 8px 8px 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-content small {
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.85;
  }
  .hero-content h1 {
    margin: 18px 0 18px 0;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.1;
  }
  .hero-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
    opacity: 0.95;
  }
  .btn-inventry {     
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
    align-self: flex-start;
  }
  .btn-inventry:hover {
    background: #125fd1;
  }
  @media (max-width: 900px) {
    .hero-section {
      flex-direction: column;
      align-items: center;
      padding-top: 20px;
    }
    .hero-image-wrapper {
      margin-right: 0;
      margin-bottom: -60px;
    }
    .hero-content {
      padding: 32px 20px 32px 20px;
      max-width: 95vw;
      min-width: unset;
      border-radius: 0 0 8px 8px;
    }
    .hero-image {
      width: 95vw;
      height: auto;
      max-width: 400px;
      max-height: 320px;
    }
  }

  .contact-section {
    margin-top: 80px;
    background: linear-gradient(135deg, #203a43, #365c6d);
    /*background: url('./images/Group\ 4408.png') center center / cover no-repeat;*/
    color: white;
    padding: 60px 0;
  }
  .img-contact {
    margin: 10px 0;
    width: 100%;               /* Makes image take full width of its container */
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  footer {
    background: url('./images/footer-bg.jpg') center center / cover no-repeat;
    color: white;
    padding-top: 60px;
    padding-bottom: 30px;
    position: relative;
  }

  footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.568);
    z-index: 0;
  }

  footer .container {
    position: relative;
    z-index: 1;
  }

  footer h5 {
    font-weight: 600;
  }

  footer a {
    color: white;
    text-decoration: none;
  }

  footer a:hover {
    color: var(--accent);
  }   

footer p {
    margin-bottom: 10px; /* adjust spacing here */
 }

  