/* HomePage Section CSS */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #333;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 9%;
  background: rgba(255, 255, 255, 0.404);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  z-index: 1000;
  transition: background 0.3s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  font-weight: 600;
  font-size: 1.8rem;
  color: #0b398b;
  display: flex;
  align-items: center;
}

.logo img {
  width: 45px;
  height: auto;
  margin-right: 12px;
}

nav a {
  margin: 0 1.2rem;
  text-decoration: none;
  color: #0b398b;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #ffcb47;
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a.active,
nav a:hover {
  color: #ffcb47;
}

/* Menu Button (hidden on desktop) */
.menu-btn {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 90px;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    flex-direction: column;
    width: 200px;
    text-align: left;
    padding: 20px;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .menu-btn {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    margin: 0;
    color: #0b398b;
  }

  .brand-top {
    font-size: 1.5rem;
    left: 15px;
  }
}
/* Responsive Navbar for 480px */
@media (max-width: 480px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    flex-direction: column;
    width: 100%;
    text-align: left;
    padding: 15px;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .menu-btn {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    margin: 0;
    color: #0b398b;
  }

  .brand-top {
    font-size: 1.5rem;
    left: 15px;
  }
}

#select-lang {
  padding: 10px 15px;
  font-size: 16px;
  font-family: "Segoe UI", sans-serif;
  color: #ffffff;
  background-color: #1e3a8a;
  border: 2px solid #1e40af;
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='292.4' height='292.4'%3E%3Cpath fill='%23ffffff' d='M287 69.4L166.6 189.8c-7.8 7.8-20.5 7.8-28.3 0L5 69.4C-2.7 61.7-2.7 48.8 5 41c7.8-7.8 20.5-7.8 28.3 0L146.3 153 258.7 41c7.8-7.8 20.5-7.8 28.3 0 7.7 7.8 7.7 20.6 0 28.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  min-width: 120px;
}

#select-lang:hover {
  background-color: #1d4ed8;
  border-color: #2563eb;
}

#select-lang:focus {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.4);
}

.hero {
  position: relative;
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 150px 5%;
  overflow: hidden;
}

.carousel {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.carousel-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 80%;
  object-fit: cover;
}

.carousel-content {
  position: absolute;
  top: 60%;
  left: 5%;
  transform: translateY(-50%);
  color: white;
  z-index: 2;
}

.carousel-content h1 {
  font-size: 4rem;
  font-weight: 600;

  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-content p {
  font-size: 1.3rem;
  max-width: 650px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.buttons {
  display: flex;
  gap: 1.5rem;
}

.btn {
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: #ffcb47;
  color: #000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background-color: transparent;
  border: 2px solid #ffcb47;
  color: white;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid #ffcb47;
}

.btn-secondary:hover {
  background-color: #ffcb47;
  color: #000;
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
/* HOME SECTION  */

/* Tablet Devices (width: 768px - 1024px) */
@media (max-width: 1024px) {
  header {
    padding: 0.8rem 2rem;
    height: auto;
  }

  .logo {
    font-size: 1.5rem;
  }

  .logo img {
    width: 40px;
    margin-right: 10px;
  }

  nav a {
    margin: 0 0.8rem;
    font-size: 0.95rem;
  }

  .carousel-content h1 {
    font-size: 3rem;
  }

  .carousel-content p {
    font-size: 1.1rem;
  }

  .btn {
    font-size: 1rem;
    padding: 0.8rem 1.8rem;
  }
}

/* Mobile Devices (width: 481px - 767px) */
@media (max-width: 767px) {
  .menu-btn {
    display: block;
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1000;
  }
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.6rem 1.5rem;
  }

  nav {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  .logo img {
    width: 35px;
  }

  nav a {
    font-size: 0.9rem;
    margin: 0 0.4rem;
  }

  .hero {
    padding: 120px 4%;
  }

  .carousel-content h1 {
    font-size: 2.2rem;
  }

  .carousel-content p {
    font-size: 1rem;
  }

  .buttons {
    flex-direction: row;
    gap: 1rem;
    padding: 0.6rem 1rem;
    text-align: center;
    min-width: 140px;
  }
}

/* Small Mobile Devices (width ≤ 480px) */
@media (max-width: 480px) {
  header {
    padding: 0.5rem 1rem;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo img {
    width: 30px;
    margin-right: 8px;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .carousel-content {
    left: 4%;
    top: 48%;
  }

  .carousel-content h1 {
    font-size: 1.8rem;
  }

  .carousel-content p {
    font-size: 0.95rem;
  }
  .buttons {
    flex-direction: row;
    gap: 1rem;
    padding: 0.6rem 1rem;
    text-align: center;
    min-width: 140px;
  }
}

/* Product Section */

.product-section {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 100vh;
}
.view-products-btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #ffbe00;
  color: black;
  font-weight: bold;
  text-decoration: none;
  border-radius: 20px;
  font-size: 16px;
  transition: background 0.3s ease;
}

.view-products-btn:hover {
  background-color: rgba(255, 255, 255, 0.083);
  border: 2px solid #ffcb47;
  color: black;
}

.product-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.product-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.product-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background-color: white;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #111;
}

.card-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

.card-content button {
  background-color: #ffc107;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.card-content button:hover {
  background-color: #e0a800;
}

/* Product section responsive */
/* Tablet Devices (max-width: 1024px) */
@media (max-width: 1024px) {
  .product-section {
    padding: 20px;
    height: auto;
  }

  .product-section h2 {
    font-size: 2rem;
  }

  .product-section p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .product-cards {
    justify-content: center;
    gap: 25px;
  }

  .card {
    width: 280px;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .product-section {
    padding: 15px;
  }

  .product-section h2 {
    font-size: 1.8rem;
  }

  .product-section p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .view-products-btn {
    padding: 8px 20px;
    font-size: 15px;
  }

  .product-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  .card-content h3 {
    font-size: 1.1rem;
  }

  .card-content p {
    font-size: 0.9rem;
  }

  .card-content button {
    width: 100%;
    padding: 10px;
  }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
  .product-section h2 {
    font-size: 1.6rem;
  }

  .product-section p {
    font-size: 0.9rem;
  }

  .view-products-btn {
    padding: 8px 18px;
    font-size: 14px;
  }

  .card {
    width: 95%;
  }

  .card img {
    height: 180px;
  }

  .card-content h3 {
    font-size: 1rem;
  }

  .card-content p {
    font-size: 0.85rem;
  }

  .card-content button {
    font-size: 0.9rem;
    padding: 8px;
  }
}

/* Research & Development Section CSS */

.rd-section {
  background-image: url("../../Assets/imgs/Research&\ development-img.webp");
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100vw;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  color: white;
  width: 70%;
  height: 90%;
  margin-top: 20px;
}

.overlay h1 {
  font-size: 3rem;
  font-weight: bold;
}

.overlay h2 {
  font-size: 2rem;
  margin-top: 10px;
  font-weight: 400;
  color: #dcdcdc;
}

.rd-box {
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid #00aaff7a;
  padding: 20px;
  margin: 10px auto;
  border-radius: 10px;
  backdrop-filter: blur(6px);
  color: white;
  font-size: 20px;
  width: 60%;
}

.learn-more-btn {
  background-color: #ffcb47;
  color: black;
  padding: 12px 15px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.learn-more-btn:hover {
  background-color: rgba(255, 255, 255, 0.127);
  border: 2px solid #ffcb47;
  color: white;
}

/* research and development section responsive */

/* Tablet Devices (max-width: 1024px) */
@media (max-width: 1024px) {
  .overlay {
    width: 85%;
    height: 85%;
    padding: 30px;
  }

  .overlay h1 {
    font-size: 2.5rem;
  }

  .overlay h2 {
    font-size: 1.5rem;
  }

  .rd-box {
    width: 80%;
    padding: 18px;
  }

  .learn-more-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .rd-section {
    flex-direction: column;
    padding: 20px;
    height: auto;
  }

  .overlay {
    width: 90%;
    height: auto;
    padding: 25px;
  }

  .overlay h1 {
    font-size: 2rem;
  }

  .overlay h2 {
    font-size: 1.3rem;
  }

  .rd-box {
    width: 90%;
    padding: 16px;
  }

  .learn-more-btn {
    font-size: 0.95rem;
    padding: 10px 18px;
  }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
  .overlay {
    width: 95%;
    padding: 20px;
  }

  .overlay h1 {
    font-size: 1.6rem;
  }

  .overlay h2 {
    font-size: 1.1rem;
  }

  .rd-box {
    width: 95%;
    padding: 14px;
  }

  .learn-more-btn {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 0.9rem;
    padding: 10px;
  }
}

/* Feature Section CSS */

.features-section {
  padding: 60px 20px;
  text-align: center;
}

.features-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.features-section .subtitle {
  font-size: 1rem;
  color: #777;
  margin-bottom: 40px;
}

.features-title {
  display: inline-block;
  font-size: 2rem;
  color: #c6973f;
  border: 2px solid #c6973f;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 50px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 10px;
  padding: 10px 30px;
  margin-bottom: 50px;
  font-weight: bold;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.feature-box h3 {
  color: #c6973f;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-box p {
  font-size: 0.95rem;
  color: #555;
}
/* Feature section responsive */

/* Tablet Devices (max-width: 1024px) */
@media (max-width: 1024px) {
  .features-section {
    padding: 50px 15px;
  }

  .features-section h2 {
    font-size: 2.2rem;
  }

  .features-section .subtitle {
    font-size: 0.95rem;
  }

  .features-title {
    font-size: 1.8rem;
    padding: 8px 25px;
  }

  .feature-box h3 {
    font-size: 1.1rem;
  }

  .feature-box p {
    font-size: 0.9rem;
  }

  .feature-box img {
    height: 160px;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .features-section {
    padding: 40px 10px;
  }

  .features-section h2 {
    font-size: 2rem;
  }

  .features-section .subtitle {
    font-size: 0.9rem;
  }

  .features-title {
    font-size: 1.6rem;
    padding: 8px 20px;
  }

  .features-grid {
    gap: 25px;
  }

  .feature-box {
    padding: 18px;
  }

  .feature-box img {
    height: 150px;
  }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
  .features-section {
    padding: 30px 10px;
  }

  .features-section h2 {
    font-size: 1.8rem;
  }

  .features-section .subtitle {
    font-size: 0.85rem;
    margin-bottom: 30px;
  }

  .features-title {
    font-size: 1.4rem;
    padding: 7px 18px;
  }

  .feature-box {
    padding: 15px;
  }

  .feature-box img {
    height: 140px;
  }

  .feature-box h3 {
    font-size: 1rem;
  }

  .feature-box p {
    font-size: 0.85rem;
  }
}

/* Blogs Section */

.blog-section {
  padding: 50px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.blog-section h2 {
  font-size: 2.5rem;
}

.blog-section .subtitle {
  color: #666;
  margin-bottom: 30px;
  font-size: 1rem;
}

/* Top bar */
.top-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.top-bar input {
  padding: 12px 20px;
  border: none;
  border-radius: 12px;
  background-color: #fff;
  font-size: 1rem;
  flex: 1;
  min-width: 220px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filters button {
  padding: 10px 16px;
  border: none;
  background-color: #e5e5e5;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.filters .active {
  background-color: #c3a550;
  color: white;
  font-weight: bold;
}

/* Featured Blog */
.featured-blog {
  position: relative;
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  font-family: Arial, sans-serif;
  margin-bottom: 40px;
}

.featured-blog .bg-img {
  width: 100%;
  height: auto;
  display: block;
}

.featured-blog .overlay-two {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.404);
  border-radius: 10px;
  padding: 25px 35px;
  text-align: center;
  color: white;
  width: 60%;
  height: 60%;
}

.featured-blog .overlay-two h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  color: black;
}

.featured-blog .overlay-two p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: white;
}

.featured-blog .overlay-two button {
  padding: 10px 20px;
  font-size: 14px;
  color: black;
  background-color: #f3bc32;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.featured-blog .overlay-two button:hover {
  background-color: rgba(255, 255, 255, 0.083);
  border: 2px solid #ffcb47;
  color: white;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.blog-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card h4 {
  padding: 15px;
  font-size: 1.1rem;
}

.blog-card button {
  margin: 0 15px 15px;
  background-color: #fbc531;
  border: none;
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
}
.blog-card button:hover {
  background-color: rgba(255, 255, 255, 0.127);
  border: 2px solid #ffcb47;
  color: black;
}

/* Blogs section responsive */
/* Tablet Devices (max-width: 1024px) */
@media (max-width: 1024px) {
  .blog-section h2 {
    font-size: 2.2rem;
  }

  .blog-section .subtitle {
    font-size: 0.95rem;
  }

  .top-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .featured-blog .overlay-two {
    width: 80%;
    height: auto;
    padding: 20px;
  }

  .featured-blog .overlay-two h2 {
    font-size: 24px;
  }

  .featured-blog .overlay-two p {
    font-size: 15px;
  }

  .featured-blog .overlay-two button {
    font-size: 13px;
    padding: 8px 16px;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .blog-section {
    padding: 40px 15px;
  }

  .blog-section h2 {
    font-size: 2rem;
  }

  .blog-section .subtitle {
    font-size: 0.9rem;
  }

  .top-bar {
    flex-direction: column;
    gap: 10px;
  }

  .top-bar input {
    font-size: 0.95rem;
    padding: 10px 16px;
  }

  .filters {
    justify-content: center;
  }

  .filters button {
    font-size: 0.85rem;
    padding: 8px 14px;
  }

  .featured-blog .overlay-two {
    width: 90%;
    height: auto;
    padding: 18px;
  }

  .featured-blog .overlay-two h2 {
    font-size: 22px;
  }

  .featured-blog .overlay-two p {
    font-size: 14px;
  }

  .blog-card h4 {
    font-size: 1rem;
    padding: 12px;
  }

  .blog-card button {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
  .blog-section h2 {
    font-size: 1.8rem;
  }

  .blog-section .subtitle {
    font-size: 0.85rem;
  }

  .top-bar input {
    font-size: 0.9rem;
    padding: 10px 14px;
  }

  .filters button {
    padding: 7px 12px;
    font-size: 0.8rem;
  }

  .featured-blog .overlay-two {
    width: 95%;
    padding: 16px;
  }

  .featured-blog .overlay-two h2 {
    font-size: 20px;
  }

  .featured-blog .overlay-two p {
    font-size: 13.5px;
  }

  .featured-blog .overlay-two button {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .blog-card img {
    height: 150px;
  }

  .blog-card h4 {
    font-size: 0.95rem;
    padding: 10px;
  }

  .blog-card button {
    font-size: 0.85rem;
    padding: 7px 12px;
  }
}

/* Contact Section */

.container {
  width: 100vw;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #011122;
  color: white;
}

.header {
  text-align: center;
  margin-bottom: 50px;
}

.header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 300;
}

.header p {
  font-size: 1rem;
  opacity: 0.9;
}

.content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 80px;
  margin-left: 20px;
}

.contact-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-size: 30px;
}

.info-item {
  margin-bottom: 25px;
}

.info-item h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 20px;
}

.info-item p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
  font-size: 15px;
}
.contact-link a{
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.contact-link:hover a{
  color: #00bfff;
  text-shadow: 0 0 8px rgba(0, 191, 255, 0.8);
}

.map {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  margin-right: 30px;
}

iframe {
  width: 100%;
}
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 30px;
  margin-left: 100px;
  font-size: 25px;
}

.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #ffcb47da;
  font-size: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  opacity: 0.7;
  font-size: 15px;
}
/* contact section responsive */

/* Tablet Devices (max-width: 1024px) */
@media (max-width: 1024px) {
  .header h1 {
    font-size: 2.2rem;
  }

  .header p {
    font-size: 0.95rem;
  }

  .content {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .map {
    margin-right: 0;
    margin-top: 20px;
  }

  .contact-info h2 {
    font-size: 1.8rem;
  }

  .info-item h3 {
    font-size: 1.1rem;
  }

  .info-item p {
    font-size: 0.9rem;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    margin-left: 40px;
    font-size: 20px;
  }

  .footer-section h3 {
    font-size: 1rem;
  }

  .footer-section ul li a {
    font-size: 0.85rem;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .container {
    padding: 30px 15px;
  }

  .header h1 {
    font-size: 2rem;
  }

  .header p {
    font-size: 0.9rem;
  }

  .content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-left: 0;
  }

  .map {
    margin-right: 0;
  }

  .contact-info {
    padding: 25px;
  }

  .contact-info h2 {
    font-size: 1.6rem;
  }

  .info-item h3 {
    font-size: 1rem;
  }

  .info-item p {
    font-size: 0.85rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 0;
    font-size: 18px;
    gap: 30px;
  }

  .footer-section h3 {
    font-size: 0.95rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
  .header h1 {
    font-size: 1.6rem;
  }

  .header p {
    font-size: 0.85rem;
  }

  .contact-info h2 {
    font-size: 1.4rem;
  }

  .info-item h3 {
    font-size: 0.95rem;
  }

  .info-item p {
    font-size: 0.8rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    font-size: 16px;
    gap: 20px;
  }

  .footer-section h3 {
    font-size: 0.9rem;
  }

  .footer-section ul li a {
    font-size: 0.8rem;
  }

  .footer-bottom {
    font-size: 0.7rem;
  }
}
