* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

body {
  height: 100%;
  width: 100%;
  font-family: "Roboto", sans-serif;
  background-color: #f8f8f8;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

body::-webkit-scrollbar {
  display: none;
}

/* Headings */
h1,
h2,
h3 {
  color: #f4f6fc;
}

/* Links */
a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  color: #000000;
}

nav {
  background-color: #f4f6fc;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo img {
  width: 120px;
  height: auto;
}

nav ul {
  list-style-type: none;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: 60px;
}

nav #menu-bar {
  font-size: 25px;
  display: none;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: #0a0304;
  font-size: 1.2em;
  text-transform: uppercase;
}

nav ul li a:hover {
  color: #000000;
  text-decoration: underline;
}
/* CSS */
.button-1 {
  background-color: #28a5d5;
  border-radius: 8px;
  border-style: none;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family:
    "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 20px;
  list-style: none;
  margin: 0;
  outline: none;
  padding: 10px 16px;
  position: relative;
  margin-top: 20px;
  text-align: center;
  text-decoration: none;
  transition: color 100ms;
  vertical-align: baseline;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-1:hover,
.button-1:focus {
  background-color: #006ba0;
}
nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f4f6fc;
  padding: 5px;
  padding-left: 18px;
  list-style: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  width: 120px;
}

nav ul li:hover ul {
  display: block;
}

nav ul li ul li {
  margin: 5px 0;
  padding: 0px;
}

nav ul li ul li a {
  color: #2c3e50(0, 0%, 100%);
  text-transform: none;
  font-size: 1em;
}

nav ul li ul li a:hover {
  color: #000000;
  text-decoration: none;
}

/* --------making menubar responsive ---------*/
@media (max-width: 768px) {
  nav ul li {
    position: static;
  }
  nav ul li ul {
    position: static;
    background-color: transparent;
    box-shadow: none;
  }
  nav ul li ul {
    position: static;
    padding: 0px;
    margin-left: 60px;
  }
  nav ul li ul li {
    margin: 1px 0px;
    padding: 0px 5px;
  }
}

/* Landing Section Styling */
.landing {
  height: 100vh;
  background: linear-gradient(to right, #5caee5, #77b2f6);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
}

.landing-content h1 {
  font-size: 4em;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.landing-content p {
  max-width: 800px;
  font-size: 30px;
}

.landing .cta-button {
  background-color: #3498db;
  color: white;
  padding: 15px 25px;
  border: none;
  margin-top: 50px;
  border-radius: 5px;
  font-size: 28px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.landing .cta-button:hover {
  background-color: #070908;
  transform: translateY(-5px);
}

#careers {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 25vh;
  background-color: #f8f8f8;
  text-align: center;
  padding-inline: 28px;
  margin: 40px 0px;
}

#careers h2 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 24px;
}

#careers p {
  font-size: 24px;
  max-width: 800px;
  line-height: 1.6;
}

/* Application Form Section */
.application-form {
  max-width: 800px;
  margin-inline: auto;
  padding: 50px 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.application-form h2 {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
  color: #050606;
}

.application-form form {
  display: flex;
  flex-direction: column;
}

.application-form label {
  margin-bottom: 5px;
  font-weight: bold;
}

.application-form input,
.application-form select {
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  width: 100%;
}

.application-form input[type="file"] {
  padding: 5px;
}

.application-form button {
  padding: 15px;
  background-color: #3498db;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.application-form button:hover {
  background-color: #111312;
}

.required {
  color: red;
}

html,
body {
  height: 100%;
  margin: 0;
}

.video-banner {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay-content {
  position: relative;
  text-align: center;
  color: white;
  z-index: 1;
  padding: 10px;
}

.overlay-content h1 {
  font-size: 3em;
  margin: 0 0 20px 0;
}

.overlay-content p {
  font-size: 1.5em;
  margin: 0 0 15px 0;
  /* Reduced margin */
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  /* Reduced padding */
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.cta-button:hover {
  background-color: #2ecc71;
  transform: translateY(-5px);
}

/* General styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

h2,
h3 {
  color: #333;
}

p {
  color: #666;
  line-height: 1.6;
}

/* Grid Layout for Why Choose Us */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* First row: 3 columns */
  grid-auto-rows: auto;
  gap: 20px;
  margin: 40px 0;
}

.why-us-grid .grid-item {
  text-align: center;
  padding: 15px;
  /* Reduced padding */
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.why-us-grid .grid-item img {
  width: 120px;
  height: 120px;
  margin-bottom: 15px;
  border-radius: 10px;
}

.why-us-grid .grid-item h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.why-us-grid .grid-item p {
  font-size: 1em;
  color: #666;
}

/* Adjust for Second Row: 2 Columns */
.why-us-grid {
  grid-template-areas:
    "item1 item2 item3"
    "item4 item5 .";
}

.why-us-grid .grid-item:nth-child(4) {
  grid-area: item4;
}

.why-us-grid .grid-item:nth-child(5) {
  grid-area: item5;
}

/* Quote Section */
.why-us-quote {
  text-align: center;
  font-size: 1.5em;
  color: #4caf50;
  margin-top: 30px;
  font-style: italic;
  padding: 15px;
  /* Reduced padding */
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 990px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    /* Single column for smaller screens */
    grid-template-rows: repeat(2, 1fr);
    grid-template-areas:
      "item1 item2"
      "item3 item4"
      "item5 item6";
  }
}

@media (max-width: 714px) {
  .why-us-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-template-areas:
      "item1"
      "item2"
      "item3"
      "item4"
      "item5"
      "item6";
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  line-height: 1.6;
  padding: 15px;
  /* Reduced padding */
}
.row {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.column-image {
  max-width: 45%;
  max-height: 500px;
}
.column-image img {
  height: 100%;
  width: 100%;
}
.column-para {
  max-width: 55%;
}

@media (max-width: 768px) {
  .row {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .column-image {
    max-width: 100%;
    height: 500px;
  }
  .column-para {
    max-width: 100%;
  }
  .video-banner {
    height: 480px;
  }
}
.moreimg {
  display: flex;
  flex-direction: column;
}
.moreimg .column-image {
  max-width: 100%;
  height: 600px;
}
.moreimg .column-para {
  min-width: 100%;
}

#about-section {
  padding: 40px;
}
@media (min-width: 1200px) {
  .moreimg .column-image {
    width: 1000px;
    align-self: center;
  }
}

#about-us h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #333;
}

#about-us p {
  text-align: start;
  font-size: 1.1rem;
  line-height: 1.6rem;
  color: #555;
}
#about-us h1 {
  text-align: center;
}
.section-highlight {
  margin-inline: auto;
}

.section-highlight h1 {
  font-weight: bold;
  color: #2c3e50;
  margin: 0px;
  font-size: 40px;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}
.section-highlight h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: rgb(255, 255, 255);
  /* Golden underline for emphasis */
  margin: 10px auto 0;
  border-radius: 2px;
}

/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

/* Title */
.title {
  text-align: center;
  margin: 20px;
  font-size: 2.5rem;
  color: #2c3e50;
}

/* Service Container */
.service-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* Service Items */
.service-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  width: 100%;
  max-width: 1200px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Text Section */
.service-text {
  flex: 1;
}

.service-text h2 {
  font-size: 1.2rem;
  /* Slightly smaller font for title */
  color: #34495e;
  margin-bottom: 10px;
}

.service-text p {
  font-size: 1rem;
  color: #7f8c8d;
}

/* Image Section */
.service-image {
  height: 200px;
  width: 350px;
  overflow: hidden;
  border-radius: 8px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-item:nth-child(even) {
  flex-direction: row-reverse;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-item {
    flex-direction: column;
  }

  .service-image,
  .service-text {
    min-width: 100%;
  }

  .service-image img {
    max-height: 200px;
    height: auto;
  }

  .service-text {
    padding-left: 10px;
  }

  .service-text p {
    margin-bottom: 15px;
  }
}

/* ------ Portfolio Section ----- */

/* Text Section */
.Portfolio-text h2 {
  font-size: 1.8rem;
  color: #000000;
  /* Changed to black */
  font-weight: bold;
  /* Added bold font weight */
  margin-bottom: 10px;
}

.portfolio-container {
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
}

.portfolio-section {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 30px;
  padding-inline: 12px;
}

@media (max-width: 1198px) {
  .portfolio-section {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 300px);
  }
}

@media (max-width: 768px) {
  .portfolio-section {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, 300px);
  }
}

.portfolio-section div {
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  background-position: center;
}

.portfolio-section div:hover {
  animation: slide-top-to-bottom 0.5s ease forwards;
}

@keyframes slide-top-to-bottom {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.07);
    opacity: 0.9;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .why-us .section {
    flex-direction: column;
    text-align: center;
  }

  .why-us .text {
    text-align: center;
  }
}

/* Main Content Section */
.container {
  display: flex;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
}

.section {
  padding: 40px;
  margin-bottom: 20px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.section h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

.section p {
  font-size: 1.1em;
}

/* Image Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Navigation Menu */
.menu-bar {
  display: flex;
  justify-content: center;
  background-color: #0056b3;
  padding: 10px;
}

.menu-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.menu-bar li {
  margin: 0 15px;
}

.menu-bar a {
  text-decoration: none;
  color: white;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.menu-bar a:hover,
.menu-bar a.active {
  color: #ffcc00;
}

/* We Also Offer Section */
.offer-section {
  text-align: center;
  padding: 50px 0px;
  background-color: #f4f4f4;
}

.offer-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
}

.offer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}

.offer-card {
  background-color: #fff;
  width: 250px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-align: center;
}

.offer-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.offer-card h3 {
  font-size: 28px;
  margin: 15px 0;
  color: #333;
}

.offer-card p {
  font-size: 1rem;
  color: #777;
  margin-bottom: 15px;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .offer-container {
    flex-direction: column;
    align-items: center;
  }
}

.our-clients {
  text-align: center;
  padding: 50px 0;
  background-color: #f8f8f8;
}

.our-clients h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #333;
}

.client-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.client {
  display: block;
  width: 150px;
  height: auto;
  transition: transform 0.3s ease;
}

.client img {
  width: 100%;
  height: auto;
  max-width: 200px;
}

.client:hover {
  transform: scale(1.05);
}

/* Google Map Section */
.map-container {
  width: 100%;
  height: 100vh;
  position: relative;
}

/* Google Map Iframe */
.map-container iframe {
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  border: none;
}

/* Heading Styling */
.map-container h3 {
  position: absolute;
  top: 20px;
  left: 20px;
  color: white;
  font-size: 30px;
  background-color: rgba(0, 0, 0, 0.6);

  padding: 10px;
  border-radius: 5px;
  z-index: 1;
}

/* Footer styles */
footer {
  background-color: #ececec;
  color: #333;
  margin-top: 40px;
  font-family: Arial, sans-serif;
  width: 100%;
  padding-top: 40px;
  padding-left: 15px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  padding: 0px 20px;
}
#links-column {
  padding-left: 15px;
}

.footer-logo img {
  width: 120px;
  height: auto;
}

.footer-column h3 {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: bold;
  color: #333;
}

.footer-column ul {
  list-style-type: none;
  padding: 0;
}

.footer-column ul li {
  margin: 10px 0;
}

.footer-column ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #f2a900;
}

.footer-column .about-text {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  padding-right: 10px;
  line-height: 20px;
}

/* Social Media Links */
.social-links {
  display: flex;
  justify-content: start;
  gap: 10px;
  margin-top: 10px;
}

.social-link i {
  font-size: 24px;
  color: #333;
  transition: color 0.1s ease;
}

.social-link:nth-child(1):hover i {
  color: #e4405f;
  background-color: #ffffff;
}

.social-link:nth-child(2):hover i {
  color: #1da1f2;
  background-color: #ffffff;
}

.social-link:nth-child(4):hover i {
  color: #e60023;
  background-color: #ffffff;
}

.social-link:nth-child(3):hover i {
  color: #0a66c2;
  background-color: #ffffff;
}

.social-link:nth-child(5):hover i {
  color: green;
  background-color: #ffffff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
}

.footer-bottom p {
  font-size: 14px;
  color: #666;
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.5rem;
  }

  nav ul li {
    display: block;
    margin-right: 0;
  }

  .main-content {
    display: block;
  }

  .main-content .section {
    width: 100%;
    padding: 10px;
  }

  footer p {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  nav ul li {
    display: block;
    margin-right: 0;
    /* margin-bottom: 15px; */
  }

  .main-content .section {
    width: 100%;
  }

  footer p {
    font-size: 0.9rem;
  }
  .section {
    padding: 40px 12px;
  }
}

@media screen and (min-width: 769px) {
  .main-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .main-content .section {
    flex: 1;
    margin-bottom: 20px;
  }
}

.enquiry-button {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: #3498db;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: corner-blink 1.8s infinite ease-in-out;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.enquiry-button:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

@keyframes corner-blink {
  0%,
  100% {
    background-color: #2890d6;
    box-shadow: 0 0 15px rgba(99, 158, 194, 0.813);
  }

  50% {
    background-color: #c3d8f8;
    box-shadow: 0 0 25px rgba(111, 123, 255, 0.717);
  }
}

.modal-toggle {
  display: none;
}

/* Modal background */
.modal {
  display: none;
  /* Initially hidden */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-toggle:checked + .modal {
  display: block;
  /* Show modal */
}

/* Modal Content */
.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border-radius: 10px;
  width: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #aaa;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease;
}

.close-btn:hover,
.close-btn:focus {
  color: black;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  margin-bottom: 5px;
}

form input,
form textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

form button {
  padding: 10px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #000000;
}

.modal-toggle:checked + .modal {
  display: block;
}

.highlighted-title.about-us::after {
  content: none !important;
}

.service-text {
  padding-left: 30px;
}

@media (max-width: 1200px) {
  body {
    width: 100%;
    height: 100%;
  }

  .footer-column {
    padding: 0px;
  }

  .footer-column h3 {
    font-size: 16px;
  }

  #quick-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #quick-links h3 {
    padding-left: 32px;
  }
}

@media (max-width: 1145px) {
  nav ul {
    gap: 40px;
  }
}

@media (max-width: 1110px) {
  .footer-column ul li a {
    font-size: 16px;
  }

  .footer-column ul li {
    font-size: 14px;
  }
}

@media (max-width: 1025px) {
  nav ul li a {
    font-size: 1.1em;
  }
}

@media (max-width: 980px) {
  nav .logo img {
    width: 90px;
    height: auto;
  }

  nav ul li a {
    font-size: 1em;
  }

  nav ul {
    gap: 35px;
  }
}

@media (max-width: 920px) {
  nav ul li a {
    font-size: 0.9em;
  }

  nav ul {
    gap: 25px;
  }

  .section-highlight h2,
  #about-us h1,
  .section-highlight h1 {
    font-size: 36px;
  }

  .section p {
    font-size: 14px;
  }

  .section h2 {
    font-size: 24px;
  }
  #quick-links {
    padding-bottom: 20px;
  }
  .section .our-h2 {
    font-size: 36px;
  }

  .offer-card h3 {
    font-size: 26px;
  }
  #about-section {
    padding: 20px 10px;
  }
  .video-banner {
    height: 450px;
  }
}

@media (max-width: 785px) {
  nav ul li a {
    font-size: 0.85em;
  }

  .why-us-grid .grid-item h3 {
    font-size: 16px;
  }

  .why-us-grid .grid-item p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  nav #menu-bar {
    display: block;
  }

  .offer-card {
    width: 100%;
  }

  .offer-card h3 {
    font-size: 24px;
  }
  .section h2 {
    font-size: 20px;
  }
  .video-banner {
    height: 420px;
  }
}

@media (max-width: 959px) {
  .footer-column {
    min-width: 220px;
  }

  #links-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 0px;
    margin-top: 30px;
  }
}
@media (max-width: 740px) {
  #links-column {
    justify-content: start;
  }
}
@media (max-width: 683px) {
  #contact-column {
    margin-top: 30px;
  }
}

@media (max-width: 520px) {
  #about-section {
    padding: 15px;
  }
  .service-text {
    padding-left: 5px;
  }

  .footer-column {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
  }

  .footer-column .about-text {
    margin-left: 5px;
    padding-right: 0px;
  }
  #links-column {
    margin-bottom: 0px;
  }

  #contact-column ul {
    margin-left: 5px;
    margin-right: 8px;
  }
  #contact-column {
    margin-top: 0px;
  }
  #quick-links {
    align-items: center;
    padding-bottom: 0px;
  }
  .service-item {
    flex-direction: row;
  }
  .section {
    padding: 40px 8px;
  }
  #links-column {
    margin-top: 0px;
  }
}
@media (max-width: 500px) {
  #quick-links {
    align-items: start;
  }
  #quick-links h3 {
    padding-left: 0px;
  }
  #quick-links {
    padding-left: 5px;
  }
}
@media (max-width: 300px) {
  .section .service-text h2 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  h2.title {
    margin-bottom: 0px;
  }
  .section p {
    font-size: 12px;
  }
  .video-banner {
    height: 480px;
  }
}

@media (max-width: 714px) {
  .section-highlight h2,
  #about-us h1,
  .section-highlight h1 {
    font-size: 30px;
  }
  .section .our-h2 {
    font-size: 30px;
  }
  #about-us p {
    font-size: 16px;
  }

  .offer-card h3 {
    font-size: 20px;
  }
}

@media (max-width: 500px) {
  .section-highlight h2,
  #about-us h1,
  .section-highlight h1 {
    font-size: 24px;
  }
  .section .our-h2 {
    font-size: 26px;
  }
  #about-us p {
    font-size: 14px;
    line-height: 24px;
  }
  .offer-card h3 {
    font-size: 18px;
  }
  #footer-logo-para {
    font-size: 12px;
  }
  footer {
    padding-left: 4px;
  }
  .video-banner {
    height: 380px;
  }
}

@media (max-width: 340px) {
  .section-highlight h2,
  #about-us h1,
  .section-highlight h1 {
    font-size: 20px;
  }
  .why-us-grid .grid-item h3 {
    font-size: 14px;
  }
  .offer-card {
    padding: 20px 0px;
  }
  .section .our-h2 {
    font-size: 20px;
  }
  #about-us p {
    font-size: 12px;
    line-height: 22px;
  }
  .offer-card h3 {
    font-size: 16px;
  }
  .video-banner {
    height: 350px;
  }
}

/* ------career page css making ----- */

.landing-content {
  padding-inline: 8px;
}
.landing-content h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

.landing-content p {
  padding-inline: 20px;
}
@media (max-width: 1000px) {
  .landing-content h1,
  #careers h2,
  .offer-section h2 {
    font-size: 40px;
  }
  .landing-content p {
    line-height: 40px;
  }
}

@media (max-width: 920px) {
  .landing-content h1,
  #careers h2,
  .offer-section h2 {
    font-size: 36px;
  }
  .landing-content p {
    font-size: 26px;
    line-height: 32px;
  }
  .landing .cta-button {
    font-size: 26px;
  }
}

@media (max-width: 714px) {
  .landing-content h1,
  #careers h2,
  .offer-section h2 {
    font-size: 30px;
  }
  .landing-content p,
  .landing .cta-button,
  .application-form h2 {
    font-size: 24px;
  }
  .application-form label {
    margin-left: 3px;
    font-weight: 500;
  }
}
@media (max-width: 664px) {
  .landing-content p {
    padding-inline: 10px;
    font-size: 20px;
  }
  #careers p {
    font-size: 20px;
  }
  .application-form h2 {
    font-size: 22px;
  }

  .landing .cta-button {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .landing-content h1,
  #careers h2 {
    margin-bottom: 12px;
  }

  .landing-content p {
    font-size: 16px;
    line-height: 24px;
  }
  #careers p {
    font-size: 16px;
  }
  .application-form h2 {
    font-size: 18px;
  }
  .landing .cta-button {
    font-size: 16px;
    padding: 12px 18px;
  }
  #careers {
    margin: 30px 0px 0px 0px;
    padding-inline: 15px;
  }
  .application-form {
    padding: 30px 10px;
  }
  .offer-card h3 {
    margin: 6px 0px;
  }
}
@media (max-width: 340px) {
  .landing-content h1,
  #careers h2,
  .offer-section h2 {
    font-size: 20px;
  }
  .landing-content p,
  .landing .cta-button,
  #careers p {
    font-size: 14px;
  }
  .application-form h2 {
    font-size: 16px;
  }

  .why-us-grid .grid-item {
    padding: 15px 8px;
  }
  #about-section {
    padding: 15px 8px;
  }
  .portfolio-section {
    padding-inline: 8px;
  }
  .offer-card {
    padding: 5px 8px;
  }
}

/* ------------adding javascript ------------- */
#close-btn {
  display: none;
}

.open #close-btn {
  display: block;
  position: fixed;
  right: 16px;
  top: 36px;
}
.open {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}
.open .open-ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 20px;
}
.open #menu-bar {
  display: none;
}

@media (max-width: 768px) {
  nav {
    position: fixed;
    width: 100%;
    top: 0px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(3px);
    padding: 8px 10px;
  }
  body {
    padding-top: 105px;
  }
}

@media (max-width: 500px) {
  .nav-bar {
    padding: 8px 10px 6px 3px;
  }
}
