:root{
  --primary:#0f7fe7;
  --accent:#afeef4;
  --muted:#2f4777;
  --bg:#c8dff6;
  --maxw:1100px;
  --radius:14px;
  --shadow-sm:0 2px 6px rgba(0,0,0,0.06);
  --shadow-md:0 6px 20px rgba(0,0,0,0.10);

  font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* RESET */
*{box-sizing:border-box; margin:0; padding:0;}

body{
  background:var(--bg);
  color:#1a4461;
  line-height:1.6;
}

/* CONTAINER */
.container{
  max-width:var(--maxw);
  margin:5px auto;
  padding:2px;
}

/* HEADER */
.site-header{
  background:#fff;
  box-shadow:var(--shadow-sm);
  position:sticky;
  top:0;
  margin:0 auto;
  padding:0;
  z-index:10;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo img{
  height:150px;
  transition:transform .3s;
}
.logo img:hover{
  transform:scale(1.05);
}

.nav a{
  margin-left:20px;
  text-decoration:none;
  color:var(--primary);
  font-weight:500;
  transition:color .3s;
}
.nav a:hover{
  color:var(--accent);
}

.nav .btn{
  padding:10px 16px;
  border-radius:var(--radius);
  background:var(--primary);
  color:#0a0909;
  text-decoration:none;
  transition:all .3s;
}
.nav .btn:hover{
  
  box-shadow:var(--shadow-sm);
}

/* HERO SECTION */
.hero {
  padding: 80px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.hero-copy {
  max-width: 560px;
}

.hero-copy h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-copy p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 30px;
}

/* CTA */
.cta {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

/* STATS */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 10px;
}

.hero-stats div {
  text-align: left;
}

.hero-stats strong {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
}

.hero-stats span {
  font-size: 14px;
  color: #666;
}

/* RIGHT IMAGE */
.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 300%;
  max-width: 600px;
  height: auto;
}

/* BADGE */
.badge {
  display: inline-block;
  background: #eef4ff;
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-stats {
    justify-content: center;
  }

  .cta {
    justify-content: center;
  }
}


.carousel-section {
  padding: 80px 0;
  background: #f9fafb;
}

.section-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 40px;
}

.carousel {
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}

.carousel-track {
  display: flex;
  gap: 20px;
  animation: scroll 25s linear infinite;
}

.carousel-card {
  min-width: 280px;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  text-align: center;
}

.carousel-card h4 {
  margin: 10px 0;
  font-size: 1.3rem;
}

.carousel-card p {
  color: #555;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logo-carousel {
  padding: 60px 0;
  background: white;
  text-align: center;
}

.logo-track {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 1.2rem;
  animation: fadeSlide 8s infinite alternate;
}

@keyframes fadeSlide {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

.testimonial-section {
  padding: 80px 0;
  background: #111;
  color: white;
  text-align: center;
}

.testimonial {
  max-width: 700px;
  margin: auto;
  font-size: 1.2rem;
  line-height: 1.6;
}


/* BUTTONS */
.btn{
  display:inline-block;
  padding:12px 20px;
  border-radius:var(--radius);
  border:1px solid transparent;
  cursor:pointer;
  transition:.3s ease;
}
.btn.ghost{
  background:transparent;
  border-color:var(--primary);
  color:var(--primary);
}
.btn.ghost:hover{
  background:var(--primary);
  color:#fff;
  box-shadow:var(--shadow-sm);
}
.btn.primary{
  background:var(--primary);
  color:#fff;
}
.btn.primary:hover{
  background:var(--accent);
  box-shadow:var(--shadow-md);
}

/* FEATURES */
.features {
  padding: 80px 0;
  background: #f9fafb;
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */
.features-intro h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.features-intro p {
  color: #555;
  font-size: 17px;
  margin-bottom: 20px;
}

.features-points {
  list-style: none;
  padding: 0;
}

.features-points li {
  margin-bottom: 10px;
  font-weight: 500;
}

/* RIGHT SIDE */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-card {
  background: #fff;
  padding: 24px 26px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}


/* ABOUT SECTION */
.about-snippet{
  padding:40px 0;
  background:#e9f4ff;
  border-radius:var(--radius);
}

/* PORTFOLIO / WORK */
.work{
  padding:50px 0;
}

/* GRID CARDS */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}
.card{
  background:#fff;
  padding:22px;
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
  transition:transform .3s, box-shadow .3s;
}
.card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-md);
}

/* CONTACT FORM */
.contact-form{
  max-width:720px;
  display:grid;
  gap:18px;
}
.contact-form label{
  font-weight:600;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px;
  border-radius:var(--radius);
  border:1px solid #ccc;
  font-size:16px;
  transition:border .3s, box-shadow .3s;
}
.contact-form input:focus,
.contact-form textarea:focus{
  border-color:var(--primary);
  box-shadow:0 0 0 4px rgba(13,95,200,0.15);
  outline:none;
}

.form-status{
  margin-top:8px;
  font-weight:500;
  color:var(--muted);
}

/* FOOTER */
.footer{
  border-top:1px solid #ddd;
  padding:24px 0;
  margin-top:30px;
  background:#fff;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.footer-logo{
  height:100px;
}

/* RESPONSIVE */
@media (max-width:800px){
  .hero-inner{flex-direction:column;text-align:center;}
  .header-inner{flex-direction:column;gap:12px;}
  .footer-inner{flex-direction:column;align-items:center;text-align:center;}
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
  }

  .project-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform .2s, box-shadow .2s;
  }

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

  .project-card h4 {
    margin-bottom: 10px;
    color: #1a73e8;
  }

  .tags {
    margin-top: 12px;
  }

  .tag {
    display: inline-block;
    background: #e8f0fe;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #1a73e8;
    margin-right: 6px;
    margin-bottom: 6px;
  }

  .project-stats {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #555;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
  }

  .service-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform .2s, box-shadow .2s;
    position: relative;
  }

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

  .service-card h3 {
    margin-bottom: 12px;
    color: #1a73e8;
  }

  .service-icon {
    width: 42px;
    height: 42px;
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.9;
  }

  .tags {
    margin-top: 15px;
  }

  .tag {
    display: inline-block;
    background: #e8f0fe;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #1a73e8;
    margin-right: 6px;
    margin-bottom: 6px;
  }

  .about-hero {
    text-align: center;
    padding: 40px 10px;
    max-width: 900px;
    margin: auto;
  }

  .about-hero h1 {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }

  .about-hero p {
    color: #444;
    font-size: 1.1rem;
  }

  .about-section {
    margin-top: 50px;
  }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 25px;
  }

  .value-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform .2s, box-shadow .2s;
    text-align: center;
  }

  .value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  }

  .value-card img {
    width: 48px;
    margin-bottom: 15px;
    opacity: 0.95;
  }

.mission-box {
    background: #e8f0fe;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
  }

  /* CONTACT PAGE */
.contact-hero {
  text-align: center;
  margin-bottom: 40px;
}
.contact-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

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

.contact-info h2 {
  margin-bottom: 20px;
}

.info-block {
  margin-bottom: 20px;
}
.info-block h4 {
  margin-bottom: 5px;
}

.info-social a {
  display: inline-block;
  margin-right: 10px;
  opacity: 0.8;
  transition: 0.2s;
}
.info-social a:hover {
  opacity: 1;
}

/* FORM STYLING */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.field {
  position: relative;
  margin-bottom: 25px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #bbb;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}
.field label {
  position: absolute;
  top: 13px;
  left: 14px;
  color: #888;
  pointer-events: none;
  transition: 0.3s;
}

/* floating label */
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: -10px;
  background: #fff;
  padding: 0 6px;
  font-size: 0.8rem;
  color: #1d6ef2;
}

.submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.submit-btn .loader {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid transparent;
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

.form-status {
  margin-top: 15px;
}

/* MAP */
.map-container {
  margin-top: 50px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

.footer a{
  margin-left:20px;
  text-decoration:none;
  color:var(--primary);
  font-weight:500;
  transition:color .3s;
}
.footer a:hover{
  color:var(--accent);
}

body {
    background: #f7f7f7;
    font-family: Arial, sans-serif;
}

.breadcrumb {
    margin: 20px;
    font-size: 18px;
    color: #777;
}

.leader-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 20px;
}

.leader-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

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

.leader-card img {
    width: 100%;
    border-radius: 5px;
    height: 300px;
    object-fit: cover;
}

.leader-name {
    font-size: 22px;
    margin-top: 15px;
    font-weight: bold;
    color: #333;
}

.leader-role {
    color: #555;
    margin: 5px 0 15px;
    font-style: italic;
}

.view-more {
    font-weight: bold;
    color: #1dbb52;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
}

.view-more:hover {
    text-decoration: underline;
}

.timeline {
    margin: 40px auto;
    max-width: 700px;
    border-left: 4px solid #007bff;
    padding-left: 20px;
}

.timeline-item {
    margin-bottom: 30px;
    padding-left: 20px;
    position: relative;
}

.timeline-item::before {
    content: "";
    width: 15px;
    height: 15px;
    background: #007bff;
    border-radius: 50%;
    position: absolute;
    left: -11px;
    top: 5px;
}

.timeline-item h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
}

.timeline-item p, .timeline-item ul {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

/* Highlight Start */
.timeline-item.start::before {
    background: #28a745;
}

.timeline-item.start h3 {
    color: #28a745;
}

/* Highlight Goals */
.timeline-item.goal {
    background: #f8f9ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
}

.timeline-item.goal::before {
    background: #ff9800;
}

.badge {
  display: inline-block;
  background: #eef3ff;
  color: #2b4eff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 12px;
}






