

/* General styles */
body {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
}

/* Navigation bar styling */
.custom-navbar {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-bottom: 2px solid #BEBEBE;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Left list */
.left-list {
  display: flex;
  align-items: center;
}

.left-list button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.left-list img {
  height: 25px;
  margin-left: 10px;
}

/* Right list */
.right-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style-type: none;
}

.right-list .item-1,
.right-list .item-2,
.right-list .item-3,
.right-list .item-4,
.right-list .item-5,
.right-list .item-6 {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 5px 10px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.right-list .item-1:hover,
.right-list .item-2:hover,
.right-list .item-3:hover,
.right-list .item-4:hover,
.right-list .item-5:hover,
.right-list .item-6:hover {
  border-bottom: 2px solid #27C5FF;
  color: #27C5FF;
}

/* Hero image styling */
.img1 {
  margin-top: 60px; /* Space for fixed navbar */
  width: 100%;
  position: relative;
}

.img1 img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
}

.img1 .text {
  position: absolute;
  color: #fff;
  font-weight: 700;
  font-size: 8vw; /* Responsive font size */
  text-align: center;
  left: 50%;
  bottom: 30%;
  transform: translateX(-50%);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

/* Media Queries */

/* For tablets and smaller devices */
@media (max-width: 768px) {
  .right-list {
      display: none; /* Hide menu items on smaller screens */
  }

  .left-list {
      justify-content: space-between;
      width: 100%;
  }

  .custom-navbar {
      padding: 10px 15px;
  }

  .img1 .text {
      font-size: 12vw; /* Adjust text size for smaller screens */
  }
}

/* For mobile devices */
@media (max-width: 480px) {
  .left-list button img {
      height: 20px;
  }

  .img1 .text {
      font-size: 16vw; /* Adjust text size for very small screens */
  }
}


.text-body-emphasis {
    font-size: 60px;
}
#pg {
    font-size: 30px;
    color: rgb(143, 145, 145);
}


/* styles.css */
/* styles.css */
  
  .international-reach {
    text-align: center;
    padding: 20px;
    padding-bottom: 50px;
  }
  
  .international-reach h1 {
    color: #a18b55;
    margin-bottom: 20px;
  }
  
  .reach-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
  }
  
  .reach-card {
    width: 300px;
    height: 680px;
    background-size: cover;
    background-position: center;
    position: relative;
    border: 2px solid #a18b55;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease-in-out; /* Smooth transition effect */
  }
  
  .reach-card:hover {
    transform: scale(1.1); /* Scale up on hover */
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent black */
    display: flex; /* Use flexbox for centering */
    flex-direction: column; /* Arrange content vertically */
    padding: 8px;
    box-sizing: border-box; /* Include padding in dimensions */
    transition: all 0.3s ease-in-out;
  }
  
  .initial-text {
    font-size: 1.5em;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0; /* Remove any margin that may cause misalignment */
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
  }
  
  .hover-text {
    font-size: 1em;
    color: #ffffff;
    text-align: center; /* Ensure text aligns in the center */
    margin: 0; /* Remove unnecessary margins */
    opacity: 0;
    text-align: left;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  
  .reach-card:hover .hover-text {
    opacity: 1;
    visibility: visible;
  }
  
  .reach-card:hover .initial-text {
    opacity: 0;
    visibility: hidden;
  }
  
  
  /* Responsive Design */
  
  /* For tablets and smaller screens */
  @media (max-width: 768px) {
    .reach-grid {
      gap: 10px;
    }
  
    .reach-card {
      width: 200px;
      height: 300px;
    }
  
    .text {
      font-size: 1.2em;
    }
  }
  
  /* For mobile screens */
  @media (max-width: 480px) {
    .reach-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .reach-card {
      width: 100%;
      height: auto;
    }
  
    .text {
      font-size: 1em;
    }
  }

  .main-container {
    width: 100%;
    max-width: 1500px; /* Ensure it doesn’t stretch too wide */
    margin: 20px auto;
    border: 2px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Added shadow for a more professional look */
  }
  
  .top-section {
    flex: 2;
    background: linear-gradient(to bottom right, #c1ffce, #7dff78);
    color:#343a40;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    height: 250px;
  }
  
  .top-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 0 15px; /* More space below heading */
    text-transform: uppercase; /* Adding a bit of emphasis */
  }
  
  .top-section h5 {
    font-size: 1.2rem;
    font-weight: normal;
    margin: 0;
    line-height: 1.5;
    max-width: 800px;
  }
  
  .bottom-section {
    flex: 1;
    display: flex;
    gap: 20px; /* Adds space between the left and right boxes */
    padding: 20px;
  }
  
  .left-box,
  .right-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 1rem;
    color: #343a40;
    text-transform: uppercase;
    padding: 20px;
    overflow-y: auto;
    height: 630px; /* Left box has blue background */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Added shadow for a more professional look */
  }
  
  .right-box {
    background: linear-gradient(to bottom right, #ffd6c1, #ff9478);
  color: #343a40;
  padding: 20px;
  border-radius: 8px;
  border: 2px solid #ff9478; /* Right box has red background */
  }
  .left-box {
    background: linear-gradient(to bottom right, #d4f1f9, #6db9d9);
  color: #343a40;
  padding: 20px;
  border-radius: 8px;
  border: 2px solid #6db9d9;
  }
  
  ol {
    list-style-position: inside; /* Ordered list with markers inside */
    padding: 0;
    margin: 0;
  }
  
  ol li {
    margin-bottom: 20px; /* Space between list items */
    font-size: 1.1rem; /* Slightly larger font for better readability */
    line-height: 1.6;
  }
  
  ol li p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #343a40;
    text-align: justify; /* Justify text for better appearance */
  }
  
  .left-box ol li p,
  .right-box ol li p {
    margin-left: 10px; /* Align text slightly to the right */
  }
  
  /* General Styles */

.containers {
  max-width: 1500px;
  margin: 50px auto;
  padding: 30px;
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.containers:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Header Section */
h1 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #2c3e50;
  font-weight: 800;
}

p {
  font-size: 20px;
  color: #555;
  margin: 10px 0;
  line-height: 1.6;
  font-weight: 300;
}

/* Violations List */
.violations ol {
  text-align: left;
  margin: 30px auto;
  padding: 0 20px;
  list-style-type: decimal;
  font-size: 22px;
  font-weight: 500;
}

.violations li {
  margin-bottom: 15px;
  padding: 10px;
  border-left: 4px solid #3498db;
  background: #f9f9f9;
  border-radius: 6px;
  color: #34495e;
  transition: background-color 0.3s ease;
}

.violations li:hover {
  background-color: #ecf0f1;
}

/* Buttons Section */
.downloads {
  margin-top: 40px;
}

.button {
  text-decoration: none;
  display: inline-block;
  padding: 12px 25px;
  margin: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(45deg, #e74c3c, #d62c1a);
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(231, 76, 60, 0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.button:hover {
  background: linear-gradient(45deg, #d62c1a, #c0392b);
  box-shadow: 0 6px 14px rgba(192, 57, 43, 0.6);
  transform: translateY(-3px);
}


.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  width: 100%;
  background-color: rgb(32, 27, 27);
  position: relative;
  padding: 20px 0;
  box-sizing: border-box;
}

.footer-content {
  width: 90%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  align-items: start;
}

.img {
  place-self: center;
}

.img img {
  border-radius: 20%;
  max-width: 100px;
}

.contact-us, .links, .follow-us {
  text-align: center;
}

.contact-us section {
  text-align: left;
  margin: 20px 0;
}

.links ul {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.links ul li {
  padding: 5px 0;
  color: white;
}

.follow-us ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 20px 0;
  list-style: none;
}

.follow-us ul li img {
  height: 30px;
  margin: 0 10px;
}


@media (max-width: 768px) {
  .footer-content {
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 15px;
  }

  .img {
      grid-column: span 2;
  }

  .contact-us, .links, .follow-us {
      text-align: center;
  }
}


@media (max-width: 480px) {
  .footer-content {
      grid-template-columns: 1fr;
      grid-gap: 10px;
  }

  .img img {
      max-width: 80px;
  }

  .contact-us section {
      text-align: center;
      margin: 10px 0;
  }

  .links ul {
      padding: 0;
  }

  .links ul li {
      text-align: center;
      padding: 5px 0;
  }

  .follow-us ul {
      flex-direction: row;
      gap: 10px;
  }

  .follow-us ul li img {
      margin: 5px 0;
  }
}

a {
  text-decoration: none;
}

  