



/* ======== HERO SECTION ======== */
.page-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10,37,64,0.85), rgba(10,37,64,0.65));
}

.hero-content {
  position: relative;
  color: white;
  z-index: 2;
}

.hero-badge {
  background: rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
}

/* ======== SECTION BADGE ======== */
.section-badge {
  display: inline-block;
  background: rgba(10,37,64,0.08);
  color: #0a2540;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.section-badge.center {
  display: block;
  text-align: center;
  margin: auto;
}



.p1,.p2{
  text-align: justify;
}

/* ======== ABOUT SECTION ======== */
.about-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
}

/* ========== CASE STUDIES (CONSULTING STYLE) ========== */
.case-studies-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.case-item {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.case-item.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.case-item.reverse .case-image {
  order: 2;
}

.case-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.case-tag {
  display: inline-block;
  background: rgba(10,37,64,0.08);
  color: #0a2540;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.case-content h3 {
  font-size: 28px;
  color: #0a2540;
  margin-bottom: 10px;
}

.case-content p {
  color: #4b5563;
  margin-bottom: 15px;
 
}

.case-link {
  color: #0a2540;
  font-weight: 600;
  text-decoration: none;
}


/* ========== DOMAIN GRID (MODERN) ========== */
.domain-grid-modern {  display: grid;  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));  gap: 25px; }

.domain-card-modern {  background: white;  padding: 30px;  border-radius: 20px;  box-shadow: 0 10px 25px rgba(0,0,0,0.06);  transition: transform 0.3s ease; }


.domain-card-modern:hover {  transform: translateY(-6px); }

.domain-card-modern i {  font-size: 34px;  color: #0a2540; margin-bottom: 10px;}

/* ========== IMPACT STATS (PREMIUM) ========== */
.impact-stats {  background: linear-gradient(135deg, #0a2540, #144272);  padding: 80px 0; }

.stats-row {  display: grid;  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));  gap: 30px;  text-align: center; }

.impact-box {
  background: rgba(255,255,255,0.12);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.impact-box h3 {
  font-size: 38px;
  color: #f9b233;
}

.impact-box p {
  color: white;
}















/* ========== Heder (Home Consistency) ========== */



/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  color: #1d1d1f;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}




/* ====================HEADER==================== */
         .header {    padding-top: 0;padding-bottom: 0; position: sticky;    top: 0;  height:70px;  z-index: 100; background: linear-gradient(135deg, #f8fafc 0%, #e9eff7 100%); 
             backdrop-filter: blur(8px);    -webkit-backdrop-filter: blur(8px);    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

        .nav-flex {  display:flex;    justify-content: space-between;    align-items: center;  padding: 5px 30px 10px 30px;}

    
        nav a {  color: #0a2540; font-size: 14px; font-weight: 400;  margin-left: 40px;   text-decoration: none;}

        nav a.active {        border-bottom: 2px solid #f9b233;    }            
      
        .logo-img {  height: 70px;  width: auto; image-rendering:-webkit-optimize-contrast;  image-rendering: crisp-edges;}
  

.menu-toggle {  display: none;  font-size: 28px;  color: #0a2540;  cursor: pointer;}

/* ========== FOOTER (Home Consistency) ========== */
.footer {
  text-align: center;
  padding: 20px;
  background: #0a2540;
  color: white;
}
