:root {
  /* Color Palette - High Contrast Pastel Colors */
  --primary-color: #3b72f0;
  --primary-light: #80bef7;
  --primary-dark: #3275c0;
  --secondary-color: #59b570;
  --secondary-light: #8ee0a1;
  --secondary-dark: #2b9241;
  --accent-color: #ffc852;
  --accent-light: #ebc475;
  --accent-dark: #ff9700;
  --neutral-color: #fafafa;
  --neutral-light: #F5F5F5;
  --neutral-dark: #c1c1c1;
  --text-primary: #2c414e;
  --text-secondary: #4f6c73;
  --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.59rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.03rem;
}

h3 {
  font-size: 1.58rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.79rem;
}

h4 {
  font-size: 1.29rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.69rem;
}

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 h1 {
    padding-top: 150px;
}

.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('../FIY_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.72rem;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.28rem;
  margin-bottom: 1rem;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.24rem;
  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.65rem;
  color: var(--primary-color);
  font-weight: 600;
}

.section-desc {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-secondary);
  font-size: 1.23rem;
}

/* 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.71rem;
}

.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(66, 123, 220, 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.55rem;
  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.64rem;
}

/* 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.60rem;
  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.29rem;
  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: #e93041;
}

.notification-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notification-close {
  background: none;
  border: none;
  font-size: 1.59rem;
  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.60rem;
  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: #d63755;
  box-shadow: 0 0 0 0.2rem rgba(197, 33, 37, 0.25);
}

.invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.33rem;
  font-size: 0.91rem;
  color: #d32424;
}

/* 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.64rem;
  }
  
  .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 - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
