@import "tailwindcss";

@import "./components/navbar.css";
@import "./components/animations.css";
@import "./components/footer.css";
@import "./components/brochure-modal.css";
@import "./components/hero-section.css";
@import "./components/course-card.css";

/* Premium Design Enhancements */
:root {
  --primary-color: #0A1F5C;
  --accent-color: #F36F21;
}

html {
  scroll-behavior: smooth;
}

/* Global Dot Grid Background for premium feel */
body {
  background-image: radial-gradient(rgba(10, 31, 92, 0.06) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
}

/* Premium Ambient Glowing Blobs */
.glow-blob-orange {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(243, 111, 33, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.glow-blob-blue {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(10, 31, 92, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

/* Glassmorphism containers */
.glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Card Gradient Border and Hover effects */
.hover-premium-lift {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hover-premium-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px -10px rgba(10, 31, 92, 0.12);
  border-color: rgba(243, 111, 33, 0.25);
}

/* Section Header styling accent lines */
.heading-accent-line {
  position: relative;
  display: inline-block;
}
.heading-accent-line::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #ff8d4b);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.hover-heading-trigger:hover .heading-accent-line::after {
  width: 100%;
}

/* Scan all PHP files for Tailwind classes */
@source "../../**/*.php";
@source "../../components/**/*.php";
@source "../../includes/**/*.php";
@source "../../course/**/*.php";
@source "../../blog/**/*.php";

