/* ========== OUR TEAM FULL SCREEN (prefix 'to-', 'ts-') ========== */

/* Full Screen Sections */
.to-section-full,
.ts-section-full {
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 1rem 0;
  background: var(--bg-color);
  position: relative;
  overflow: hidden;
}

/* Alternating background for visual separation */
.ts-section-full:nth-child(even) {
  background: var(--grey-soft);
}

/* Full Width Containers */
.to-container-full,
.container-full {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

/* TO Hero Section */
.to-section-full {
  background: linear-gradient(145deg, var(--bg-color), var(--bg-blue-soft));
}

.to-badge-wrapper {
  text-align: center;
  margin-bottom: 1.5rem;
}

.to-badge {
  background: var(--primary-navy);
  color: var(--white-color);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 0.6rem 2.5rem;
  border-radius: 50px;
  display: inline-block;
  text-transform: uppercase;
  box-shadow: 0 5px 15px var(--primary-navy-10);
}

.to-heading {
  text-align: center;
  margin-bottom: 1rem;
}

.to-heading-main {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.to-heading-sub {
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent-slate);
  line-height: 1.2;
}

.to-content-grid-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem 0;
}

.to-content-left-full,
.to-content-right-full {
  background: var(--white-color);
  border-radius: 30px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px -20px var(--primary-navy-10);
  border: 1px solid var(--border-color);
}

.to-paragraph-full {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 0;
}

.to-dots-full {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(var(--primary-navy) 2px, transparent 2px);
  background-size: 25px 25px;
  opacity: 0.03;
  z-index: 1;
}

/* ===== COMPLETELY FIXED IMAGE STYLES ===== */

/* Image container - maintains square shape */
.ts-image-container-full {
  width: 280px;
  height: 280px;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 50px -30px var(--light-brown);
  border: 1px solid var(--sky-grey);
  background: var(--of-white);
}

/* Image crop - positions image precisely */
.ts-image-crop-full {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: block;
}

.ts-image-crop-full img {
  position: absolute;
  width: 100%;
  height: auto;
  min-height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 0%;
  transition: all 0.3s ease;
}

/* Individual adjustments for each team member */
.ts-image-kevin img {
  object-position: center 0%; /* Align to top - no empty space */
  top: 0;
  transform: scale(1);
}

.ts-image-vivek img {
  object-position: center 0%;
  top: 0;
  transform: scale(1);
}

.ts-image-gaurav img {
  object-position: center 0%;
  top: 0;
  transform: scale(1);
}

.ts-image-shailen img {
  object-position: center 0%;
  top: 0;
  transform: scale(1);
}

/* Hover effect */
.ts-image-crop-full:hover img {
  transform: scale(1.02);
}

/* Profile Image Container */
.ts-profile-image-full {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* TS Profile Sections */
.ts-profile-grid-full {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.ts-profile-reverse-full {
  grid-template-columns: 2fr 1fr;
}

/* Profile Content - Adjusted for better spacing */
.ts-profile-content-full {
  padding: 2rem;
}

.ts-profile-icon-full {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.ts-profile-name-full {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.ts-profile-title-full {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent-slate);
  margin-bottom: 0.75rem;
}

.ts-profile-credentials-full {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 1.5rem;
  background: var(--primary-navy-soft);
  display: inline-block;
  padding: 0.4rem 1.5rem;
  border-radius: 30px;
}

.ts-profile-divider-full {
  width: 80px;
  height: 3px;
  background: var(--primary-navy);
  margin: 0.5rem 0;
  opacity: 0.3;
}

.ts-profile-bio-full {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 0;
  max-width: 600px;
}

/* ===== FIXED LEADERSHIP SECTION - Perfect spacing ===== */

/* Leadership Section */
.ts-leadership-full {
  background: linear-gradient(145deg, var(--primary-navy), var(--primary-navy-light));
  border-radius: 60px;
  padding: 3rem;
  text-align: center;
  color: var(--white-color);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.ts-leadership-full::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, var(--border-white-10) 0%, transparent 70%);
  pointer-events: none;
}

.ts-leadership-header-full {
  margin-bottom: 2rem;
}

.ts-leadership-title-full {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.ts-leadership-content-full {
  max-width: 700px;
  margin: 0 auto;
}

.ts-leadership-text-full {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* Perfectly spaced values */
.ts-leadership-values-full {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 1.5rem 0;
  letter-spacing: 1px;
  color: var(--white-color);
  line-height: 1.3;
}

.ts-leadership-decoration-full {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.ts-leadership-decoration-full i {
  font-size: 2rem;
  opacity: 0.3;
  transition: all 0.3s ease;
}

.ts-leadership-decoration-full i:hover {
  opacity: 0.8;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1200px) {
  .to-heading-main {
    font-size: 3rem;
  }
  .to-heading-sub {
    font-size: 2.5rem;
  }
  
  .ts-profile-grid-full {
    gap: 2rem;
  }
  
  .ts-profile-name-full {
    font-size: 2rem;
  }
  
  .ts-image-container-full {
    width: 250px;
    height: 250px;
  }
  
  .ts-leadership-title-full {
    font-size: 2.5rem;
  }
  
  .ts-leadership-values-full {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .to-content-grid-full {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .ts-profile-grid-full,
  .ts-profile-reverse-full {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .ts-profile-content-full {
    padding: 1.5rem;
    order: 2;
    text-align: center;
  }
  
  .ts-profile-reverse-full .ts-profile-content-full {
    padding: 1.5rem;
  }
  
  .ts-profile-image-full {
    order: 1;
    display: flex;
    justify-content: center;
  }
  
  .ts-image-container-full {
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }
  
  .ts-profile-divider-full {
    margin-left: auto;
    margin-right: auto;
  }
  
  .ts-profile-bio-full {
    max-width: 100%;
    text-align: left;
  }
  
  .ts-leadership-full {
    padding: 3rem 2rem;
  }
  
  .ts-leadership-text-full {
    font-size: 1.1rem;
  }
  
  .ts-leadership-values-full {
    font-size: 1.8rem;
    margin: 1.2rem 0;
  }
}

@media (max-width: 768px) {
  .to-section-full,
  .ts-section-full {
    padding: 2rem 0;
  }
  
  .container-full {
    padding: 0 1.5rem;
  }
  
  .to-heading-main {
    font-size: 2.2rem;
  }
  
  .to-heading-sub {
    font-size: 1.8rem;
  }
  
  .to-content-left-full,
  .to-content-right-full {
    padding: 1.8rem;
  }
  
  .ts-image-container-full {
    width: 200px;
    height: 200px;
  }
  
  .ts-profile-name-full {
    font-size: 1.8rem;
  }
  
  .ts-profile-title-full {
    font-size: 1.1rem;
  }
  
  .ts-profile-credentials-full {
    font-size: 0.9rem;
    padding: 0.3rem 1.2rem;
  }
  
  .ts-profile-bio-full {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .ts-leadership-full {
    padding: 2.5rem 1.5rem;
    border-radius: 40px;
  }
  
  .ts-leadership-title-full {
    font-size: 2rem;
  }
  
  .ts-leadership-values-full {
    font-size: 1.6rem;
    margin: 1rem 0;
  }
  
  .ts-leadership-decoration-full {
    gap: 1rem;
  }
  
  .ts-leadership-decoration-full i {
    font-size: 1.5rem;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .ts-image-container-full {
    width: 180px;
    height: 180px;
  }
  
  .ts-profile-name-full {
    font-size: 1.6rem;
  }
  
  .ts-profile-title-full {
    font-size: 1rem;
  }
  
  .ts-profile-bio-full {
    font-size: 0.9rem;
  }
  
  .ts-leadership-values-full {
    font-size: 1.4rem;
  }
}

/* Animation for cards */
@keyframes ts-fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ts-profile-grid-full {
  animation: ts-fadeIn 0.8s ease-out;
}


/* ========== IMPROVED TO HERO SECTION - PREMIUM DESIGN ========== */

.to-content-premium {
    max-width: 1000px;
    margin: 2rem auto 0;
    background: linear-gradient(145deg, var(--white-color), #fff);
    border-radius: 50px;
    padding: 3.5rem;
    box-shadow: 0 40px 70px -30px rgba(19, 41, 75, 0.25);
    border: 1px solid rgba(19, 41, 75, 0.1);
    position: relative;
    overflow: hidden;
}

/* Decorative accent line */
.to-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-navy), #4a6fa5, var(--primary-navy));
}

/* Statement block */
.to-statement-block {
    margin-bottom: 2.5rem;
    position: relative;
}

.to-statement-text {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--primary-navy);
    font-weight: 500;
    letter-spacing: -0.01em;
    position: relative;
    padding-left: 2rem;
    border-left: 6px solid var(--primary-navy);
    margin-bottom: 0;
    font-style: normal;
}

/* Mission card */
.to-mission-card {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1e3a5f 100%);
    border-radius: 30px;
    padding: 2.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 25px 40px -20px var(--primary-navy);
}

.to-mission-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    flex-shrink: 0;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.to-mission-content {
    flex: 1;
}

.to-mission-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.3rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.to-mission-text {
    color: white;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.95;
}

/* Meta footer */
.to-meta-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 1rem;
}

.to-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 500;
}

.to-meta-item i {
    color: var(--primary-navy);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .to-content-premium {
        padding: 3rem;
    }
    
    .to-statement-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .to-content-premium {
        padding: 2.5rem 1.8rem;
        border-radius: 40px;
    }
    
    .to-statement-text {
        font-size: 1.2rem;
        padding-left: 1.5rem;
    }
    
    .to-mission-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 1.8rem;
    }
    
    .to-mission-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .to-mission-text {
        font-size: 1rem;
    }
    
    .to-meta-footer {
        gap: 1.2rem;
    }
}

@media (max-width: 480px) {
    .to-content-premium {
        padding: 2rem 1.2rem;
    }
    
    .to-statement-text {
        font-size: 1.1rem;
    }
    
    .to-meta-footer {
        flex-direction: column;
        gap: 0.8rem;
    }
}

