/* ========================================
   Goodluck Finance Services - Custom CSS
   ======================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary: #0d6efd;
  --primary-dark: #0a58ca;
  --secondary: #1a1a2e;
  --accent: #f0a500;
  --dark: #0f0f23;
  --light: #f8f9fa;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  --gradient-accent: linear-gradient(135deg, #f0a500 0%, #e09200 100%);
  --shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

/* ---------- Reset & Base ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--secondary);
}

a {
  text-decoration: none;
  transition: var(--transition);
}

.set img {
  height: 65px;
}

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

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease;
}

#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--light-gray);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Back to Top ---------- */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--secondary);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.8);
}

.top-bar a:hover {
  color: var(--accent);
}

.top-bar i {
  color: var(--accent);
  margin-right: 5px;
}

/* ---------- Navbar ---------- */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow);
  /* padding: 12px 0; */
  transition: var(--transition);
  z-index: 1050;
}

.navbar.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-lg);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--secondary) !important;
}

.navbar-brand span {
  color: var(--primary);
}

.navbar-brand .brand-dot {
  color: var(--accent);
}

.nav-link {
  font-weight: 500;
  color: var(--secondary) !important;
  padding: 8px 16px !important;
  font-size: 15px;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: 10px;
  padding: 10px;
  margin-top: 10px;
  min-width: 220px;
}

.dropdown-item {
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: rgba(13, 110, 253, 0.08);
  color: var(--primary);
  transform: translateX(5px);
}

.dropdown-item i {
  width: 20px;
  color: var(--primary);
  margin-right: 8px;
}

.navbar .btn-primary {
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 600;
  font-size: 14px;
}

/* ---------- Hero Section ---------- */
.hero-section {
  background: var(--gradient-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(13, 110, 253, 0.1);
  border-radius: 50%;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(240, 165, 0, 0.08);
  border-radius: 50%;
}

.hero-section h1 {
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-section h1 span {
  color: var(--accent);
}

.hero-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin-bottom: 35px;
  max-width: 550px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

.hero-stats .stat {
  text-align: center;
}

.hero-stats .stat h3 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.hero-stats .stat p {
  font-size: 14px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ---------- Page Header ---------- */
.page-header {
  background: var(--gradient-dark);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
}

.page-header .breadcrumb {
  justify-content: center;
  position: relative;
}

.page-header .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumb-item.active {
  color: var(--accent);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- Section Styles ---------- */
.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title .subtitle {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  display: inline-block;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
}

.section-title.text-start p {
  margin: 0;
}

/* ---------- About Section ---------- */
.about-section .about-img {
  position: relative;
}

.about-section .about-img img {
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
}

.about-section .about-img .experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 25px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.4);
}

.about-section .about-img .experience-badge h3 {
  font-size: 2.5rem;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0;
}

.about-section .about-img .experience-badge p {
  margin-bottom: 0;
  font-size: 14px;
}

.about-section .about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-section .about-content p {
  color: var(--gray);
  margin-bottom: 20px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.about-feature .icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(13, 110, 253, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
}

.about-feature h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.about-feature p {
  font-size: 14px;
  margin-bottom: 0 !important;
}

/* ---------- Services Section ---------- */
.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--light-gray);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: rgba(13, 110, 253, 0.08);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .icon-box {
  background: var(--primary);
  color: var(--white);
  transform: rotateY(180deg);
}

.service-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 20px;
}

.service-card .btn-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.service-card .btn-link:hover {
  color: var(--primary-dark);
}

/* ---------- Why Choose Us ---------- */
.why-choose-section {
  background: var(--light);
}

.why-card {
  text-align: center;
  padding: 30px 20px;
}

.why-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
}

.why-card h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 0;
}

/* ---------- Counter Section ---------- */
.counter-section {
  background: var(--gradient-dark);
  padding: 80px 0;
}

.counter-box {
  text-align: center;
  padding: 20px;
}

.counter-box i {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 15px;
}

.counter-box h3 {
  font-size: 2.5rem;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 5px;
}

.counter-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-bottom: 0;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--gradient-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-section .btn-light {
  border-radius: 50px;
  padding: 14px 35px;
  font-weight: 600;
}

.cta-section .btn-outline-light {
  border-radius: 50px;
  padding: 14px 35px;
  font-weight: 600;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: 15px;
  padding: 35px 30px;
  box-shadow: var(--shadow);
  position: relative;
  margin: 10px;
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card .quote-icon {
  font-size: 40px;
  color: rgba(13, 110, 253, 0.15);
  margin-bottom: 15px;
}

.testimonial-card p {
  color: var(--gray);
  font-style: italic;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.8;
}

.testimonial-card .client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-card .client-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .client-info .avatar-placeholder {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
}

.testimonial-card .client-info h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 3px;
  font-size: 15px;
}

.testimonial-card .client-info small {
  color: var(--gray);
  font-size: 13px;
}

.testimonial-card .stars {
  color: var(--accent);
  margin-bottom: 15px;
}

/* ---------- Blog Section ---------- */
.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-card .blog-img {
  height: 220px;
  background: var(--gradient-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 50px;
  position: relative;
  overflow: hidden;
}

.blog-card .blog-img .blog-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.blog-card .blog-img .blog-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: var(--dark);
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-card .blog-body {
  padding: 25px;
}

.blog-card .blog-body h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.blog-card .blog-body h5 a {
  color: var(--secondary);
}

.blog-card .blog-body h5 a:hover {
  color: var(--primary);
}

.blog-card .blog-body p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 15px;
}

.blog-card .blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--light-gray);
}

.blog-card .blog-footer span {
  font-size: 13px;
  color: var(--gray);
}

.blog-card .blog-footer span i {
  margin-right: 5px;
  color: var(--primary);
}

/* ---------- Blog Single ---------- */
.blog-single .blog-content {
  line-height: 2;
  font-size: 16px;
}

.blog-single .blog-content h3 {
  margin: 30px 0 15px;
}

.blog-single .blog-content p {
  color: #555;
  margin-bottom: 20px;
}

.blog-single .blog-content blockquote {
  background: var(--light);
  border-left: 4px solid var(--primary);
  padding: 25px 30px;
  margin: 30px 0;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: var(--secondary);
}

.blog-sidebar .widget {
  background: var(--white);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}

.blog-sidebar .widget h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--light-gray);
  position: relative;
}

.blog-sidebar .widget h5::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
}

.blog-sidebar .recent-post {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--light-gray);
}

.blog-sidebar .recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.blog-sidebar .recent-post .post-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
}

.blog-sidebar .recent-post h6 a {
  color: var(--secondary);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.blog-sidebar .recent-post h6 a:hover {
  color: var(--primary);
}

.blog-sidebar .recent-post small {
  color: var(--gray);
}

.blog-sidebar .category-list li {
  list-style: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
}

.blog-sidebar .category-list li:last-child {
  border-bottom: none;
}

.blog-sidebar .category-list li a {
  color: var(--secondary);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
}

.blog-sidebar .category-list li a:hover {
  color: var(--primary);
}

.blog-sidebar .category-list li a span {
  background: var(--light);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
}

/* ---------- Events Section ---------- */
.event-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  margin-bottom: 30px;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.event-card .event-date {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 130px;
}

.event-card .event-date h3 {
  font-size: 2.5rem;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0;
  line-height: 1;
}

.event-card .event-date span {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

.event-card .event-body {
  padding: 25px;
  flex: 1;
}

.event-card .event-body h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}

.event-card .event-body p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 15px;
}

.event-card .event-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--gray);
}

.event-card .event-meta i {
  color: var(--primary);
  margin-right: 5px;
}

/* ---------- Team / Staff ---------- */
.team-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.team-card .team-img {
  height: 280px;
  background: var(--gradient-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.team-card .team-img .team-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  background: rgba(13, 110, 253, 0.9);
  padding: 12px;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-card:hover .team-img .team-social {
  bottom: 0;
}

.team-card .team-img .team-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
}

.team-card .team-img .team-social a:hover {
  background: var(--white);
  color: var(--primary);
}

.team-card .team-body {
  padding: 25px 20px;
}

.team-card .team-body h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
}

.team-card .team-body span {
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
}

.team-card .team-body p {
  color: var(--gray);
  font-size: 13px;
  margin-top: 10px;
  margin-bottom: 0;
}

/* ---------- History / Timeline ---------- */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--primary);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 30px;
  position: relative;
  margin-bottom: 50px;
  width: 50%;
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
  justify-content: flex-start;
  padding-left: 30px;
  padding-right: 0;
  margin-left: auto;
}

.timeline-item .timeline-dot {
  position: absolute;
  right: -10px;
  top: 20px;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 3px var(--primary);
}

.timeline-item:nth-child(even) .timeline-dot {
  right: auto;
  left: -10px;
}

.timeline-content {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  max-width: 400px;
}

.timeline-content .year {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.timeline-content h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.timeline-content p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 0;
}

/* ---------- Contact Section ---------- */
.contact-section .contact-info {
  background: var(--gradient-dark);
  border-radius: 15px;
  padding: 40px;
  color: var(--white);
  height: 100%;
}

.contact-section .contact-info h4 {
  color: var(--white);
  margin-bottom: 20px;
}

.contact-section .contact-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-item .icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
}

.contact-item h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--white);
}

.contact-item p {
  margin-bottom: 0 !important;
  font-size: 14px;
}

.contact-section .contact-form {
  background: var(--white);
  border-radius: 15px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-section .contact-form .form-control {
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 14px;
  transition: var(--transition);
}

.contact-section .contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.contact-section .contact-form label {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--secondary);
}

.contact-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-right: 10px;
  transition: var(--transition);
}

.contact-social a:hover {
  background: var(--accent);
  color: var(--dark);
}

/* ---------- Mission & Vision ---------- */
.mv-card {
  background: var(--white);
  border-radius: 15px;
  padding: 40px;
  box-shadow: var(--shadow);
  height: 100%;
  border-top: 4px solid var(--primary);
  transition: var(--transition);
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.mv-card .icon {
  width: 70px;
  height: 70px;
  background: rgba(13, 110, 253, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 20px;
}

.mv-card h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
}

.mv-card p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 15px;
}

.mv-card ul li {
  padding: 5px 0;
  font-size: 14px;
  color: var(--gray);
}

.mv-card ul li i {
  color: var(--primary);
  margin-right: 8px;
}

/* ---------- Values Grid ---------- */
.value-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: rgba(13, 110, 253, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
}

.value-card h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 0;
}

/* ---------- Service Detail ---------- */
.service-detail .service-icon-lg {
  width: 100px;
  height: 100px;
  background: rgba(13, 110, 253, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  color: var(--primary);
  margin-bottom: 25px;
}

.service-detail .feature-list li {
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-detail .feature-list li:last-child {
  border-bottom: none;
}

.service-detail .feature-list li i {
  color: var(--primary);
  font-size: 18px;
}

.service-sidebar .sidebar-widget {
  background: var(--white);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}

.service-sidebar .service-list li {
  list-style: none;
}

.service-sidebar .service-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  border-radius: 8px;
  color: var(--secondary);
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
  margin-bottom: 5px;
}

.service-sidebar .service-list li a:hover,
.service-sidebar .service-list li a.active {
  background: var(--primary);
  color: var(--white);
}

.service-sidebar .service-list li a i {
  font-size: 12px;
}

.service-sidebar .cta-widget {
  background: var(--gradient-dark);
  border-radius: 15px;
  padding: 35px 25px;
  text-align: center;
  color: var(--white);
}

.service-sidebar .cta-widget h5 {
  color: var(--white);
  margin-bottom: 10px;
}

.service-sidebar .cta-widget p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 20px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}

.footer h5 {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 18px;
}

.footer p {
  font-size: 14px;
  line-height: 1.8;
}

.footer .footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
  display: inline-block;
}

.footer .footer-brand span {
  color: var(--primary);
}

.footer-links li {
  list-style: none;
  margin-bottom: 10px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: var(--transition);
}

.footer-links li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-links li a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--primary);
}

.footer .footer-contact li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
}

.footer .footer-contact li i {
  color: var(--accent);
  margin-top: 4px;
  min-width: 16px;
}

.footer .newsletter-form .form-control {
  border: none;
  border-radius: 50px 0 0 50px;
  padding: 12px 20px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.footer .newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer .newsletter-form .btn {
  border-radius: 0 50px 50px 0;
  padding: 12px 25px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  margin-top: 50px;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 13px;
}

.footer-bottom .social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 8px;
  transition: var(--transition);
}

.footer-bottom .social-links a:hover {
  background: var(--primary);
  color: var(--white);
}

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Buttons ---------- */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 10px;
  padding: 12px 30px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.35);
  background: var(--primary-dark);
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  border-radius: 10px;
  padding: 12px 30px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.35);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .event-card {
    flex-direction: column;
  }

  .event-card .event-date {
    flex-direction: row;
    gap: 10px;
    padding: 15px 20px;
    min-width: auto;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
  }

  .timeline-item:nth-child(even) {
    padding-left: 50px;
  }

  .timeline-item .timeline-dot {
    left: 11px;
    right: auto;
  }

  .timeline-item:nth-child(even) .timeline-dot {
    left: 11px;
  }

  .timeline-content {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-section {
    text-align: center;
    padding: 100px 0 60px;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    margin: 0 auto 30px;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .counter-box h3 {
    font-size: 2rem;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .contact-section .contact-info {
    margin-bottom: 30px;
  }

  .top-bar .text-end {
    text-align: center !important;
    margin-top: 5px;
  }
}

@media (max-width: 575px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }

  .hero-stats .stat h3 {
    font-size: 1.8rem;
  }

  .section-title h2 {
    font-size: 1.6rem;
  }
}