.nav{
    display: block; /* Flexbox for navigation items */
    gap: 20px; /* Space between items */
	text-align: right;
	margin-right: 20px;
    padding: 10px 20px; /* Padding around the navbar */
    display: flex; /* Flexbox layout */
    justify-content: right; /* Center align navbar items */
	font-family: Rupee Foradian;
}
.nav a {
            color: white; /* White text color */
            text-decoration: none; /* Remove underline */
            margin: 0 10px; /* Margin around buttons */
            padding: 10px 20px; /* Padding inside buttons */
            border-radius: 5px; /* Rounded corners */
            border: 2px solid transparent; /* Border with initial transparency */
            background-color: #0c98d6; /* Blue background */
            font-size: 16px; /* Font size */
            font-weight: bold; /* Bold text */
            transition: all 0.3s ease; /* Smooth transition for hover effects */
        }

        .nav a:hover {
            background-color: #0056b3; /* Darker blue on hover */
            border-color: #0056b3; /* Match border color with background */
        }
.companydetails{
     display: grid; /* Enables grid layout */
    grid-auto-flow: column;
}
.compaanylogo{
   margin-left: 40px;
   margin-top: 20px;
}
.cover{
    text-align: center;
}
h1{
  text-align: right;
  font-family: Rupee Foradian;
  margin-right: 50px;
  font-size: 40px; 
}
h2{
    text-align: right;
    font-family: Rupee Foradian;
    margin-right: 55px;
    line-height: 0.001px;
    display: block;
    font-size: 1.5em;
    unicode-bidi: isolate;
}
.aboutusheading{
 font-family: Rupee Foradian;
 text-align: left;
 margin-left:40PX; 
 color: #b36d39;
 
}
.intro{
font-family: Rupee Foradian;
 text-align: left;
 margin-left:40PX;
 font-size: 15px; 
 Padding: 3px;
 margin-top: 5px;
 }
p{
    margin: 0 0 1rem 0; /* Space between paragraphs */
    padding: 0; /* Remove default padding */
    font-size: 1rem; /* Base font size */
    line-height: 1.6; /* Improve readability */
    word-wrap: break-word; /* Handle long words */
    overflow-wrap: break-word; /* Prevent overflow */
 }
 * {
  box-sizing: border-box;
}

.row > .column {
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  float: left;
  width: 25%;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.mySlides {
  display: none;
}

.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

img {
  margin-bottom: -4px;
}

.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}
body {
      margin: 0;
      font-family: Arial, sans-serif;
    }

    footer {
      background-color: #222;
      color: #f1f1f1;
      padding: 40px 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }

    .footer-section {
      flex: 1 1 200px;
      margin: 10px;
    }

    .footer-section h3 {
      margin-top: 0;
      margin-bottom: 15px;
      font-size: 18px;
      color: #fff;
    }

    .footer-section ul {
      list-style: none;
      padding: 0;
    }

    .footer-section ul li {
      margin-bottom: 8px;
    }

    .footer-section ul li a {
      color: #bbb;
      text-decoration: none;
    }

    .footer-section ul li a:hover {
      color: #fff;
    }

    .footer-bottom {
      width: 100%;
      text-align: center;
      padding-top: 20px;
      font-size: 14px;
      color: #999;
    }

    @media (max-width: 600px) {
      footer {
        flex-direction: column;
        align-items: center;
      }