/* --- Global Theme Variables --- */
:root {
    --bs-body-bg:var(--bg-dark-card);
    --bg-dark-app: #0a0b0d;
    --bg-dark-card: #12141c;
    --accent-red: #e11d48;
    --accent-cyan: #06b6d4;
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    --font-sans: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark-app);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Utilities */
.hidden {
    display: none !important;
}

/* ==================================================== */
/* BRAND-WIDE TYPOGRAPHY & LOGO GENERICS                */
/* ==================================================== */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--accent-red);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
}

.logo-main {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-white);
}

.logo-sub {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-red);
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 0.55rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 3px;
}

/* ==================================================== */
/* SECTION A: DARK GATEWAY INTERFACE LAYOUT             */
/* ==================================================== */
.landing-wrapper {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    padding: 6rem 2rem;
    background: radial-gradient(circle at 20% 30%, rgba(225, 29, 72, 0.05), transparent 45%);
    animation: fadeIn 0.6s ease forwards;
}

.landing-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.landing-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-white);
}

.landing-main {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
}

.image-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Styled to mirror homepage cards */
.image-frame {
    background-color: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 0.8rem;
    display: flex;
    transition: border-color 0.3s ease;
}

.image-frame:hover {
    border-color: rgba(225, 29, 72, 0.3);
}

.mockup-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    opacity: 0.9;
}

.content-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.title-guarding {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.red-letter, .highlight-red {
    color: var(--accent-red);
}

.hero-description {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.6;
}

.landing-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.greeting-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
}

/* Primary modern interactive button style */
.start-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: var(--text-white);
    color: var(--bg-dark-app);
    border: none;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.start-btn:hover {
    background-color: var(--accent-red);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(225, 29, 72, 0.4);
}

/* ==================================================== */
/* SECTION B: APP DASHBOARD HOME PAGE LAYOUT            */
/* ==================================================== */
.main-app-content {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Search Bar Wrapper Container */
.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* Position the icon neatly inside the front of the input field */
.search-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    pointer-events: none; /* Keeps input clickable underneath icon */
    transition: color 0.3s ease;
}

/* Styled Input Field matching the dark card aesthetic */
.search-input {
    width: 180px;
    background-color: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.5rem 1rem 0.5rem 2.3rem; /* Extra left padding to clear the icon */
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

/* Glow effects when clicking/typing inside the search bar */
.search-input:focus {
    border-color: var(--accent-red);
    box-shadow: 0 0 10px rgba(225, 29, 72, 0.2);
    width: 220px; /* Optional slight expand effect on click */
}

.search-input:focus + .search-icon {
    color: var(--accent-red);
}

/* Custom placeholder text style */
.search-input::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
}

@media (max-width: 900px) {
    /* ... your existing media query rules ... */

    .search-wrapper {
        justify-content: center;
        margin-top: 0.5rem;
    }
    .search-input {
        width: 100%;
        max-width: 250px;
    }
}
/* App Fixed Nav Bar */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(10, 11, 13, 0.85);
    backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: padding 0.3s ease, background-color 0.3s ease;
}

.app-header.scrolled {
    padding: 0.9rem 5%;
    background-color: rgba(10, 11, 13, 0.96);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.brand-logo-group {
    font-size: 1.8rem;
    font-weight: 800;
}
.brand-accent { color: var(--accent-red); }
.brand-white { color: var(--text-white); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}
#solution{
    gap: 5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-white);
}

/* Submenu Dropdown logic */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    list-style: none;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.2rem;
} 
.dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--accent-cyan);
}
.dropdown:hover .dropdown-menu { display: block; }

/* Dashboard Core Hero Components */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 7rem 5% 2rem 5%;
    gap: 4rem;
    background: radial-gradient(circle at 80% 20%, rgba(225, 29, 72, 0.06), transparent 50%);
}

.hero-content { flex: 1; max-width: 650px; }
.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.hero-content p {
    color: var(--text-);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Dashboard Core Hero Components Service */
.heroService {
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding: 2rem 5% 2rem 5%;
    gap: 4rem;
    background: radial-gradient(circle at 80% 20%, rgba(225, 29, 72, 0.06), transparent 50%);
}

.heroService-content { flex: 1; max-width: 650px; }
.heroService-content h1 {
    font-size: 3rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    letter-spacing: -0.02em;
}
.hero-content p {
    color: var(--text-);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}


.hero-buttons { display: flex; gap: 1rem; }

.btn {
    margin-top: 2rem;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary { background-color: var(--text-white); color: var(--bg-dark-app); }
.btn-primary:hover {
    background-color: var(--accent-red);
    color: var(--text-white);
    box-shadow: 0 0 20px rgba(225, 29, 72, 0.4);
}
.btn-outline { border: 1px solid rgba(255, 255, 255, 0.2); color: var(--text-white); }
.btn-outline:hover { background-color: rgba(255, 255, 255, 0.05); }

/* Radar Orbit Layout Rings Animation */
.hero-visual { flex: 1; display: flex; justify-content: center; align-items: center; }
.radar-circle {
    position: relative;
    width: 380px;
    height: 380px;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: spin 40s linear infinite;
}
.center-hub {
    width: 80px;
    height: 80px;
    background-color: var(--bg-dark-card);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--accent-red);
    animation: counter-spin 40s linear infinite;
}
.node {
    position: absolute;
    background-color: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: counter-spin 40s linear infinite;
}
.node::before {
    content: ''; width: 8px; height: 8px; background-color: var(--accent-red); border-radius: 50%;
}
.node-staffing { top: -15px; left: 40%; }
.node-monitoring { right: -30px; top: 45%; }
.node-control { bottom: 10px; left: 10%; }

@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes counter-spin { 100% { transform: rotate(-360deg); } }

/* --- Optimized Styling adjustments for Image Elements --- */
.radar-circle .node {
    position: absolute;
    background-color: rgba(238, 244, 241, 0); /* Removes background card blocking behind your transparent logos */
    border: none;                  /* Removes the white outline borders */
    padding: 0;                    /* Resets internal padding box dimensions */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Strips the leading red indicator dot asset so logos align natively centered */
.radar-circle .node::before {
    display: none !important;
}

/* --- 10-Node Orbit Layout Vectors (Remains configured for 350px width circles) --- */
.node-1 { top: -25px; left: 50%; transform: translateX(-50%); }
.node-2 { top: 10%; right: 2%; }
.node-3 { top: 38%; right: 45px; }
.node-4 { bottom: 38%; right: -65px; }
.node-5 { bottom: 10%; right: 2%; }
.node-6 { bottom: -25px; left: 50%; transform: translateX(-50%); }
.node-7 { bottom: 10%; left: 2%; }
.node-8 { bottom: 38%; left: -65px; }
.node-9 { top: 38%; left: 45px; }
.node-10 { top: 10%; left: 2%; }

/* --- Keeps your graphic assets upright and unwarped during cycle spins --- */
.node-1, .node-2, .node-3, .node-4, .node-5, 
.node-6, .node-7, .node-8, .node-9, .node-10 {
    animation: counter-spin 50s linear infinite;
}

/* About and Core Solutions Sections */
.about-section {
    padding: 5rem 5rem 0rem 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(180deg, var(--bg-dark-app) 0%, #0e1017 100%);
}
.about-container { max-width: 1025px; margin: 0 auto; }
.about-section h2, .section-title { font-size: 2.5rem; margin-bottom: 1.5rem; }
.about-container p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 1.5rem; }

.stats-grid { display: flex; gap: 2rem; margin-top: 3rem; }
.stat-card {
    flex: 1; background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem; border-radius: 12px;
}
.stat-card h3 { font-size: 2.5rem; color: var(--accent-red); margin-bottom: 0.2rem; }

.services-section { padding: 6rem 5%; }
.services-sectionOne { padding: 2rem 5%; }
.section-title { text-align: left; margin-bottom: 4rem; }
.services-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

.service-card {
    background-color: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px; padding: 2.5rem;
    transition: transform 0.3s, border-color 0.3s;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(225, 29, 72, 0.3); }
.service-icon { font-size: 2rem; color: var(--accent-red); margin-bottom: 1.5rem; }
.service-card h3 { margin-bottom: 1rem; }
.service-card p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.95rem; }
.service-link { color: var(--text-white); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; }

/* Layout Adaptation rules */
@media (max-width: 900px) {
    .landing-main, .hero { grid-template-columns: 1fr; flex-direction: column; text-align: center; gap: 2.5rem; }
    .landing-header, .landing-footer, .hero-buttons { flex-direction: column; gap: 1.5rem; justify-content: center; }
    .title-guarding { font-size: 3rem; }
    .stats-grid { flex-direction: column; }
}



.iss-master-container {
  max-width: 1100px;
  width: 100%;
  padding: 3rem 4rem 0 5rem;
  
}

.iss-section {
  width: 100%;
  padding: 20px 0;
}

.section-divider {
  border: 0;
  height: 1px;
  background: #e0e0e0;
  margin: 60px 0;
}

/* ==========================================
   2. REUSABLE HEADER COMPONENTS
   ========================================== */
.iss-header h2 {
  font-size: 1.2rem;
  color: #f7f3f3;
  /* font-weight: 800; */
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.iss-header h1 {
  font-size: 1.4rem;
  color: #e53935; /* Accent Red */
  /* font-weight: 700; */
  margin-bottom: 20px;
}

.iss-header h1::before {
  content: "I";
  color: #e53935;
  /* font-weight: 300; */
  margin-right: 4px;
}

/* ==========================================
   3. SECTION 1: OFFERINGS TEXT & LIST
   ========================================== */
.intro-text {
  font-size: 1rem;
  line-height: 1.6;
  color:  #f7f3f3;
  margin-bottom: 40px;
}

.offerings-content h3 {
  font-size: 1.35rem;
  /* font-weight: 700; */
  color:  #f7f3f3;
  margin-bottom: 12px;
}

.sub-intro {
  font-size: 1rem;
  line-height: 1.5rem;
  color:  #f7f3f3;
  margin-bottom: 30px;
}

.offerings-list {
  list-style: none;
  counter-reset: offerings-counter;
}

.offerings-list li {
  counter-increment: offerings-counter;
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
  color:  #f7f3f3;
  margin-bottom: 18px;
  padding-left: 35px;
}

.offerings-list li::before {
  content: counter(offerings-counter) ". ";
  position: absolute;
  left: 0;
  top: 0;
  /* font-weight: 700; */
  font-size: 1rem;
  color:  #f7f3f3;
}

/* ==========================================
   4. SECTION 2: MATRIX DATA GRID
   ========================================== */
.subtitle {
  font-size: 1.2rem;
  /* font-weight: 700; */
  color:  #f7f3f3;
  margin-bottom: 40px;
}

.matrix-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  align-items: center;
  margin-bottom: 30px;
}

.grid-item {
  padding: 15px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Structural bottom dividing lines for layout rows */
.matrix-grid > div:nth-child(n+5):nth-child(-n+8),
.matrix-grid > div:nth-child(n+9):nth-child(-n+12),
.matrix-grid > div:nth-child(n+13):nth-child(-n+16) {
  border-bottom: 1px solid #78909c;
}

/* Rounded Header Pill Modifiers */
.col-header, .row-header {
  background: linear-gradient(to bottom, #1d4373 0%, #4671a3 40%, #1d4373 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  height: 45px;
}

.col-header { margin: 0 10px 25px 10px; }

.row-header {
  justify-content: flex-start;
  padding-left: 20px;
  margin-right: 25px;
  color:  #f7f3f3;
  background: linear-gradient(to bottom, #4b74a3 0%, #ffffff 45%, #4b74a3 100%);
}

.cell-content { height: 75px; }

/* Custom Check and Cross UI Elements */
.icon {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  display: inline-block;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.icon.check { background-color: #0d3663; }
.icon.check::after {
  content: '';
  position: absolute;
  left: 16px;
  top: 7px;
  width: 10px;
  height: 22px;
  border: solid white;
  border-width: 0 5px 5px 0;
  transform: rotate(45deg);
}

.icon.cross { background-color: #092c54; }
.icon.cross::before, .icon.cross::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 20px;
  height: 30px;
  width: 5px;
  background-color: white;
}
.icon.cross::before { transform: rotate(45deg); }
.icon.cross::after { transform: rotate(-45deg); }

/* Footnotes Styling */
.iss-notes { list-style: none; padding-left: 0; }
.iss-notes li {
  position: relative;
  padding-left: 15px;
  font-size: 1.2rem;
  line-height: 1.6;
  color:  #f7f3f3;
  margin-bottom: 8px;
}
.iss-notes li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 1rem;
  color:  #f7f3f3;
}

/* ==========================================
   5. SECTION 3: SPLIT COLUMN CONTACT FORM
   ========================================== */
.content-split-layout {
  display: flex;
  gap: 5%;
  align-items: flex-start;
}

.media-column { flex: 1.2; }
.form-column { flex: 1; padding-top: 25px; }

.catchphrase {
  font-size: 1.4rem;
  font-weight: 500;
  color:  #f7f3f3;
  margin-bottom: 20px;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.form-column h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color:  #f7f3f3;
  margin-bottom: 25px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.input-group { display: flex; flex-direction: column; }
.input-group label {
  font-size: 1.05rem;
  font-weight: 600;
  color:  #f7f3f3;
  margin-bottom: 8px;
}

.input-group input, .input-group textarea {
  background-color: #a6a6a6;
  border: none;
  border-radius: 20px;
  color: #ffffff;
  font-size: 1rem;
  outline: none;
}

.input-group input { height: 38px; padding: 0 15px; }
.input-group textarea { padding: 15px; resize: none; }
.full-width { margin-bottom: 30px; }

.input-group input:focus, .input-group textarea:focus {
  background-color: #949494;
}

.form-actions { display: flex; justify-content: center; }
.submit-btn {
  background-color: #a6a6a6;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  padding: 10px 50px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.submit-btn:hover { background-color: #8c8c8c; }

/* ==========================================
   6. GLOBAL MEDIA QUERIES (RESPONSIVENESS)
   ========================================== */
@media (max-width: 868px) {
  .content-split-layout {
    flex-direction: column;
    gap: 40px;
  }
  .form-column { width: 100%; padding-top: 0; }
}

@media (max-width: 768px) {
  body { padding: 30px 15px; }
  .intro-text, .sub-intro { font-size: 1.1rem; }
  .offerings-list li { font-size: 1.05rem; padding-left: 28px; }
  .offerings-list li::before { font-size: 1.05rem; }
  
  .matrix-grid { grid-template-columns: 1fr repeat(3, 0.8fr); }
  .col-header, .row-header { font-size: 0.7rem; padding: 5px; }
  .row-header { padding-left: 10px; margin-right: 10px; }
  
  .icon { width: 34px; height: 34px; }
  .icon.check::after { left: 12px; top: 5px; width: 7px; height: 16px; border-width: 0 4px 4px 0; }
  .icon.cross::before, .icon.cross::after { top: 5px; left: 15px; height: 24px; width: 4px; }
}

@media (max-width: 480px) {
  .form-grid { grid-template-columns: 1fr; gap: 15px; }
}


.iss-project-page {
  max-width: 1100px;
  width: 100%;
  padding-top: 7rem;
  
}

.project-section {
  width: 100%;
  padding: 0.5rem 3rem 2rem 3rem;
}

.page-divider {
  border: 0;
  height: 1px;
  background: #333333; /* Darker divider line for the dark theme */
  margin: 5px 0;
}

/* Reusable Header Core Settings */
.section-header h2 {
  font-size: 1rem;
  color: #ffffff; /* White font color */
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.section-header h1 {
  font-size: 1.2rem;
  color: #dddddd; /* Light gray/white font color */
  font-weight: 400;
  margin-bottom: 4px;
}

.intro-text {
  font-size: 1.2rem;
  line-height: 1.45;
  color: #dddddd; /* Light gray/white font color */
  margin-bottom: 15px;
}

/* ==========================================
   2. TRACK RECORD GRID & CARD STYLINGS
   ========================================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.project-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project-card h3 {
  font-size: 1rem;
  /* font-weight: 600; */
  color: #ffffff; /* White font color */
  margin-bottom: 15px;
  text-align: center;
}

/* Dynamic Laptop Canvas Generator */
.laptop-mockup {
  width: 100%;
  max-width: 320px;
  position: relative;
  background: #000;
  border: 12px solid #222222; /* Slightly lighter edge for visibility against deep background */
  border-radius: 8px 8px 0 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.laptop-mockup::after {
  content: '';
  display: block;
  width: 112%;
  height: 6px;
  background: #444444; /* Darker base frame stand */
  position: absolute;
  bottom: -18px;
  left: -6%;
  border-radius: 0 0 4px 4px;
  border-bottom: 2px solid #555555;
}

.laptop-mockup img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
}

.card-body {
  width: 100%;
  padding-top: 35px;
}

.card-body p {
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff; /* White font color */
  margin-bottom: 16px;
}

.card-body p strong { font-weight: 700; }

/* ==========================================
   3. TESTIMONIALS STAGGERED GRID LAYOUT
   ========================================== */
.testimonials-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.testimonials-bottom-row {
  display: flex;
  justify-content: flex-start;
  padding-left: 10%;
}

.testimonial-card-item {
  display: flex;
  flex-direction: column;
}

.quote-text {
  font-size: 1.15rem;
  line-height: 1.55;
  color: #ffffff; /* White font color */
  margin-bottom: 15px;
}

.delayed-offset { max-width: 720px; }
.quote-author { display: flex; flex-direction: column; gap: 6px; font-style: normal; }
.meta-item {
  position: relative;
  padding-left: 28px;
  font-size: 1.1rem;
  color: #ffffff; /* White font color */
  display: flex;
  align-items: center;
  height: 24px;
}

/* CSS UI Pseudo Icon Generation */
.meta-item.name::before {
  content: ""; position: absolute; left: 4px; top: 2px;
  width: 12px; height: 12px; background-color: #9b59b6; border-radius: 50%; /* Brightened purple for contrast */
}
.meta-item.name::after {
  content: ""; position: absolute; left: 0; top: 15px;
  width: 20px; height: 8px; background-color: #9b59b6; border-radius: 6px 6px 0 0;
}
.meta-item.role::before {
  content: ""; position: absolute; left: 2px; top: 6px;
  width: 16px; height: 12px; background-color: #b17a5e; border-radius: 2px; /* Brightened brown for contrast */
}
.meta-item.role::after {
  content: ""; position: absolute; left: 6px; top: 2px;
  width: 8px; height: 4px; border: 2px solid #b17a5e; border-bottom: none; border-radius: 2px 2px 0 0;
}

/* ==========================================
   4. READY TO TALK CTA (SMARTPHONE LAYER)
   ========================================== */
.iss-cta-container { overflow: hidden; padding: 20px 0; }
.cta-split-layout { display: flex; align-items: center; gap: 8%; }

.phone-column { flex: 1; display: flex; justify-content: center; align-items: center; }
.phone-wrapper {
  width: 240px; height: 480px; background-color: #222222; border-radius: 40px;
  padding: 12px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: rotate(-15deg); position: relative;
  border: 1px solid #333333;
}
.phone-wrapper::before {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 4px; background-color: #444; border-radius: 2px; z-index: 10;
}
.phone-screen { width: 100%; height: 100%; background: linear-gradient(135deg, #0b1a30 0%, #050b14 100%); border-radius: 32px; overflow: hidden; }
.screen-content { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: #ffffff; padding: 20px; }
.caller-avatar { width: 55px; height: 55px; background-color: rgba(255, 255, 255, 0.2); border-radius: 50%; margin-bottom: 15px; position: relative; }
.caller-avatar::before { content: ''; position: absolute; top: 14px; left: 18px; width: 19px; height: 19px; background-color: #fff; border-radius: 50%; }
.caller-status { font-size: 1rem; opacity: 0.7; margin-bottom: 110px; color: #ffffff; }
.call-actions { display: flex; gap: 35px; }
.call-btn { width: 45px; height: 45px; border-radius: 50%; }
.call-btn.decline { background-color: #e53935; }
.call-btn.accept { background-color: #4caf50; }

.text-column { flex: 1.3; }
.text-column h2 { font-size: 2.5rem; font-weight: 800; color: #ffffff; margin-bottom: 20px; } /* White font color */
.text-column p { font-size: 1.25rem; line-height: 1.5; color: #ffffff; margin-bottom: 35px; } /* White font color */

.enquiry-btn {
  display: inline-block; background-color: #760808; color: #ffffff;
  font-size: 1.1rem; font-weight: 700; text-decoration: none;
  padding: 12px 40px; border-radius: 25px; box-shadow: 0 2px 5px rgba(0,0,0,0.4);
  transition: background-color 0.2s ease, transform 0.1s ease;
}
.enquiry-btn:hover { background-color: #020000; }
.enquiry-btn:active { transform: scale(0.98); }

/* ==========================================
   5. RESPONSIVE DESIGN INTERFACE SYSTEM
   ========================================== */
@media (max-width: 900px) {
  .projects-grid { grid-template-columns: 1fr; gap: 50px; justify-items: center; }
  .project-card { max-width: 360px; }
  .testimonials-top-row { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-bottom-row { padding-left: 0; }
  .delayed-offset { max-width: 100%; }
  .cta-split-layout { flex-direction: column-reverse; gap: 40px; text-align: center; }
  .phone-column { transform: scale(0.9); }
}

@media (max-width: 768px) {
  body { padding: 40px 15px; }
  .intro-text, .text-column p { font-size: 1.1rem; }
  .project-card h3 { font-size: 1.25rem; }
  .quote-text { font-size: 1.05rem; }
  .text-column h2 { font-size: 2rem; }
}





/* Updated from .container to .whoWeAre */
.whyChoosUs {
    max-width: 1100px;
    margin: 0 auto;
}

.whoWeAre {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header Styles */
.section-header {
    margin-bottom: 35px;
}

.main-title {
    color: #fdfcfc;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.sub-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fdfcfc;
    margin-bottom: 12px;
}

.description {
    font-size: 1.15rem;
    color: #fdfcfc;
    max-width: 950px;
    font-weight: 400;
}

/* Image Showcase Grid */
.showcase-grid {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.image-wrapper {
    flex: 1;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Updated with trailing 's' to match the new classes */
.left-panels {
    flex: 0 1 42%;
}

.right-panels {
    flex: 0 1 55%;
}

/* Call To Action Footer */
.cta-footer {
    text-align: center;
    margin-top: 20px;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #f4ebeb;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
}

.cta-link:hover {
    color: #f1f1f3;
    transform: translateY(-1px);
}

.email-icon {
    font-size: 1.4rem;
}

/* Hover States */
.cta-link:hover {
    color: #b32f18; /* Changes text to the signature purple */
    transform: scale(1.03); /* Gives a slight pop-out effect */
}

.cta-link:hover .email-icon {
    transform: rotate(-10px) translateY(-3px); /* Subtle playful wiggle/lift for the envelope */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .showcase-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    /* Updated panel selectors here as well */
    .left-panels, .right-panels {
        width: 100%;
        max-width: 500px;
    }
    
    .main-title { font-size: 1.5rem; }
    .sub-title { font-size: 1.2rem; }
    .description { font-size: 1rem; }
    .cta-link { font-size: 1.1rem; }
}