/* Gudiyam Agro Industries Custom Styles */
:root {
  --gudiyam-green: #1b5e20;
  --gudiyam-light-green: #4caf50;
  --gudiyam-gold: #ffb300;
  --gudiyam-red: #c62828;
  --gudiyam-dark: #0f2910;
  --gudiyam-cream: #f9f8f3;
  --gudiyam-border: #e2e8f0;
}

.gudiyam-brand-logo {
  max-height: 65px;
  width: auto;
  transition: transform 0.3s ease;
}

.gudiyam-brand-logo:hover {
  /* transform: scale(1.02); */
}

.cin-badge {
  background: rgba(46, 125, 50, 0.15);
  color: #f6fff6;
  border: 1px solid rgba(46, 125, 50, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header-top-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.header-top-main ul.header-location li a {
  font-size: 0.85rem;
  color: #e2f0d9;
}

.gudiyam-service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef3eb;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gudiyam-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(27, 94, 32, 0.12);
  border-color: #4caf50;
}

.gudiyam-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  color: #1b5e20;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.gudiyam-service-card:hover .gudiyam-card-icon {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  color: #ffffff;
  transform: rotate(5deg) scale(1.05);
}

.gudiyam-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #388e3c;
  background: #f1f8e9;
  padding: 3px 10px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 12px;
  width: fit-content;
}

.gudiyam-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #132c12;
  margin-bottom: 14px;
  line-height: 1.35;
}

.gudiyam-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.gudiyam-card-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: #4a5568;
  line-height: 1.5;
}

.gudiyam-card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2e7d32;
  font-weight: bold;
}

.gudiyam-pillar-badge {
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
  color: white;
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 15px;
}

.gudiyam-hero-content {
  background: rgba(15, 41, 16, 0.65);
  backdrop-filter: blur(8px);
  padding: 45px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.gudiyam-contact-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  height: 100%;
  transition: transform 0.3s ease;
}

.gudiyam-contact-box:hover {
  transform: translateY(-5px);
}

.gudiyam-contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.student-visit-banner {
  background: linear-gradient(135deg, #1b5e20 0%, #33691e 100%);
  border-radius: 24px;
  padding: 50px 40px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(27, 94, 32, 0.25);
}

.student-visit-banner::after {
  content: "🎓";
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-size: 12rem;
  opacity: 0.12;
  pointer-events: none;
}

.info-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.info-badge-item {
  background: #f1f8e9;
  color: #2e7d32;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid #c8e6c9;
}

/* Gudiyam Custom Breadcrumb */
.gudiyam-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.gudiyam-breadcrumb li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
}

.gudiyam-breadcrumb li a {
  color: #ffb300;
  text-decoration: none;
}

.gudiyam-breadcrumb li a:hover {
  text-decoration: underline;
}

.gudiyam-breadcrumb li.active {
  color: #ffffff;
}