/* ====================================
EIPPONE DESIGN SYSTEM
==================================== */

:root {
	  --header-height: 70px;
		
      /* PALETTE */
      --bg-body: #ffffff;
      --bg-surface: #ffffff;
      --bg-accent: #eff6ff;
      --bg-footerline: #d6dce3;


      --text-main: #0f172a;
      --text-body: #334155;
      --text-muted: #64748b;

      --primary: #2563eb;       /* Royal Blue */
      --primary-dark: #1d4ed8;
      --accent: #0891b2;        /* Teal */

      --grad-text: linear-gradient(90deg,#6d5efc,#21d4fd);
      --grad-card: linear-gradient(to top left, #E1EBEE, white, #F0F8FF);
      --grad-card_bg: linear-gradient(to top left, #ACCBE, white,#E7F0FD)

      --border: #e2e8f0;
      --radius: 12px;
      --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
      --shadow-md: 0 4px 10px rgba(0,0,0,0.07);
      --shadow-lg: 0 10px 18px rgba(0,0,0,0.10);

      --max-width: 1200px;

      --footer-height:80px;

    }

/* mobile header adjustment */

@media (max-width:768px){
:root{
--header-height:170px;
}
}

/* reset */

*{
box-sizing:border-box;
margin:0;
padding:0;
}

body{

font-family:"Plus Jakarta Sans",system-ui,sans-serif;
color:var(--text-body);
background:var(--bg-body);
line-height:1.6;
overflow-y: auto;
padding-top:var(--header-height);
-webkit-font-smoothing:antialiased;
}
html, body {
    margin: 0px;
    padding: 0px;
    
}

html {
  overflow-y: auto;
  scroll-padding-top: var(--header-height);
}


/* =========================
  iframe height fix
========================= */

main{
  min-height:calc(100vh - var(--header-height) - var(--footer-height));
}

.dynamic-content {
    margin: 0;
    padding-top: 150px;
}

a{
text-decoration:none;
color:inherit;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

section{
  scroll-margin-top: var(--header-height);
}

.dynamic-content iframe{
  display: block;
  width:100%;
  border:none;
  min-height:calc(100vh - var(--header-height));
}
#contentFrame{
  width:100%;
  border:none;
  display:block;
}
/* ============================================
   DASHBOARD SECTION — CLEAN + MODERN DESIGN
=============================================== */
.dashboard-section {
  margin-top: 0px;
  padding: 10px 20px;
  text-align:center;
}

.dashboard-section h2 {
  font-size: 2.2rem;
  color: var(--primary); /* Royal Blue */
  margin-bottom: 10px;
}

.dashboard-section h3 {
  font-size: 0.9rem;
  color: var(--primary);  /* Royal Blue */
  margin-bottom: 10px;
}

.dashboard-section h4 {
  font-size: 0.8rem;
  color: var(--primary); /* Royal Blue */
   padding: 12px;
}

.dashboard-section p {
  color: var(--text-body); 
  font-size: 1rem;
  margin-bottom: 25px;
}

/* ============================================
   4-COLUMN RESPONSIVE GRID
=============================================== */
.dash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Responsive */
@media (max-width: 1200px) {
  .dash-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .dash-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .dash-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   DASHBOARD CARDS — HOVER ANIMATIONS
=============================================== */
.dashboard-box {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

/* Hover effect: lift + shadow */
.dashboard-box:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}


/* ============================================
   IMAGES — CAPTURED STYLE
=============================================== */
.dashboard-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Smooth zoom on hover */
.dashboard-box:hover img {
  transform: scale(1.08);
}
/* New description styling */
.dashboard-desc {
  padding: 0 12px 14px 12px;
  font-size: 0.92rem;
  color: #444;
  line-height: 1.35;
}

 /* NEW END*/
 
/* CARDS */
  .platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 30px;
}
.platform-card {
  background: var(--grad-card_bg);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 30px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 30px;
}

.card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}



.icon-wrapper {
  width: 52px;
  height: 52px;
  background: #e8f0ff;
  color: #1a47ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

p {
  color: #4d4d4d;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
}

.feature-list li {
  margin: 8px 0;
  font-size: 0.95rem;
  color: #333;
  display: flex;
  align-items: center;
}

.check {
  color: #1a47ff;
  margin-right: 6px;
  font-weight: bold;
}

     /* --- STRIP --- */
    .case-strip {
      background: var(--grad-card); /* blue Slate background for contrast area */
      color: white;
      padding: 20px 0;
      border-radius: 20px;
      margin: 20px 0;
      position: relative;
      overflow: hidden;
    }
   
    .case-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
      position: relative; z-index: 2;
    }
    
    .case-item h4 { color: white; font-size: 1.4rem; margin-bottom: 8px; }
    .case-item p { color:  white; margin-bottom: 16px; }
    .tag { 
      background: rgba(255,255,255,0.1); 
      padding: 4px 10px; border-radius: 4px; 
      font-size: 0.8rem; font-family: monospace;
      color: white;
    }
   /*CONTACT CARD */
    .contact-section {
      padding:70px 0;
      
    }

    .contact-box {
      background:white;
      padding:40px;
      border-radius:16px;
      border:1px solid var(--border);
      max-width:600px;
      margin:0 auto;
      box-shadow:var(--shadow-md);
    }

   
.contact-card {
  background: #ffffff;
  padding: 22px 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 340px;
  font-family: "Segoe UI", sans-serif;
  line-height: 1.55;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.contact-name {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a3fa3; /* Royal blue */
}

.contact-title {
  margin: 4px 0 12px 0;
  font-size: 1rem;
  color: #333;
}

.contact-line,
.contact-location {
  margin: 6px 0;
  color: #444;
  font-size: 0.97rem;
}

.contact-line a {
  color: #1a3fa3;
  text-decoration: none;
  font-weight: 600;
}

.contact-links a {
  color: #1a3fa3;
  font-weight: 600;
  text-decoration: none;
}

.contact-links a:hover {
  text-decoration: underline;
}


.copy-email {
  background:#f1f5f9;
  padding:15px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-family:monospace;
  cursor:pointer;
  border:1px solid transparent;
  font-size:1.05rem;
  margin:28px 0;
  transition:0.2s;
}
.copy-email:hover {
  border-color:var(--primary);
  color:var(--primary);
}

.paragraph-background {
  background:#f1f5f9;
  padding:15px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-family:monospace;
  cursor:pointer;
  border:1px solid transparent;
  font-size:1.05rem;
  margin:7px 0;
  transition:0.2s;
}
 .paragraph-background:hover {
    border-color:var(--primary);
    color:var(--primary);
  }

/* Responsive */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
