/* OUR CLIENTS */
/* Client Slider Section Styles */
.client-slider-section {
  font-family: 'Poppins', sans-serif;
  padding: 3rem 1rem;
  margin: 0rem 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.slider-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.slider-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 2.5rem;
  letter-spacing: -0.5px;
  position: relative;
}

.slider-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.client-slider {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.slider-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.slide {
  display: flex;
  flex: 0 0 100%;
  justify-content: space-around;
  align-items: center;
  padding: 1rem;
  box-sizing: border-box;
}

.client-item {
  flex: 0 0 18%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 120px;
}

.client-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.client-item img {
  max-width: 100%;
  max-height: 70%;
  object-fit: contain;
  
  opacity: 0.8;
  transition: all 0.3s ease;
}

.client-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.slider-prev, .slider-next {
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-prev:hover, .slider-next:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.slider-dots {
  display: flex;
  gap: 0.8rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: #667eea;
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .client-item {
    flex: 0 0 18%;
  }
}

@media (max-width: 992px) {
  .slide {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  
  .client-item {
    flex: 0 0 30%;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .slider-title {
    font-size: 1.8rem;
  }
  
  .client-item {
    flex: 0 0 45%;
    height: 90px;
  }
  
  .slider-prev, .slider-next {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 576px) {
  .client-slider-section {
    padding: 2rem 0.5rem;
  }
  
  .slider-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .slide {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .client-item {
    flex: 0 0 100%;
    height: 80px;
    width: 80%;
  }
  
  .slider-controls {
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .slider-prev, .slider-next {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* For very large screens */
@media (min-width: 2000px) {
  .slider-container {
    max-width: 1800px;
  }
  
  .client-item {
    height: 150px;
  }
  
  .slider-title {
    font-size: 3rem;
  }
  
  .slider-prev, .slider-next {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
}
/* OUR CLIENTS end */


/* Technical Expertise INTRO */
.tech-expertise-section {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
    color: #e6f1ff;
    padding: 5rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    padding-top: 50px;
}

.tech-expertise-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-top: 50px;
}

.tech-expertise-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tech-expertise-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #4cc9b8; /* Slightly darker teal */
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    padding-top: 1rem;
}

.tech-expertise-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ccd6f6;
    margin-bottom: 2rem;
}

.tech-visual-elements {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
    
}

.tech-element {
    background: rgba(100, 255, 218, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 12px;
    padding: 25px 20px;
    width: 160px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Different colored glows on hover */
.tech-element:nth-child(1):hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(77, 201, 184, 0.6);
    border-color: rgba(77, 201, 184, 0.4);
}

.tech-element:nth-child(2):hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(86, 124, 228, 0.6);
    border-color: rgba(86, 124, 228, 0.4);
}

.tech-element:nth-child(3):hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.6);
    border-color: rgba(255, 107, 107, 0.4);
}

.tech-element:nth-child(4):hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(187, 107, 255, 0.6);
    border-color: rgba(187, 107, 255, 0.4);
}

.tech-element-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}

.tech-element:hover .tech-element-icon {
    transform: scale(1.1);
}

.tech-element-title {
    font-size: 1rem;
    color: #e6f1ff;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive Design */
@media (min-width: 768px) {
    .tech-expertise-section {
        padding: 6rem 3rem 5rem;
    }
    
    .tech-expertise-title {
        font-size: 2.5rem;
    }
    
    .tech-expertise-description {
        font-size: 1.15rem;
    }
}

@media (min-width: 1024px) {
    .tech-expertise-section {
        padding: 7rem 4rem 6rem;
    }
    
    .tech-expertise-title {
        font-size: 2.8rem;
    }
}

@media (min-width: 1440px) {
    .tech-expertise-section {
        padding: 8rem 5rem 7rem;
    }
    
    .tech-expertise-title {
        font-size: 3rem;
    }
    
    .tech-expertise-description {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .tech-expertise-section {
        padding: 4rem 1.5rem 3rem;
    }
    
    .tech-expertise-title {
        font-size: 1.9rem;
    }
    
    .tech-expertise-description {
        font-size: 1rem;
    }
    
    .tech-element {
        width: 130px;
        padding: 20px 15px;
    }
    
    .tech-element-icon {
        font-size: 2.3rem;
    }
}

@media (max-width: 360px) {
    .tech-visual-elements {
        gap: 15px;
    }
    
    .tech-element {
        width: 110px;
        padding: 15px 10px;
    }
    
    .tech-element-title {
        font-size: 0.7rem;
    }
}

/* Technical Expertise INTRO END*/

/* TYPES OF CONTRACTS */
/* Contracts Tabs Section - Compact Design */
.contracts-tabs-section {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: linear-gradient(135deg, #1a365d 0%, #2a4a7f 50%, #1a365d 100%);
    color: #ffffff;
    padding: 2.5rem 1rem;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

#contracts-tabs {
    scroll-margin-top: 1.5rem;
}

.contracts-tabs-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 0.95rem;
    color: #e2e8f0;
    max-width: 450px;
    margin: 0 auto;
    line-height: 1.5;
}

.tabs-container {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    padding: 1rem 0;
}

.tabs-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.contract-tab {
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: auto;
    text-align: center;
    backdrop-filter: blur(5px);
}

.contract-tab:hover {
    background: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contract-tab.active {
    background: #3b82f6;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.contract-tab h3 {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.tab-content {
    margin: 1.5rem auto 0;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    min-height: 120px;
}

.content-display {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.content-display h4 {
    color: #ffffff;
    margin-top: 0;
    font-size: 1.2rem;
}

.tabs-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.control-btn {
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 3px 10px rgba(59, 130, 246, 0.25);
}

.control-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.35);
}

.control-btn:active {
    transform: translateY(0);
}

.pagination-info {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1rem;
    font-weight: 500;
    color: #e2e8f0;
    min-width: 60px;
    justify-content: center;
}

.current-slide {
    color: #ffffff;
    font-weight: 600;
}

.pagination-divider {
    color: #cbd5e1;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .contracts-tabs-section {
        padding: 3rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .contract-tab h3 {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .tabs-track {
        gap: 0.6rem;
    }
    
    .contract-tab {
        padding: 0.6rem 1.2rem;
    }
    
    .contract-tab h3 {
        font-size: 0.9rem;
        max-width: 160px;
    }
    
    .tab-content {
        margin-top: 1.25rem;
        padding: 1.25rem;
    }
    
    .tabs-controls {
        margin-top: 1.5rem;
        gap: 1.25rem;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 640px) {
    .contracts-tabs-section {
        padding: 2rem 1rem;
    }
    
    .section-intro {
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 0.9rem;
    }
    
    .tabs-track {
        gap: 0.5rem;
    }
    
    .contract-tab {
        padding: 0.5rem 1rem;
    }
    
    .contract-tab h3 {
        font-size: 0.85rem;
        max-width: 140px;
    }
    
    .tab-content {
        padding: 1rem;
        min-height: 100px;
    }
    
    .content-display {
        font-size: 0.9rem;
    }
    
    .control-btn {
        width: 38px;
        height: 38px;
    }
    
    .pagination-info {
        font-size: 0.9rem;
        min-width: 50px;
    }
}

@media (max-width: 480px) {
    .contracts-tabs-section {
        padding: 1.75rem 0.75rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-description {
        font-size: 0.85rem;
    }
    
    .tabs-track {
        gap: 0.4rem;
    }
    
    .contract-tab {
        padding: 0.4rem 0.8rem;
    }
    
    .contract-tab h3 {
        font-size: 0.8rem;
        max-width: 120px;
    }
    
    .tab-content {
        padding: 0.8rem;
        min-height: 90px;
    }
    
    .content-display {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .tabs-controls {
        gap: 1rem;
        margin-top: 1.25rem;
    }
    
    .control-btn {
        width: 36px;
        height: 36px;
    }
    
    .control-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .pagination-info {
        font-size: 0.85rem;
        min-width: 45px;
    }
}

@media (max-width: 360px) {
    .contracts-tabs-section {
        padding: 1.5rem 0.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .tabs-track {
        gap: 0.3rem;
    }
    
    .contract-tab {
        padding: 0.35rem 0.7rem;
    }
    
    .contract-tab h3 {
        font-size: 0.75rem;
        max-width: 100px;
    }
    
    .tabs-controls {
        gap: 0.75rem;
    }
    
    .control-btn {
        width: 34px;
        height: 34px;
    }
}

@media (min-width: 2000px) {
    .contracts-tabs-wrapper {
        max-width: 1600px;
    }
    
    .contract-tab {
        padding: 1rem 2rem;
    }
    
    .contract-tab h3 {
        font-size: 1.2rem;
        max-width: 280px;
    }
    
    .tab-content {
        padding: 2rem;
        min-height: 150px;
    }
    
    .content-display {
        font-size: 1.2rem;
    }
    
    .control-btn {
        width: 50px;
        height: 50px;
    }
    
    .pagination-info {
        font-size: 1.1rem;
        min-width: 70px;
    }
}

/* Animation for tabs */
@keyframes tabAppear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contract-tab {
    animation: tabAppear 0.5s ease forwards;
    opacity: 0;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .tabs-track {
        transition: none;
    }
    
    .contract-tab {
        animation: none;
        opacity: 1;
    }
    
    .contract-tab:hover {
        transform: none;
    }
    
    .control-btn:hover {
        transform: none;
    }
}
/* TYPES OF CONTRACTS end*/


/* TYPES OF industries */

/* Industries Section Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

.industries-section {
  padding: 100px 5%;
  background: white;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.industries-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 5%, rgba(0, 120, 255, 0.06) 0%, transparent 25%),
    radial-gradient(circle at 10% 80%),
    radial-gradient(circle at 10% 80%, rgba(30, 144, 255, 0.06) 0%, transparent 25%);
  z-index: 1;
}

/* Header with blue gradients */
.section-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  margin: 0;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.title-main {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  line-height: 1.1;
  background: linear-gradient(90deg, #1b6cf2, #2f9bff, #6bc1ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 6px rgba(30, 110, 255, 0.15));
}

.title-sub {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  background: linear-gradient(90deg, #0d47a1, #2196f3, #64b5f6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-header h2::after {
  content: '';
  margin-top: 10px;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #2196f3, #64b5f6);
  border-radius: 10px;
}

/* Grid */
.industries-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Card */
.industry-card {
  position: relative;
  height: 320px;
  perspective: 1200px;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform;
}

.industry-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden; /* Safari */
}

/* Front */
.card-front {
  color: #fff;
  background-size: cover;
  background-position: center;
  transform: translateZ(1px);
}

.card-front::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
  transition: background 0.3s ease;
  border-radius: inherit;
}

.industry-card:hover .card-front::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
}

.card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  text-align: left;
}

.text-container {
  width: 100%;
}

.card-front h3 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  border: none;
  position: relative;
  display: inline-block;
}

.card-front h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #fff;
  transition: width 0.3s ease;
}

.industry-card:hover .card-front h3::after {
  width: 70px;
}

/* Back */
.card-back {
  background: #ffffff;
  color: #263238;
  transform: rotateY(180deg) translateZ(1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: left;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-back-content {
  width: 100%;
}

.card-back h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1a365d;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.card-back h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #2196f3, #64b5f6);
  border-radius: 3px;
}

.card-back p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 400;
}

.learn-more {
  color: #1976d2;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  font-size: 14px;
  position: relative;
}

.learn-more::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #1976d2;
  transition: width 0.3s ease;
}

.learn-more:hover {
  color: #0d47a1;
}

.learn-more:hover::after {
  width: 100%;
}

.learn-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.learn-more:hover i {
  transform: translateX(4px);
}

/* Responsive Styles */
@media (min-width: 4000px) {
  .industries-section {
    padding: 150px 5%;
  }
  
  .industries-container {
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    max-width: 3800px;
  }
  
  .industry-card {
    height: 500px;
  }
  
  .card-front h3, 
  .card-back h3 {
    font-size: 2.5rem;
  }
  
  .card-back p {
    font-size: 1.8rem;
  }
  
  .learn-more {
    font-size: 1.8rem;
  }
  
  .title-main {
    font-size: 3.5rem;
  }
  
  .title-sub {
    font-size: 2rem;
  }
}

@media (max-width: 3000px) {
  .industries-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 35px;
    max-width: 2800px;
  }
  
  .industry-card {
    height: 450px;
  }
  
  .card-front h3, 
  .card-back h3 {
    font-size: 2.2rem;
  }
  
  .card-back p {
    font-size: 1.5rem;
  }
  
  .learn-more {
    font-size: 1.5rem;
  }
  
  .title-main {
    font-size: 3rem;
  }
  
  .title-sub {
    font-size: 1.8rem;
  }
}

@media (max-width: 2000px) {
  .industries-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1800px;
  }
  
  .industry-card {
    height: 400px;
  }
  
  .card-front h3, 
  .card-back h3 {
    font-size: 2rem;
  }
  
  .card-back p {
    font-size: 1.3rem;
  }
  
  .learn-more {
    font-size: 1.3rem;
  }
  
  .title-main {
    font-size: 2.8rem;
  }
  
  .title-sub {
    font-size: 1.6rem;
  }
}

@media (max-width: 1600px) {
  .industries-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
  }
  
  .industry-card {
    height: 350px;
  }
  
  .card-front h3, 
  .card-back h3 {
    font-size: 1.8rem;
  }
  
  .card-back p {
    font-size: 1.1rem;
  }
  
  .learn-more {
    font-size: 1.1rem;
  }
  
  .title-main {
    font-size: 2.5rem;
  }
  
  .title-sub {
    font-size: 1.4rem;
  }
}

@media (max-width: 1200px) {
  .industries-container {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
  }
  
  .industry-card {
    height: 320px;
  }
  
  .card-front h3, 
  .card-back h3 {
    font-size: 1.6rem;
  }
  
  .card-back p {
    font-size: 1rem;
  }
  
  .learn-more {
    font-size: 1rem;
  }
  
  .title-main {
    font-size: 2.2rem;
  }
  
  .title-sub {
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {
  .industries-container {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
  
  .industry-card {
    height: 300px;
  }
  
  .title-main {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .industries-section {
    padding: 80px 5%;
  }
  
  .industries-container {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .industry-card {
    height: 280px;
  }
  
  .card-content {
    padding: 20px;
  }
  
  .card-back {
    padding: 25px;
  }
  
  .title-main {
    font-size: 1.8rem;
  }
  
  .title-sub {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .industries-section {
    padding: 60px 5%;
  }
  
  .industry-card {
    height: 250px;
  }
  
  .card-front h3, 
  .card-back h3 {
    font-size: 1.4rem;
  }
  
  .card-back p {
    font-size: 0.9rem;
  }
  
  .learn-more {
    font-size: 0.9rem;
  }
  
  .title-main {
    font-size: 1.6rem;
  }
  
  .title-sub {
    font-size: 1rem;
  }
}

@media (max-width: 400px) {
  .industry-card {
    height: 220px;
  }
  
  .card-content {
    padding: 15px;
  }
  
  .card-back {
    padding: 20px;
  }
  
  .card-front h3, 
  .card-back h3 {
    font-size: 1.2rem;
  }
  
  .title-main {
    font-size: 1.4rem;
  }
}
/*TYPES OF industries end*/

/* FINAL CONTENT */
/* IT Infrastructure Solutions Section */
.it-infrastructure-section {
  background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
  color: #e6f1ff;
  padding: 5rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  isolation: isolate;
}

.it-infrastructure-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #64ffda;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #64ffda;
}

/* Navigation */
.solutions-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.nav-item {
  background: transparent;
  color: #8892b0;
  border: 1px solid #64ffda;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-item:hover {
  background: rgba(100, 255, 218, 0.1);
  color: #64ffda;
}

.nav-item.active {
  background: #64ffda;
  color: #0a192f;
}

/* Content Panels */
.solutions-content {
  position: relative;
}

.solution-panel {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.solution-panel.active {
  display: block;
}

.panel-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.text-content {
  flex: 1;
  min-width: 300px;
}

.text-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #64ffda;
}

.text-content p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #a8b2d1;
}

.image-content {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 100%;
  height: 300px;
  background: rgba(100, 255, 218, 0.1);
  border: 2px dashed #64ffda;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #64ffda;
}

/* Features */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  flex: 1;
  min-width: 250px;
  background: rgba(100, 255, 218, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 3px solid #64ffda;
}

.feature h4 {
  color: #64ffda;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.feature p {
  margin-bottom: 0;
}

/* Features Grid for AIDC */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-item {
  background: rgba(100, 255, 218, 0.05);
  padding: 1rem;
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.feature-item:hover {
  border-color: #64ffda;
  transform: translateY(-3px);
}

/* AV Sections */
.av-section {
  margin-bottom: 2rem;
}

.av-section h4 {
  color: #64ffda;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.kiosk-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.kiosk-features span {
  background: rgba(100, 255, 218, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .solutions-nav {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-item {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .panel-content {
    flex-direction: column;
  }
  
  .image-placeholder {
    height: 300px;
  }
  /* Mobile-specific fixes for gallery tap effects */
@media (max-width: 767px) {
  .kshivanya-gallery-item {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    cursor: pointer;
  }
  
  .kshivanya-item-overlay {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
  .features {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .text-content h3 {
    font-size: 1.6rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .kiosk-features {
    flex-direction: column;
  }
  
  .kiosk-features span {
    text-align: center;
  }
}

@media (min-width: 2000px) {
  .it-infrastructure-section .container {
    max-width: 1800px;
  }
  
  .section-title {
    font-size: 3.5rem;
  }
  
  .nav-item {
    font-size: 1.2rem;
    padding: 1.2rem 2rem;
  }
  
  .text-content h3 {
    font-size: 2.5rem;
  }
  
  .text-content p {
    font-size: 1.2rem;
  }
  
  .feature h4 {
    font-size: 1.5rem;
  }
  
  .feature p {
    font-size: 1.1rem;
  }
  
  .image-placeholder {
    height: 400px;
    font-size: 1.5rem;
  }
}
/* FINAL CONTENT end*/

/* PANEL ASSEMBLY SERVICES */
 .panel-services {
  padding: 4rem 1rem;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #112240;
}

.panel-container {
  max-width: 1200px;
  margin: 0 auto;
}

.panel-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #0a192f;
  font-weight: 600;
  position: relative;
}

.panel-title:after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00a8cc, transparent);
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.panel-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(10, 25, 47, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.panel-item:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(0, 168, 204, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.panel-item:hover:before {
  animation: panel-shine 1.5s forwards;
}

@keyframes panel-shine {
  0% {
    opacity: 0;
    left: -50%;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    left: 150%;
  }
}

.panel-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 168, 204, 0.2);
  border-color: #00a8cc;
}

.panel-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 168, 204, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.panel-item:hover .panel-icon {
  background: rgba(0, 168, 204, 0.15);
  transform: scale(1.1);
}

.panel-icon svg {
  width: 32px;
  height: 32px;
  fill: #00a8cc;
  transition: all 0.3s ease;
}

.panel-item:hover .panel-icon svg {
  fill: #0a192f;
  transform: rotate(5deg);
}

.panel-item h3 {
  font-size: 1.1rem;
  color: #0a192f;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .panel-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .panel-item {
    padding: 1.8rem 1.2rem;
  }
  
  .panel-icon {
    width: 65px;
    height: 65px;
  }
  
  .panel-icon svg {
    width: 30px;
    height: 30px;
  }
}

@media screen and (max-width: 768px) {
  .panel-services {
    padding: 3rem 1rem;
  }
  
  .panel-title {
    font-size: 1.9rem;
    margin-bottom: 2.5rem;
  }
  
  .panel-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
  }
  
  .panel-item {
    padding: 1.5rem 1rem;
  }
  
  .panel-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.2rem;
  }
  
  .panel-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .panel-item h3 {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .panel-services {
    padding: 2.5rem 1rem;
  }
  
  .panel-title {
    font-size: 1.7rem;
    margin-bottom: 2rem;
  }
  
  .panel-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .panel-item {
    padding: 1.3rem 1rem;
  }
  
  .panel-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 1rem;
  }
  
  .panel-icon svg {
    width: 25px;
    height: 25px;
  }
  
  .panel-item h3 {
    font-size: 0.95rem;
  }
}

/* Import Inter font from Google */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
 /*PANEL ASSEMBLY SERVICES END*/

 /* ENGINEERING SERVICES */
 .engineering-services-horizontal {
  padding: 3rem 1rem;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
  color: #fff;
  overflow: hidden;
}

.engineering-services-horizontal .services-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  color: #e6f1ff;
  font-weight: 600;
  position: relative;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00a8cc, transparent);
}

.services-scroll-container {
  overflow-x: auto;
  padding: 1rem 0;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.services-scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.services-track {
  display: flex;
  justify-content: space-between;
  min-width: 1000px;
  gap: 1.2rem;
  padding: 0.5rem;
}

.service-item {
  flex: 1;
  min-width: 160px;
  background: rgba(17, 34, 64, 0.7);
  border-radius: 12px;
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 168, 204, 0.3);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-item:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.service-item:hover:before {
  animation: shine 1.5s forwards;
}

@keyframes shine {
  0% {
    opacity: 0;
    left: -50%;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    left: 150%;
  }
}

.service-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 168, 204, 0.25);
  border-color: #00a8cc;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 168, 204, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.service-item:hover .service-icon {
  background: rgba(0, 168, 204, 0.2);
  transform: rotateY(180deg);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: #00a8cc;
  transition: all 0.3s ease;
}

.service-item:hover .service-icon svg {
  fill: #e6f1ff;
  transform: rotateY(-180deg);
}

.service-item h3 {
  font-size: 1.1rem;
  color: #e6f1ff;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
  .services-track {
    min-width: 900px;
    gap: 1rem;
  }
  
  .service-item {
    padding: 1.5rem 1rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon svg {
    width: 28px;
    height: 28px;
  }
}

@media screen and (max-width: 992px) {
  .services-track {
    min-width: 800px;
  }
  
  .service-item {
    min-width: 140px;
    padding: 1.3rem 0.8rem;
  }
  
  .service-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 1rem;
  }
  
  .service-icon svg {
    width: 25px;
    height: 25px;
  }
  
  .service-item h3 {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .engineering-services-horizontal {
    padding: 2.5rem 1rem;
  }
  
  .section-title {
    font-size: 1.9rem;
    margin-bottom: 2rem;
  }
  
  .services-track {
    min-width: 700px;
    gap: 0.8rem;
  }
  
  .service-item {
    min-width: 120px;
    padding: 1.2rem 0.6rem;
    border-radius: 10px;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.8rem;
  }
  
  .service-icon svg {
    width: 22px;
    height: 22px;
  }
  
  .service-item h3 {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .engineering-services-horizontal {
    padding: 2rem 0.5rem;
  }
  
  .section-title {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
  }
  
  .services-track {
    min-width: 650px;
    gap: 0.6rem;
  }
  
  .service-item {
    min-width: 100px;
    padding: 1rem 0.5rem;
    border-radius: 8px;
  }
  
  .service-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 0.6rem;
  }
  
  .service-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .service-item h3 {
    font-size: 0.8rem;
  }
}

/* Import Inter font from Google */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
 /*ENGINEERING SERVICES END*/

  /*PANEL GALLERY*/
  /* Kshivanya Gallery Styles */
.kshivanya-gallery {
    width: 100%;
    font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a365d 0%, #2a4a7f 50%, #1a365d 100%
100%
);
    padding: 5rem 1.5rem;
    overflow: hidden;
    position: relative;
}

.kshivanya-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.kshivanya-gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.kshivanya-gallery-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.kshivanya-gallery-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #1a365d);
    border-radius: 2px;
}

.kshivanya-gallery-header p {
    font-size: 1.2rem;
    color: #2c3e50;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.kshivanya-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.kshivanya-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    aspect-ratio: 4/3;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #3498db, #1a365d) border-box;
}

.kshivanya-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.kshivanya-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.kshivanya-gallery-item:hover img {
    transform: scale(1.08);
}

.kshivanya-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 54, 93, 0.9) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: white;
}

.kshivanya-gallery-item:hover .kshivanya-item-overlay {
    opacity: 1;
}

.kshivanya-item-overlay h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.kshivanya-gallery-item:hover .kshivanya-item-overlay h3 {
    transform: translateY(0);
}

.kshivanya-item-overlay p {
    font-size: 1rem;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.kshivanya-gallery-item:hover .kshivanya-item-overlay p {
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .kshivanya-gallery-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .kshivanya-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 18px;
    }
    
    .kshivanya-gallery-header h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .kshivanya-gallery {
        padding: 3rem 1rem;
    }
    
    .kshivanya-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }
    
    .kshivanya-gallery-header h2 {
        font-size: 2rem;
    }
    
    .kshivanya-gallery-header p {
        font-size: 1.1rem;
    }
    
    .kshivanya-item-overlay {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .kshivanya-gallery {
        padding: 2rem 0.5rem;
    }
    
    .kshivanya-gallery-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .kshivanya-gallery-header h2 {
        font-size: 1.8rem;
    }
    
    .kshivanya-item-overlay h3 {
        font-size: 1.2rem;
    }
}

/* Very large screens */
@media (min-width: 2000px) {
    .kshivanya-gallery-container {
        max-width: 1800px;
    }
    
    .kshivanya-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
    }
    
    .kshivanya-gallery-header h2 {
        font-size: 3.2rem;
    }
    
    .kshivanya-gallery-header p {
        font-size: 1.4rem;
    }
}

/* Animation for scroll appearance */
@keyframes kshivanyaFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure images are always visible */
.kshivanya-gallery-item {
    background-color: #f8f9fa;
}

.kshivanya-gallery-item img {
    opacity: 1;
    filter: none;
}
   /*PANEL GALLERY END*/