:root {
  --primary-dark: #1a3a52;
  --primary-medium: #2a4a62;
  --primary-light: #3a5a72;
  --accent-blue: #4a6a82;
  --text-white: #ffffff;
  --text-light: #e8f4f8;
  --gradient-bg: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-medium) 50%,
    var(--accent-blue) 100%
  );
  --shadow-light: rgba(26, 58, 82, 0.1);
  --shadow-medium: rgba(26, 58, 82, 0.2);
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  color: var(--text-white);
}

p,
li,
a {
  color: var(--text-light);
}

ul {
}

body {
  line-height: 1.6;
  color: var(--text-white);
  background: var(--gradient-bg);
  overflow-x: hidden;
}
/* ============== */
/* ============== */
/* ============== */
/* ============== */
/* ============== */
.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px var(--text-light);
  }
  100% {
    box-shadow: 0 0 0 5px rgba(0, 0, 0, 0);
  }
}

/* ============== */
/* ============== */
/* ============== */
/* ============== */
/* ============== */

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 58, 82, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 5rem;
  background-color: var(--text-light);
  padding: 0.5rem;
  border-radius: 1rem;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--accent-blue), var(--text-white));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--primary-dark);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--text-white);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-white);
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
  background: var(--gradient-bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: float 5s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-100px);
  }
}

.hero-content {
  max-width: 800px;
  z-index: 2;
  position: relative;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--text-white), var(--text-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
  text-align: center;
}

.highlight-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-item:hover {
  transform: translateY(-5px);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary-light), var(--accent-blue));
  color: var(--text-white);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-medium);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-medium);
}

/* Sections */
.section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--text-white);
}

.section-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.mission-box,
.vision-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--accent-blue);
}

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.value-item {
  background: rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.value-item h4 {
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.solution-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  text-align: center;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px var(--shadow-medium);
  background: rgba(255, 255, 255, 0.12);
}

.solution-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(45deg, var(--accent-blue), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--text-white);
  transition: transform 0.3s ease;
}
.solution-icon img {
  width: 50px;
}

.solution-card:hover .solution-icon {
  transform: rotate(10deg) scale(1.1);
}

.solution-card h3 {
  color: var(--text-white);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.solution-card ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.solution-card li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.solution-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: bold;
}

.benefits-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
}

.benefits-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.top-row {
  justify-content: center;
  flex-wrap: wrap;
}

.bottom-row {
  justify-content: center;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
  flex: 1 1 300px;
  max-width: 320px;
}


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

.contact-info {
  background: rgba(255, 255, 255, 0.08);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.contact-item {
  padding: 1rem;
}

.contact-item h4 {
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  padding: 3rem 2rem 1rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo img {
  width: 70%;
  height: auto;
  background-color: var(--text-light);
  padding: 1rem;
  border-radius: 1rem;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--accent-blue), var(--text-white));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--primary-dark);
}

.footer-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 0.5rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-nav h3 {
  color: var(--text-white);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  list-style: none;
}

.footer-nav-link {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0.3rem 0;
}

.footer-nav-link:hover {
  color: var(--text-white);
  transform: translateX(5px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact h3 {
  color: var(--text-white);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.footer-contact-item:hover {
  transform: translateX(5px);
}

.footer-contact-icon {
  width: 20px;
  height: 20px;
  background: var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 0.8rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--text-light);
}
#backToTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: none;
  background-color: var(--accent-blue);

  color: white;
  border: none;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
  z-index: 999;
}

#backToTop:hover {
  background-color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .logo img {
    height: 5rem;
  }
  .benefit-card { 
  max-width: 1200px;
}
  .nav-menu {
    position: fixed;
    top: 98px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--primary-dark);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 8rem;
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

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

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 3rem 1rem;
  }

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

  .highlights {
    grid-template-columns: 1fr;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-nav {
    align-items: self-start;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 1rem;
  }

  .hero {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .section-content {
    padding: 1.5rem;
  }
}
