/* Custom Theme - SKG Orange Style */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --primary-color: #fca311;
  /* Lighter Orange */
  --primary-dark: #e88d04;
  --primary-light: #fff8eb;
  /* Very Light Orange tint */
  --secondary-color: #1e2330;
  /* Dark Navy/Black text */
  --text-dark: #1e2330;
  --text-gray: #6b7280;
  --bg-light: #fffaf5;
  /* Warm light background */
  --bg-white: #ffffff;

  /* Layout */
  --navbar-height: 80px;
}

/* Base Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Utilities */
.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.bg-light-soft {
  background-color: var(--bg-light);
}

/* Buttons */
.btn {
  padding: -0.25rem 1.8rem;
  font-weight: 600;
  border-radius: 50px;
  /* Pill shape */
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-primary:hover {
  background: transparent;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

.btn-outline-primary {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  background-color: white;
  padding: 0.2rem 0;
  /* Reduced padding */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-dark) !important;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

/* Logo icon simulation */
.navbar-brand .logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-color), #ffad42);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 12px;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 600;
  margin: 0 1rem;
  padding: 0.5rem 0 !important;
  position: relative;
  font-size: 0.95rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hero Section */
.hero-wrapper {
  padding: 40px 0 80px;
  /* Reduced top padding */
  position: relative;
  overflow: hidden;
  background: white;
}

/* Orange circle background */
.hero-circle {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--primary-light) 0%, white 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero-subtitle {
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
  font-size: 0.9rem;
  background: var(--primary-light);
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
}

.hero-image-container {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  /* Match carousel border radius */
}

/* Carousel Image Fix */
.carousel-inner img {
  height: 450px;
  /* Fixed height for consistency */
  object-fit: cover;
  object-position: top;
}

/* Experience Badge */
.exp-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 3;
}

.exp-badge .years {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

/* Cards */
.card {
  border: 1px solid #f0f0f0;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  padding: 1.5rem;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px -5px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-light);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.card:hover .card-icon {
  background: var(--primary-color);
  color: white;
}

/* Page Headers */
.page-header {
  background: var(--primary-light);
  color: var(--text-dark);
  padding: 80px 0;
  margin-bottom: 4rem;
  position: relative;
}

.page-header h1 {
  font-weight: 800;
  color: var(--text-dark);
}

/* Footer */
footer {
  background-color: #111;
  /* Pitch black for contrast with orange */
  color: white;
  padding: 80px 0 30px;
}

footer h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 25px;
}

footer a {
  color: #9ca3af;
}

footer a:hover {
  color: white;
  padding-left: 5px;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px var(--primary-light);
}