* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.main {
  height: 100vh;
  width: 100%;
}
/* Top bar styles */
.top-bar {
  display: block;
  justify-content: space-between;
  align-items: center;
  background: #05375c;
  padding:0px 20px;
  color: rgb(255, 255, 255);
  position: fixed;
  z-index: 100;
  width: 100%;
}
/* Logo */
.logo{ float:left;}
.logo img {
  width: 100px;
  padding-bottom: 10px;
}
/* Contact Info */
.contact-info {
  display: flex;
  gap: 20px;
  font-size: 14px;
  float: left;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
/* Social Icons */
.social-icons{ 
  float:right;
  padding-top:10px;
}
.clearfix{ clear: both;}
.social-icons a {
  color: rgb(255, 255, 255);
  font-size: 18px;
  margin: 0 8px;
  transition: 0.3s;
  align-items: right;
}
.social-icons a:hover {
  color: #ff6600;
}
/* Navigation Bar */
.navbar {
  margin-top: 20px;
  text-align: right;
  float: right;
}
.navbar ul {
  list-style: none;
}
.navbar ul li {
  display: inline;
  margin: 0 15px;
}
.navbar ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
}
.navbar ul li a:hover {
  color: #ff6600;
}
/* home pagebanner slider */
.wrapper,
.slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  overflow: hidden;
}
.slide::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 10;
}
.slide .image {
  height: 100%;
  width: 100%;
  margin-top: 80px;
}
.slide .image-data {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 100;
}
.image-data span.text {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
.image-data h2 {
  font-size: 45px;
  font-weight: 600;
  color: #fff;
}
a.button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  color: #333;
  background: #fff;
  text-decoration: none;
  margin-top: 25px;
  transition: all 0.3s ease;
}
a.button:hover {
  color: #fff;
  background-color: #c87e4f;
}
/* swiper button css */
.nav-btn {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}
.nav-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}
.swiper-button-next {
  right: 50px;
}
.swiper-button-prev {
  left: 50px;
}
.nav-btn::before,
.nav-btn::after {
  font-size: 25px;
  color: #fff;
}
.swiper-pagination-bullet {
  opacity: 1;
  height: 12px;
  width: 12px;
  background-color: #fff;
  visibility: hidden;
}
.swiper-pagination-bullet-active {
  border: 2px solid #fff;
  background-color: #c87e4f;
}
@media screen and (max-width: 768px) {
  .nav-btn {
    visibility: hidden;
  }
  .swiper-pagination-bullet {
    visibility: visible;
  }
}
/*  Global grid section */
.grid {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: 50px auto;
  background: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
}
.image {
  flex: 1;
  background: url('../img/globalexport.png') no-repeat center center/cover;
  min-height: 450px;
}
.grid-content {
  flex: 1;
  padding: 30px;
  text-align: left;
}
.grid-content h2 {
  font-size: 24px;
  color: #333;
}
.grid-content p {
  font-size: 16px;
  color: #000000;
  margin: 15px 0;
}
.grid-content a:hover {
  background: #05375c;
}
@media (max-width: 768px) {
  .grid {
      flex-direction: column;
      text-align: center;
  }
  .image {
      width: 100%;
      min-height: 300px;
  }
  .grid-content {
      padding: 20px;
  }
}
/*this is a products css*/
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f8f8f8;
  text-align: center;
  padding: 0;
}
/* Product Container */
.product-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
/* Product Card */
.product-card {
  width: 250px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: center;
  transition: 1.0s;
}
.product-card img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  object-fit: contain;
}
.product-card h2 {
  font-size: 18px;
  margin: 10px 0;
}
.product-card p {
  font-size: 14px;
  color: #555;
}
/* Hover Animation */
.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
/* button style */
.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.button {
  background-color: #28425e;
  color: white;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
}
.button:hover{
  background-color: #ff6600;
  color: black;
}
.button:active {
  transform: scale(0.9);
  background-color: #0d4b89;
}
/* this is video section*/
.video-wrapper {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
  cursor: pointer;
  margin-top: 20px;
}
/* Heading */
.video-title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
/* Description */
.video-description {
  font-size: 18px;
  color: #211f1f;
  margin-bottom: 20px;
}
/* Video Section */
.video-container {
  position: relative;
  width: 100%; /* Matches wrapper width */
  height: 80vh; /* Adjust video height */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
/* Video Styling */
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}
/* Play/Pause Icon */
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: rgba(255, 255, 255, 0.8);
  display: none;
  pointer-events: none;
}
.video-footer {
  font-size: 18px;
  color: #444;
  margin-top: 10px;
}
 /* Footer Main Section */
 .footer {
  background: url('../img/map.png') no-repeat center center; 
  background-size: cover;
  padding: 10px 10%;
  text-align: center;
  position: relative;
  color: white;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); 
  z-index: 1;
}
.footer * {
  position: relative;
  z-index: 2;
}
.footer h2 {
  margin-bottom: 20px;
  font-size: 24px;
  text-align: left;
}
.locations {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.location-box {
  padding: 7px;
  border-radius: 20px;
  flex: 1;
  min-width: 300px;
  text-align: left;
  margin-left: 5px;
}
.location-box iframe {
      width: 100%;
      height: 200px;
      border-radius: 40px;
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }
.location-box h3 {
  font-size: 18px;
  margin-bottom: 5px;
}
.location-box a {
  font-size: 14px;
  font-weight: 300;
}
.location-box p {
  font-size: 14px;
  margin-bottom: 10px;
}
.location-box a {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
.location-box a:hover {
  color: #ff6600;
}
/* Social Community Section */
.social-community {
  padding: 20px;
  margin-top: 20px;
}
.social-community h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.footer-social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-size: 16px;
  transition: 0.3s;
}
.footer-social-icons a i {
  margin-right: 8px;
}
.footer-social-icons a:hover {
  background: #ff6600;
  color: black;
}
/* Bottom Footer */
.bottom-footer {
  background: #000;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #bbb;
}
.bottom-footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}
.bottom-footer a:hover {
  color: #ff6600;
}
/* Wrapper to Center the Contact Section */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh; /* Ensures full screen height */
}
/* Contact Banner */
.contact-section {
  position: relative;
  width: 80%; /* 80% of the screen width */
  height: 80vh; /* 80% of the screen height */
  background: url('../img/cta.png') no-repeat center center/cover;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: flex-end; /* Move content to the bottom */
  justify-content: center;
  padding: 20px;
  margin: 0 auto; /* Ensures horizontal centering */
  margin-bottom: 5px;
}
/* Ensure Content Box is Centered */
.content {
  position: relative;
  width: 80%; /* Adjust width for better placement */
  max-width: 600px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: white;
  margin-bottom: 20px; /* Space from bottom */
}
/* Center the Contact Button */
.contact-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 18px;
  text-decoration: none;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: 0.3s ease-in-out;
}
.contact-btn:hover {
  background: #ff6600;
  color: black;
}
/* whitewings video */
.video-wrapperr {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.custom-video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
