.footer .container {
  padding: 20px;
}


/* Global CSS for Intech Website */

/* Root Variables - Design System */
:root {
  /* Colors - HSL Format */
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  --card: 0 0% 100%;
  --card-foreground: 222.2 84% 4.9%;
  --popover: 0 0% 100%;
  --popover-foreground: 222.2 84% 4.9%;
  --primary: 221.2 83.2% 53.3%;
  --primary-foreground: 210 40% 98%;
  --primary-hover: 221.2 83.2% 48%;
  --secondary: 210 40% 96.1%;
  --secondary-foreground: 222.2 47.4% 11.2%;
  --muted: 210 40% 96.1%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --accent: 210 40% 96.1%;
  --accent-foreground: 222.2 47.4% 11.2%;
  --accent-hover: 210 40% 92%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 214.3 31.8% 91.4%;
  --input: 214.3 31.8% 91.4%;
  --ring: 221.2 83.2% 53.3%;
  --radius: 0.5rem;

  /* Sidebar Colors */
  --sidebar-background: 0 0% 98%;
  --sidebar-foreground: 240 5.3% 26.1%;
  --sidebar-primary: 240 5.9% 10%;
  --sidebar-primary-foreground: 0 0% 98%;
  --sidebar-accent: 240 4.8% 95.9%;
  --sidebar-accent-foreground: 240 5.9% 10%;
  --sidebar-border: 220 13% 91%;
  --sidebar-ring: 217.2 91.2% 59.8%;
}

.dark {
  --background: 222.2 84% 4.9%;
  --foreground: 210 40% 98%;
  --card: 222.2 84% 4.9%;
  --card-foreground: 210 40% 98%;
  --popover: 222.2 84% 4.9%;
  --popover-foreground: 210 40% 98%;
  --primary: 217.2 91.2% 59.8%;
  --primary-foreground: 222.2 47.4% 11.2%;
  --primary-hover: 217.2 91.2% 54%;
  --secondary: 217.2 32.6% 17.5%;
  --secondary-foreground: 210 40% 98%;
  --muted: 217.2 32.6% 17.5%;
  --muted-foreground: 215 20.2% 65.1%;
  --accent: 217.2 32.6% 17.5%;
  --accent-foreground: 210 40% 98%;
  --accent-hover: 217.2 32.6% 22%;
  --destructive: 0 62.8% 30.6%;
  --destructive-foreground: 210 40% 98%;
  --border: 217.2 32.6% 17.5%;
  --input: 217.2 32.6% 17.5%;
  --ring: 224.3 76.3% 48%;

  --sidebar-background: 240 5.9% 10%;
  --sidebar-foreground: 240 4.8% 95.9%;
  --sidebar-primary: 224.3 76.3% 48%;
  --sidebar-primary-foreground: 0 0% 100%;
  --sidebar-accent: 240 3.7% 15.9%;
  --sidebar-accent-foreground: 240 4.8% 95.9%;
  --sidebar-border: 240 3.7% 15.9%;
  --sidebar-ring: 217.2 91.2% 59.8%;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

body {
  font-family: 'Inter,system-ui,sans-serif';
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 2rem;
  }
}

/* Layout */
.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-1 {
  flex: 1 1 0%;
}

.space-y-8>*+* {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .md\:space-y-12>*+* {
    margin-top: 3rem;
  }
}

/* Cards */
.card {
  background: hsl(var(--card));
  color: hsl(var(--card-foreground));
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
  transition: all 0.2s;
}

.card:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  transform: scale(1.02);
}

.card-content {
  padding: 1rem;
}

@media (min-width: 768px) {
  .card-content {
    padding: 1.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-primary:hover {
  background: hsl(var(--primary-hover));
}

.btn-outline {
  background: transparent;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-outline:hover {
  background: hsl(var(--accent));
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Hero Section */
.hero-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary)) 50%, hsl(var(--primary) / 0.9));
  padding: 1.5rem;
  color: hsl(var(--primary-foreground));
  box-shadow: 0 10px 25px -5px rgb(0 0 0 / 0.1);
}

@media (min-width: 768px) {
  .hero-banner {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-banner {
    padding: 4rem;
  }
}

.hero-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 1.875rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

/* Grid Layout */
.grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .grid {
    gap: 1.5rem;
  }
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Service Cards */
.service-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .service-card {
    gap: 1rem;
  }
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0.5rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .service-icon {
    padding: 0.75rem;
  }
}

.service-icon-primary {
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.service-icon-accent {
  background: hsl(var(--accent) / 0.1);
  color: hsl(var(--accent-foreground));
}

.service-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: hsl(var(--foreground));
}

@media (min-width: 768px) {
  .service-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
}

.service-description {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

@media (min-width: 768px) {
  .service-description {
    font-size: 0.875rem;
  }
}

/* Announcement Section */
.announcement-card {
  /* border: 1px solid hsl(var(--accent) / 0.5);*/
  border: 1px solid hsl(24.92deg 98.07% 53.61% / 51%);
  background: hsl(var(--accent) / 0.05);
}

.announcement-trigger {
  width: 100%;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: var(--radius);
}

.announcement-trigger:hover {
  background: hsl(var(--accent) / 0.1);
}

@media (min-width: 768px) {
  .announcement-trigger {
    padding: 1rem;
  }
}

.announcement-icon-wrapper {
  border-radius: var(--radius);
  padding: 0.375rem;
  background: hsl(var(--accent) / 0.1);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .announcement-icon-wrapper {
    padding: 0.5rem;
  }
}

.announcement-content {
  padding: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .announcement-content {
    padding: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
  }
}

/* Call to Action Section */
.cta-section {
  border-radius: var(--radius);
  background: hsl(var(--muted));
  padding: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 3rem;
  }
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }
}

.cta-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .cta-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

/* Section Headings */
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 1.875rem;
  }
}

.section-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

@media (min-width: 768px) {
  .section-description {
    font-size: 1rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.w-full {
  width: 100%;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

/* Responsive utilities */
@media (min-width: 640px) {
  .sm\:w-auto {
    width: auto;
  }
}

/* Icon sizes */
.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-md {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 768px) {
  .md\:icon-md {
    width: 1.25rem;
    height: 1.25rem;
  }

  .md\:icon-lg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* Collapsible Animation */
.collapsible-content {
  overflow: hidden;
  transition: height 0.3s ease-out;
}

.collapsible-content[data-state="closed"] {
  height: 0;
}

/* Hover Effects */
.hover-lift {
  transition: transform 0.2s, box-shadow 0.2s;
}

.hover-lift:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

/* Truncate text */
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Gradient overlay */
.gradient-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 33.333333%;
  height: 100%;
  background: linear-gradient(to left, hsl(var(--primary) / 0.2), transparent);
}

@media (min-width: 768px) {
  .gradient-overlay {
    width: 50%;
  }
}

/* Leading relaxed */
.leading-relaxed {
  line-height: 1.625;
}

/* Relative positioning */
.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

/* Shrink */
.shrink-0 {
  flex-shrink: 0;
}

.min-w-0 {
  min-width: 0;
}