/* ==========================================
   DiGi CAFE - Global Styles
   ========================================== */

/* Color Palette */
:root {
  --primary-color: #fda220;
  --primary-dark: #e68a0d;
  --primary-light: #fdb649;
  --secondary-color: #1a1a2e;
  --accent-color: #0f3460;
  --text-dark: #222;
  --text-light: #666;
  --text-white: #fff;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --success-color: #27ae60;
  --warning-color: #f39c12;
  --error-color: #e74c3c;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 15px 50px rgba(0, 0, 0, 0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-primary: linear-gradient(135deg, #fda220 0%, #fdb649 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
}

/* ==========================================
   Base Styles
   ========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  font-size: 16px;
  padding-top: 92px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 3rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   Containers & Sections
   ========================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================
   Buttons
   ========================================== */

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: none;
  font-size: 1rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(253, 162, 32, 0.4);
}

.btn-primary:hover {
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(253, 162, 32, 0.5);
  background: linear-gradient(135deg, #e68a0d 0%, #fda220 100%);
}

.btn-secondary {
  background: var(--secondary-color);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(26, 26, 46, 0.3);
}

.btn-secondary:hover {
  background: var(--accent-color);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 26, 46, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2.5px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--text-white);
  transform: translateY(-2px);
  border-color: var(--primary-dark);
}

.btn-small {
  padding: 12px 28px;
  font-size: 0.95rem;
}

.btn-lg {
  padding: 16px 48px;
  font-size: 1.1rem;
}
.contact-us{
    color: white !important;
    background-color: #fda220 !important;
    box-shadow: none !important;
    padding-bottom: 12px !important;
}

/* ==========================================
   Navigation
   ========================================== */

.navbar {
  background: var(--text-white);
  padding: 1.2rem 0;
  box-shadow: var(--shadow-md);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.98);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary-color);
  text-decoration: none;
  letter-spacing: 0.5px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 60px;
}

.navbar-logo {
  width: 140px;
  height: 60px;
  object-fit: contain;
 
  transition: transform 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
  transform: scale(1.05);
}

.navbar-brand span {
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-item a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 4px;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-item a:hover::after {
  width: 100%;
}

.navbar-cta {
  margin-left: 1rem;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.hamburger i {
  transition: all 0.3s ease;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-white);
    padding: 2rem 1rem;
    box-shadow: var(--shadow-md);
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-item {
    width: 100%;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-item a {
    display: block;
    padding: 1rem 0;
  }
}

/* ==========================================
   Hero Section
   ========================================== */

.hero {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(15, 52, 96, 0.85) 100%), url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&h=600&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(253, 162, 32, 0.1) 0%, transparent 50%), 
              radial-gradient(circle at 80% 20%, rgba(0, 244, 164, 0.08) 0%, transparent 50%);
  opacity: 0.8;
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: center;
}

.hero h1 {
  color: var(--text-white);
  margin-bottom: 1rem;
  animation: slideInDown 0.8s ease;
  text-align: center;
  font-size: 2.8rem !important;

}

.hero-highlight {
  color: var(--primary-color);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  animation: slideInUp 0.8s ease;
  text-align: center;
   font-size: 1.2rem !important;
}

.hero-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  animation: fadeIn 0.8s ease 0.2s both;
  text-align: center;
}

.hero-cta {
  animation: fadeIn 0.8s ease 0.4s both;
  text-align: center;
}

.hero-container .hero-content {
  text-align: left;
}

.hero-container .hero-content h1 {
  text-align: left;
}

.hero-container .hero-content .hero-subtitle {
  text-align: left;
}

.hero-container .hero-content .hero-intro {
  text-align: left;
}

.hero-container .hero-content .hero-cta {
  text-align: left;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInRight 0.8s ease;
}

.hero-image-img {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  object-fit: cover;
  animation: slideInRight 0.8s ease;
}

/* ==========================================
   Features / Highlights
   ========================================== */

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-top: 3rem;
  justify-items: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: var(--transition);
  width: 100%;
}

.highlight-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  color: var(--text-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(253, 162, 32, 0.25);
  transition: var(--transition);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.highlight-item:hover .highlight-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 12px 30px rgba(253, 162, 32, 0.35);
}

.highlight-content {
  display: flex;
  flex-direction: column;
}

.highlight-item h3 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem 0;
  color: var(--text-dark);
  font-weight: 700;
  text-align: left;
}

.highlight-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

@media (max-width: 768px) {
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.7rem;
  }
}

/* ==========================================
   Service Cards
   ========================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(253, 162, 32, 0.3);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 8px 20px rgba(253, 162, 32, 0.4);
}

.service-card h4 {
  margin-bottom: 1rem;
}

.service-card p {
  margin-bottom: 0;
}

/* ==========================================
   Grid Layouts
   ========================================== */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* ==========================================
   Process Steps
   ========================================== */

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 1.5rem 0.8rem;
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-6px);
}

.step-counter {
  display: none;
}

.step-icon {
  width: 100%;
  margin-bottom: 1rem;
}

.step-icon i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  background: var(--gradient-primary);
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(253, 162, 32, 0.3);
  transition: var(--transition);
}

.process-step:hover .step-icon i {
  color: white;
  transform: scale(1);
  box-shadow: 0 6px 18px rgba(253, 162, 32, 0.4);
}

.process-step h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .process-step {
    padding: 1.2rem 0.6rem;
  }

  .step-icon i {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .process-step h4 {
    font-size: 0.85rem;
  }

  .process-step p {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .process-step {
    padding: 1rem 0.5rem;
  }

  .step-icon i {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ==========================================
   Testimonials
   ========================================== */

.testimonials {
  background: var(--bg-light);
}

.testimonial-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  border-left: 5px solid var(--primary-color);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  text-align: center;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--primary-color);
  display: block;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-left-color: var(--primary-dark);
}

.testimonial-stars {
  color: #ffc107;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Swiper Carousel Styles */
.testimonial-swiper {
  position: relative;
  padding: 2rem 0;
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

.swiper-pagination {
  position: relative;
  margin-top: 2.5rem;
  bottom: auto;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(253, 162, 32, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
  width: 32px;
  border-radius: 6px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  color: var(--primary-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.4rem;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

.swiper-button-next {
  right: -60px;
}

.swiper-button-next::after {
  content: '›';
}

.swiper-button-prev {
  left: -60px;
}

.swiper-button-prev::after {
  content: '‹';
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(253, 162, 32, 0.3);
}

.swiper-button-next:active,
.swiper-button-prev:active {
  transform: scale(0.95);
}

@media (max-width: 1024px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 44px;
    height: 44px;
    margin-top: -22px;
  }
  
  .swiper-button-next {
    right: -50px;
  }
  
  .swiper-button-prev {
    left: -50px;
  }
  
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    border-width: 1.5px;
  }
  
  .swiper-button-next {
    right: -45px;
  }
  
  .swiper-button-prev {
    left: -45px;
  }
  
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 1rem;
  }
}

/* ==========================================
   Portfolio / Case Studies
   ========================================== */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.portfolio-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-light);
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 46, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--text-white);
  text-align: center;
  padding: 2rem;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.portfolio-category {
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.portfolio-stats {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

/* ==========================================
   Image Placeholders & Icons
   ========================================== */

.image-placeholder {
  background: linear-gradient(135deg, #fda220 0%, #fdb649 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.image-placeholder::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Professional Icons Styling */
i[class*="fas"],
i[class*="fab"] {
  transition: var(--transition);
}

.service-icon i,
.feature-icon i {
  color: white;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #fda220, #fdb649);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(253, 162, 32, 0.3);
  font-size: 2rem;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.feature-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #1a1a2e;
  font-weight: 700;
}

.feature-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* ==========================================
   Pagination Styles
   ========================================== */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.pagination-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 20px;
  background: white;
  border: 2px solid #fda220;
  color: #fda220;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
  background: #fda220;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(253, 162, 32, 0.3);
}

.pagination-btn:disabled {
  border-color: #ccc;
  color: #ccc;
  cursor: not-allowed;
}

.pagination-numbers {
  display: flex;
  gap: 0.5rem;
}

.pagination-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e0e0e0;
  background: white;
  color: #666;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-number:hover {
  border-color: #fda220;
  color: #fda220;
}

.pagination-number.active {
  background: #fda220;
  border-color: #fda220;
  color: white;
}

/* ==========================================
   Blog Filter Styles
   ========================================== */

.blog-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 10px 20px;
  background: white;
  border: 2px solid #e0e0e0;
  color: #666;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: #fda220;
  color: #fda220;
}

.filter-btn.active {
  background: #fda220;
  border-color: #fda220;
  color: white;
}



.footer-contact-icon {
  display: inline-block;
}

/* ==========================================
   Enhanced Contact Form
   ========================================== */

.contact-form {
  max-width: 600px;
  margin: 3rem auto;
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-white);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(253, 162, 32, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-item input[type="checkbox"] {
  width: auto;
  cursor: pointer;
}

.checkbox-item label {
  margin-bottom: 0;
  cursor: pointer;
}

.form-submit {
  width: 100%;
}

/* ==========================================
   Blog / Cards Grid
   ========================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.blog-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(253, 162, 32, 0.1), rgba(253, 162, 32, 0.05));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px);
}

.blog-card:hover::after {
  opacity: 1;
}

.blog-image {
  width: 100%;
  height: 220px;
  background: var(--bg-light);
  overflow: hidden;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  transform: scale(1.08);
}

.blog-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  color: var(--primary-color);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.blog-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.blog-excerpt {
  color: var(--text-light);
  flex: 1;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.blog-author {
  font-size: 0.85rem;
  color: var(--text-light);
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--primary-dark);
  transform: translateX(4px);
}

/* ==========================================
   Footer
   ========================================== */

footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  color: var(--text-white);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><pattern id="dots" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect fill="url(%23dots)" width="1200" height="400"/></svg>');
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-section h4 {
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-top: 0px;
  flex-shrink: 0;
  color: white;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(253, 162, 32, 0.3);
}

.footer-contact-item:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(253, 162, 32, 0.4);
}

.contact-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(253, 162, 32, 0.3);
}

.social-link:hover {
  background: var(--primary-dark);
  transform: translateY(-4px) rotate(10deg);
  box-shadow: 0 8px 20px rgba(253, 162, 32, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
 
}
.Privacy{
    margin-right: 80px;
}
.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-left: 45px;
}

/* ==========================================
   Animations
   ========================================== */

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ==========================================
   Responsive Design
   ========================================== */

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero h1,
  .hero-subtitle,
  .hero-intro,
  .hero-cta {
    text-align: center;
  }

  .hero-image-placeholder {
    height: 300px;
    font-size: 3rem;
  }

  .grid-2 {
    display: flex !important;
    flex-direction: column !important;
    gap: 3rem !important;
    padding: 0 1.5rem;
    align-items: stretch !important;
  }

  .grid-2 img {
    order: 2 !important;
    width: 100% !important;
  }

  .grid-2 > div:not(style) {
    order: 1 !important;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding: 80px 0;
    background-attachment: scroll;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .navbar-cta {
    margin-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
.Privacy{
    margin-right: 0px;
}
.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-left: 0px;
}
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  section {
    padding: 40px 0;
  }

  .container {
    padding: 0 15px;
  }
}

/* Blog Detail Page Styles */
.blog-hero {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12rem;
  opacity: 0.3;
  z-index: 0;
}

.blog-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 3rem;
}

.blog-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  color: white;
}

.blog-hero-meta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 1.1rem;
  opacity: 0.95;
}

.blog-hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  color: #666;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #fda220;
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb a:hover {
  color: #e68a0d;
  text-decoration: underline;
}

/* Main Blog Container */
.blog-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  margin: 3rem 0;
}

.blog-detail-main {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.blog-detail-sidebar {
  height: fit-content;
}

/* Sidebar Box */
.sidebar-box {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  border-left: 4px solid #fda220;
}

.sidebar-box h4 {
  color: #1a1a2e;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.sidebar-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.sidebar-meta-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-meta-icon {
  color: #fda220;
  margin-top: 0.2rem;
  min-width: 20px;
  text-align: center;
}

.sidebar-meta-content {
  flex: 1;
}

.sidebar-meta-label {
  font-size: 0.8rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
}

.sidebar-meta-value {
  color: #333;
  font-weight: 600;
}

/* Blog Content */
.blog-content {
  line-height: 1.9;
  color: #333;
  font-size: 1.05rem;
}

.blog-content p {
  margin-bottom: 2rem;
  text-align: justify;
}

.blog-content h2,
.blog-content h3 {
  color: #1a1a2e;
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
}

/* Share Buttons */
.blog-share {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin: 3rem 0;
  text-align: center;
}

.blog-share h4 {
  margin-bottom: 1.5rem;
  color: #1a1a2e;
}

.share-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.share-btn:hover {
  transform: translateY(-3px);
}

.share-btn.facebook {
  background: #3b5998;
}

.share-btn.twitter {
  background: #1DA1F2;
}

.share-btn.linkedin {
  background: #0077b5;
}

/* Navigation */
.blog-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid #e0e0e0;
}

.nav-post {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.nav-post:hover {
  background: #fda220;
  color: white;
}

.nav-post-label {
  font-size: 0.8rem;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.nav-post-title {
  font-weight: 600;
  font-size: 1rem;
}

/* Related Posts */
.related-section {
  margin-top: 4rem;
}

.related-title {
  font-size: 2rem;
  color: #1a1a2e;
  margin-bottom: 2rem;
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.related-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border-top: 4px solid #fda220;
}

.related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-card-icon {
  padding: 2rem;
  text-align: center;
  font-size: 3rem;
  background: linear-gradient(135deg, #fda220, #fdb649);
  color: white;
}

.related-card-content {
  padding: 1.5rem;
}

.related-card-category {
  font-size: 0.8rem;
  color: #fda220;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.related-card-title {
  font-size: 1.1rem;
  color: #1a1a2e;
  font-weight: 600;
  line-height: 1.4;
}

/* Blog Detail Responsive */
@media (max-width: 768px) {
  .blog-detail-wrapper {
    grid-template-columns: 1fr;
  }

  .blog-detail-main {
    padding: 1.5rem;
  }

  .blog-hero h1 {
    font-size: 2.2rem;
  }

  .blog-hero-bg {
    font-size: 6rem;
  }

  .blog-navigation {
    grid-template-columns: 1fr;
  }

  .sidebar-box {
    display: none;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .features,
  .services-grid,
  .portfolio-grid,
  .blog-grid {
    gap: 1.5rem;
  }

  .section-title h2::after {
    width: 60px;
  }
}

/* ==========================================
   Tabs Styles
   ========================================== */

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 3rem 0;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0;
}

.tab-btn {
  background: none;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.tab-btn i {
  font-size: 1.1rem;
}

.tab-btn:hover {
  color: var(--primary-color);
}

.tab-btn.active {
  color: var(--primary-color);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px 2px 0 0;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .services-tabs {
    gap: 0.5rem;
  }

  .tab-btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .tab-btn i {
    display: none;
  }

  /* Leadership Section Mobile - Content above image */
  .leadership-item-1 {
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 2rem !important;
  }

  .leadership-item-2 {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }
}
