:root {
  --primary: #243A5E;        /* Navy Blue */
  --primary-dark: #1B2F4A;   /* Darker Navy */
  --accent: #C62828;         /* Flag Red */
  --accent-light: #E53935;

  --text: #0F1724;
  --muted: #6B7280;

  --bg: #F4F7FB;             /* Clean corporate background */
  --white: #FFFFFF;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  background: #76b0c033;
  color: var(--text);
  line-height: 1.6;
}

header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(36, 58, 94, 0.15);
  padding: 15px 20px;
  z-index: 1000;
}




.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  width: 280px;
  height: 79px;
  border-radius: 8px;
  object-fit: cover;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 20px;
 
}

nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

nav ul li {
  margin: 0;
}

nav a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

nav a:hover {
  color: var(--accent);
}



.btn-primary {
 background: linear-gradient(135deg, var(--primary), var(--accent));


  color: var(--white);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-light));
  transform: translateY(-2px);
}



main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 25px 20px;
}

section {
  margin-bottom: 80px;
}

.hero {
  position: relative;
 min-height: 100vh;
 overflow: hidden;
  gap: 40px;
  align-items: center;
  background: linear-gradient(
    rgba(36, 58, 94, 0.08),
    rgba(36, 58, 94, 0.02)
  );
  padding: 40px;
  border-radius: 20px;
}

.hero-video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;

}
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(45, 59, 83, 0.85),
     rgba(31, 46, 77, 0.75)
  );
  z-index: 2;
}
.hero-content{
  position: relative;
  z-index: 3;
  color:#fff;
  max-width: 900px;
  padding: 100px 40px;
}
.stats{
  display:flex;
  gap:20px;
  margin-top:30px;
  flex-wrap:wrap;
}

.stat{
  background:rgba(20,43,70,0.85);
  padding:18px 24px;
  border-radius:40px;
  backdrop-filter:blur(10px);
}

.stat strong{
  font-size:22px;
  display:block;
}


.hero h1 {
  font-size: 2.5rem;
  color: white;
}

.hero p {
  color: var(--muted);
}



.stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  background: var(--white);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.stat strong {
  display: block;
  font-size: 1.4rem;
}

.services, .blog-posts, .team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card, .stat {
  background: var(--white);
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(36, 58, 94, 0.08);
  transition: transform 0.3s;
}


.card:hover {
  transform: translateY(-6px);
}


.card h3 {
  margin-bottom: 8px;
}

.person {
  text-align: center;
  flex: 1;
  min-width: 120px;
  max-width: 200px;
}

.person img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-family: inherit;
  font-size: 1rem;
}

textarea {
  resize: none;
}

/* ----------- Footer Styles ----------- */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 40px 20px;
}

footer a {
  color: var(--white);
}

footer a:hover {
  color: var(--accent);
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 8px;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

footer .social-icons {
  display: flex;
  gap: 15px;
  font-size: 20px;
}

footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
   background: rgba(255, 255, 255, 0.15);
  transition: 0.3s;
}

footer .social-icons a:hover {
 background: var(--accent);
}

footer .footer-bottom {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: #e0e0e0;
}

/* ----------- Responsive ----------- */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
    min-height: 60vh;
    width: 100%;
    margin: 20px 0;
  }
}

@media (max-width: 900px) {
  footer .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  footer .social-icons {
    justify-content: center;
  }
}


.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--primary);
}

/* Desktop */
nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

/* Mobile */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
  }
  nav {
    position: static;
    top: 100%;
    left: 0;
    width: 100%;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: var(--white);
    width: 220px;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 9999;
  }
  nav ul li a {
  font-size: 17px;        /* increase font size */
  font-weight: 600;
  letter-spacing: 0.3px; /* cleaner corporate look */
  color: var(--accent);
  transition: color 0.3s ease;
}


  nav ul.open {
    display: flex;
  }
}

nav ul li a:hover {
  color: rgb(119, 32, 32)
}


  header {
  display: flex;
  align-items: center;
  justify-content: space-between; /* key fix */
  padding: 15px 20px;
 color: rgba(69, 99, 125, 0.519)
}
.hero {
  min-height: 80vh;
  padding: 100px 60px;

  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);

  border-radius: 0 0 28px 28px;

  background:
    linear-gradient(
      rgba(36, 58, 94, 0.45),
      rgba(36, 58, 94, 0.25)
    );
  color: #ffffff;
}
.hero-sol{
  min-height: 60vh;
  padding: 100px 60px;

  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);

  border-radius: 0 0 28px 28px;

  background:
    linear-gradient(
      rgba(36, 58, 94, 0.45),
      rgba(36, 58, 94, 0.25)
    ),
    url("solback.webp") center / cover no-repeat;
border-radius: 0;
  color: #ffffff;
}
.hero-sol h1 {
  font-size: 2.5rem;
  color: white;
}

.hero-sol p {
  color: var(--muted);
}
.hero-ser{
  min-height: 60vh;
  padding: 100px 60px;

  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);

  border-radius: 0 0 28px 28px;

  background:
    linear-gradient(
      rgba(36, 58, 94, 0.45),
      rgba(36, 58, 94, 0.25)
    ),
    url("ser-back.jpg") center / cover no-repeat;
border-radius: 0;
  color: #ffffff;
}
.hero-ser h1 {
  font-size: 2.5rem;
  color: white;
}

.hero-ser p {
  color: var(--muted);
}
.hero-en{
  padding: 100px 60px;

  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);

  border-radius: 0 0 28px 28px;

  background:
    linear-gradient(
      rgba(36, 58, 94, 0.45),
      rgba(36, 58, 94, 0.25)
    ),
    url("enrich-back.jpg") center / cover no-repeat;
border-radius: 0;
  color: #ffffff;
}
.hero-en h1 {
  font-size: 2.5rem;
  color: white;
}

.hero-en p {
  color: var(--muted);
}

.hero h1 {
  font-size: 3rem;
  max-width: 800px;
  margin: 0 auto 20px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.9);
}

  .hero p {
color: white;
  }
  .stats{
    color: #000000;
  }
.we {
  background: linear-gradient(
    180deg,
    #55c680cf, /* 67f39ccf*/
    #e9fbf0
  );

  text-align: center;

  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);

  padding: 80px 20px;
  border-radius: 0;
}
.we-us {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .we {
    padding: 60px 15px;
  }
}
.corporate-profile{
  background-color: #F5F5F5;
}
.our-clients {
  margin-top: 60px;
  text-align: center;
}

.our-clients h2 {
  font-size: 2rem;
  margin-bottom: 25px;
}

/* Slider container */
.logo-slider {
  overflow: hidden;
  width: 100%;
  background: #ffffff;
  padding: 20px 0;
}

/* Moving track */
.logo-track {
  display: flex;
  width: calc(200px * 8);
  animation: scroll 18s linear infinite;
  
}

/* Logo images */
.logo-track img {
  width: 180px;
  height: 80px;
  object-fit: contain;
  margin: 0 20px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.3s ease;
  
}

.logo-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .logo-track img {
    width: 140px;
    height: 60px;
    margin: 0 12px;
  }
}
.section, .section-header{
  text-align: center;
  
}
/* our solutions*/
/* Achievements Section */
.achievements {
  background-color: rgb(34, 53, 85);
  border-radius: 10px;
  padding: 40px 20px;
}

.achievements .section-header h2,
.achievements .section-header p {
  color: #ffffff;
  text-align: center;
}

.achievements .stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.achievements .stat {
  flex: 1;
  min-width: 160px;
  text-align: center;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
}

.achievements .stat strong {
  font-size: 1.6rem;
  display: block;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .achievements {
    padding: 30px 15px;
  }

  .achievements .stats {
    flex-direction: column;
  }

  .achievements .stat {
    width: 100%;
  }
}
/*contact-button*/
button {

background: linear-gradient(135deg, #4f46e5,

#6366f1);

color: #fff;

padding: 14px;

border: none;

border-radius: 8px;

font-size: 16px;

font-weight: 600;

cursor: pointer;

transition: transform 0.2s, box-shadow 0.2s;

button:hover {

transform: translateY(-2px);

box-shadow: 0 8px 20px rgba(79, 70, 229,

0.3);

}
}

