/*logo*/
nav ul.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 12px 40px;
  background-color: #1c2a3a;
}

/* Logo styling */
.nav-links .logo img {
  height: 55px; /* Keep actual layout height */
  width: auto;
  border-radius: 8px;
  transform: scale(1.4); /* Visually enlarges logo */
  transform-origin: left center; /* Keeps alignment clean */
  transition: transform 0.4s ease;
  padding-left: 25px;
}
/* ------ */
.logo-block {
  display: flex;
  flex-direction: column;     /* stack logo and text vertically */
  align-items: center;        /* center horizontally */
  justify-content: center;
  text-align: center;
}

.logo-img {
  height: 60px;               /* adjust size as needed */
  width: auto;
  margin-bottom: 80px;         /* spacing between logo and text */
  padding-left: 10px;
}

.logo-text {
  font-size: 1.2rem;
  color: #333;
}
/* ------ */

/* Optional: slight hover lift (not rotation) */
.nav-links .logo img:hover {
  /* transform: scale(1.05); */
  transform: scale(1.05);
}

/* Link styling */
.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #4db8ff;
}


/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #e0eafc, #cfdef3);
  color: #333;
  scroll-behavior: smooth;
}

/* Header Navigation */
header nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  background: linear-gradient(135deg, #95c0eb, #003366);
  padding: 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 999;
  animation: slideDown 0.8s ease;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

nav ul li {
  margin: 0 25px;
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 8px;
}

nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #ffcc00, #ff9900);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

nav ul li a:hover {
  color: #ffcc00;
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.1);
}

nav ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/*services*/
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #141e30;
  margin: 60px 0 10px;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}
.service-card_1 {
  animation: fadeInUp 1.5s ease-in-out;
}

.connect-section {
  margin-top: -30px; /* Move entire section up */
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title-tag {
  text-align: center;
  font-size: 1.5rem;
  color: #334668;
  margin: 10px 0 40px;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.services-grid_1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 0 40px 80px;
  max-width: 1200px;
  margin: auto;
}
.services-grid_1 {
  animation: fadeInUp 1.5s ease-in-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card_1 {
  /* background: linear-gradient(135deg, #ffffff, #f4f9ff); */
  background: linear-gradient(135deg, #1c85ef, #003366);
  border: 1px solid rgba(0, 114, 198, 0.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 30px 25px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card_1:hover {
  /* transform: translateY(-5px); */
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service-card_1 h3 {
  color: #fcfeff;
  font-size: 1.4rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #e0e7ed;
  padding-bottom: 5px;
}

.service-card_1 ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.service-card_1 ul li {
  padding: 6px 0;
  color: #fffcfc;
  position: relative;
  padding-left: 20px;
}

.service-card_1 ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f5f7f9;
  font-weight: bold;
}

/* ------- */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #141e30;
  margin: 60px 0 10px;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}
.service-card {
  animation: fadeInUp 1.5s ease-in-out;
}

.connect-section {
  margin-top: -30px; /* Move entire section up */
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title-tag {
  text-align: center;
  font-size: 1.5rem;
  color: #334668;
  margin: 10px 0 40px;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.services-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  padding: 0 40px 90px;
  max-width: 1300px;
  margin: auto;
}
.services-grid {
  animation: fadeInUp 1.5s ease-in-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  /* background: linear-gradient(135deg, #ffffff, #f4f9ff); */
  background: linear-gradient(135deg, #1c85ef, #003366);
  border: 1px solid rgba(0, 114, 198, 0.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 20px 25px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  /* transform: translateY(-5px); */
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service-card h3 {
  color: #fcfeff;
  font-size: 1.4rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #e0e7ed;
  padding-bottom: 5px;
}

.service-card h4 {
  color: #fcfeff;
  font-size: .8rem;
  padding-bottom: 0px;
  padding-left: 20px;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.service-card ul li {
  padding: 6px 0;
  color: #fffcfc;
  position: relative;
  padding-left: 20px;
}

.service-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f5f7f9;
  font-weight: bold;
}
/* ---- */


/*country*/
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #141e30;
  margin: 60px 0 40px;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.services-grid-country {
  display: grid;
  flex-wrap: nowrap; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 0 40px 80px;
  max-width: 1200px;
  margin: auto;
}

.service-card-country {
  background: linear-gradient(135deg, #026cd7, #003366);
  border: 1px solid rgba(0, 114, 198, 0.1);
  box-shadow: 0 4px 15px rgba(233, 217, 217, 0.512);
  padding: 30px 25px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.6s ease;
}

.service-card-country:hover {
  /* transform: translateY(-8px); */
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service-card-country h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #edf5fa;
  padding-bottom: 5px;
}

.service-card-country ul {
  color: #ffffff;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.service-card-country h3 {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  color: #dde2e6;
  margin-bottom: 10px;
}

/* ----- */
.services-grid-country {
  display: grid;
  flex-wrap: nowrap; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 0 40px 80px;
  max-width: 1200px;
  margin: auto;
}

.service-card-country_2 {
  background: linear-gradient(135deg, #026cd7, #003366);
  border: 1px solid rgba(0, 114, 198, 0.1);
  box-shadow: 0 4px 15px rgba(233, 217, 217, 0.512);
  padding: 30px 25px;
  margin: 20px auto;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.6s ease;
}

.service-card-country_2:hover {
  /* transform: translateY(-8px); */
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service-card-country_2 h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #edf5fa;
  padding-bottom: 5px;
}

.service-card-country_2 ul {
  color: #ffffff;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.service-card-country_2 h3 {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  color: #dde2e6;
  margin-bottom: 10px;
}
/* ----- */

/* services images icon */
.service-icons_1 {
  width: 170px;
  height: 120px;
}
.service-icons_2 {
  width: 150px;
  height: 120px;
  padding-left: 15px;
}
.service-icons_3 {
  width: 150px;
  height: 115px;
  padding-left: 10px;
}
.service-icons_4 {
  width: auto;
  height: 120px;
}
.service-icons_5 {
  width: 180px;
  height: 117px;
}
/* -------- */



.location-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.location-icon:hover {
  transform: scale(1.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #0066cc, #003366);
  color: white;
  padding: 14px 16px;
  border-radius: 50%;
  font-size: 20px;
  display: none;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

#backToTop:hover {
  background: linear-gradient(135deg, #004a99, #001f4d);
  transform: scale(1.1);
}

/* Section Transitions */
.section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  padding: 60px 20px;
  background: linear-gradient(to bottom right, #ffffffcc, #f4f7fa);
  margin: 20px auto;
  width: 90%;
  max-width: 1200px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* changed from center */
  align-items: center;
  text-align: center;
  height: auto; /* reduced from 100vh */
  padding-top: 2px; /* controls how far from top */
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 0;
  z-index: 1;
  position: relative;
  
}
.hero {
  animation: fadeInUp 1.5s ease-in-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  padding-bottom: 2px;
  padding-top: 1px;
  color: #0a0a0a;
  animation: fadeInUp 1s ease;
}


.hero h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-top: 2px;
  margin-bottom: 0px;
  margin-top: 0;
  color: #0a0a0a;
  animation: fadeInUp 1s ease;
}

.hero p {
  max-width: 900px;
  margin-top: 0;
  /* text-align: center; */
  text-align: justify;
  color: #334668;
  margin: 10px 0 40px;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

.hero .btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #0066cc, #003366);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero .btn:hover {
  background: linear-gradient(135deg, #004a99, #001f4d);
  transform: scale(1.05);
}

/* --------------- */
.hero_2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* changed from center */
  align-items: center;
  text-align: center;
  height: auto; /* reduced from 100vh */
  padding-top: 2px; /* controls how far from top */
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 0;
  z-index: 1;
  position: relative;
}
.hero_2 {
  animation: fadeInUp 1.5s ease-in-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero_2 h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-top: 2px;
  margin-bottom: 0px;
  margin-top: 0;
  color: #0a0a0a;
  animation: fadeInUp 1s ease;
}

.hero_2 p {
  max-width: 900px;
  margin-top: 0;
  text-align: justify;
  color: #334668;
  margin: 10px 0 40px;
  text-shadow: 1px 1px 1px rgba(248, 0, 0, 0.1);
  font-size: 1.2rem;
  line-height: 1.4;
  color: #334668;
}

/* --------------- */



/* Contact Section */
.contact-box {
  max-width: 700px;
  margin: 40px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.contact-box {
  animation: fadeInUp 1.5s ease-in-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
  background-color: #f9f9f9;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0066cc;
  outline: none;
  background-color: #fff;
}

.contact-info {
  margin-top: 30px;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.contact-info p {
  margin: 8px 0;
}
.contact-form select {
  padding: 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  color: #333;
  transition: border 0.3s ease;
}

.contact-form select:focus {
  border-color: #0066cc;
  outline: none;
  background-color: #fff;
}

/* Features Cards Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 60px 40px;
  background-color: #f4f7fa;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.feature-card img {
  width: 80px;
  height: 80px;
  background-color: #1274b8;
  padding: 15px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.feature-card h3 {
  color: #1274b8;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

.feature-card ul li {
  margin: 6px 0;
}


/* Footer */
footer {
    background: #141e30;
    color: white;
    padding: 40px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #d4e1ee;
    border-radius: 50%;
    text-align: center;
    line-height: 49px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}
.social-links a i {
    color: rgb(17, 38, 107); 
    font-size: 29px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Footer Styles */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #007bff;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #fff;
}

/* Reuse button style from hero */
.contact-form .btn {
  background: linear-gradient(135deg, #0066cc, #003366);
  color: #fff;
  padding: 12px 24px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-form .btn:hover {
  background: linear-gradient(135deg, #004a99, #001f4d);
  transform: scale(1.05);
}

/* Animations */
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin: 10px 0;
  }

  #backToTop {
    bottom: 20px;
    right: 20px;
    padding: 12px 14px;
  }

  .section {
    padding: 40px 15px;
  }
}

/* Stay Connected Section */
.stay-connected {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to bottom, #d5e3f4, #f8faff); /* match carousel gradient */
}

.stay-connected h2 {
  font-size: 2rem;
  color: #0072c6;
  margin-bottom: 10px;
  font-weight: bold;
}

.stay-connected p {
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 300px;
}

.social-item {
  text-align: center;
  max-width: 200px;
}

.icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: #0072c6;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* subtle elevation */
  transition: transform 0.3s ease;
}

.icon-circle:hover {
  transform: scale(1.1); /* smooth hover effect */
}

.icon-circle img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.social-item h4 {
  color: #0072c6;
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: bold;
}

.social-item p {
  color: #666;
  font-size: 0.9rem;
}

/*carouseal animation*/
.carousel-3d-container {
  perspective: 1000px;
  width: 100%;
  height: 360px; /* Reduced height */
  margin: 40px 0;
  display: flex;
  margin-top: 0;
  margin-bottom: 2px;
  padding-top: 0px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.carousel-3d {
  width: 200px;
  height: 200px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1s ease-in-out;
}

.carousel-item {
  position: absolute;
  width: 160px;
  height: 195px;
  background: linear-gradient(135deg, #0066cc, #003366);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  padding: 10px;
  text-align: center;
  transition: transform 0.5s ease;
}

.carousel-item img {
  width: 70px;            
  height: 70px;
  margin-bottom: 10px;
  border-radius: 12px;     
  background: #ffffff20;   
  padding: 8px;            
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); 
}
.feature-content h3 {
  font-size: 14px;
  margin-bottom: 4px;
  color: #fff; /* was #1274b8 */
}

.feature-content ul {
  list-style: none;
  padding: 0;
  font-size: 12px;
  margin: 0;
}

.feature-content ul li {
  color: #e6e6e6;
}

/* Position each card in a tighter circle */
.carousel-item:nth-child(1)  { transform: rotateY(0deg) translateZ(350px); }
.carousel-item:nth-child(2)  { transform: rotateY(40deg) translateZ(350px); }
.carousel-item:nth-child(3)  { transform: rotateY(80deg) translateZ(350px); }
.carousel-item:nth-child(4)  { transform: rotateY(120deg) translateZ(350px); }
.carousel-item:nth-child(5)  { transform: rotateY(160deg) translateZ(350px); }
.carousel-item:nth-child(6)  { transform: rotateY(200deg) translateZ(350px); }
.carousel-item:nth-child(7)  { transform: rotateY(240deg) translateZ(350px); }
.carousel-item:nth-child(8)  { transform: rotateY(280deg) translateZ(350px); }
.carousel-item:nth-child(9)  { transform: rotateY(320deg) translateZ(350px); }

@keyframes rotateCarousel {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(-360deg);
  }
}
.carousel-controls {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 70px;
  padding-left: 3px;
}

.carousel-button {
  background-color: #0072c6;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease;
}

.carousel-button:hover {
  background-color: #005999;
}



/*img_32*/
.img-row {
  display: flex;
  justify-content: center; /* center the row */
  gap: 20px; /* space between images */
  flex-wrap: wrap; /* allow wrap on small screens */
}

.img_32 {
  flex: 1 1 45%; /* allow responsive shrinking */
}

.img_32 img {
  width: 2000px;       /* full width of the parent */
  max-width: 1279px;  /* limit max size */
  max-height: 250px;
  height: auto;      /* maintain aspect ratio */
  display: block;    /* remove bottom space */
  margin: 0 auto;    /* center horizontally */
  margin-top: 20px;
  margin-bottom: 20px;
  animation: fadeInUp 1.5s ease-in-out;
}
.img_32 img {
  animation: fadeInUp 1.5s ease-in-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/*subscribe form*/
.subscribe-box {
  background: linear-gradient(90deg, #141e30, #243b55);
  margin: 60px auto; /* ⬅️ Adds space from top and bottom */
  max-width: 700px;
  color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  max-width: 700px;
  margin: 20 auto;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.subscribe-box {
  animation: fadeInUp 1.5s ease-in-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.subscribe-box h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 28px;
}

.subscribe-form fieldset {
  border: none;
  padding: 0;
}

.subscribe-form legend {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}


.checkbox-group {
  flex-direction: column;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"] {
  padding: 10px;
  border-radius: 6px;
  border: none;
  background-color: #ffffff;
  color: #000;
  font-size: 14px;
  width: 100%;
}

.form-group input::placeholder {
  color: #999;
}

.subscribe-btn {
  background-color: #00c6ff;
  background-image: linear-gradient(90deg, #00c6ff, #0072ff);
  border: none;
  padding: 12px 30px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.subscribe-btn:hover {
  background-image: linear-gradient(90deg, #0072ff, #0050d6);
  transform: scale(1.05);
}

#confirmation {
  text-align: center;
  font-weight: bold;
  color: #00ffab;
  margin-top: 15px;
}

/*about_logo*/
.about_logo {
  width: auto;
  height: 400px;
  position: relative;   /* valid position */
  transform-style: preserve-3d;
  animation: rotateCarousel 10s infinite linear;
}
.hero_div_about {
  padding-top: 15px;
}