/* custom logo size added here */
.site-branding img.logo {
    max-height: 60px!important;
}
.header-logo a img {
    width: 180px!important;
}

/* Your custom CSS goes here */
.data-display{
    display: none !important;
}
.eurus-title{
   font-size: 45px;
}
.eurus-title-1{
   font-size: 35px;
}
.eurus-about{
   margin: 10px !important;
   padding: 16px !important;
   border-radius: 10px !important;
   border: 1px solid #e5e5e5 !important;
}
.services-ul{
    padding: 15px;
}
.services-text{
    font-size:18px;
}
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Default layout */
  gap: 30px;
  padding: 30px;
}

.card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  padding-top: 50px;
  height: 320px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.card-icon {
  background-color: #e0f7fa;
  color: #00bcd4;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  margin-bottom: 20px;
}

.card-title {
  color: #2c3e50;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 1.2em; /* Adjust as needed */
}

.card-text {
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}
.techwix-hero-section-04 {
    height: 900px !important;
}

.feature-grid.style-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 40px;
  background-color: #ebf2fc; /* Light, modern background */
  border-radius: 12px;
}

.feature-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08); /* Softer, elevated shadow */
  padding: 30px;
  display: flex;
  align-items: center;
}

.feature-icon {
  background-color: #066fd9; /* Modern purple accent color */
  color: #fff;
  border-radius: 12px; /* More rounded corners */
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  margin-right: 25px;
  flex-shrink: 0; /* Prevent icon from shrinking */
}

.feature-details h3 {
  color: #333;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 1.1rem; /* Slightly smaller, modern heading */
}

.feature-details p {
  color: #555;
  line-height: 1.7; /* Improved readability */
  margin-bottom: 0;
}

/* Hover effect for interactivity */
.feature-item:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px); /* Subtle lift on hover */
  transition: all 0.2s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .feature-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .feature-icon {
    margin-bottom: 20px;
    margin-right: 0;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  .feature-details h3 {
    font-size: 1rem;
  }
}



@keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .circles {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 70px;
        margin-bottom: 60px;
    }

    .circle {
      position: relative;
      width: 280px;
      height: 250px;
      background: #a7bdda;
      border: 3px solid var(--accent);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
      transition: transform 0.4s cubic-bezier(.4,0,.2,1),
                  box-shadow 0.4s cubic-bezier(.4,0,.2,1);
      will-change: transform, box-shadow;
      opacity: 0;
      animation: fadeInUp 0.6s ease both;
    }
    .circle:nth-child(1) { animation-delay: 0.1s; }
    .circle:nth-child(2) { animation-delay: 0.2s; }
    .circle:nth-child(3) { animation-delay: 0.3s; }

    .circle:hover {
      transform: scale(1.08);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .circle .icon {
      font-size: 2.25rem;
      color: var(--accent);
      margin-bottom: 12px;
      transition: transform 0.4s cubic-bezier(.4,0,.2,1);
      will-change: transform;
    }
    .circle:hover .icon {
      transform: scale(1.2);
    }

    .circle h3 {
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 6px;
        color: #3c3c3c;
    }

    .circle p {
        font-size: 18px;
        text-align: center;
        color: var(--text-light);
        line-height: 30px;
        padding: 5px 5px;
    }
    
    
    
 /* Grid layout */
    .grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    @media (min-width: 576px) {
      .grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (min-width: 768px) {
      .grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* Card styling */
    .card {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      background-size: cover;
      background-position: center;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 12px rgba(0,0,0,0.1);
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    }

    /* Title bar */
    .card .title {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0,0,0,0.5);
      color: #fff;
      padding: 12px;
      text-align: center;
      font-size: 25px;
      font-weight: 500;
    }

    /* Hover overlay */
    .card .overlay {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.7);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
      opacity: 0;
      transform: translateY(100%);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .card:hover .overlay {
      opacity: 1;
      transform: translateY(0);
    }
    .overlay p {
      font-size: 20px;
      line-height: 1.9;
    }
    .ccm-bg{
        background: #efefef!important;
    }
    
    /*ccm styles */
    /* Parallax section */
        .ccm-bg{
        background: white!important;
    }
    .parallax-section {
      position: relative;
      min-height: 100vh;
      background-image: url("img_parallax.jpg");
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 100px 100px;
      text-align: center;
      color:black;
    }

    /* Glassy overlay on the image itself */
    .parallax-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgb(95 95 95 / 60%);
      backdrop-filter: blur(4px);
      z-index: 1;
    }

    /* Content sits above the overlay */
    .parallax-section .section-content {
      position: relative;
      z-index: 2;
    }
    .parallax-section h1 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }
    .parallax-section h2 {
      font-size: 1.4rem;
      font-weight: 400;
      margin-bottom: 1.5rem;
    }
    .parallax-section p {
      font-size: 1rem;
      line-height: 1.6;
    }

    /* Mobile fallback */
    @media (max-width: 768px) {
      .parallax-section {
        background-attachment: scroll;
        padding: 40px 15px;
      }
      .parallax-section h1 { font-size: 2rem; color:white;}
      .parallax-section h2 { font-size: 1.2rem; color:white;}
      .parallax-section p  { font-size: 0.95rem; color:white;}
    }
    
    
    
/* Home page banner glassy shade */    
.techwix-hero-section-03::before {
  content: "";
  position: absolute;
  inset: 0;                       /* top/rt/bottom/left = 0 */
  background: rgba(0, 0, 0, 0.6); /* adjust opacity (0.0–1.0) for darkness */
  backdrop-filter: blur(2px);     /* adjust blur strength */
  z-index: 1;
}

.techwix-hero-section-03 > * {
  position: relative;             /* bring your content above the overlay */
  z-index: 2;
}