/* General Navbar Styling */
header {
  background-color: #315364;
  color: #ffffff;
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .logo {
  display: flex;
  align-items: center;
  border-radius: 50%;
}

header .a .img {
  border-radius: 50%;
}

header h1 {
  margin-left: 10px;
  font-size: 24px;
  color: #00ccff;
}

header nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #00ccff;
  font-size: 16px;
  padding: 10px;
}

.nav-links a:hover {
  background-color: #004466;
  border-radius: 5px;
}

/* Hamburger Icon for Mobile */
.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #ffffff;
  margin-left: 20px;
}

/* Responsive styling 
@media (max-width: 768px) {
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    background-color: #002233;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    padding-top: 20px;
  }

  .nav-links li {
    text-align: center;
    margin: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}
**/
/* ছোট স্ক্রিনের জন্য মেনু হাইড করা */
.nav-links {
display: flex;
gap: 15px;
}

/* মোবাইল স্ক্রীনে, মেনু লুকানো */
@media (max-width: 768px) {
.nav-links {
  display: none;
  flex-direction: column;
  background-color: #fff;
  position: absolute;
  top: 80px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 10px;
  border-radius: 8px;
  z-index: 1000;
}

.fs {
    
    font-size: large;
    padding-left: 20px;
}


/* .active ক্লাস যোগ হলে মেনু শো করবে */
.nav-links.active {
  display: flex;
}

.hamburger {
  display: block;
  cursor: pointer;
  font-size: 24px;
}
}

@media (min-width: 769px) {
.hamburger {
  display: none;
}
 .fs {
    display: none;
}
}










/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 5%;
  background-color: #f4f4f4;
}

.hero-text {
  max-width: 50%;
}

.hero-text h2 {
  font-size: 28px;
  color: #002233;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 16px;
  color: #444444;
  margin-bottom: 20px;
  text-align: justify;
}

.hero-text .btn {
  background-color: #00ccff;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.hero-text .btn:hover {
  background-color: #0077b3;
}

.hero-image img {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  float: right;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero-image img {
    max-width: 100%;
    
  }
  
}


/* Features Section */
/* Make feature-box clickable */
/* Features Section */
.features {
  padding: 50px 5%;
  background-color: #f9f9f9;
  text-align: center;
  display: flex;
  justify-content: space-between;
}

.feature-box {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 30px;
  flex: 1;
  text-align: center;
  margin: 0 15px;
  transition: transform 0.3s ease;
}

.feature-box a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon {
  width: 200px;
  height: 200px;
  margin-bottom: 15px;
}

.feature-box:hover {
  transform: scale(1.05);
}

.feature-box h4 {
  font-size: 22px;
  color: #00ccff;
  margin-bottom: 15px;
}

.feature-box p {
  font-size: 16px;
  color: #444444;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature-box {
    margin-bottom: 20px;
    width: 80%;
  }
}


/* VIDEO INDEX PAGE */
.responsive-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  padding-top: 25px;
  height: 0;
}

.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
}



/***জয়েন পেজ*****/
.recruitment-section {
  padding: 40px 20px;
  background: #f8f8f8;
  text-align: center;
}

.job-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.job-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: left;
  transition: 0.3s;
}

.job-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.job-icon {
  width: 100%;
  height: 200px;
  vertical-align: middle;
  margin-right: 8px;
}

.apply-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: #007bff;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.apply-btn:hover {
  background: #0056b3;
}

/*****লগইন************/
.auth-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
}

.auth-form {
  width: 300px;
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.auth-form h2 {
  text-align: center;
  margin-bottom: 20px;
}


.user-section {
  padding: 30px;
  background-color: #f9f9f9;
  max-width: 800px;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.user-profile {
  text-align: center;
  margin-bottom: 20px;
}

.user-profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.user-profile h3 {
  margin: 10px 0;
  font-size: 24px;
}

.user-profile p {
  font-size: 16px;
  color: #555;
}

.user-section form {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.user-section form label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}

.user-section form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.user-section form button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.user-section form button:hover {
  background-color: #0056b3;
}

.btn {
  background-color: #28a745;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}

.btn:hover {
  background-color: #218838;
}

/*********about***/
.about-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.about-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.about-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
}

.about-section ul {
  list-style-type: disc;
  padding-left: 20px;
}

/****************services*********/

.services-section {
padding: 40px 20px;
background-color: #f2f8f9;
}

.services-section .container {
max-width: 800px;
margin: auto;
}

.services-section h2 {
text-align: center;
font-size: 30px;
margin-bottom: 30px;
}

.service-item {
background: white;
padding: 20px;
margin-bottom: 20px;
border-left: 5px solid #1e90ff;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service-item h3 {
margin-top: 0;
color: #1e90ff;
font-size: 22px;
}

.service-item p {
margin: 10px 0 0;
line-height: 1.6;
color: #444;
}

/**********contact**********/

.contact-section {
padding: 40px 20px;
background-color: #f9f9f9;
}

.contact-section .container {
max-width: 1000px;
margin: auto;
}

.contact-section h2 {
text-align: center;
font-size: 28px;
margin-bottom: 20px;
}

.contact-form-container {
display: flex;
flex-wrap: wrap;
gap: 40px;
margin-top: 30px;
}

.contact-form {
flex: 1;
min-width: 280px;
}

.contact-form input,
.contact-form textarea {
width: 100%;
padding: 12px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 6px;
}

.contact-form button {
padding: 12px 20px;
background-color: #007bff;
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
}

.contact-form button:hover {
background-color: #0056b3;
}

.contact-info {
flex: 1;
min-width: 250px;
background: #ffffff;
padding: 20px;
border-radius: 10px;
border-left: 4px solid #007bff;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* style.css */
.job-listings {
padding: 40px;
max-width: 800px;
margin: auto;
}

.job-box {
border: 1px solid #ccc;
border-radius: 10px;
padding: 20px;
margin-bottom: 20px;
}

.job-image {
width: 200px;
height: 200px;
object-fit: cover; /* এটি ছবি কোণার মধ্যে ঠিকভাবে ফিট করবে */
border-radius: 6px; /* যদি আপনি চাইলে কোণাগুলো কিছুটা রাউন্ড করতে পারেন */
}



/****নিযোগ সেকশন হোমপেজের*****/
.recruitment-section {
background: #f7f7f7;
padding: 40px 20px;
}

.recruitment-section .job-box {
background: #fff;
border: 1px solid #ddd;
padding: 20px;
margin-bottom: 20px;
border-radius: 10px;
}

.recruitment-section .job-box h3 {
margin-top: 0;
font-size: 20px;
}

.recruitment-section .job-box .btn {
display: inline-block;
margin-top: 10px;
}

/*****footer****/

.site-footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  font-size: 14px;
  background-color: #315364;
  color: #ffffff;
  flex-wrap: wrap;
}

.site-footer .footer-left {
  text-align: left;
  flex: 1;
}

.site-footer .footer-right {
  text-align: right;
  flex: 1;
}

.site-footer .social-links {
  text-align: center;
  flex: 1;
}

.site-footer .footer-right strong,
.site-footer .footer-left strong {
  color: #00ccff;
}

.site-footer a {
  color: #00ccff;
  text-decoration: none;
}

.site-footer .social-links a {
  margin: 0 10px;
}

@media (max-width: 768px) {
  .site-footer .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-left, .footer-right, .social-links {
    text-align: left;
    flex: none;
  }

  .footer-right, .footer-left {
    width: 100%;
    text-align: center;
  }

  .social-links {
    width: 100%;
    text-align: center;
  }
}


/* Apply Section */
.apply-section {
padding: 30px;
max-width: 800px;
margin: 50px auto;
background-color: #f7f7f7;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.apply-form h2 {
text-align: center;
margin-bottom: 20px;
font-size: 24px;
color: #333;
}

.apply-form input, .apply-form select, .apply-form textarea {
width: 100%;
padding: 12px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 16px;
}

.apply-form button {
width: 100%;
padding: 15px;
background-color: #28a745;
color: white;
font-size: 18px;
border: none;
border-radius: 5px;
cursor: pointer;
margin-top: 10px;
}

.apply-form button:hover {
background-color: #218838;
}

/* Popup Styles */
.popup {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
}

.popup-content {
background-color: white;
padding: 40px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
text-align: center;
margin-top: 100px;
}

.popup-content h3 {
font-size: 24px;
color: #333;
}

.popup-content p {
font-size: 18px;
margin: 10px 0;
}

.popup-content button {
padding: 10px 20px;
font-size: 16px;
margin: 10px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}

.popup-content button:hover {
background-color: #0056b3;
}

/***Footer**/

/* General Footer Styles */


.footer-content {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.footer-left, .social-links, .footer-right {
flex: 1 1 30%; /* Default: take up 30% space each */
margin: 10px;
}

.footer-left p, .footer-right p {
margin: 5px 0;
}

.social-links a {
color: #fff;
text-decoration: none;
margin-right: 10px;
}

.social-links a:hover {
text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.footer-left, .social-links, .footer-right {
  flex: 1 1 100%; /* On smaller screens, take full width */
  text-align: center;
}

.social-links {
  margin-top: 10px;
}

.footer-left p, .footer-right p {
  font-size: 12px; /* Adjust font size for mobile */
}
}

@media (max-width: 480px) {
.footer-left, .footer-right {
  text-align: center;
}



.footer-left p, .footer-right p {
  font-size: 11px;
  text-align: center;
}

.social-links a {
  margin-bottom: 5px;
}
}

