body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.d-flex {
  display: flex;
  align-items: center;
}

/* Header Styles */
.header {
  position: fixed;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.top-nav {
  background: #0A2472;
  color: #fff;
  padding: 10px 0;
}

.top-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.top-nav ul li {
  margin-left: 20px;
}

.top-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.navigation {
  background: #fff;
  padding: 10px 0;
}

.nav-center {
  justify-content: space-between;
}

.logo img {
  height: 100px;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-list .nav-item {
  margin-left: 20px;
}

.nav-list .nav-link {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-list .nav-link:hover {
  color: #0A2472;
}

.icons {
  margin-left: 20px;
}

.icons .icon {
  margin-right: 10px;
  color: #333;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s;
}

.icons .icon span {
  display: block;
  font-size: 12px;
  color: #000;
  font-weight: bold;
  margin-top: 7px;
  text-align: center;
}

.icons .icon:hover {
  color: #0A2472;
}

.hamburger {
  display: none;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  margin-bottom: 50px;
  align-items: center;
  justify-content: center;
  background-color: #f3f3f3;
}

.glide {
  width: 100%;
  height: 100%;
}

.glide__track {
  display: flex;
  align-items: center;
  height: 100%;
}

.glide__slides {
  display: flex;
  width: 100%;
}

.glide__slide {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.hero .left {
  flex: 1;
  padding: 20px;
  
}

.hero .left h2 {
  font-size: 3em;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero .left p {
  font-size: 1.2em;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
}

.hero .left .hero-btn {
  background-color: #0A2472;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 1.2em;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.hero .left .hero-btn:hover {
  background-color: #0A2472;
}

.hero .right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .right img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Categories Section */
.section.category {
  padding: 60px 20px;
  background-color: #f3f3f3;
}

.cat-center {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.cat {
  flex: 1;
  margin: 10px;
  text-align: center;
  transition: transform 0.3s;
}

.cat img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
}

.cat p {
  font-size: 1.1em;
  color: #333;
  font-weight: bold;
}

.cat a {
  text-decoration: none;
  color: inherit;
}

.cat:hover {
  transform: translateY(-10px);
}

/* Contact Section */
.section.contact {
  padding: 60px 20px;
  background-color: #fff;
}

.container.d-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-content {
  flex: 1;
  margin-right: 20px;
}

.contact-content h2 {
  font-size: 2em;
  color: #333;
  margin-bottom: 20px;
}

.contact-content p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
}

.contact-content .btn {
  background-color: #0A2472;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 1.2em;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.contact-content .btn:hover {
  background-color: #0A2472;
}

.contact-form {
  flex: 1;
  margin-left: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input {
  padding: 10px;
  margin-bottom: 10px;
  font-size: 1.1em;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  padding: 10px;
  font-size: 1.1em;
  background-color: #0A2472;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #0A2472;
}

/* Footer Styles */
.footer {
  background-color: #333;
  color: #fff;
  padding: 40px ;
  text-align: center;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer .col {
  flex: 1;
  margin: 10px;
}

.footer .col h4 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.footer .col a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-size: 1em;
  transition: color 0.3s;
}

.footer .col a:hover {
  color: #0A2472;
}

.footer .social-links {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.footer .social-links a {
  color: #fff;
  font-size: 2em;
  margin: 0 10px;
  transition: color 0.3s;
}

.footer .social-links a:hover {
  color: #0A2472;
}

/* Popup Styles */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-content {
  width: 90%;
  height: 55rem;
  padding: 1.6rem;
  display: flex;
  background-color: #fff;
  position: relative;
}
.popup-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  padding: 0.5rem;
  background-color: var(--Maroon);
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  transform: scale(2);
}
.popup-left {
  width: 50%;
  padding: 3rem 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-img-container {
  width: 100%;
  overflow: hidden;
}
.popup-img-container img.popup-img {
  width: 60rem;
  height: 45rem;
  max-width: 100%;
  border-radius: 1rem;
  object-fit: cover;
}
.popup-right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.right-content {
  text-align: center;
  width: 85%;
  transform: translateY(50%);
}
.right-content h1 {
  font-size: 4rem;
  color: #000;
  margin-bottom: 1.6rem;
}
.right-content h1 span {
  color: var(--Maroon);
}
.right-content p {
  font-size: 1.6rem;
  color: #555;
  margin-bottom: 1.6rem;
}
.popup-form {
  width: 100%;
  padding: 1.5rem 0;
  text-rendering: 1rem;
  margin-bottom: 1.6rem;
  border-radius: 3rem;
  background-color: var(--Maroon);
  color: #fff;
  font-size: 1.8rem;
  border: none;
}
.popup-form::placeholder {
  color: white;
  margin-left: 10px;
}
.popup-form:focus {
  outline: none;
}
.right-content a:link,
.right-content a:visited {
  display: inline-block;
  padding: 1.8rem 5rem;
  border-radius: 3rem;
  font-weight: 700;
  color: white;
  background-color: var(--black);
  border: 1px solid var(--grey2);
  transition: 0.3s;
}
.right-content a:hover {
  background-color: var(--Maroon);
  color: var(--black);
}
.hide-popup {
  transform: scale(0.2);
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 1200px) {
  .right-content {
      width: 100%;
  }
  .right-content h1 {
      font-size: 3.5rem;
      margin-bottom: 1.3rem;
  }
}
@media (max-width: 998px) {
  .popup-right {
      width: 100%;
  }
  .popup-left {
      display: none;
  }
  .right-content h1 {
      font-size: 5rem; 
  }
}
@media (max-width: 768px) {
  .right-content h1 {
      font-size: 4rem; 
  }
  .right-content p {
      font-size: 1.6rem; 
  }
  .popup-form {
      width: 90%;
      margin: 0 auto;
      padding: 1.5rem 0;
      margin-bottom: 1.5rem;
  }
}
@media (max-width: 567px) {
  .popup-right {
      padding: 0 1.6rem;
  }
  .popup-content {
      height: 35rem;
      width: 90%;
      margin: 0 auto;
  }
  .right-content {
      width: 100%;
  }
  .right-content h1 {
      font-size: 4rem; 
  }
  .right-content p {
      font-size: 1.4rem; 
  }
  .popup-form {
      width: 100%;
      padding: 1.5rem 0;
      margin-bottom: 1.3rem;
  }
  .right-content a:link,
  .right-content a:visited {
      padding: 1.5rem 3rem;
  }
  .popup-close {
      top: 1rem;
      right: 1rem;
      padding: 0.5rem;
  }
}
.compony {
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  padding: 15px 0;
  background: #333;
  border-top: 2px solid ;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out; 
}

.compony:hover {
  background-color: #0A2472; 
  transform: scale(1.05); 
}
.pictures-names-container {
  display: flex;
  justify-content: center;
  gap: 50px; /* Adjust the gap between the two persons */
}

.person {
  text-align: center;
}

.person img {
  width: 150px; 
  height: 150px; 
  border-radius: 50%; 
  object-fit: cover;
  margin-bottom: 30px; 
}

.person p {
  font-size: 16px; 
  font-weight: bold;
}
/* Top and Bottom Bars Styling */
.top-bar, .bottom-bar {
  height: 10px; /* Adjust height as needed */
  background-color: #0A2472;
}

.pictures-names-container {
  display: flex;
  justify-content: space-around; /* Adjust as needed */
  padding: 20px 0; /* Adjust padding as needed */
}

/* Specific styling for the 200px height person div */
.person[style*="height: 200px;"] img {
  width: 150px; /* Ensure the image size matches others */
  height: 150px;
  border-radius: 50%;
}

