/*
Author       : Dreams LMS - Refined for Impera HCM
Template Name: Impera HCM - Human Capital Management Platform
Version      : 1.1 - Enhanced with index-three.html styling
Based on     : Dreams LMS Bootstrap Template (index-three.html)
Last Updated : 2024-12-20
*/

/*============================
| [Table of CSS]

1. General & Fonts
2. CSS Variables & Colors
3. Bootstrap Overrides
4. Header & Navigation
5. Home Three Styles
6. Hero Section
7. Statistics Section
8. Master Skills Section
9. Features Section (home-three-courses, section-header-title)
10. Home Three Favourite Section (favourite-box, categories, instructors)
11. About Section
12. FAQ Section
13. Footer Section (footer-three, newsletter, social icons)
14. Buttons & Components (tags, badges, buttons)
15. Animations & Effects
16. Responsive Design

Enhancements from index-three.html:
- Added footer-three comprehensive styling with newsletter
- Added home-three-favourite section with hover effects
- Added home-three-courses section styling
- Added section-header-title component
- Added tag/badge component styles
- Added see-all link styling
- Enhanced responsive breakpoints for all new components
- Improved color scheme consistency with Dreams LMS palette

========================================*/

/*-----------------
	1. General & Fonts
-----------------------*/

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;900&display=swap");

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  color: #22100d;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  height: 100%;
  overflow-x: hidden;
  line-height: 1.6;
}

body.home-three {
  background-color: #fff;
}

/*-----------------
	2. CSS Variables & Colors
-----------------------*/

:root {
  /* Primary Colors - Dreams LMS Theme */
  --primary-purple: #7b1ffe;
  --primary-blue: #392c7d;
  --primary-cyan: #1cbeef;
  --primary-green: #0dd3a3;
  --primary-yellow: #fed700;
  
  /* Text Colors */
  --text-dark: #22100d;
  --text-gray: #585858;
  --text-light: #6e82a3;
  --text-white: #ffffff;
  
  /* Background Colors */
  --bg-white: #ffffff;
  --bg-light: #f3f4fe;
  --bg-gray: #f4f4f4;
  
  /* Border Colors */
  --border-light: #e5e5e5;
  --border-gray: #dce0eb;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-cyan) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
}

/*-----------------
	3. Bootstrap Overrides
-----------------------*/

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.3;
}

a {
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-purple);
  text-decoration: none;
}

.text-blue {
  color: var(--primary-blue) !important;
}

.text-yellow {
  color: var(--primary-yellow) !important;
}

.text-info {
  color: var(--primary-cyan) !important;
}

.text-green {
  color: var(--primary-green) !important;
}

.bg-blue {
  background: var(--primary-blue) !important;
}

.bg-yellow {
  background: var(--primary-yellow) !important;
}

/*-----------------
	4. Header & Navigation
-----------------------*/

.header-three {
  background-color: var(--bg-white);
  border-bottom: 2px solid #e0e0e0;
}

.header-fixed-three {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-nav-three {
  padding: 15px 0;
}

.navbar-brand.logo img {
  max-height: 40px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav > li {
  position: relative;
  margin: 0 20px;
}

.main-nav > li > a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-gray);
  padding: 10px 0;
  transition: all 0.3s ease;
}

.main-nav > li > a:hover,
.main-nav > li.active > a {
  color: var(--primary-purple);
  font-weight: 600;
}

.main-nav > li .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.main-nav > li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav > li .submenu li a {
  display: block;
  padding: 10px 20px;
  color: var(--text-gray);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.main-nav > li .submenu li a:hover {
  color: var(--primary-purple);
  padding-left: 25px;
}

.header-navbar-rht {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-navbar-rht > li {
  margin-left: 15px;
}

.dark-mode-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--bg-light);
  color: var(--text-gray);
  transition: all 0.3s ease;
}

.dark-mode-toggle:hover {
  background: var(--primary-purple);
  color: var(--text-white);
}

.login-three-head {
  background: var(--primary-purple);
  color: var(--text-white) !important;
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: all 0.3s ease;
}

.login-three-head:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.signin-three-head {
  color: var(--primary-purple) !important;
  padding: 10px 20px;
  border: 2px solid var(--primary-purple);
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: all 0.3s ease;
}

.signin-three-head:hover {
  background: var(--primary-purple);
  color: var(--text-white) !important;
}

/* Mobile Menu */
.bar-icon {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.bar-icon span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-purple);
  margin: 3px 0;
  transition: all 0.3s ease;
}

.menu-header {
  display: none;
}

.menu-close {
  font-size: 24px;
  color: var(--text-gray);
}

/*-----------------
	5. Home Three Styles
-----------------------*/

.home-three-slide {
  background-image: url('../img/slider/home-three-banner.jpg');
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  min-height: 100vh;
  position: relative;
  padding: 120px 0;
}

.home-three-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(123, 31, 254, 0.1) 0%, rgba(28, 190, 239, 0.05) 100%);
  z-index: 1;
}

.home-three-slide > .container {
  position: relative;
  z-index: 2;
}

.home-three-slide-face {
  padding: 60px 0;
}

.home-three-slide-text h5 {
  background: var(--primary-purple);
  color: var(--text-white);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.home-three-slide-text h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.home-three-slide-text h1 span {
  color: var(--primary-purple);
}

.home-three-slide-text p {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 30px;
  line-height: 1.6;
}

.girl-slide-img {
  text-align: center;
  position: relative;
}

.girl-slide-img img {
  max-width: 100%;
  height: auto;
}

/*-----------------
	6. Hero Section (Alternative)
-----------------------*/

.ud-hero {
  background: linear-gradient(135deg, #0a0e1a 0%, #1e293b 50%, #374151 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.ud-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(123, 31, 254, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.ud-hero > .container {
  position: relative;
  z-index: 2;
}

.ud-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.ud-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.ud-hero-desc {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  line-height: 1.6;
}

.ud-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.ud-hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ud-hero-buttons li {
  list-style: none;
}

/*-----------------
	7. Statistics Section
-----------------------*/

.student-course.home-three-course {
  padding: 80px 0;
  background: var(--bg-light);
}

.course-widget-three {
  margin-bottom: 0;
}

.course-details-three {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
}

.course-details-three:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.course-count-three {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.course-img {
  margin-bottom: 20px;
}

.course-content-three h4 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.course-content-three p {
  font-size: 16px;
  color: var(--text-gray);
  margin: 0;
}

/*-----------------
	8. Master Skills Section
-----------------------*/

.master-skill-three {
  padding: 100px 0;
  position: relative;
  background: var(--bg-white);
}

.master-three-vector {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.master-three-vector .ellipse-right {
  opacity: 0.1;
}

.master-three-images {
  position: relative;
  z-index: 2;
}

.home-three-head h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.home-three-content p {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 40px;
}

.skils-group {
  margin-top: 40px;
}

.skils-icon-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.skils-icon {
  margin-right: 20px;
  flex-shrink: 0;
}

.skils-content p {
  font-size: 16px;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.5;
}

/*-----------------
	9. Features Section
-----------------------*/

.ud-features {
  padding: 100px 0;
  background: var(--bg-white);
}

/* Home Three Courses Section */
.home-three-courses {
  padding: 60px 0;
  background: #fbfbff;
}

.favourite-course-sec {
  position: relative;
}

.section-header-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-header-title .tag,
.ud-section-title span {
  color: #7b1ffe;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.ud-section-title {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.ud-section-title h2,
.section-header-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.ud-section-title p {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.6;
}

.ud-single-feature {
  margin-bottom: 40px;
  padding: 30px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

.ud-single-feature:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.ud-feature-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-purple);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--text-white);
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

.ud-feature-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: all 0.3s ease;
}

.ud-single-feature:hover .ud-feature-icon::before {
  opacity: 1;
}

.ud-feature-icon i {
  position: relative;
  z-index: 2;
}

.ud-feature-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.ud-feature-desc {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
}

/*-----------------
	10. Home Three Favourite Section
-----------------------*/

.home-three-favourite {
  padding: 80px 0 40px;
  position: relative;
  background: var(--bg-white);
}

.home-three-favourite:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 230px;
  background: #f4f4ff;
  text-align: center;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.home-three-favourite .container {
  position: relative;
  z-index: 2;
}

.home-three-favourite .categories-content h3 {
  font-weight: 600;
  font-size: 16px;
  color: #2f2f2f;
  transition: 0.7s;
}

/* See All Link */
.home-three .see-all a,
.see-all a {
  font-weight: 600;
  font-size: 20px;
  color: #7b1ffe;
  float: right;
  transition: all 0.3s ease;
}

.home-three .see-all a:hover,
.see-all a:hover {
  color: #1cbeef;
}

.see-all-icon {
  margin-left: 10px;
  display: inline-block;
  transition: all 0.3s ease;
}

.see-all a:hover .see-all-icon {
  transform: translateX(5px);
}

.favourite-box {
  background: #ffffff;
  border: 1px solid #dedede;
  box-shadow: 0px 4px 14px rgba(231, 231, 231, 0.25);
  border-radius: 10px;
  display: flex;
  padding: 20px;
  align-items: center;
  min-height: 252px;
  transition: 0.7s;
}

.favourite-box:hover {
  background: #7b1ffe;
  cursor: pointer;
  border: 1px solid #7b1ffe;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
  transition: 0.7s;
}

.favourite-box:hover .categories-content h3 {
  color: #ffffff;
  transition: 0.7s;
}

.favourite-box:hover .instructors-info p {
  color: #ffffff;
  transition: 0.7s;
}

.favourite-item {
  width: 100%;
}

.categories-icon {
  margin-bottom: 12px;
}

.categories-icon img {
  width: 60px;
  height: auto;
}

.categories-content {
  margin-bottom: 20px;
}

.course-instructors {
  margin-top: 15px;
}

.instructors-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.instructors-info p {
  font-weight: 500;
  font-size: 14px;
  color: #717171;
  margin-bottom: 0;
  transition: 0.7s;
}

.instructors-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px;
}

.instructors-list li {
  display: inline-block;
}

.instructors-list li a {
  display: block;
}

.instructors-list li img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #ffffff;
}

.instructors-list li.more-set a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
  color: #7b1ffe;
}

/*-----------------
	11. About Section
-----------------------*/

.ud-about {
  padding: 100px 0;
  background: var(--bg-light);
}

.ud-about-wrapper {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ud-about-content-wrapper {
  padding: 60px;
}

.ud-about-content .tag {
  background: #f8f4ff;
  color: #5a1a9e;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  border: 1px solid #e5d9f5;
}

.ud-about-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
  line-height: 1.2;
}

.ud-about-content p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 25px;
}

.ud-about-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

/*-----------------
	11. FAQ Section
-----------------------*/

.ud-faq {
  padding: 100px 0;
  background: var(--bg-light);
  position: relative;
}

.ud-single-faq {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.ud-faq-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 25px 30px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.ud-faq-btn:focus {
  outline: none;
  box-shadow: none;
}

.ud-faq-btn .icon {
  width: 40px;
  height: 40px;
  background: rgba(123, 31, 254, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--primary-purple);
}

.ud-faq-btn .icon i {
  transition: all 0.3s ease;
}

.ud-faq-btn.collapsed .icon i {
  transform: rotate(0deg);
}

.ud-faq-btn:not(.collapsed) .icon i {
  transform: rotate(180deg);
}

.ud-faq-body {
  padding: 0 30px 30px 90px;
  color: var(--text-gray);
  line-height: 1.6;
}

/*-----------------
	12. Buttons & Components
-----------------------*/

/* Tag / Badge Styles */
.tag {
  background: #f8f4ff;
  color: #5a1a9e;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  border: 1px solid #e5d9f5;
}

.badge-yellow {
  background: var(--primary-yellow);
  color: var(--text-dark);
}

.badge-blue {
  background: var(--primary-blue);
  color: var(--text-white);
}

.badge-cyan {
  background: var(--primary-cyan);
  color: var(--text-white);
}

.badge-green {
  background: var(--primary-green);
  color: var(--text-white);
}

/* Buttons */
.ud-main-btn {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 15px 30px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.ud-main-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
  z-index: -1;
}

.ud-main-btn:hover::before {
  left: 100%;
}

.ud-main-btn:hover {
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.ud-white-btn {
  background: #7b1ffe;
  color: #ffffff;
  border: 2px solid #7b1ffe;
}

.ud-white-btn:hover {
  background: #5a1a9e;
  color: #ffffff;
  border-color: #5a1a9e;
  text-decoration: none;
}

.btn-three-primary {
  background: var(--primary-purple);
  border: 1px solid var(--primary-purple);
  color: var(--text-white);
  padding: 12px 25px;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-three-primary:hover {
  background: var(--primary-cyan);
  border-color: var(--primary-cyan);
  transform: translateY(-2px);
}

/* Counter Animation */
.counterUp {
  font-weight: 700;
}

/*-----------------
	13. Footer Section
-----------------------*/

.footer-three {
  padding: 60px 0;
  background: #071136;
  background-image: url('../img/bg/bg-footer.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  width: 100%;
}

.footer-three-top {
  margin-bottom: 60px;
}

.footer-three-top-content {
  border-bottom: 1px solid #2e2566;
  padding-bottom: 60px;
}

.footer-widget-three {
  margin-bottom: 30px;
}

.footer-three-logo {
  margin-bottom: 20px;
}

.footer-three-logo img {
  max-height: 60px;
}

.footer-three-about {
  max-width: 627px;
}

.footer-three-about p {
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 50px;
  line-height: 1.6;
}

.footer-three .newsletter-title h6 {
  font-weight: 500;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 18px;
}

.box-form-newsletter {
  background: #fff;
  max-width: 635px;
  border-radius: 5px;
  padding: 10px;
}

.form-newsletter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.input-newsletter {
  flex: 1;
  border: none;
  padding: 12px 15px;
  font-size: 14px;
  border-radius: 5px;
  outline: none;
}

.input-newsletter:focus {
  outline: none;
}

.btn.btn-default.font-heading.icon-send-letter {
  background: var(--primary-purple);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn.btn-default.font-heading.icon-send-letter:hover {
  background: var(--primary-cyan);
  transform: translateY(-2px);
}

.footer-three-right {
  margin-left: 100px;
}

.footer-three-title {
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-menu-three ul {
  list-style: none;
  margin: 0;
  padding: 0;
  outline: none;
}

.footer-menu-three ul li {
  margin-bottom: 10px;
  position: relative;
}

.footer-menu-three ul li a {
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  margin-left: 20px;
  transition: all 0.3s ease;
  position: relative;
  display: block;
}

.footer-menu-three ul li a:before {
  position: absolute;
  top: 7px;
  left: -20px;
  display: block;
  content: "\f111";
  font-size: 8px;
  color: #fed700;
  transition: all 0.3s ease;
  font-family: "FontAwesome";
}

.footer-menu-three ul li a:hover {
  color: #fed700;
  padding-left: 10px;
}

.footer-three-bottom {
  position: relative;
}

.copyright-three {
  text-align: center;
}

.social-icon-three {
  margin-bottom: 30px;
  text-align: center;
}

.social-icon-three h6 {
  font-weight: 500;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 20px;
}

.social-icon-three ul {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  gap: 15px;
}

.social-icon-three ul li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icon-three ul li a:hover {
  background: var(--primary-purple);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(123, 31, 254, 0.3);
}

.privacy-policy-three {
  margin-bottom: 30px;
}

.privacy-policy-three ul {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.privacy-policy-three ul li {
  padding: 0 10px;
  border-right: 1px solid #b2b1fc;
  list-style: none;
  height: 10px;
  align-items: center;
  display: flex;
}

.privacy-policy-three ul li:last-child {
  border-right: 0;
}

.privacy-policy-three ul li a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.privacy-policy-three ul li a:hover {
  color: #fed700;
}

.copyright-text-three p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

/* Compact Footer */
.footer-compact {
  padding: 50px 0 30px;
}

.footer-compact__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 32px;
}

.footer-compact__brand {
  max-width: 320px;
  color: #ffffff;
}

.footer-compact__brand img {
  height: 52px;
  margin-bottom: 16px;
}

.footer-compact__brand p {
  margin-bottom: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.footer-compact__links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-compact__column h6 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-compact__column a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-compact__column a:hover {
  color: #fed700;
}

.footer-compact__social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #ffffff;
  min-width: 140px;
}

.footer-compact__social span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-compact__social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.footer-compact__social a:hover {
  color: #fed700;
}

.footer-compact__social i {
  font-size: 18px;
}

.footer-compact__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.footer-compact__meta-links {
  display: flex;
  gap: 18px;
}

.footer-compact__meta-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.footer-compact__meta-links a:hover {
  color: #fed700;
}

@media (max-width: 991px) {
  .footer-compact__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-compact__links {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 575px) {
  .footer-compact {
    padding: 40px 0 24px;
  }

  .footer-compact__links {
    flex-direction: column;
    gap: 24px;
  }

  .footer-compact__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-compact__meta-links {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/*-----------------
	14. Animations & Effects
-----------------------*/

/* AOS Animations */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* Allow footer content interactions even before AOS activates */
.footer-compact__content[data-aos] {
  pointer-events: auto;
}

/* Hover Effects */
.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/*-----------------
	15. Responsive Design
-----------------------*/

@media (max-width: 1199px) {
  .home-three-slide-text h1 {
    font-size: 42px;
  }
  
  .ud-hero-title {
    font-size: 42px;
  }
  
  .home-three-head h2,
  .ud-section-title h2,
  .section-header-title h2 {
    font-size: 36px;
  }
  
  .footer-three-right {
    margin-left: 70px;
  }
}

@media (max-width: 991px) {
  .main-menu-wrapper {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
  }
  
  .main-menu-wrapper.show {
    right: 0;
  }
  
  .menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
  }
  
  .main-nav {
    flex-direction: column;
    padding: 20px;
  }
  
  .main-nav > li {
    width: 100%;
    margin: 0 0 10px 0;
  }
  
  .main-nav > li > a {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
  }
  
  .home-three-slide {
    padding: 80px 0;
    text-align: center;
  }
  
  .home-three-slide-text h1 {
    font-size: 36px;
  }
  
  .ud-hero {
    padding: 80px 0 60px;
  }
  
  .ud-hero-title {
    font-size: 36px;
  }
  
  .master-skill-three,
  .ud-features,
  .ud-about,
  .ud-faq {
    padding: 60px 0;
  }
  
  .home-three-head h2,
  .ud-section-title h2 {
    font-size: 32px;
  }
  
  .ud-about-content-wrapper {
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .home-three-slide-text h1 {
    font-size: 28px;
  }
  
  .ud-hero-title {
    font-size: 28px;
  }
  
  .home-three-head h2,
  .ud-section-title h2,
  .section-header-title h2 {
    font-size: 28px;
  }
  
  .ud-hero-desc,
  .home-three-slide-text p,
  .home-three-content p {
    font-size: 16px;
  }
  
  .ud-hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .ud-main-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
  
  .course-details-three {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
  
  .ud-single-feature {
    padding: 25px 20px;
  }
  
  .ud-about-content-wrapper {
    padding: 30px 20px;
  }
  
  .ud-faq-btn {
    padding: 20px;
    font-size: 16px;
  }
  
  .ud-faq-body {
    padding: 0 20px 25px 70px;
  }
  
  .skils-icon-item {
    flex-direction: column;
    text-align: center;
  }
  
  .skils-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .home-three-courses,
  .home-three-favourite {
    padding: 40px 0 20px;
  }
  
  .footer-three-right {
    margin-left: 0;
  }
  
  .footer-three-about p {
    font-size: 14px;
    margin-bottom: 25px;
  }
  
  .footer-three .newsletter-title h6 {
    font-size: 18px;
    margin-bottom: 18px;
  }
  
  .box-form-newsletter {
    margin-bottom: 25px;
  }
  
  .footer-three-top-content {
    padding-bottom: 20px;
  }
  
  .footer-three-top {
    margin-bottom: 30px;
  }
  
  .social-icon-three {
    margin-bottom: 30px;
  }
  
  .footer-menu-three {
    margin-bottom: 24px;
  }
}

@media (max-width: 575px) {
  .home-three-slide-text h1 {
    font-size: 24px;
  }
  
  .ud-hero-title {
    font-size: 24px;
  }
  
  .home-three-head h2,
  .ud-section-title h2,
  .section-header-title h2 {
    font-size: 24px;
  }
  
  .ud-hero-badges {
    justify-content: center;
  }
  
  .course-content-three h4 {
    font-size: 28px;
  }
  
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .footer-three {
    padding: 40px 0;
  }
  
  .footer-three-logo img {
    max-height: 50px;
  }
  
  .footer-three-about p {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .footer-three .newsletter-title h6 {
    font-size: 18px;
  }
  
  .social-icon-three h6 {
    font-size: 18px;
  }
  
  .footer-three-title {
    font-size: 18px;
  }
  
  .footer-three-top {
    margin-bottom: 0;
  }
  
  .footer-three-bottom .copyright-three {
    padding-top: 30px;
  }
  
  .social-icon-three {
    display: block;
    text-align: center;
    margin-bottom: 0;
  }
  
  .privacy-policy-three {
    margin-bottom: 30px;
  }
  
  .privacy-policy-three ul {
    display: block;
  }
  
  .privacy-policy-three ul li {
    padding: 15px 0;
    border-right: none;
    display: block;
    height: auto;
  }
  
  .box-form-newsletter {
    padding: 5px;
  }
  
  .form-newsletter {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn.btn-default.font-heading.icon-send-letter {
    width: 100%;
    padding: 10px;
  }
  
  .favourite-box {
    min-height: auto;
    padding: 15px;
  }
}

/* Print Styles */
@media print {
  .header-three,
  .ud-hero-buttons,
  .btn,
  .ud-main-btn {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
}