.container-about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.about-hero {
  min-height: 50vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}

.about-hero-content {
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-weight: 300;
}

.about-hero h1 {
  font-size: 4.5rem;
  font-weight: 700;
  color: #FFD700;
  margin: 0;
  letter-spacing: 2px;
}

/* Main Content Section */
.about-content-section {
  padding: 100px 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-left {
  position: relative;
}

/* About Image with Overlapping Cards */
.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
}

.about-main-image {
  width: 100%;
  height: 660px;
  display: block;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.overlap-cards-container {
    position: absolute;
    left: 404px;
    bottom: 60px;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.overlap-card {
  width: 440px;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.yellow-overlap-card {
  background: #FFD600;
}

.blue-overlap-card {
  background: #5C6BC0;
  color: white;
}

.overlap-card-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  margin-bottom: 16px;
}

.overlap-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.overlap-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.yellow-overlap-card h4 {
  color: #1a237e;
}

.overlap-card p {
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

.yellow-overlap-card p {
  color: #1a237e;
}

/* Right Side Content */
.about-right {
  padding-top: 20px;
}

.about-heading {
  margin-bottom: 24px;
}

.heading-with-line {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.red-line {
  width: 4px;
  height: 80px;
  background: #E53935;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 4px;
}

.heading-text {
  flex: 1;
}

.about-title-red {
  font-size: 22px;
  color: #E53935;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.about-title-blue {
  font-size: 36px;
  color: #3949AB;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.about-description {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 32px;
}

.about-years-box {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.years-big {
  font-size: 64px;
  color: #E53935;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.years-divider {
  width: 2px;
  height: 60px;
  background: #ddd;
  display: block;
}

.years-label {
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
  .container-about {
    padding: 0 1.5rem;
  }

  .about-grid {
    gap: 40px;
  }

  .about-image-wrapper {
    max-width: 500px;
  }

  .about-main-image {
    height: 600px;
  }

  .overlap-cards-container {
    right: -140px;
    bottom: 50px;
  }

  .overlap-card {
    width: 380px;
  }
}

@media screen and (max-width: 1024px) {
  .about-content-section {
    padding: 60px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image-wrapper {
    max-width: 100%;
    margin: 0 auto;
  }

  .about-main-image {
    height: 500px;
  }

  .overlap-cards-container {
    position: static;
    right: auto;
    bottom: auto;
    margin-top: 30px;
    flex-direction: column;
    gap: 20px;
  }

  .overlap-card {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-right {
    padding-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .container-about {
    padding: 0 1rem;
  }

  .about-hero {
    min-height: 40vh;
  }

  .about-hero h1 {
    font-size: 3rem;
  }

  .about-content-section {
    padding: 40px 0;
  }

  .about-main-image {
    height: 400px;
  }

  .overlap-card {
    padding: 20px;
  }

  .overlap-card h4 {
    font-size: 13px;
  }

  .overlap-card p {
    font-size: 11px;
  }

  .red-line {
    height: 60px;
  }

  .about-title-red {
    font-size: 18px;
  }

  .about-title-blue {
    font-size: 28px;
  }

  .about-description {
    font-size: 14px;
  }

  .years-big {
    font-size: 48px;
  }

  .years-divider {
    height: 50px;
  }

  .years-label {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }

  .about-content-section {
    padding: 30px 0;
  }

  .about-grid {
    gap: 30px;
  }

  .about-main-image {
    height: 350px;
    border-radius: 15px;
  }

  .overlap-cards-container {
    margin-top: 20px;
    gap: 15px;
  }

  .overlap-card {
    padding: 18px;
    border-radius: 12px;
  }

  .overlap-card-icon {
    width: 40px;
    height: 40px;
    padding: 10px;
    margin-bottom: 12px;
  }

  .overlap-card h4 {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .overlap-card p {
    font-size: 10px;
  }

  .heading-with-line {
    gap: 12px;
  }

  .red-line {
    width: 3px;
    height: 50px;
  }

  .about-title-red {
    font-size: 16px;
  }

  .about-title-blue {
    font-size: 24px;
  }

  .about-description {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .about-years-box {
    gap: 16px;
    margin-top: 24px;
  }

  .years-big {
    font-size: 40px;
  }

  .years-divider {
    height: 40px;
  }

  .years-label {
    font-size: 13px;
  }
}

/* Mission Vision Section */
.mission-vision-section {
  position: relative;
  background: #FFFFFF;
  padding: 80px 0 120px 0;
  overflow: visible;
  margin-bottom: 0;
}

.mission-vision-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.yellow-bg-overlay {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.mission-vision-content {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #FFD600 0%, #FFC400 100%);
  border-radius: 50px;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  overflow: visible;
}

.mission-vision-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 950px;
  margin: 0 auto;
  padding: 4rem 4rem 3rem;
}

.mv-card {
  text-align: left;
}

.mv-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  background: white;
  border-radius: 50%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mv-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(2613%) hue-rotate(349deg) brightness(92%) contrast(93%);
}

.mv-divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #E53935, transparent);
  margin-bottom: 20px;
  border-radius: 2px;
}

.mv-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #E53935;
  margin: 0 0 18px 0;
  line-height: 1.2;
}

.mv-card p {
  font-size: 16px;
  line-height: 1.9;
  color: #2a2a2a;
  margin: 0;
}

.mv-card p strong {
  font-weight: 700;
  color: #1a237e;
}

.tractor-illustration {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 10;
  overflow: visible;
  padding: 0 20px;
}

.tractor-image {
  width: 100%;
  height: auto;
  display: block;
  max-height: none;
  object-fit: contain;
  margin-top: -200px;
  margin-bottom: -288px;
  position: relative;
  z-index: 10;
  animation: tractorDrive 12s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

@keyframes tractorDrive {
  0% {
    transform: translateX(-40px) translateY(0);
  }
  25% {
    transform: translateX(-20px) translateY(-3px);
  }
  50% {
    transform: translateX(0) translateY(0);
  }
  75% {
    transform: translateX(20px) translateY(-3px);
  }
  100% {
    transform: translateX(40px) translateY(0);
  }
}

/* Responsive Design for Mission Vision */
@media screen and (max-width: 1200px) {
  .mission-vision-section {
    padding: 60px 0 100px 0;
  }

  .mission-vision-content {
    max-width: 950px;
    border-radius: 45px;
  }

  .mission-vision-cards {
    gap: 60px;
    padding: 3.5rem 3rem 2.5rem;
  }

  .tractor-image {
    margin-top: -180px;
    margin-bottom: -250px;
  }
}

@media screen and (max-width: 1024px) {
  .mission-vision-section {
    padding: 60px 0 80px 0;
  }

  .mission-vision-content {
    max-width: 90%;
    border-radius: 40px;
  }

  .mission-vision-cards {
    gap: 50px;
    padding: 3rem 2.5rem 2rem;
  }

  .mv-icon {
    width: 60px;
    height: 60px;
    padding: 12px;
  }

  .mv-card h3 {
    font-size: 24px;
  }

  .mv-card p {
    font-size: 15px;
  }

  .tractor-image {
    width: 90%;
    margin-top: -150px;
    margin-bottom: -200px;
  }

  @keyframes tractorDrive {
    0% {
      transform: translateX(-40px);
    }
    50% {
      transform: translateX(40px);
    }
    100% {
      transform: translateX(-40px);
    }
  }
}

@media screen and (max-width: 768px) {
  .mission-vision-section {
    padding: 50px 0 0 0;
  }

  .mission-vision-content {
    max-width: 95%;
    border-radius: 35px;
  }

  .mission-vision-cards {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 2.5rem 2rem 2rem;
  }

  .mv-icon {
    width: 55px;
    height: 55px;
    padding: 12px;
  }

  .mv-divider {
    width: 80px;
    height: 3px;
  }

  .mv-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .mv-card p {
    font-size: 13px;
    line-height: 1.7;
  }

  .tractor-illustration {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .mission-vision-section {
    padding: 40px 0 0 0;
  }

  .mission-vision-content {
    max-width: 95%;
    border-radius: 30px;
  }

  .mission-vision-cards {
    padding: 2rem 1.5rem 1.5rem;
    gap: 30px;
  }

  .mv-icon {
    width: 50px;
    height: 50px;
    padding: 10px;
    margin-bottom: 15px;
  }

  .mv-divider {
    width: 70px;
    height: 3px;
    margin-bottom: 15px;
  }

  .mv-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .mv-card p {
    font-size: 12px;
    line-height: 1.6;
  }

  .tractor-illustration {
    display: none;
  }
}

@media screen and (max-width: 360px) {
  .mission-vision-content {
    border-radius: 25px;
  }

  .mission-vision-cards {
    padding: 1.8rem 1.2rem 1.2rem;
    gap: 25px;
  }

  .mv-card h3 {
    font-size: 16px;
  }

  .mv-card p {
    font-size: 11px;
  }

  .tractor-illustration {
    display: none;
  }
}

/* Achievements Section */
.achievements-section {
  background: #FFD600;
  padding: 60px 0;
  margin: 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  z-index: 1;
}

.achievements-section .container-about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.achievements-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.achievements-left {
  flex: 1;
}

.achievements-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #666;
  margin: 0 0 16px 0;
}

.achievements-title {
  font-size: 42px;
  font-weight: 700;
  color: #3949AB;
  margin: 0;
  line-height: 1.3;
}

.achievements-stats {
  display: flex;
  gap: 80px;
  flex: 1;
  justify-content: flex-end;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #3949AB;
  margin: 0 0 8px 0;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Responsive Design for Achievements */
@media screen and (max-width: 1024px) {
  .achievements-section {
    padding: 80px 0 60px 0;
  }

  .achievements-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .achievements-stats {
    width: 100%;
    justify-content: space-between;
    gap: 40px;
  }

  .stat-number {
    font-size: 40px;
  }
}

@media screen and (max-width: 768px) {
  .achievements-section {
    padding: 60px 0 50px 0;
  }

  .achievements-title {
    font-size: 32px;
  }

  .achievements-stats {
    flex-direction: column;
    gap: 30px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .achievements-section {
    padding: 50px 0 40px 0;
  }

  .achievements-label {
    font-size: 11px;
  }

  .achievements-title {
    font-size: 26px;
  }

  .achievements-stats {
    gap: 24px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 12px;
  }
}

/* Team Section */
.team-section{
    background:#f5f5f5;
    padding:80px 0;
}

.container-about{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:flex-start;
    gap:400px;
}

/* LEFT TITLE */
.team-header{
    min-width:260px;
    position:relative;
}

.team-header::before{
    content:"";
    position:absolute;
    left:-20px;
    top:10px;
    width:4px;
    height:90px;
    background:#e53935;
}

.team-subtitle{
    color:#5c6bc0;
    font-size:20px;
    margin-bottom:10px;
}

.team-title{
    color:#e53935;
    font-size:42px;
    font-weight:700;
    line-height:1.1;
}

/* TEAM GRID */
.team-grid{
    display:flex;
    gap:40px;
}

/* CARD */
.team-card{
    width:240px;
    text-align:center;
}

/* IMAGE */
.team-image{
    position:relative;
}

.team-image img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:16px;
}

/* BADGE */
.team-badge{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    background:#e53935;
    color:#fff;
    padding:8px 0;
    font-weight:600;
}

/* ROLE */
.team-role{
    margin-top:14px;
    font-size:14px;
    color:#777;
}

/* NAME */
.team-name{
    font-size:16px;
    font-weight:600;
    color:#e53935;
}

/* Responsive Design for Team */
@media screen and (max-width: 1024px) {
  .team-section .container-about {
    gap: 60px;
  }

  .team-title {
    font-size: 44px;
  }
}

@media screen and (max-width: 768px) {
  .team-section {
    padding: 60px 0;
  }

  .team-section .container-about {
    flex-direction: column;
    align-items: flex-start;
    gap: 400px;
  }

  .team-header {
    padding-left: 20px;
  }

  .team-subtitle {
    font-size: 20px;
  }

  .team-title {
    font-size: 38px;
  }

  .team-grid {
    width: 100%;
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .team-section {
    padding: 50px 0;
  }

  .team-subtitle {
    font-size: 18px;
  }

  .team-title {
    font-size: 32px;
  }

  .team-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .team-card {
    width: 220px;
  }

  .team-image {
    width: 220px;
    height: 260px;
  }

  .team-badge {
    padding: 10px 14px;
    font-size: 14px;
  }
}



/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablets and below (1024px) */
@media screen and (max-width: 1024px) {
  .container-about {
    padding: 0 1.5rem;
  }

  .about-hero h1 {
    font-size: 3.5rem;
  }

  .about-content-section {
    padding: 80px 0;
  }

  .about-grid {
    gap: 50px;
  }

  .overlap-cards-container {
    left: 350px;
  }

  .overlap-card {
    width: 380px;
  }
}

/* Mobile landscape and tablets (768px) */
@media screen and (max-width: 768px) {
  .container-about {
    padding: 0 1rem;
  }

  /* Hero */
  .about-hero {
    min-height: 40vh;
  }

  .about-hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }

  /* About Content */
  .about-content-section {
    padding: 60px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrapper {
    max-width: 100%;
  }

  .about-main-image {
    height: 500px;
  }

  .overlap-cards-container {
    position: static;
    flex-direction: column;
    margin-top: 30px;
  }

  .overlap-card {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-title-red {
    font-size: 20px;
  }

  .about-title-blue {
    font-size: 30px;
  }

  .about-description {
    font-size: 15px;
  }

  .years-big {
    font-size: 52px;
  }

  /* Mission Vision */
  .mission-vision-cards {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 3rem 1.5rem;
  }

  .tractor-image {
    max-height: 300px;
    margin-top: 100px;
  }

  /* Achievements */
  .achievements-content {
    flex-direction: column;
    gap: 30px;
  }

  .achievements-title {
    font-size: 32px;
  }

  .achievements-stats {
    width: 100%;
    flex-direction: column;
    gap: 25px;
  }

  .stat-number {
    font-size: 40px;
  }

  /* Team */
  .team-section .container-about {
    flex-direction: column;
    gap: 40px;
  }

  .team-grid {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile portrait (480px) */
@media screen and (max-width: 480px) {
  .container-about {
    padding: 0 1rem;
  }

  /* Hero */
  .about-hero {
    min-height: 35vh;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  /* About Content */
  .about-content-section {
    padding: 40px 0;
  }

  .about-grid {
    gap: 30px;
  }

  .about-main-image {
    height: 400px;
    border-radius: 15px;
  }

  .overlap-cards-container {
    margin-top: 20px;
    gap: 15px;
  }

  .overlap-card {
    padding: 20px;
    border-radius: 12px;
  }

  .overlap-card-icon {
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  .overlap-card h4 {
    font-size: 13px;
  }

  .overlap-card p {
    font-size: 11px;
  }

  .red-line {
    width: 3px;
    height: 50px;
  }

  .about-title-red {
    font-size: 18px;
  }

  .about-title-blue {
    font-size: 26px;
  }

  .about-description {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .years-big {
    font-size: 44px;
  }

  .years-divider {
    height: 45px;
  }

  .years-label {
    font-size: 13px;
  }

  /* Mission Vision */
  .mission-vision-section {
    padding: 30px 0 0 0;
  }

  .mission-vision-content {
    border-radius: 40px;
  }

  .mission-vision-cards {
    padding: 2.5rem 1rem;
    gap: 30px;
  }

  .mv-icon {
    width: 45px;
    height: 45px;
  }

  .mv-divider {
    width: 50px;
    height: 2px;
  }

  .mv-card h3 {
    font-size: 20px;
  }

  .mv-card p {
    font-size: 13px;
  }

  .tractor-image {
    max-height: 220px;
    margin-top: 80px;
    margin-bottom: -80px;
  }

  /* Achievements */
  .achievements-section {
    padding: 50px 0;
  }

  .achievements-label {
    font-size: 11px;
  }

  .achievements-title {
    font-size: 26px;
  }

  .achievements-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 12px;
  }

  /* Team */
  .team-section {
    padding: 50px 0;
  }

  .team-header {
    padding-left: 0;
  }

  .team-subtitle {
    font-size: 18px;
  }

  .team-title {
    font-size: 36px;
  }

  .team-grid {
    flex-direction: column;
    gap: 40px;
  }

  .team-card {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .team-image {
    width: 100%;
    height: 320px;
  }

  .team-badge {
    font-size: 13px;
    padding: 8px 14px;
  }
}

/* Extra small mobile (360px) */
@media screen and (max-width: 360px) {
  .about-hero h1 {
    font-size: 1.75rem;
  }

  .about-main-image {
    height: 350px;
  }

  .about-title-blue {
    font-size: 24px;
  }

  .years-big {
    font-size: 38px;
  }

  .achievements-title {
    font-size: 22px;
  }

  .stat-number {
    font-size: 32px;
  }

  .team-title {
    font-size: 32px;
  }

  .team-image {
    height: 280px;
  }
}
