/* Global Styles */
:root {
  --primary-color: #1e90ff;       /* Sky blue */
  --secondary-color: #0077cc;     /* Darker blue */
  --accent-color: #ff6b6b;        /* Coral for accents */
  --dark-color: #2c3e50;          /* Dark blue-gray */
  --light-color: #f8f9fa;         /* Light gray */
  --text-color: #333;
  --text-light: #777;
  --white: #fff;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.05s ease;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
} */

body {
  font-family: 'Play', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}





a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  color: white;
  background-color: #0077cc;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.section-title span {
  color: var(--primary-color);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

/* Top Bar */
.top-bar {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.9rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info span {
  margin-right: 20px;
}

.contact-info i {
  margin-right: 5px;
  color: var(--primary-color);
}

.social-links a {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  margin-left: 10px;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

/* Navigation */
/* Navbar Styles */
/* Navbar Styles */
.navbar {
  background: #fff;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  text-decoration: none;
  margin-left: -30px;
}

.logo img {
  height: 30px;
  margin-right: 10px;
}

.logo strong {
  color: #1e90ff;
}

.nav-list {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-list li {
  list-style: none;
  position: relative;
}

.nav-list li a {
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
  padding: 10px 0;
  position: relative;
  text-decoration: none;
  display: block;
}

.nav-list li a:hover {
  color: #1e90ff;
}

/* .nav-list li a.active {
  color: #1e90ff;
} */

/* .nav-list li a.active::after,
.nav-list li a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #1e90ff;
} */

.cta-btn a {
  background: #1e90ff;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.cta-btn a:hover {
  background: #0077cc;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
}

/* Mega Menu Styles */
.mega-dropdown {
  position: static !important;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-top: 2px solid #1e90ff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.dropdown:hover .dropdown-menu,
.dropdown.mobile-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.mega-menu-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  gap: 30px;
}

.mega-menu-column {
  flex: 1;
  min-width: 200px;
}

.mega-menu-title {
  color: #1e90ff;
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(30, 144, 255, 0.2);
}

.mega-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-menu-list li {
  margin-bottom: 10px;
}

.mega-menu-list a {
  color: #555;
  padding: 5px 0;
  display: block;
  transition: all 0.3s ease;
  font-weight: 500;
  text-decoration: none;
}

.mega-menu-list a:hover {
  color: #1e90ff;
  padding-left: 5px;
}

/* Mobile Menu Styles */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #2c3e50;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 992px) {
  .menu-toggle {
      display: flex;
  }
  
  .nav-list {
      position: fixed;
      top: 80px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 80px);
      background: #fff;
      flex-direction: column;
      align-items: center;
      padding: 40px 20px;
      transition: all 0.5s ease;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      overflow-y: auto;
  }
  
  .nav-list.active {
      left: 0;
  }
  
  .dropdown-menu {
      position: static;
      box-shadow: none;
      border: none;
      opacity: 1;
      visibility: visible;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
  }
  
  .dropdown.mobile-open .dropdown-menu {
      max-height: 2000px;
      padding: 15px;
  }
  
  .mega-menu-container {
      flex-direction: column;
      gap: 0;
  }
  
  .mega-menu-column {
      margin-bottom: 20px;
  }
  
  .mega-menu-title {
      font-size: 1rem;
      margin-bottom: 10px;
  }
  
  .nav-list li {
      width: 100%;
      text-align: center;
  }
  
  .nav-list li a {
      padding: 12px 0;
  }
  
  .cta-btn {
      margin-top: 20px;
  }
}

/* .navbar {
  background: #fff;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo strong {
  color: #1e90ff;
}

.nav-list {
  display: flex;
  gap: 25px;
}

.nav-list li a {
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
  padding: 10px 0;
  position: relative;
}

.nav-list li a:hover {
  color: #1e90ff;
}

.nav-list li a.active {
  color: #1e90ff;
}

.nav-list li a.active::after,
.nav-list li a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #1e90ff;
}

.cta-btn a {
  background: #1e90ff;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 5px;
}

.cta-btn a:hover {
  background: #0077cc;
  transform: translateY(-2px);
}

/* Mobile Menu Styles */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  margin-right: -25px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #2c3e50;
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .menu-toggle {
      display: flex;
  }
  
  .nav-list {
      position: fixed;
      top: 80px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 80px);
      background: #fff;
      flex-direction: column;
      align-items: center;
      padding: 40px 20px;
      transition: all 0.5s ease;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .nav-list.active {
      left: 0;
  }
  
  .dropdown > a::after {
      display: none;
  }
}






















/* Hero Section */
/* .hero {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 1;
  padding-right: 50px;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

.hero-btns .btn {
  margin-right: 15px;
}

.hero-image {
  flex: 1;
  text-align: center;
} */

/* .hero-image img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
} */

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--light-color);
}

.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-box {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-box i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-box h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* Products Section */
.products {
  padding: 80px 0;
}

.product-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 10px;
}

.category {
  padding: 8px 20px;
  background-color: var(--light-color);
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.category:hover, .category.active {
  background-color: var(--primary-color);
  color: var(--white);
}

/* .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
} */
/* Update product grid for 4 columns */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

/* For larger screens - 4 products per row */
@media (min-width: 1200px) {
  .product-grid {
      grid-template-columns: repeat(4, 1fr);
  }
}

/* For medium screens - 2 products per row */
@media (max-width: 1199px) and (min-width: 768px) {
  .product-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

/* For mobile - 1 product per row */
@media (max-width: 767px) {
  .product-grid {
      grid-template-columns: 1fr;
  }
}





.product-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.product-info p {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.btn-cart {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-cart:hover {
  background-color: var(--secondary-color);
  /* transform: rotate(360deg); */
  transform: scale(1.1); /* Instead of rotate(360deg) for fast websit*/

}

.view-all {
  text-align: center;
  margin-top: 40px;
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: var(--light-color);
}

.about .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
}

/* .about-image img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
} */

.about-content {
  flex: 1;
}

.about-content p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.about-features {
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.feature {
  display: flex;
  align-items: center;
}

.feature i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 1.2rem;
}











  /* Mission & Vision Styles */
  /* Mission & Vision Styles */
  .mission-vision {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(255, 255, 255, 1) 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(30, 144, 255, 0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.mv-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--box-shadow);
    transition: transform 0.5s ease;
    position: relative;
    overflow: hidden;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.mission::after {
    background: linear-gradient(to bottom, #1e90ff, #00bfff);
}

.vision::after {
    background: linear-gradient(to bottom, #0077cc, #00aaff);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
}

.mv-content {
    margin-top: 20px;
}

.mv-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.mission-points {
    margin-top: 30px;
}

.mission-points li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.mission-points i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 1.1rem;
}

.vision-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.pillar {
    text-align: center;
    padding: 20px 15px;
    background: rgba(30, 144, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pillar:hover {
    background: rgba(30, 144, 255, 0.1);
    transform: translateY(-5px);
}

.pillar-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.pillar h4 {
    margin-bottom: 8px;
    color: var(--dark-color);
}

.pillar p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .mission-vision {
        padding: 60px 0;
    }
    
    .mv-card {
        padding: 30px;
    }
    
    .mv-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-pillars {
        grid-template-columns: 1fr;
    }
}










/* Newsletter */
.newsletter {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: var(--white);
}

.newsletter .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.newsletter-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  width: 100%;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 0 30px;
  border-radius: 0 4px 4px 0;
  background-color: var(--dark-color);
  color: var(--white);
  font-weight: 600;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: #1a2f42;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 60px 0 0;
}

.footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-col p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
  margin-right: 10px;
  color: var(--primary-color);
  margin-top: 3px;
}

.copyright {
  background-color: #1a2f42;
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.copyright .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links a {
  margin-left: 20px;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .hero .container, .about .container {
      flex-direction: column;
  }
  
  .hero-content, .about-content {
      padding-right: 0;
      margin-bottom: 40px;
      text-align: center;
  }
  
  .hero-btns .btn {
      margin-bottom: 15px;
  }
  
  .newsletter .container {
      flex-direction: column;
      text-align: center;
  }
  
  .newsletter-form {
      margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
      display: flex;
  }
  
  /* .nav-list {
      position: fixed;
      top: 90px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 90px);
      background-color: var(--white);
      flex-direction: column;
      align-items: center;
      padding-top: 40px;
      transition: var(--transition);
  }
  
  .nav-list.active {
      left: 0;
  }
  
  .nav-list li {
      margin: 15px 0;
  } */
  
  .top-bar .container {
      flex-direction: column;
  }
  
  .contact-info {
      margin-bottom: 10px;
  }
  
  .section-title {
      font-size: 2rem;
  }
  
  /* .hero-content h1 {
      font-size: 2.2rem;
  } */
}

@media (max-width: 576px) {
  .product-categories {
      justify-content: flex-start;
  }
  
  .about-features {
      grid-template-columns: 1fr;
  }
  
  .newsletter-form {
      flex-direction: column;
  }
  
  .newsletter-form input {
      border-radius: 4px;
      margin-bottom: 10px;
  }
  
  .newsletter-form button {
      border-radius: 4px;
      padding: 15px;
  }
  
  .copyright .container {
      flex-direction: column;
  }
  
  .footer-links {
      margin-top: 15px;
  }
  
  .footer-links a {
      margin: 0 10px;
  }
}











/* global map  world map*/



    /* Global Presence Section Styles */
    .global-presence {
      padding: 100px 0;
      background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(255, 255, 255, 1) 100%);
      position: relative;
      overflow: hidden;
  }

  .global-presence::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(30, 144, 255, 0.05) 0%, rgba(255,255,255,0) 70%);
      animation: rotate 30s linear infinite;
      z-index: 0;
  }

  .global-content {
      display: flex;
      align-items: center;
      gap: 50px;
      position: relative;
      z-index: 1;
  }

  .global-text {
      flex: 1;
      padding-right: 30px;
  }

  .global-text h3 {
      font-size: 1.8rem;
      margin-bottom: 20px;
      color: var(--dark-color);
  }

  .global-text p {
      color: var(--text-light);
      margin-bottom: 30px;
      line-height: 1.8;
  }

  .global-stats {
      display: flex;
      gap: 30px;
      margin: 40px 0;
  }

  .stat-item {
      text-align: center;
  }

  .stat-number {
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--primary-color);
      line-height: 1;
      margin-bottom: 8px;
  }

  .stat-label {
      font-size: 0.9rem;
      color: var(--text-light);
      font-weight: 600;
  }

  .world-map-container {
      flex: 1;
      position: relative;
      /* min-height: 400px; */
  }

  .world-map {
      width: 100%;
      /* height: 100%; */
  }

  .world-map svg {
      width: 100%;
      height: auto;
      /* max-height: 500px; */
  }

  .world-map path {
      fill: #d1e5f7;
      stroke: #fff;
      stroke-width: 0.5;
      transition: all 0.3s ease;
      cursor: pointer;
  }

  .world-map path:hover {
      fill: var(--primary-color);
      transform: translateY(-2px);
  }

  .world-map path.active {
      fill: var(--secondary-color);
      filter: drop-shadow(0 2px 5px rgba(0, 119, 204, 0.3));
  }

  .map-tooltip {
      position: absolute;
      padding: 10px 15px;
      background: var(--white);
      border-radius: 5px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      font-size: 0.9rem;
      font-weight: 600;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 10;
  }

  .map-tooltip::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-width: 10px 10px 0;
      border-style: solid;
      border-color: var(--white) transparent transparent;
  }

  /* Responsive Styles */
  @media (max-width: 992px) {
      .global-content {
          flex-direction: column;
      }
      
      .global-text {
          padding-right: 0;
          margin-bottom: 40px;
      }
      
      .world-map-container {
          width: 100%;
      }
  }

  @media (max-width: 576px) {
      .global-stats {
          flex-direction: column;
          gap: 20px;
      }
      
      .stat-item {
          display: flex;
          align-items: center;
          gap: 15px;
          text-align: left;
      }
      
      .stat-number {
          font-size: 1.8rem;
          margin-bottom: 0;
          min-width: 70px;
      }
  }












/* Exhibition Section at home page*/
.exhibitions {
  padding: 80px 0;
  background-color: var(--light-color);
}

/* Featured Exhibition Card */
.exhibition-card.featured {
  display: flex;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  margin-bottom: 50px;
  transition: var(--transition);
  position: relative;
}

.exhibition-card.featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.exhibition-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 25px;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.date-day {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.date-month {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 5px 0;
}

.date-year {
  font-size: 1.1rem;
}

.exhibition-details {
  flex: 1;
  padding: 30px;
}

.exhibition-details h4 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.exhibition-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--text-light);
}

.exhibition-meta i {
  margin-right: 8px;
  color: var(--primary-color);
}

.exhibition-details p {
  margin-bottom: 25px;
  color: var(--text-color);
  line-height: 1.7;
  font-size: 1.1rem;
}

.exhibition-image {
  width: 40%;
  overflow: hidden;
}

.exhibition-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.exhibition-card:hover .exhibition-image img {
  transform: scale(1.05);
}

/* Gallery Row */
.exhibition-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 250px;
  transition: all 0.5s ease;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 20px;
  background: rgba(30, 144, 255, 0.9);
  color: white;
  transition: all 0.3s ease;
  text-align: center;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover .gallery-overlay {
  bottom: 0;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .exhibition-card.featured {
      flex-direction: column;
  }
  
  .exhibition-image {
      width: 100%;
      height: 300px;
  }
  
  .exhibition-gallery {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .exhibition-meta {
      flex-direction: column;
      gap: 10px;
  }
  
  .exhibition-details h4 {
      font-size: 1.5rem;
  }
  
  .date-day {
      font-size: 2rem;
  }
  
  .date-month {
      font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .exhibition-date {
      min-width: 100px;
      padding: 15px;
  }
  
  .exhibition-details {
      padding: 20px;
  }
  
  .gallery-item {
      height: 200px;
  }
}











































/* exihibition page . html  */
/* Exhibition Page Styles */
.exhibition-hero {
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/1exb.JPG') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  position: relative;
}

.breadcrumbs {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumbs a:hover {
  color: var(--primary-color);
}

.exhibition-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.exhibition-hero h1 {
  font-size: 3rem;
  margin: 20px 0 10px;
}

.exhibition-hero .subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.exhibition-badge {
  display: inline-flex;
  flex-direction: column;
  background-color: var(--primary-color);
  color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.date-day {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.date-month {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.date-year {
  font-size: 1rem;
}

/* Exhibition Details */
.exhibition-details {
  padding: 80px 0;
}

.exhibition-details .container {
  display: flex;
  gap: 50px;
}

.detail-content {
  flex: 1;
}

.detail-image {
  flex: 1;
}

.detail-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.detail-image:hover img {
  transform: scale(1.02);
}

.image-caption {
  text-align: center;
  margin-top: 10px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.highlight-box {
  background-color: var(--light-color);
  padding: 25px;
  border-radius: 8px;
  margin: 30px 0;
  border-left: 4px solid var(--primary-color);
}

.highlight-box h4 {
  color: var(--dark-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.highlight-box ul {
  padding-left: 20px;
}

.highlight-box li {
  margin-bottom: 10px;
  color: var(--text-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background-color: var(--light-color);
  border-radius: 8px;
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Gallery Section */
.exhibition-gallery2 {
  padding: 80px 0;
  background-color: var(--light-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.gallery-overlay h4 {
  margin-bottom: 5px;
}

.gallery-overlay p {
  font-size: 0.9rem;
  margin: 0 0 10px;
}

.gallery-item:hover {
  transform: translateY(-10px);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.view-btn {
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark-color);
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  margin-top: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.view-btn:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.view-btn i {
  font-size: 0.9rem;
}

/* Next Exhibition CTA */
.next-exhibition {
  padding: 60px 0;
  background-color: var(--dark-color);
  color: white;
  text-align: center;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
}

/* Lightbox Modal Styles */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

.lightbox-content {
  display: block;
  max-width: 90%;
  max-height: 80vh;
  margin: 60px auto;
  animation: zoomIn 0.3s;
}

@keyframes zoomIn {
  from {transform: scale(0.9);}
  to {transform: scale(1);}
}

.lightbox-caption {
  text-align: center;
  color: #fff;
  padding: 10px 0;
  font-size: 1.1rem;
  max-width: 80%;
  margin: 0 auto;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  background: none;
  border: none;
}

.close-btn:hover {
  color: var(--primary-color);
}

.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  transition: 0.3s;
  user-select: none;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 0 5px 5px 0;
  border: none;
}

.next-btn {
  right: 0;
  border-radius: 5px 0 0 5px;
}

.prev-btn:hover, .next-btn:hover {
  background-color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .exhibition-details .container {
      flex-direction: column;
  }
  
  .detail-image {
      order: -1;
  }
  
  .exhibition-hero h1 {
      font-size: 2.5rem;
  }
  
  .lightbox-content {
      margin: 40px auto;
  }
}

@media (max-width: 768px) {
  .exhibition-hero {
      padding: 80px 0;
  }
  
  .exhibition-hero h1 {
      font-size: 2rem;
  }
  
  .gallery-grid {
      grid-template-columns: 1fr 1fr;
  }
  
  .close-btn {
      top: 10px;
      right: 15px;
      font-size: 28px;
  }
  
  .prev-btn, .next-btn {
      font-size: 24px;
      padding: 12px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
      grid-template-columns: 1fr;
  }
  
  .exhibition-badge {
      padding: 15px;
  }
  
  .date-day {
      font-size: 2rem;
  }
  
  .date-month {
      font-size: 1rem;
  }
  
  .lightbox-content {
      max-width: 95%;
      margin: 30px auto;
  }
  
  .lightbox-caption {
      font-size: 1rem;
      max-width: 90%;
  }
}








@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}