:root {
  /* Color Palette - High Contrast Pastel Colors */
  --primary-color: #63aceb;
  --primary-light: #6897e0;
  --primary-dark: #2172c9;
  --secondary-color: #61dc96;
  --secondary-light: #84d8a1;
  --secondary-dark: #3a9054;
  --accent-color: #ea842b;
  --accent-light: #f0ad73;
  --accent-dark: #eca000;
  --neutral-color: #d1d1d1;
  --neutral-light: #F5F5F5;
  --neutral-dark: #b4b4b4;
  --text-primary: #2a3e55;
  --text-secondary: #5b707a;
  --background-light: #FAFBFC;
  --background-white: #FFFFFF;
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-light);
}

/* Typography */
h1 {
  font-size: 2.54rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.01rem;
}

h3 {
  font-size: 1.60rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.72rem;
}

h4 {
  font-size: 1.39rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.70rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Header Styles */
.navbar {
  background: var(--background-white);
  box-shadow: var(--shadow-soft);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.58rem;
  font-weight: 700;
  color: var(--primary-color) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-primary) !important;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../NIL_images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
}

.hero-title {
  color: var(--background-white);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.74rem;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.31rem;
  margin-bottom: 1rem;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.18rem;
  margin-bottom: 2rem;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  text-align: center;
  margin-bottom: 0.62rem;
  color: var(--primary-color);
  font-weight: 600;
}

.section-desc {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-secondary);
  font-size: 1.21rem;
}

/* Card Styles */
.card {
  border-radius: 10px;
  border: none;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.card-header {
  background: var(--gradient-primary);
  color: white;
  border-radius: 10px 10px 0 0;
  padding: 1.5rem;
}

.card-body {
  padding: 2rem;
}

/* Services Section */
.service-card {
  text-align: center;
  padding: 2rem;
  background: var(--background-white);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.67rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-top: 1rem;
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-color);
}

/* Reviews Section */
.review-card {
  background: var(--background-white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 1rem;
}

/* FAQ Section */
.faq-item {
  background: var(--background-white);
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  background: var(--gradient-primary);
  color: white;
  padding: 1.5rem;
  border-radius: 10px 10px 0 0;
  margin-bottom: 0;
  font-weight: 600;
}

.faq-answer {
  padding: 1.5rem;
  margin-bottom: 0;
}

/* Contact Form */
.contact-form {
  background: var(--background-white);
  border-radius: 10px;
  padding: 3rem;
  box-shadow: var(--shadow-medium);
}

.form-control {
  border-radius: 8px;
  border: 2px solid var(--neutral-color);
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(84, 147, 202, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gradient-primary);
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: var(--background-white);
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--neutral-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-light);
}

/* Gallery */
.gallery-item {
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Timeline */
.timeline-item {
  background: var(--background-white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
}

/* Process Steps */
.process-step {
  text-align: center;
  margin-bottom: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.62rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Career Items */
.career-item {
  background: var(--background-white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
}

.career-role {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 0.57rem;
}

/* Core Info */
.coreinfo-item {
  background: var(--background-white);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
}

/* Blog */
.blog-post {
  background: var(--background-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-3px);
}

.blog-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* Price Plan */
.price-card {
  background: var(--background-white);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
}

.price-value {
  font-size: 2.58rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-light);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Features */
.feature-item {
  text-align: center;
  margin-bottom: 2rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Case Studies */
.casestudy-item {
  background: var(--background-white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
}

/* Breadcrumb */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--neutral-light);
}

.breadcrumb-img {
  width: 30px;
  height: 30px;
  object-fit: cover;
}

/* Utilities */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient {
  background: var(--gradient-primary);
}

.shadow-custom {
  box-shadow: var(--shadow-medium);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--gradient-primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.30rem;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  color: white;
  text-decoration: none;
}

/* Notification System */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
  padding: 1rem;
  min-width: 300px;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  z-index: 1050;
  border-left: 4px solid var(--primary-color);
}

.notification.show {
  transform: translateX(0);
}

.notification-success {
  border-left-color: var(--secondary-color);
}

.notification-error {
  border-left-color: #c92a37;
}

.notification-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notification-close {
  background: none;
  border: none;
  font-size: 1.62rem;
  cursor: pointer;
  color: var(--text-secondary);
  margin-left: 1rem;
}

.notification-close:hover {
  color: var(--text-primary);
}

/* Loading Bar Styles */
#loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 2000;
}

/* FAQ Interactive Styles */
.faq-item.active .faq-question {
  border-radius: 10px;
}

.faq-answer {
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Contact Info Styles */
.contact-info {
  background: var(--background-white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.contact-info p {
  margin-bottom: 0.58rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info i {
  color: var(--primary-color);
  width: 20px;
}

/* Form Validation Styles */
.form-control.is-invalid {
  border-color: #c83a5b;
  box-shadow: 0 0 0 0.2rem rgba(208, 41, 61, 0.25);
}

.invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.47rem;
  font-size: 0.98rem;
  color: #d42a40;
}

/* Gallery Lightbox Override */
.lb-data .lb-details {
  width: 85%;
}

.lb-data .lb-close {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAzMCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIyLjUgNy41TDcuNSAyMi41TTcuNSA3LjVMMjIuNSAyMi41IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K) no-repeat center;
  background-size: 20px 20px;
}

/* Touch Device Optimizations */
.touch-device .service-card:hover {
  transform: none;
}

.touch-device .gallery-item:hover img {
  transform: none;
}

/* Scrolled Navbar State */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.51rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .notification {
    min-width: 280px;
    right: 15px;
    top: 15px;
  }
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
