.logo-image {
  max-height: 140px !important; /* Much larger than before */
  margin-top: -20px; /* Pull the logo up significantly */
  margin-bottom: -20px; /* Pull the logo down significantly */
  position: relative;
  z-index: 1000; /* Ensure the logo stays above other elements */
}
/* Principle Cards */
.principle-card {
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
  }
  
  .principle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  .principle-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 24px;
    transition: all 0.3s ease;
  }
  
  .principle-card:hover .principle-icon {
    background-color: var(--primary-color);
    color: white;
  }
  
  .principle-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
  }
  
  .principle-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
  }/* UI Design Page CSS */
  
  :root {
    --primary-color: #5a8d55;
    --secondary-color: #84b97f;
    --light-color: #e8f5e4;
    --dark-color: #3a5c38;
    --white-color: #ffffff;
    --section-padding: 60px 0;
    --heading-color: #4a623e;
    --text-color: #333333;
  }
  
  /* Page Title */
.page-title {
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    padding: 240px 0 70px; /* Increased top padding from 120px to 150px */
    color: var(--white-color);
    position: relative;
    text-align: center;
  }
  
  .page-title h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  
  /* Section Styles */
  section {
    padding: 60px 0;
    position: relative;
  }
  
  section.light-background {
    background-color: var(--light-color);
  }
  
  /* Section headings */
  .section-heading {
    font-size: 36px;
    color: #8aab7b;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
  }
  
  .section-heading:after {
    content: '';
    position: absolute;
    width: 150px;
    height: 3px;
    background: #8aab7b;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Stage Headings */
  .stage-heading {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 35px;
    position: relative;
    text-align: center;
    padding-bottom: 15px;
    font-weight: 600;
  }
  
  .stage-heading:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Design Item */
  .design-item {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
  }
  
  .design-item:hover {
    transform: translateY(-8px);
  }
  
  .image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 200px;
    background-color: white;
  }
  
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .image-container:hover img {
    transform: scale(1.05);
  }
  
  .image-label {
    text-align: center;
    margin-top: 12px;
    font-weight: 500;
    color: var(--dark-color);
    font-size: 14px;
  }
  
  /* Stage Evaluation */
  .stage-evaluation {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--secondary-color);
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .stage-evaluation h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 24px;
  }
  
  .stage-evaluation p {
    margin-bottom: 15px;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
  }
  
  .stage-evaluation ul {
    padding-left: 20px;
    margin-bottom: 15px;
  }
  
  .stage-evaluation li {
    margin-bottom: 10px;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .page-title h1 {
      font-size: 40px;
    }
    
    .section-heading {
      font-size: 32px;
    }
    
    .stage-heading {
      font-size: 26px;
    }
    
    .stage-evaluation h3 {
      font-size: 22px;
    }
    
    .image-container {
      height: 180px;
    }
  }
  
  @media (max-width: 768px) {
    .page-title h1 {
      font-size: 32px;
    }
    
    .section-heading {
      font-size: 28px;
    }
    
    .stage-heading {
      font-size: 24px;
    }
    
    .stage-evaluation h3 {
      font-size: 20px;
    }
    
    .stage-evaluation {
      padding: 20px;
    }
    
    .image-container {
      height: 160px;
    }
  }
  
  @media (max-width: 576px) {
    .page-title h1 {
      font-size: 28px;
    }
    
    .section-heading {
      font-size: 24px;
    }
    
    .stage-heading {
      font-size: 22px;
    }
    
    .content-text {
      font-size: 16px;
    }
    
    .stage-evaluation p,
    .stage-evaluation li {
      font-size: 15px;
    }
    
    .image-container {
      height: 150px;
    }
  }
  
  /* Scroll to top */
  #scroll-top {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 999;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
    cursor: pointer;
  }
  
  #scroll-top:hover {
    background: var(--dark-color);
    opacity: 1;
    transform: translateY(-3px);
  }