/* Extracted Styles for OpenIoT Websites */

.bg-light-soft {
  background-color: #f9fbfa;
}

.shadow-soft {
  box-shadow: 0 10px 30px rgba(46, 173, 98, 0.08);
}

.transition-all {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
  border-color: #2EAD62 !important;
}

.hover-lift:hover .icon-box {
  background: #2EAD62 !important;
  border-color: #2EAD62 !important;
}

.hover-lift:hover .icon-box i {
  color: white !important;
}

.h-title {
  color: #101318;
  font-size: 1.15rem;
}

.line-height-relaxed {
  line-height: 1.6;
}

.slider-card {
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.active-card {
  transform: scale(1.05) translateX(0);
  z-index: 10;
  opacity: 1;
  box-shadow: 0 15px 40px rgba(46, 173, 98, 0.15) !important;
}

.prev-card {
  transform: translateX(-450px) scale(0.65);
  opacity: 0.6;
  z-index: 5;
  filter: blur(1px);
}

.next-card {
  transform: translateX(450px) scale(0.65);
  opacity: 0.6;
  z-index: 5;
  filter: blur(1px);
}

.hidden-card {
  transform: scale(0.8);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.slider-nav-btn:hover {
  background-color: #f8f9fa;
  transform: translateY(-50%) scale(1.1) !important;
}

@media (max-width: 992px) {
  .slider-container {
    height: auto !important;
    min-height: 500px;
  }

  .slider-card {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 2rem;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    pointer-events: auto !important;
  }

  .cards-wrapper {
    flex-direction: column;
    display: block !important;
  }

  .prev-btn,
  .next-btn {
    display: none !important;
  }
}

body {
  font-family: 'Inter', sans-serif !important;
}

.section-padding {
  padding: 6rem 0;
}

.company-logo-text {
  color: #2c4a6e;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 1.5rem;
}

.description-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
}

.description-text p {
  margin-bottom: 2rem;
}

.description-text strong {
  color: #1a1a1a;
  font-weight: 600;
}

.section-padding {
  padding: 5rem 0;
}

.logo-container {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08) !important;
}

.description-text p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

@media (max-width: 991px) {
  .description-text p {
    text-align: left;
  }
}

.job-card {
  transition: all 0.3s ease;
}

.job-card:hover {
  background: #f0f2f5 !important;
  transform: translateY(-2px);
}

.section-padding {
  padding: 5rem 0;
}

:root {
  --brand-green: #2EAD62;
  --brand-dark: #1a171b;
  --brand-light: #f8fafc;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fff;
}

.contact-hero {
  position: relative;
  padding: 120px 0 80px;
  background: #f8fafc;
  min-height: calc(100vh - 80px);
  /* Fill screen but allow scroll */
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Floating elements adjustments */
.illustration-envelope {
  position: absolute;
  left: 8%;
  bottom: 15%;
  width: 140px;
  height: 100px;
  background: var(--brand-green);
  border-radius: 12px;
  transform: rotate(-15deg);
  box-shadow: 0 15px 35px rgba(46, 173, 98, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
  overflow: hidden;
}

.illustration-plane {
  position: absolute;
  right: 12%;
  top: 25%;
  z-index: 1;
  animation: float-reverse 7s ease-in-out infinite;
}

.curve-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 100%;
  pointer-events: none;
  opacity: 0.1;
}

@keyframes float {

  0%,
  100% {
    transform: translatey(0) rotate(-15deg);
  }

  50% {
    transform: translatey(-20px) rotate(-10deg);
  }
}

@keyframes float-reverse {

  0%,
  100% {
    transform: translatey(0) rotate(0deg);
  }

  50% {
    transform: translatey(25px) rotate(5deg);
  }
}

.contact-page-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
  max-width: 864px;
  margin: 0 auto;
  border: 1px solid #f1f5f9;
}

.contact-page-card h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 2rem;
  text-align: left;
}

.form-label {
  font-weight: 600;
  color: #64748b;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.required-label::after {
  content: " *";
  color: #dc3545;
  font-weight: bold;
}

.form-control,
.form-select {
  border: 1px solid #e2e8f0;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  background-color: #fff;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 4px rgba(46, 173, 98, 0.1);
}

.btn-submit {
  background-color: var(--brand-green);
  color: white;
  border: none;
  padding: 0.9rem;
  border-radius: 10px;
  font-weight: 700;
  width: 100%;
  margin-top: 0.5rem;
  transition: all 0.3s;
  font-size: 1.05rem;
}

.btn-submit:hover {
  background-color: #258f51;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(46, 173, 98, 0.2);
  color: white;
}

@media (max-width: 768px) {
  .contact-card {
    padding: 2rem;
  }

  .illustration-envelope,
  .illustration-plane {
    display: none;
  }
}

/* Success Modal Styles */
.modal-success .modal-content {
  border: none;
  border-radius: 24px;
  padding: 3rem 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.success-icon-circle {
  width: 72px;
  height: 72px;
  background-color: var(--brand-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2.25rem;
}

.modal-success h2 {
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.modal-success p {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.6;
}

.policy-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 3rem;
}

.policy-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid #f8f9fa;
  padding-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.policy-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #34495e;
  margin-top: 1.75rem;
  margin-bottom: 1rem;
}

.policy-content p,
.policy-content li {
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
}

.policy-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
}

.policy-content li {
  margin-bottom: 0.75rem;
}

.highlight-box {
  background: #f8f9fa;
  border-left: 4px solid #2ead62;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
}

.highlight-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2ead62;
  margin-bottom: 0.5rem;
}

.highlight-box p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid #eee;
}

.bg-light-soft {
  background-color: #f9fbfa;
}

.shadow-soft {
  box-shadow: 0 10px 30px rgba(46, 173, 98, 0.08);
}

.transition-all {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
  border-color: #2EAD62 !important;
}

.h-title {
  color: #101318;
  font-size: 1.15rem;
}

.line-height-relaxed {
  line-height: 1.6;
}

/* Slider Specific Styles */
.slider-card {
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.active-card {
  transform: scale(1.05) translateX(0);
  z-index: 10;
  opacity: 1;
  box-shadow: 0 15px 40px rgba(46, 173, 98, 0.15) !important;
}

.prev-card {
  transform: translateX(-450px) scale(0.65);
  opacity: 0.6;
  z-index: 5;
  filter: blur(1px);
}

.next-card {
  transform: translateX(450px) scale(0.65);
  opacity: 0.6;
  z-index: 5;
  filter: blur(1px);
}

.hidden-card {
  transform: scale(0.8);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.slider-nav-btn:hover {
  background-color: #f8f9fa;
  transform: translateY(-50%) scale(1.1) !important;
}

@media (max-width: 992px) {
  .slider-container {
    height: auto !important;
    min-height: 500px;
  }

  .slider-card {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 2rem;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    pointer-events: auto !important;
  }

  .cards-wrapper {
    flex-direction: column;
    display: block !important;
  }

  .prev-btn,
  .next-btn {
    display: none !important;
  }
}

/* Left Content Styling */
.value-title {
  color: #1a1a1a;
  font-weight: 800;
  margin-bottom: 2rem;
}

.value-highlight {
  color: #2ead62;
  font-weight: 700;
}

.contact-note {
  border-left: 4px solid #2ead62;
  padding-left: 1.5rem;
  color: #6b7280;
  font-style: italic;
}

/* Edge Image Styling */
.edge-product-img {
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(46, 173, 98, 0.15);
  transition: transform 0.3s ease;
  width: 100%;
  height: auto;
}

.edge-product-img:hover {
  transform: translateY(-5px);
}

.arch-clean-img {
  width: 90%;
  height: auto;
  display: block;
  margin: 0;
  box-shadow: none !important;
  border-radius: 0 !important;
  transition: none !important;
}

.arch-clean-img:hover {
  transform: none !important;
}

/* Architecture Diagram Styles - Professional Redesign */
.arch-diagram-container {
  background: #f8fafc;
  padding: 50px;
  border: 1px solid #e2e8f0;
  border-radius: 32px;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.arch-group-box {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 30px;
  position: relative;
  margin-bottom: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.arch-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}

.arch-node {
  background: #f1f5f9;
  color: #1e293b;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.arch-node i {
  color: #2ead62;
}

.arch-node-core {
  background: #022c22;
  color: #4ade80;
  border: none;
  padding: 24px;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(2, 44, 34, 0.2);
}

.arch-node-core i {
  color: #4ade80;
  font-size: 1.4rem;
}

.arch-silo {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease;
}

.arch-silo:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.05);
}

.silo-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.silo-component {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.silo-sensor {
  background: #f0fdf4;
  border: 1px solid #dcfce7;
  border-radius: 12px;
  padding: 10px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #166534;
}

.sensor-bars {
  display: flex;
  gap: 2px;
  height: 16px;
  align-items: flex-end;
}

.sensor-bar {
  width: 3px;
  border-radius: 1px;
}

.link-arrow {
  color: #2ead62;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.link-arrow:hover {
  color: #166534;
  transform: translateX(5px);
}

/* Accordion Grid Styles */
.services-accordion-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-row-group {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .service-row-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .service-row-group {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-acc-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-acc-card:hover {
  border-color: #2ead62;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.service-row-group.active .service-acc-card {
  border-color: #2ead62;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-acc-header {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.service-acc-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #0f172a;
  margin: 0;
  flex-grow: 1;
}

.service-acc-chevron {
  color: #64748b;
  transition: transform 0.3s ease;
}

.service-row-group.active .service-acc-chevron {
  transform: rotate(180deg);
  color: #2ead62;
}

.service-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
}

.service-row-group.active .service-acc-body {
  max-height: 1000px;
  /* Increased for long lists */
  padding: 0 1.25rem 1.25rem 1.25rem;
  flex-grow: 1;
}

.service-acc-content {
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-acc-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.service-acc-content ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-acc-content ul li::before {
  content: "•";
  color: #2ead62;
  font-weight: bold;
  display: inline-block;
  width: 1rem;
  margin-left: -1.25rem;
  position: absolute;
}

/* CNC Section Styles */
.brand-card,
.data-param-card {
  transition: all 0.3s ease;
  border-color: #eee !important;
}

.brand-card:hover,
.data-param-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
  border-color: #2EAD62 !important;
}

.bg-subtle {
  background-color: #f8fafc;
}

.hover-lift {
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
  border-color: #2EAD62 !important;
}

/* Target Audience Section Styles */
.target-tab {
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  color: #64748b;
  border: 1px solid transparent;
  margin-bottom: 0.5rem;
  position: relative;
  overflow: hidden;
}

.target-tab:hover {
  background: #f1f5f9;
  color: #2ead62;
}

.target-tab.active {
  background: #f0fdf4;
  color: #2ead62;
  font-weight: 700;
  border-left: 4px solid #2ead62;
}

.target-content-card {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.target-icon-bg {
  font-size: 240px;
  color: #2ead62;
  opacity: 0.05;
  position: absolute;
  bottom: -40px;
  right: -20px;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 991px) {
  .target-icon-bg {
    font-size: 180px;
  }
}

/* CTA Section Hover Effects */
.transition-all {
  transition: all 0.3s ease;
}

.cta-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(46, 173, 98, 0.1) !important;
}

.btn-brand:hover {
  background-color: #258a4e !important;
  transform: scale(1.03);
}

@media (min-width: 768px) {
  .border-end-md {
    border-right: 1px solid #e5e7eb !important;
  }
}

.hero-platform {
  padding-top: 80px;
  /* Reduced by 50% from 160px */
  padding-bottom: 150px;
  width: 100%;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Flat Geometric Shapes with Green Shadows */
.geo-shape {
  position: absolute;
  z-index: 1;
  background: rgba(46, 173, 98, 0.06);
  border: none;
  box-shadow: 0 40px 80px rgba(46, 173, 98, 0.2);
  border-radius: 20px;
  opacity: 1;
}

.geo-1 {
  width: 140px;
  height: 140px;
  top: 20%;
  left: 8%;
}

.geo-2 {
  width: 220px;
  height: 110px;
  top: 15%;
  right: 12%;
}

.geo-3 {
  width: 160px;
  height: 160px;
  bottom: 15%;
  left: 12%;
}

.geo-4 {
  width: 90px;
  height: 180px;
  bottom: 25%;
  right: 8%;
}

/* Ambient glow still kept for soft greenery feel behind image */
.ambient-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(46, 173, 98, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-platform .container {
  position: relative;
  z-index: 2;
}

.hero-platform-title {
  position: absolute;
  top: 5%;
  /* Moved further up from 10% */
  left: 50%;
  transform: translateX(-50%);
  /* Removed translateY(-50%) to stay at the top */
  z-index: 10;
  font-size: 2rem;
  font-weight: 850;
  color: #111827;
  letter-spacing: -0.02em;
  line-height: 1.2;
  pointer-events: none;
  /* Allows hover effects on image behind text */
  width: 100%;
  text-align: center;
}

.hero-visual-container {
  max-width: 1860px;
  /* Increased by another 30% */
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.hero-platform-image {
  width: 100%;
  display: block;
  border: none;
  box-shadow: none;
  /* Added Green Drop Shadow to the Image */
  filter: drop-shadow(0 40px 80px rgba(46, 173, 98, 0.4));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-platform-image:hover {
  transform: translateY(-8px);
}

@media (max-width: 1400px) {
  .hero-visual-container {
    max-width: 90%;
  }
}

@media (max-width: 992px) {
  .hero-platform {
    padding-top: 140px !important;
    padding-bottom: 60px !important;
  }

  .hero-platform-title {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    font-size: 1.6rem !important;
    margin-bottom: 2rem !important;
    padding: 0 1.5rem !important;
    display: block !important;
    width: 100% !important;
  }

  .hero-visual-container {
    padding: 0 1rem !important;
    max-width: 100% !important;
  }

  .hero-platform-image {
    transform: none !important;
    max-width: 100% !important;
  }

  .ambient-glow,
  .geo-shape {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hero-platform-title {
    font-size: 1.4rem !important;
    line-height: 1.4 !important;
  }

  .hero-platform {
    padding-top: 130px !important;
  }
}

.bg-light-soft {
  background-color: #f9fbfa;
}

.shadow-soft {
  box-shadow: 0 10px 30px rgba(46, 173, 98, 0.08);
}

.transition-all {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
  border-color: #2EAD62 !important;
}

.hover-lift:hover .icon-box {
  background: #2EAD62 !important;
  border-color: #2EAD62 !important;
}

.hover-lift:hover .icon-box i {
  color: white !important;
}

/* Optimized Contact CTA Styles */
.contact-cta-section {
  background-color: #f9fafb;
}

.contact-cta-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.contact-cta-left {
  padding: 4rem 3.5rem;
  background: #ffffff;
  position: relative;
}

.contact-cta-left .badge-minimal {
  display: inline-block;
  padding: 6px 12px;
  background: #f0f7f4;
  color: #2EAD62;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.contact-cta-left h2 {
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-size: 2.8rem;
}

.contact-cta-left .accent-line {
  width: 60px;
  height: 4px;
  background: #2EAD62;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.contact-cta-right {
  padding: 4rem 3.5rem;
  background: #ffffff;
  border-left: 1px solid #f0f0f0;
}

.contact-cta-right .form-group {
  margin-bottom: 0.8rem;
}

.contact-cta-right .form-group.last-field {
  margin-bottom: 1.5rem;
}

.contact-cta-right .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-cta-right .form-control {
  border: 1px solid #eef0f2;
  background-color: #fcfdfe;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  color: #1a1a1a;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-cta-right .form-control:focus {
  background-color: #fff;
  border-color: #2EAD62;
  box-shadow: 0 0 0 4px rgba(46, 173, 98, 0.08);
  outline: none;
}

.btn-talep-premium {
  background: #2EAD62;
  color: #fff;
  border-radius: 12px;
  padding: 1.1rem 2.5rem;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-talep-premium:hover {
  background: #248a4d;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(46, 173, 98, 0.15);
}

@media (max-width: 991px) {
  .contact-cta-right {
    border-left: none;
    border-top: 1px solid #f0f0f0;
  }

  .contact-cta-left,
  .contact-cta-right {
    padding: 3rem 2rem;
  }

  .contact-cta-left h2 {
    font-size: 2.2rem;
  }
}

.bg-light-soft {
  background-color: #f9fbfa;
}

.shadow-soft {
  box-shadow: 0 10px 30px rgba(46, 173, 98, 0.08);
}

.transition-all {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
  border-color: #2EAD62 !important;
}

.hover-lift:hover .icon-box {
  background: #2EAD62 !important;
  border-color: #2EAD62 !important;
}

.hover-lift:hover .icon-box i {
  color: white !important;
}

.h-title {
  color: #101318;
  font-size: 1.15rem;
}

.line-height-relaxed {
  line-height: 1.6;
}

/* Sectors Section Styles */
.sector-tab {
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  color: #6c757d;
  border: 1px solid transparent;
  margin-bottom: 0.5rem;
  position: relative;
  overflow: hidden;
}

.sector-tab:hover {
  background: #f8f9fa;
  color: #2EAD62;
}

.sector-tab.active {
  background: #f0f7f4;
  color: #2EAD62;
  font-weight: 700;
}

.sector-content-card {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sector-icon-bg {
  font-size: 270px;
  color: #2EAD62;
  opacity: 0.1;
  position: absolute;
  bottom: -40px;
  right: -20px;
  z-index: 0;
  pointer-events: none;
}

.slider-card {
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.active-card {
  transform: scale(1.05) translateX(0);
  z-index: 10;
  opacity: 1;
  box-shadow: 0 15px 40px rgba(46, 173, 98, 0.15) !important;
}

.prev-card {
  transform: translateX(-450px) scale(0.65);
  opacity: 0.6;
  z-index: 5;
  filter: blur(1px);
}

.next-card {
  transform: translateX(450px) scale(0.65);
  opacity: 0.6;
  z-index: 5;
  filter: blur(1px);
}

.hidden-card {
  transform: scale(0.8);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.slider-nav-btn:hover {
  background-color: #f8f9fa;
  transform: translateY(-50%) scale(1.1) !important;
}

@media (max-width: 992px) {
  .slider-container {
    height: auto !important;
    min-height: 500px;
  }

  .slider-card {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 2rem;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    pointer-events: auto !important;
  }

  .cards-wrapper {
    flex-direction: column;
    display: block !important;
  }

  .prev-btn,
  .next-btn {
    display: none !important;
  }
}

.services-accordion-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-row-group {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .service-row-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .service-row-group {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-acc-card {
  background: #fff;
  border: 1px solid var(--openiot-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-acc-card:hover {
  border-color: var(--openiot-brand);
  box-shadow: var(--shadow-md);
}

/* State managed by parent row-group */
.service-row-group.active .service-acc-card {
  border-color: var(--openiot-brand);
  box-shadow: var(--shadow-lg);
}

.service-acc-header {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.service-acc-icon {
  width: 40px;
  height: 40px;
  background: var(--openiot-brand-light);
  color: var(--openiot-brand);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.service-row-group.active .service-acc-icon {
  background: var(--openiot-brand);
  color: #fff;
}

.service-acc-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--openiot-dark);
  margin: 0;
  flex-grow: 1;
}

.service-acc-chevron {
  color: var(--openiot-muted);
  transition: transform 0.3s ease;
}

.service-row-group.active .service-acc-chevron {
  transform: rotate(180deg);
  color: var(--openiot-brand);
}

.service-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
}

.service-row-group.active .service-acc-body {
  max-height: 500px;
  padding: 0 1.25rem 1.25rem 1.25rem;
  flex-grow: 1;
}

.service-acc-content {
  border-top: 1px solid #f1f3f5;
  padding-top: 1rem;
  color: var(--openiot-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-acc-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.service-acc-content ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-acc-content ul li::before {
  content: "•";
  color: var(--openiot-brand);
  font-weight: bold;
  display: inline-block;
  width: 1rem;
  margin-left: -1.25rem;
  position: absolute;
}

.cta-box {
  background: #fff;
  border-radius: 16px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  margin-top: 4rem;
  border: 1px solid var(--openiot-border);
}

@media (max-width: 991px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
  }
}

.cta-box h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
}

.cta-box .btn {
  border-radius: 8px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
  padding-top: 100px;
  background-image: url('../img/iot-project.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  background-attachment: scroll;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  color: #1a1a1a;
  letter-spacing: -1px;
}

.hero-visual {
  max-width: 110%;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.08));
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-section {
    padding-top: 120px;
    text-align: center;
  }

  .hero-visual {
    max-width: 100%;
    margin-top: 3rem;
  }
}

/* Spotlight Card */
.spotlight-wrapper {
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 10;
}

.spotlight-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: none;
}

.spotlight-text {
  font-size: 1.1rem;
  color: #495057;
  line-height: 1.8;
  border-left: 3px solid var(--openiot-brand);
  padding-left: 2rem;
}

.spotlight-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #f1f3f5;
}

.spotlight-headline {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.btn-brand-spotlight {
  background-color: var(--openiot-brand);
  border-color: var(--openiot-brand);
  color: white;
  transition: all 0.3s ease;
}

.btn-brand-spotlight:hover {
  background-color: #258f51;
  border-color: #258f51;
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .spotlight-card {
    padding: 2rem;
  }

  .spotlight-footer {
    flex-direction: column;
    text-align: center;
  }

  .spotlight-headline {
    font-size: 1.75rem;
  }

  .spotlight-text {
    padding-left: 1.5rem;
    font-size: 1rem;
  }
}

.timeline-week-head {
  flex: 1;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6c757d;
  border-right: 1px solid #dee2e6;
}

.timeline-flat-bar {
  position: relative;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 1;
  white-space: nowrap;
  padding: 0 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.bg-success {
  background-color: var(--openiot-brand) !important;
}

.text-success {
  color: var(--openiot-brand) !important;
}

@media (max-width: 768px) {
  .timeline-container {
    overflow-x: auto;
  }

  .timeline-container>div {
    min-width: 800px;
  }
}

/* Sectors Section Styles */
.sector-tab {
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  color: #6c757d;
  border: 1px solid transparent;
  margin-bottom: 0.5rem;
  position: relative;
  overflow: hidden;
}

.sector-tab:hover {
  background: #f8f9fa;
  color: var(--openiot-brand);
}

.sector-tab.active {
  background: #f0f7f4;
  color: var(--openiot-brand);
  font-weight: 700;
}

.sector-content-card {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sector-icon-bg {
  font-size: 270px;
  color: var(--openiot-brand);
  opacity: 0.1;
  position: absolute;
  bottom: -40px;
  right: -20px;
  z-index: 0;
  pointer-events: none;
}

.sectors-divider {
  width: 1px;
  background: #e9ecef;
  height: 100%;
  display: block;
}

@media (max-width: 991px) {
  .sectors-divider {
    display: none;
  }
}

/* FAQ Section Styles */
.faq-tab {
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #6c757d;
  border: 1px solid transparent;
  margin-bottom: 0.5rem;
}

.faq-tab:hover {
  background: #f8f9fa;
  color: var(--openiot-brand);
}

.faq-tab.active {
  background: #f0f7f4;
  color: var(--openiot-brand);
  font-weight: 700;
}

.faq-accordion-item {
  border-bottom: 1px solid #e9ecef;
  background: transparent;
}

.faq-accordion-header {
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: all 0.3s ease;
}

.faq-accordion-header h6 {
  margin: 0;
  font-weight: 600;
  font-size: 1.05rem;
  color: #495057;
  transition: color 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-header h6 {
  color: var(--openiot-brand);
}

.faq-accordion-icon {
  color: #adb5bd;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-accordion-item.active .faq-accordion-icon {
  transform: rotate(180deg);
  color: var(--openiot-brand);
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.faq-accordion-item.active .faq-accordion-body {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-content-area {
  animation: fadeIn 0.4s ease;
}

/* Optimized Contact CTA Styles */
.contact-cta-section {
  background-color: #f9fafb;
}

.contact-cta-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.contact-cta-left {
  padding: 4rem 3.5rem;
  background: #ffffff;
  position: relative;
}

.contact-cta-left .badge-minimal {
  display: inline-block;
  padding: 6px 12px;
  background: #f0f7f4;
  color: var(--openiot-brand);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.contact-cta-left h2 {
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-size: 2.8rem;
}

.contact-cta-left .accent-line {
  width: 60px;
  height: 4px;
  background: var(--openiot-brand);
  border-radius: 2px;
  margin-bottom: 2rem;
}

.contact-cta-right {
  padding: 4rem 3.5rem;
  background: #ffffff;
  border-left: 1px solid #f0f0f0;
}

.contact-cta-right .form-group {
  margin-bottom: 0.8rem;
}

.contact-cta-right .form-group.last-field {
  margin-bottom: 1.5rem;
}

.contact-cta-right .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-cta-right .form-control {
  border: 1px solid #eef0f2;
  background-color: #fcfdfe;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  color: #1a1a1a;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-cta-right .form-control:focus {
  background-color: #fff;
  border-color: var(--openiot-brand);
  box-shadow: 0 0 0 4px rgba(46, 173, 98, 0.08);
  outline: none;
}

.btn-talep-premium {
  background: var(--openiot-brand);
  color: #fff;
  border-radius: 12px;
  padding: 1.1rem 2.5rem;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-talep-premium:hover {
  background: #248a4d;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(46, 173, 98, 0.15);
}

@media (max-width: 991px) {
  .contact-cta-right {
    border-left: none;
    border-top: 1px solid #f0f0f0;
  }

  .contact-cta-left,
  .contact-cta-right {
    padding: 3rem 2rem;
  }

  .contact-cta-left h2 {
    font-size: 2.2rem;
  }
}

/* Modal Custom Styles */
#projectModal .modal-content {
  border-radius: 20px;
  border: none;
  padding: 1.5rem;
}

#projectModal .modal-header {
  border-bottom: none;
  padding-bottom: 0;
}

#projectModal .modal-title {
  font-size: 1.75rem;
  font-weight: 500;
  color: #1a1a1a;
}

#projectModal .btn-close {
  background-color: transparent;
  opacity: 0.8;
}

#projectModal .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: #495057;
  margin-bottom: 0.5rem;
}

#projectModal .form-control {
  border-radius: 10px;
  padding: 0.75rem 1rem;
  border: 1px solid #dee2e6;
  transition: all 0.3s ease;
}

#projectModal .form-control:focus {
  border-color: var(--openiot-brand);
  box-shadow: 0 0 0 4px rgba(46, 173, 98, 0.1);
}

#projectModal .btn-submit-modal {
  background-color: var(--openiot-brand);
  color: white;
  width: 100%;
  padding: 0.8rem;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

#projectModal .btn-submit-modal:hover {
  background-color: #248a4d;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46, 173, 98, 0.2);
}

:root {
  --brand-green: #2EAD62;
  --brand-dark: #0f172a;
  --text-muted: #64748b;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #fff;
  color: var(--brand-dark);
}

.pricing-section {
  padding: 120px 0 100px;
  background: radial-gradient(circle at top right, rgba(46, 173, 98, 0.05), transparent 40%),
    radial-gradient(circle at bottom left, rgba(46, 173, 98, 0.05), transparent 40%);
}

.section-title-wrapper {
  margin-bottom: 70px;
}

.section-title-wrapper h2 {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-title-wrapper p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
}

.pricing-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 32px;
  padding: 3.5rem 2.75rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  border-color: rgba(46, 173, 98, 0.2);
}

.pricing-header {
  margin-bottom: 2.5rem;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.price-tag {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--brand-dark);
}

.price-tag span {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-muted);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
  flex-grow: 1;
}

.feature-list li {
  padding: 0.85rem 0;
  color: #475569;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
}

.feature-list li i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-list li i.bi-check-circle-fill {
  color: var(--brand-green);
}

.feature-list li i.bi-x-circle {
  color: #cbd5e1;
}

.btn-buy {
  padding: 1.125rem 2rem;
  border-radius: 18px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
  text-align: center;
}

.btn-standart {
  background-color: #f8fafc;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.btn-standart:hover {
  background-color: #f1f5f9;
  color: var(--brand-green);
  border-color: var(--brand-green);
}

.btn-premium {
  background-color: var(--brand-green);
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(46, 173, 98, 0.3);
}

.btn-premium:hover {
  background-color: #258c4f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 15px 20px -3px rgba(46, 173, 98, 0.4);
}

.pricing-premium {
  border: 2px solid var(--brand-green);
  background: linear-gradient(180deg, #fff 0%, #f9fffb 100%);
}

.badge-popular {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-green);
  color: white;
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(46, 173, 98, 0.3);
}

:root {
  --brand-green: #2EAD62;
  --brand-dark: #0f172a;
  --text-muted: #64748b;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #fff;
  color: var(--brand-dark);
}

.info-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 32px;
  padding: 3.5rem;
  height: 100%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(46, 173, 98, 0.2);
}

.info-card h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  color: var(--brand-dark);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
}

.info-list li i {
  font-size: 1.4rem;
  color: var(--brand-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-list li b {
  color: var(--brand-dark);
  font-weight: 600;
}

.fullscreen-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  width: 100%;
  background: #f8fafc url('../img/education-hero.png') no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

.fullscreen-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  z-index: 2;
}

@media (max-width: 991px) {
  .fullscreen-hero h1 {
    font-size: 2.5rem;
  }
}

.education-section {
  padding: 100px 0;
  background: radial-gradient(circle at top right, rgba(46, 173, 98, 0.04), transparent 40%),
    radial-gradient(circle at bottom left, rgba(46, 173, 98, 0.04), transparent 40%);
}

.sessions-section {
  padding: 100px 0;
  background-color: #fff;
}

.sessions-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a171b;
  margin-bottom: 1rem;
}

.sessions-section .lead-sub {
  font-size: 1.25rem;
  color: #71717a;
  margin-bottom: 2.5rem;
}

.sessions-section .main-text {
  color: #3f3f46;
  line-height: 1.8;
  font-size: 1.05rem;
}

.btn-contact-custom {
  background-color: var(--brand-green);
  color: #fff;
  border: none;
  padding: 12px 35px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-contact-custom:hover {
  filter: brightness(0.9);
  color: #fff;
  transform: translateY(-2px);
}

/* Curriculum Accordion Styles */
.services-accordion-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-row-group {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .service-row-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .service-row-group {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-acc-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-acc-card:hover {
  border-color: var(--brand-green);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-row-group.active .service-acc-card {
  border-color: var(--brand-green);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-acc-header {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.service-acc-icon {
  width: 40px;
  height: 40px;
  background: rgba(46, 173, 98, 0.1);
  color: var(--brand-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.service-row-group.active .service-acc-icon {
  background: var(--brand-green);
  color: #fff;
}

.service-acc-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-dark);
  margin: 0;
  flex-grow: 1;
}

.service-acc-chevron {
  color: #94a3b8;
  transition: transform 0.3s ease;
}

.service-row-group.active .service-acc-chevron {
  transform: rotate(180deg);
  color: var(--brand-green);
}

.service-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 1.25rem;
}

.service-row-group.active .service-acc-body {
  max-height: 800px;
  padding: 0 1.25rem 1.25rem 1.25rem;
}

.service-acc-content {
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-acc-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.service-acc-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-acc-content ul li::before {
  content: "→";
  color: var(--brand-green);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.slider-card {
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.active-card {
  transform: scale(1.05) translateX(0);
  z-index: 10;
  opacity: 1;
  box-shadow: 0 15px 40px rgba(46, 173, 98, 0.15) !important;
}

.prev-card {
  transform: translateX(-450px) scale(0.65);
  opacity: 0.6;
  z-index: 5;
  filter: blur(1px);
}

.next-card {
  transform: translateX(450px) scale(0.65);
  opacity: 0.6;
  z-index: 5;
  filter: blur(1px);
}

.hidden-card {
  transform: scale(0.8);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.slider-nav-btn:hover {
  background-color: #f8f9fa;
  transform: translateY(-50%) scale(1.1) !important;
}

@media (max-width: 992px) {
  .slider-container {
    height: auto !important;
    min-height: 500px;
  }

  .slider-card {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 2rem;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    pointer-events: auto !important;
  }

  .cards-wrapper {
    flex-direction: column;
    display: block !important;
  }

  .prev-btn,
  .next-btn {
    display: none !important;
  }
}

.bg-light-soft {
  background-color: #f9fbfa;
}

.shadow-soft {
  box-shadow: 0 10px 30px rgba(46, 173, 98, 0.08);
}

.transition-all {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
  border-color: #2EAD62 !important;
}

.hover-lift:hover .icon-box {
  background: #2EAD62 !important;
  border-color: #2EAD62 !important;
}

.hover-lift:hover .icon-box i {
  color: white !important;
}

.h-title {
  color: #101318;
  font-size: 1.15rem;
}

.line-height-relaxed {
  line-height: 1.6;
}

.bg-light-soft {
  background-color: #f9fbfa;
}

.shadow-soft {
  box-shadow: 0 10px 30px rgba(46, 173, 98, 0.08);
}

.transition-all {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
  border-color: #2EAD62 !important;
}

.hover-lift:hover .icon-box {
  background: #2EAD62 !important;
  border-color: #2EAD62 !important;
}

.hover-lift:hover .icon-box i {
  color: white !important;
}

.h-title {
  color: #101318;
  font-size: 1.15rem;
}

.line-height-relaxed {
  line-height: 1.7;
}

.slider-card {
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.active-card {
  transform: scale(1.05) translateX(0);
  z-index: 10;
  opacity: 1;
  box-shadow: 0 15px 40px rgba(46, 173, 98, 0.15) !important;
}

.prev-card {
  transform: translateX(-450px) scale(0.65);
  opacity: 0.6;
  z-index: 5;
  filter: blur(1px);
}

.next-card {
  transform: translateX(450px) scale(0.65);
  opacity: 0.6;
  z-index: 5;
  filter: blur(1px);
}

.hidden-card {
  transform: scale(0.8);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.slider-nav-btn:hover {
  background-color: #f8f9fa;
  transform: translateY(-50%) scale(1.1) !important;
}

@media (max-width: 992px) {
  .slider-container {
    height: auto !important;
    min-height: 500px;
  }

  .slider-card {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 2rem;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    pointer-events: auto !important;
  }

  .cards-wrapper {
    flex-direction: column;
    display: block !important;
  }

  .prev-btn,
  .next-btn {
    display: none !important;
  }
}

.dashboard-slider-container {
  padding: 0 50px;
}

.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #eee;
  color: #2EAD62;
  font-size: 1.25rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-nav-btn:hover {
  background: #2EAD62;
  color: #ffffff;
  border-color: #2EAD62;
}

.prev-dash-btn {
  left: -10px;
}

.next-dash-btn {
  right: -10px;
}

.dashboard-images-wrapper {
  display: flex;
  width: 100%;
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dee2e6;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dash-dot.active {
  background: #2EAD62;
  width: 25px;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .dashboard-slider-container {
    padding: 0 10px;
  }

  .prev-dash-btn {
    left: -5px;
  }

  .next-dash-btn {
    right: -5px;
  }

  .slider-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

.brand-card,
.data-param-card {
  transition: all 0.3s ease;
  border-color: #eee !important;
}

.brand-card:hover,
.data-param-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
  border-color: #2EAD62 !important;
}

.bg-light-soft {
  background-color: #f9fbfa;
}

.shadow-soft {
  box-shadow: 0 10px 30px rgba(46, 173, 98, 0.08);
}

.transition-all {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
  border-color: #2EAD62 !important;
}

.hover-lift:hover .icon-box {
  background: #2EAD62 !important;
  border-color: #2EAD62 !important;
}

.hover-lift:hover .icon-box i {
  color: white !important;
}

.h-title {
  color: #101318;
  font-size: 1.15rem;
}

@media (max-width: 991px) {
  .col-lg {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}

.slider-card {
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.active-card {
  transform: scale(1.05) translateX(0);
  z-index: 10;
  opacity: 1;
  box-shadow: 0 15px 40px rgba(46, 173, 98, 0.15) !important;
}

.prev-card {
  transform: translateX(-450px) scale(0.65);
  opacity: 0.6;
  z-index: 5;
  filter: blur(1px);
}

.next-card {
  transform: translateX(450px) scale(0.65);
  opacity: 0.6;
  z-index: 5;
  filter: blur(1px);
}

.hidden-card {
  transform: scale(0.8);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.slider-nav-btn:hover {
  background-color: #f8f9fa;
  transform: translateY(-50%) scale(1.1) !important;
}

@media (max-width: 992px) {
  .slider-container {
    height: auto !important;
    min-height: 500px;
  }

  .slider-card {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 2rem;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    pointer-events: auto !important;
  }

  .cards-wrapper {
    flex-direction: column;
    display: block !important;
  }

  .prev-btn,
  .next-btn {
    display: none !important;
  }
}

.bg-light-soft {
  background-color: #f9fbfa;
}

.shadow-soft {
  box-shadow: 0 10px 30px rgba(46, 173, 98, 0.08);
}

.transition-all {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
  border-color: #2EAD62 !important;
}

.hover-lift:hover .icon-box {
  background: #2EAD62 !important;
  border-color: #2EAD62 !important;
}

.hover-lift:hover .icon-box i {
  color: white !important;
}

.h-title {
  color: #101318;
  font-size: 1.15rem;
}

.line-height-relaxed {
  line-height: 1.6;
}

.bg-light-soft {
  background-color: #f9fbfa;
}

.shadow-soft {
  box-shadow: 0 10px 30px rgba(46, 173, 98, 0.08);
}

.transition-all {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
  border-color: #2EAD62 !important;
}

.hover-lift:hover .icon-box {
  background: #2EAD62 !important;
  border-color: #2EAD62 !important;
}

.hover-lift:hover .icon-box i {
  color: white !important;
}

.h-title {
  color: #101318;
  font-size: 1.15rem;
}

.line-height-relaxed {
  line-height: 1.6;
}

/* Slider Specific Styles */
.slider-card {
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.active-card {
  transform: scale(1.05) translateX(0);
  z-index: 10;
  opacity: 1;
  box-shadow: 0 15px 40px rgba(46, 173, 98, 0.15) !important;
}

.prev-card {
  transform: translateX(-450px) scale(0.65);
  opacity: 0.6;
  z-index: 5;
  filter: blur(1px);
}

.next-card {
  transform: translateX(450px) scale(0.65);
  opacity: 0.6;
  z-index: 5;
  filter: blur(1px);
}

.hidden-card {
  transform: scale(0.8);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.slider-nav-btn:hover {
  background-color: #f8f9fa;
  transform: translateY(-50%) scale(1.1) !important;
}

@media (max-width: 992px) {
  .slider-container {
    height: auto !important;
    min-height: 500px;
  }

  .slider-card {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 2rem;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    pointer-events: auto !important;
  }

  .cards-wrapper {
    flex-direction: column;
    display: block !important;
  }

  .prev-btn,
  .next-btn {
    display: none !important;
  }
}

:root {
  --openiot-brand: #2EAD62;
  --openiot-dark: #1a1a1a;
  --openiot-bg: #f8f9fa;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--openiot-bg);
  color: var(--openiot-dark);
}

.navbar-admin {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  padding: 1rem 2rem;
}

.sidebar {
  min-height: calc(100vh - 70px);
  background: #fff;
  border-right: 1px solid #eee;
  padding: 2rem 1rem;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  width: 220px;
}

.sidebar.collapsed {
  width: 80px !important;
}

.nav-link-admin {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  color: #666;
  margin-bottom: 0.5rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
}

.sidebar.collapsed .nav-link-admin {
  justify-content: center;
  padding: 0.8rem 0;
  gap: 0;
}

.sidebar.collapsed .nav-link-admin span {
  display: none;
}

.nav-link-admin i {
  font-size: 1.25rem;
  min-width: 24px;
  text-align: center;
}

.sidebar.collapsed .nav-link-admin i {
  margin: 0;
}

.nav-link-admin:hover,
.nav-link-admin.active {
  background: rgba(46, 173, 98, 0.1);
  color: var(--openiot-brand);
}

.collapse-btn {
  margin-top: auto;
  border: none;
  background: none;
  color: #999;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  cursor: pointer;
  border-top: 1px solid #f5f5f5;
}

.sidebar.collapsed .collapse-btn {
  justify-content: center;
  padding: 1rem 0;
}

.sidebar.collapsed .collapse-btn span {
  display: none;
}

.stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
}

.stat-icon {
  position: absolute;
  right: -10px;
  bottom: -15px;
  font-size: 5rem;
  opacity: 0.05;
  transform: rotate(-15deg);
  pointer-events: none;
}

.table-container {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  margin-top: 2rem;
  flex-grow: 1;
  height: calc(100vh - 380px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.table-responsive {
  overflow-y: auto !important;
  overflow-x: auto !important;
  flex-grow: 1;
  scrollbar-width: thin;
  scrollbar-color: #2EAD62 #f8f9fa;
}

.table-responsive::-webkit-scrollbar {
  width: 6px;
}

.table-responsive::-webkit-scrollbar-track {
  background: #f8f9fa;
}

.table-responsive::-webkit-scrollbar-thumb {
  background-color: #2EAD62;
  border-radius: 10px;
}

.table thead th {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
  border-bottom: 2px solid #f8f9fa;
}

.main-content {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 70px);
}

.badge-status {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.filter-input {
  border: 1px solid #eee;
  border-radius: 6px;
  font-size: 0.8rem;
  padding: 4px 8px;
  width: 100%;
  transition: all 0.2s;
  background: #fcfcfc;
}

.filter-input:focus {
  outline: none;
  border-color: var(--openiot-brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(46, 173, 98, 0.1);
}

.status-new {
  background: #e8f5e9;
  color: #2e7d32;
}

.status-contacted {
  background: #fff3e0;
  color: #ef6c00;
}

.status-completed {
  background: #e3f2fd;
  color: #1565c0;
}

#unauthorized-message {
  display: none;
  text-align: center;
  padding: 100px 0;
}

#dashboard-content {
  display: none;
}

:root {
  --openiot-brand: #2EAD62;
  --openiot-dark: #1a1a1a;
  --openiot-bg: #f8f9fa;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--openiot-bg);
  color: var(--openiot-dark);
}

.navbar-admin {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  padding: 1rem 2rem;
}

.sidebar {
  min-height: calc(100vh - 70px);
  background: #fff;
  border-right: 1px solid #eee;
  padding: 2rem 1rem;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  width: 220px;
}

.sidebar.collapsed {
  width: 80px !important;
}

.nav-link-admin {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  color: #666;
  margin-bottom: 0.5rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
}

.sidebar.collapsed .nav-link-admin {
  justify-content: center;
  padding: 0.8rem 0;
  gap: 0;
}

.sidebar.collapsed .nav-link-admin span {
  display: none;
}

.nav-link-admin i {
  font-size: 1.25rem;
  min-width: 24px;
  text-align: center;
}

.sidebar.collapsed .nav-link-admin i {
  margin: 0;
}

.nav-link-admin:hover,
.nav-link-admin.active {
  background: rgba(46, 173, 98, 0.1);
  color: var(--openiot-brand);
}

.collapse-btn {
  margin-top: auto;
  border: none;
  background: none;
  color: #999;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  cursor: pointer;
  border-top: 1px solid #f5f5f5;
}

.sidebar.collapsed .collapse-btn {
  justify-content: center;
  padding: 1rem 0;
}

.sidebar.collapsed .collapse-btn span {
  display: none;
}

.stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
}

.stat-icon {
  position: absolute;
  right: -10px;
  bottom: -15px;
  font-size: 5rem;
  opacity: 0.05;
  transform: rotate(-15deg);
  pointer-events: none;
}

.table-container {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  margin-top: 2rem;
  flex-grow: 1;
  height: calc(100vh - 380px);
  /* Ekranın geri kalanına göre dinamik yükseklik */
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.table-responsive {
  overflow-y: auto !important;
  overflow-x: auto !important;
  flex-grow: 1;
  scrollbar-width: thin;
  /* Firefox için ince scroll */
  scrollbar-color: #2EAD62 #f8f9fa;
}

/* Webkit scrollbar tasarımı */
.table-responsive::-webkit-scrollbar {
  width: 6px;
}

.table-responsive::-webkit-scrollbar-track {
  background: #f8f9fa;
}

.table-responsive::-webkit-scrollbar-thumb {
  background-color: #2EAD62;
  border-radius: 10px;
}

/* Sabit başlıklar */
.table thead th {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
  border-bottom: 2px solid #f8f9fa;
}

.table thead tr:nth-child(2) td {
  position: sticky;
  top: 40px;
  /* İlk başlık satırının yüksekliğine göre ayarlandı */
  z-index: 9;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.main-content {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 70px);
}

.badge-status {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.filter-input {
  border: 1px solid #eee;
  border-radius: 6px;
  font-size: 0.8rem;
  padding: 4px 8px;
  width: 100%;
  transition: all 0.2s;
  background: #fcfcfc;
}

.filter-input:focus {
  outline: none;
  border-color: var(--openiot-brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(46, 173, 98, 0.1);
}

.status-new {
  background: #e8f5e9;
  color: #2e7d32;
}

.status-contacted {
  background: #fff3e0;
  color: #ef6c00;
}

.status-completed {
  background: #e3f2fd;
  color: #1565c0;
}

#unauthorized-message {
  display: none;
  text-align: center;
  padding: 100px 0;
}

#dashboard-content {
  display: none;
}

.bg-light-soft {
  background-color: #f9fbfa;
}

.shadow-soft {
  box-shadow: 0 10px 30px rgba(46, 173, 98, 0.08);
}

.transition-all {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
  border-color: #2EAD62 !important;
}

.hover-lift:hover .icon-box {
  background: #2EAD62 !important;
  border-color: #2EAD62 !important;
}

.hover-lift:hover .icon-box i {
  color: white !important;
}

.h-title {
  color: #101318;
  font-size: 1.15rem;
}

.line-height-relaxed {
  line-height: 1.6;
}

/* Slider Specific Styles */
.slider-card {
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.active-card {
  transform: scale(1.05) translateX(0);
  z-index: 10;
  opacity: 1;
  box-shadow: 0 15px 40px rgba(46, 173, 98, 0.15) !important;
}

.prev-card {
  transform: translateX(-450px) scale(0.65);
  opacity: 0.6;
  z-index: 5;
  filter: blur(1px);
}

.next-card {
  transform: translateX(450px) scale(0.65);
  opacity: 0.6;
  z-index: 5;
  filter: blur(1px);
}

.hidden-card {
  transform: scale(0.8);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.slider-nav-btn:hover {
  background-color: #f8f9fa;
  transform: translateY(-50%) scale(1.1) !important;
}

@media (max-width: 992px) {
  .slider-container {
    height: auto !important;
    min-height: 500px;
  }

  .slider-card {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 2rem;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    pointer-events: auto !important;
  }

  .cards-wrapper {
    flex-direction: column;
    display: block !important;
  }

  .prev-btn,
  .next-btn {
    display: none !important;
  }
}

:root {
  --brand-green: #2EAD62;
  --brand-dark: #0f172a;
  --text-muted: #64748b;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #fff;
  color: var(--brand-dark);
}

.education-section {
  padding: 120px 0 100px;
  background: radial-gradient(circle at top right, rgba(46, 173, 98, 0.04), transparent 40%),
    radial-gradient(circle at bottom left, rgba(46, 173, 98, 0.04), transparent 40%);
}

.info-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 32px;
  padding: 3.5rem;
  height: 100%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(46, 173, 98, 0.2);
}

.info-card h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  color: var(--brand-dark);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
}

.info-list li i {
  font-size: 1.4rem;
  color: var(--brand-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-list li b {
  color: var(--brand-dark);
  font-weight: 600;
}

.fullscreen-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  width: 100%;
  background: #f8fafc url('../img/education-hero.png') no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

.fullscreen-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  z-index: 2;
}

@media (max-width: 991px) {
  .fullscreen-hero h1 {
    font-size: 2.5rem;
  }
}

.education-section {
  padding: 100px 0;
  background: radial-gradient(circle at top right, rgba(46, 173, 98, 0.04), transparent 40%),
    radial-gradient(circle at bottom left, rgba(46, 173, 98, 0.04), transparent 40%);
}

.sessions-section {
  padding: 100px 0;
  background-color: #fff;
}

.sessions-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a171b;
  margin-bottom: 1rem;
}

.sessions-section .lead-sub {
  font-size: 1.25rem;
  color: #71717a;
  margin-bottom: 2.5rem;
}

.sessions-section .main-text {
  color: #3f3f46;
  line-height: 1.8;
  font-size: 1.05rem;
}

.btn-contact-custom {
  background-color: var(--brand-green);
  color: #fff;
  border: none;
  padding: 12px 35px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-contact-custom:hover {
  filter: brightness(0.9);
  color: #fff;
  transform: translateY(-2px);
}

/* Curriculum Accordion Styles */
.services-accordion-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-row-group {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .service-row-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .service-row-group {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-acc-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-acc-card:hover {
  border-color: var(--brand-green);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-row-group.active .service-acc-card {
  border-color: var(--brand-green);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-acc-header {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.service-acc-icon {
  width: 40px;
  height: 40px;
  background: rgba(46, 173, 98, 0.1);
  color: var(--brand-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.service-row-group.active .service-acc-icon {
  background: var(--brand-green);
  color: #fff;
}

.service-acc-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-dark);
  margin: 0;
  flex-grow: 1;
}

.service-acc-chevron {
  color: #94a3b8;
  transition: transform 0.3s ease;
}

.service-row-group.active .service-acc-chevron {
  transform: rotate(180deg);
  color: var(--brand-green);
}

.service-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 1.25rem;
}

.service-row-group.active .service-acc-body {
  max-height: 800px;
  padding: 0 1.25rem 1.25rem 1.25rem;
}

.service-acc-content {
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-acc-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.service-acc-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-acc-content ul li::before {
  content: "→";
  color: var(--brand-green);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* IoT Project Hero Specific Style */
#iot-project-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/iot-project.png');
  background-size: cover;
  background-position: center;
  color: white;
  /* Ensure text is readable if image is dark */
}

#iot-project-hero h1,
#iot-project-hero p {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Overwrite text-muted for this dark background */
#iot-project-hero .text-muted {
  color: rgba(255, 255, 255, 0.9) !important;
}