
/* 
   Global Chemie - Modern Chemical Solutions
   Custom CSS
*/

/* General Styles */
:root {
  --primary-color: #d1a33f;
  --secondary-color: #a5a5a5;
  --accent-color: #fcc44b;
  --light-color: #ffffff;
  --dark-color: #333333;
  --gray-color: #f5f5f5;
  --text-color: #4a4a4a;
  --border-color: #e7e7e7;
  --transition: all 0.3s ease;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 6px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

section {
  padding: 80px 0;
}

.section-padding {
  padding: 45px 0;
}

.section-header {
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  animation: fadeInUp 1s ease;
}

.section-header h2:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
}

.section-header p {
  font-size: 18px;
  color: var(--text-color);
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.btn {
  padding: 12px 30px;
  font-weight: 500;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.bg-light {
  background-color: var(--gray-color) !important;
}

/* Topbar */
.topbar {
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill-opacity="0.05"><rect width="10" height="10" fill="white"/></svg>'), /* Pattern */
        linear-gradient(to right, var(--accent-color), var(--primary-color)); /* Gradient */
    color: #fff;
    padding: 12px 0;
    font-size: 14px;
    background-repeat: repeat;
}


.topbar .contact-info span {
  margin-right: 20px;
}

.topbar i {
  margin-right: 5px;
}

.social-links a {
  color: #fff;
  margin-left: 15px;
  font-size: 14px;
  transition: var(--transition);
}

.social-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Header */
header {
  background-color: #fff;
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.navbar {
  padding: 15px 0;
}

.navbar-brand {
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  line-height: 1.2;
}

.navbar-brand h1 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: var(--accent-color);
  letter-spacing: 1px;
}

.navbar-brand .tagline {
  font-size: 12px;
  color: var(--secondary-color);
}

.nav-link {
  font-weight: 600;
  padding: 10px 15px !important;
  color: var(--text-color);
  position: relative;
}

.nav-link:before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 15px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover:before,
.nav-link.active:before {
  width: calc(100% - 30px);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.dropdown-menu {
  border-radius: var(--border-radius);
  border: none;
  box-shadow: var(--box-shadow);
  padding: 10px;
}

.dropdown-item {
  padding: 8px 20px;
  font-weight: 500;
  color: var(--text-color);
  border-radius: 4px;
}

.dropdown-item:hover {
  background-color: rgba(0, 73, 118, 0.05);
  color: var(--primary-color);
}

/* Hero Section */
#hero {
  background: linear-gradient(to right, rgb(64 62 58 / 80%), rgb(209 163 63 / 4%)), url('../images/bg4.jpg');
  background-size: cover;
  background-position: center;
  min-height: 600px;
  position: relative;
}

.hero-content {
  padding: 30px 0;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #fff;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-btns .btn {
  margin-right: 15px;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-image img {
  width: 100%;
  height: 460px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* Enhanced Features Section */
#features {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

#features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 75% 25%, rgba(0, 168, 232, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 25% 75%, rgba(0, 73, 118, 0.03) 0%, transparent 50%);
  z-index: 0;
}

.features-container {
  position: relative;
  z-index: 1;
}



@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}

.features-card {
  background: #fff;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 168, 232, 0.1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease;
}

.features-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 168, 232, 0.02) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.features-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.features-card:hover::before {
  opacity: 1;
}

.features-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.features-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-right: 15px;
  box-shadow: 0 10px 25px rgba(0, 73, 118, 0.2);
}

.features-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.features-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-color);
}

.features-card-1 .features-card-icon {
  background: linear-gradient(135deg, #ff6b6b, #ffa500);
}

.features-card-2 .features-card-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}

.features-card-3 .features-card-icon {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.features-card-4 .features-card-icon {
  background: linear-gradient(135deg, #63dcf1, #5cb1f6);
}

.features-card-5 .features-card-icon {
  background: linear-gradient(135deg, #f163a5, #f65cb1);
}
/* About Section */
.about-content p {
  margin-bottom: 20px;
  text-align: justify;
}

.about-feature h4 {
  font-size: 18px;
  color: var(--primary-color);
}

.about-feature i {
  color: var(--secondary-color);
  margin-right: 8px;
}

/* Products Section */
.nav-pills {
  margin-bottom: 40px;
}

.nav-pills .nav-link {
  background-color: transparent;
  border-radius: 50px;
  margin: 0 5px;
  padding: 10px 25px;
  color: var(--text-color);
  font-weight: 600;
  border: 2px solid var(--border-color);
}

.nav-pills .nav-link.active {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.product-card {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  background-color: #fff;
  transition: var(--transition);
  overflow: hidden;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  height: 220px;
  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-details {
  padding: 20px;
}

.product-details h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--primary-color);
}

.product-details p {
  margin-bottom: 15px;
  font-size: 15px;
}

.btn-product {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: 600;
  position: relative;
}

.btn-product:after {
  content: '→';
  margin-left: 5px;
  transition: var(--transition);
}

.btn-product:hover {
  color: var(--primary-color);
}

.btn-product:hover:after {
  margin-left: 10px;
}

/* Enhanced Services Section */
#services {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 75% 25%, rgba(0, 168, 232, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 25% 75%, rgba(0, 73, 118, 0.03) 0%, transparent 50%);
  z-index: 0;
}

.services-container {
  position: relative;
  z-index: 1;
}

.services-central-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  position: relative;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.services-card {
  background: #fff;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 168, 232, 0.1);
  position: relative;
  overflow: hidden;
}

.services-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 168, 232, 0.02) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.services-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.services-card:hover::before {
  opacity: 1;
}

.services-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.services-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-right: 15px;
  box-shadow: 0 10px 25px rgba(0, 73, 118, 0.2);
}

.services-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.services-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-color);
}

.services-card-1 .services-card-icon {
  background: linear-gradient(135deg, #ff6b6b, #ffa500);
}

.services-card-2 .services-card-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}

.services-card-3 .services-card-icon {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.services-card-4 .services-card-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.services-card-5 .services-card-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.services-card-6 .services-card-icon {
  background: linear-gradient(135deg, #059669, #047857);
}


/* Stats Section */
.stat-item {
  padding: 20px;
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-text {
  font-size: 18px;
  color: var(--text-color);
  font-weight: 500;
}

/* Testimonials Section */
.testimonial-item {
  padding: 40px;
}

.testimonial-content {
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
  position: relative;
  text-align: center;
}

.testimonial-content:after {
  content: '\201D';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 60px;
  color: rgba(0, 73, 118, 0.1);
  font-family: Georgia, serif;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author h5 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.testimonial-author span {
  font-size: 14px;
  color: var(--text-color);
}

.carousel-indicators {
  bottom: -50px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(0, 73, 118, 0.3);
  border: none;
}

.carousel-indicators button.active {
  background-color: var(--primary-color);
}


/* Enhanced Mission Section */
#mission {
  position: relative;
  min-height: 700px;
}

#mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(0, 119, 182, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 75% 75%, rgba(0, 168, 232, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.mission-container {
  position: relative;
  min-height: 500px;
  margin: 50px 0;
}

.mission-central-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.mission-icon-wrapper {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
  box-shadow: 0 15px 40px rgba(224, 172, 26, 0.3);
  border: 4px solid #fff;
  position: relative;
  z-index: 2;
}

.pulse-ring {
  position: absolute;
  border: 3px solid rgba(199, 202, 3, 0.3);
  border-radius: 50%;
  width: 140px;
  height: 140px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

.pulse-ring-delayed {
  position: absolute;
  border: 3px solid rgba(0, 168, 232, 0.2);
  border-radius: 50%;
  width: 180px;
  height: 180px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite 0.5s;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

.mission-card {
  position: absolute;
  max-width: 280px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.mission-card:hover {

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.mission-card-1 {
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.mission-card-2 {
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
}

.mission-card-3 {
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.mission-card-4 {
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
}

.mission-card-content {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.mission-card-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #ffa500, #a855f7, #6366f1);
}

.mission-card-1 .mission-card-content::before {
  background: linear-gradient(90deg, #ff6b6b, #ffa500);
}

.mission-card-2 .mission-card-content::before {
  background: linear-gradient(90deg, #a855f7, #ffa500);
}

.mission-card-3 .mission-card-content::before {
  background: linear-gradient(90deg, #374151, #b45309);
}

.mission-card-4 .mission-card-content::before {
  background: linear-gradient(90deg, #6366f1, #10b981);
}

.mission-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-color);
  margin: 0 auto 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission-card-content p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.6;
  text-align: center;
}

.mission-connector {
  position: absolute;
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(0, 73, 118, 0.3), transparent);
}

.mission-card-1 .mission-connector {
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.mission-card-2 .mission-connector {
  left: -50px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}

.mission-card-3 .mission-connector {
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.mission-card-4 .mission-connector {
  right: -50px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}

/* Enhanced Vision Section */
#vision {
  position: relative;
  overflow: hidden;
}

#vision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 75% 25%, rgba(0, 168, 232, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 25% 75%, rgba(0, 73, 118, 0.03) 0%, transparent 50%);
  z-index: 0;
}

.vision-container {
  position: relative;
  z-index: 1;
}

.vision-central-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  position: relative;
}

.vision-icon-wrapper {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #fff, #f8fafc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 6px solid var(--accent-color);
  position: relative;
  z-index: 2;
}

.vision-orbit {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 2px dashed var(--secondary-color);
  border-radius: 50%;
  animation: rotate 15s linear infinite;
  opacity: 0.6;
}

.vision-orbit-delayed {
  position: absolute;
  top: -25px;
  left: -25px;
  right: -25px;
  bottom: -25px;
  border: 2px dashed var(--accent-color);
  border-radius: 50%;
  animation: rotate 20s linear infinite reverse;
  opacity: 0.4;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.vision-card {
  background: #fff;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 168, 232, 0.1);
  position: relative;
  overflow: hidden;
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 168, 232, 0.02) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.vision-card:hover::before {
  opacity: 1;
}

.vision-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.vision-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-right: 15px;
  box-shadow: 0 10px 25px rgba(0, 73, 118, 0.2);
}

.vision-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.vision-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-color);
}

.vision-card-1 .vision-card-icon {
  background: linear-gradient(135deg, #ff6b6b, #ffa500);
}

.vision-card-2 .vision-card-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}

.vision-card-3 .vision-card-icon {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.vision-card-4 .vision-card-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}


/* Contact Section */
.contact-info {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 10px;
  box-shadow: var(--box-shadow);
  height: 100%;
}

.contact-item {
  display: flex;
  margin-bottom: 20px;
}

.contact-item .icon {
  font-size: 24px;
  color: var(--primary-color);
  margin-right: 20px;
  min-width: 40px;
  text-align: center;
}

.contact-item .text h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.contact-form {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.form-control {
  height: 50px;
  border: 1px solid var(--border-color);
  font-size: 16px;
  padding: 10px 20px;
  border-radius: var(--border-radius);
}

textarea.form-control {
  height: auto;
  padding: 15px 20px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

/* Map Section */
.map-section {
  padding: 0;
}

.map-container {
  height: 450px;
  overflow: hidden;
}

/* Footer */
#footer {
  background-color: #333;
  color: #fff;
  padding: 0;
}

.footer-top {
  padding: 80px 0 30px;
  background-color: #333;
}

.footer-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-info p {
  font-size: 14px;
  margin-bottom: 0;
  color: #ccc;
}

.footer-info strong {
  color: var(--accent-color);
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  font-size: 16px;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--accent-color);
}

.footer-links {
  margin-bottom: 30px;
}

.footer-links h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 15px;
}

.footer-links h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.footer-links ul li:first-child {
  padding-top: 0;
}

.footer-links ul li a {
  color: #ccc;
  transition: var(--transition);
  display: block;
}

.footer-links ul li a:hover {
  padding-left: 5px;
  color: var(--accent-color);
}

.footer-newsletter h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 15px;
}

.footer-newsletter h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-newsletter p {
  font-size: 14px;
  color: #ccc;
}

.footer-newsletter form {
  margin-top: 20px;
  position: relative;
}

.footer-newsletter form input[type="email"] {
  height: 50px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 10px 20px;
  width: 100%;
  border-radius: 50px;
  outline: none;
}

.footer-newsletter form button {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  padding: 0 25px;
  background-color: var(--secondary-color);
  color: #fff;
  border: none;
  border-radius: 0 50px 50px 0;
  font-weight: 600;
  transition: var(--transition);
}

.footer-newsletter form button:hover {
  background-color: var(--accent-color);
}

.footer-bottom {
  background-color: #222;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
  font-size: 14px;
}

.footer-bottom .copyright {
  margin-bottom: 0;
}

.footer-bottom .credits a {
  color: #ccc;
  margin: 0 10px;
  transition: var(--transition);
}

.footer-bottom .credits a:hover {
  color: var(--accent-color);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary-color);
  color: #fff;
}


/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 40px;
  }
  
  .mission-container,
  .vision-container {
    min-height: 400px;
  }
  
  .mission-card {
    max-width: 240px;
  }
  
  .mission-icon-wrapper {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
  
  .vision-icon-wrapper {
    width: 100px;
    height: 100px;
    font-size: 40px;
  }
  
  .pulse-ring {
    width: 120px;
    height: 120px;
  }
  
  .pulse-ring-delayed {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 992px) {
  .section-padding {
    padding: 80px 0;
  }
  
  .hero-content {
    padding-bottom: 40px;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  #mission,
  #vision {
    min-height: auto;
    padding: 60px 0;
  }
  
  .mission-container {
    position: static;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
  }
  
  .mission-card {
    position: static;
    margin-bottom: 30px;
    transform: none !important;
    max-width: 400px;
    width: 100%;
  }
  
  .mission-central-icon {
    position: static;
    transform: none;
    margin-bottom: 40px;
    order: -1;
  }
  
  .mission-connector {
    display: none;
  }
  
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
  }
  
  .vision-central-icon {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .testimonial-content {
    padding: 20px;
  }
  
  .contact-info {
    margin-bottom: 30px;
  }
  
  .navbar-brand h1 {
    font-size: 20px;
  }
  
  .mission-card-content,
  .vision-card {
    padding: 20px;
  }
  
  .mission-icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .vision-icon-wrapper {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
  
  .pulse-ring {
    width: 100px;
    height: 100px;
  }
  
  .pulse-ring-delayed {
    width: 140px;
    height: 140px;
  }
  
  .vision-card-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .vision-card h4 {
    font-size: 16px;
  }
  
  .vision-card p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 50px 0;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .footer-top {
    padding: 50px 0 20px;
  }
  
  .testimonial-item {
    padding: 20px;
  }
  
  .mission-card-content p,
  .vision-card p {
    font-size: 13px;
  }
  
  .mission-card {
    max-width: 300px;
  }
  
  .mission-card-content {
    padding: 15px;
  }
  
  .vision-card {
    padding: 15px;
  }
  
  .mission-icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .vision-icon-wrapper {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
  
  .pulse-ring {
    width: 80px;
    height: 80px;
  }
  
  .pulse-ring-delayed {
    width: 120px;
    height: 120px;
  }
  
  .vision-orbit {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
  }
  
  .vision-orbit-delayed {
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
  }
}





/* Core Values Section */
#core-values {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

#core-values::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(0, 119, 182, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 75% 75%, rgba(0, 168, 232, 0.03) 0%, transparent 50%);
  z-index: 0;
}

.core-values-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 0;
}

.values-top {
  margin-bottom: 20px;
}

.values-bottom {
  margin-top: 20px;
}

.value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-triangle {
  width: 120px;
  height: 120px;
  position: relative;
  margin-bottom: 20px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.value-triangle-down {
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  margin-bottom: 0;
  margin-top: 20px;
}

.value-green .value-triangle {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.value-teal .value-triangle {
  background: linear-gradient(135deg, #0d9488, #0f766e);
}

.value-purple .value-triangle {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.value-icon {
  font-size: 32px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.value-triangle-down .value-icon {
  transform: translate(-50%, -60%);
}

.value-content {
  max-width: 280px;
}

.value-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
  line-height: 1.3;
}

.value-content p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-color);
  margin: 0;
}

.value-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(0, 73, 118, 0.3), transparent);
  position: relative;
  margin: 10px 0;
}

.value-connector::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 8px solid rgba(0, 73, 118, 0.5);
}

.value-connector-up {
  margin: 0 0 10px 0;
}

.value-connector-up::after {
  bottom: auto;
  top: -5px;
  border-top: none;
  border-bottom: 8px solid rgba(0, 73, 118, 0.5);
}

.core-values-banner {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  padding: 20px 0;
  text-align: center;
  margin: 0 -50px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.core-values-banner h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Core Values */
/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 40px;
  }
  
  .mission-container,
  .vision-container,
  .services-container {
    min-height: 400px;
  }
  
  .mission-card {
    max-width: 240px;
  }
  
  .mission-icon-wrapper {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
  
  .vision-icon-wrapper,
  .features-icon-wrapper,
  .services-icon-wrapper {
    width: 100px;
    height: 100px;
    font-size: 40px;
  }
  
  .pulse-ring {
    width: 120px;
    height: 120px;
  }
  
  .pulse-ring-delayed {
    width: 160px;
    height: 160px;
  }
  
  .features-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
  }
}

@media (max-width: 992px) {
  .section-padding {
    padding: 80px 0;
  }
  
  .hero-content {
    padding-bottom: 40px;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  #mission,
  #vision,
  #features,
  #services {
    min-height: auto;
    padding: 60px 0;
  }
  
  .mission-container {
    position: static;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
  }
  
  .mission-card {
    position: static;
    margin-bottom: 30px;
    transform: none !important;
    max-width: 400px;
    width: 100%;
  }
  
  .mission-central-icon {
    position: static;
    transform: none;
    margin-bottom: 40px;
    order: -1;
  }
  
  .mission-connector {
    display: none;
  }
  
  .vision-grid,
  .features-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
  }
  
  .vision-central-icon,
  .features-central-icon,
  .services-central-icon {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .testimonial-content {
    padding: 20px;
  }
  
  .contact-info {
    margin-bottom: 30px;
  }
  
  .navbar-brand span {
    font-size: 5px;
  }
  
  .mission-card-content,
  .vision-card,
  .features-card,
  .services-card {
    padding: 20px;
  }
  
  .mission-icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .vision-icon-wrapper,
  .features-icon-wrapper,
  .services-icon-wrapper {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
  
  .pulse-ring {
    width: 100px;
    height: 100px;
  }
  
  .pulse-ring-delayed {
    width: 140px;
    height: 140px;
  }
  
  .vision-card-icon,
  .features-card-icon,
  .services-card-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .vision-card h4,
  .features-card h4,
  .services-card h4 {
    font-size: 16px;
  }
  
  .vision-card p,
  .features-card p,
  .services-card p {
    font-size: 14px;
  }
  
  .vision-grid,
  .features-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 50px 0;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .footer-top {
    padding: 50px 0 20px;
  }
  
  .testimonial-item {
    padding: 20px;
  }
  
  .mission-card-content p,
  .vision-card p,
  .features-card p,
  .services-card p {
    font-size: 13px;
  }
  
  .mission-card {
    max-width: 300px;
  }
  
  .mission-card-content,
  .vision-card,
  .features-card,
  .services-card {
    padding: 15px;
  }
  
  .mission-icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .vision-icon-wrapper,
  .features-icon-wrapper,
  .services-icon-wrapper {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
  
  .pulse-ring {
    width: 80px;
    height: 80px;
  }
  
  .pulse-ring-delayed {
    width: 120px;
    height: 120px;
  }
  
  .vision-orbit,
  .features-orbit,
  .services-orbit {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
  }
  
  .vision-orbit-delayed,
  .features-orbit-delayed,
  .services-orbit-delayed {
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
  }
}


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