:root {
  --primary-color: #6366f1;
  --primary-light: #a5b4fc;
  --primary-dark: #4338ca;
  --secondary-color: #06b6d4;
  --secondary-light: #67e8f9;
  --secondary-dark: #0891b2;
  --accent-color: #10b981;
  --accent-light: #6ee7b7;
  --accent-dark: #059669;
  --neutral-color: #6b7280;
  --neutral-light: #d1d5db;
  --neutral-dark: #374151;
  --background-color: #f8fafc;
  --background-light: #ffffff;
  --background-dark: #1e293b;
}

/* Global Styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--neutral-dark);
  background-color: var(--background-color);
    overflow-x: hidden;
}

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

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--background-light) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
  z-index: 2;
  position: relative;
    padding-top: 225px;
}

/* About Section */
#about {
  padding: 80px 0;
  background-color: var(--background-light);
}

.feature-card {
  background: var(--background-light);
  border: 1px solid var(--neutral-light);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* Services Section */
#services {
  padding: 80px 0;
  background-color: var(--background-color);
}

.service-card {
  background: var(--background-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-content {
  padding: 1.5rem;
}

.service-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Features Section */
#features {
  padding: 80px 0;
  background-color: var(--background-light);
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-number {
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

/* Price Plan Section */
#priceplan {
  padding: 80px 0;
  background-color: var(--background-color);
}

.pricing-card {
  background: var(--background-light);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--primary-color);
  transform: scale(1.02);
}

.pricing-card.featured {
  border-color: var(--primary-color);
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-light);
}

/* Team Section */
#team {
  padding: 80px 0;
  background-color: var(--background-light);
}

.team-card {
  background: var(--background-light);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background-size: cover;
  background-position: center;
  border: 4px solid var(--primary-light);
}

/* Reviews Section */
#reviews {
  padding: 80px 0;
  background-color: var(--background-color);
}

.review-card {
  background: var(--background-light);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  border-left: 4px solid var(--accent-color);
}

.review-stars {
  color: #fbbf24;
  margin-bottom: 1rem;
}

/* Case Studies Section */
#casestudy {
  padding: 80px 0;
  background-color: var(--background-light);
}

.case-study-card {
  background: var(--background-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-5px);
}

.case-study-image {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.case-study-content {
  padding: 2rem;
}

/* Process Section */
#process {
  padding: 80px 0;
  background-color: var(--background-color);
}

.process-step {
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

/* Timeline Section */
#timeline {
  padding: 80px 0;
  background-color: var(--background-light);
}

.timeline-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--accent-color);
  border-radius: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 12px;
  width: 2px;
  height: calc(100% + 1rem);
  background: var(--neutral-light);
}

.timeline-item:last-child::after {
  display: none;
}

/* Career Section */
#career {
  padding: 80px 0;
  background-color: var(--background-color);
}

.career-card {
  background: var(--background-light);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--neutral-light);
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Core Info Section */
#coreinfo {
  padding: 80px 0;
  background-color: var(--background-light);
}

.info-card {
  background: var(--background-light);
  border: 1px solid var(--neutral-light);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  transition: border-color 0.3s ease;
}

.info-card:hover {
  border-color: var(--primary-color);
}

/* Blog Section */
#blog {
  padding: 80px 0;
  background-color: var(--background-color);
}

.blog-card {
  background: var(--background-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.blog-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
#faq {
  padding: 80px 0;
  background-color: var(--background-light);
}

.faq-card {
  background: var(--background-light);
  border: 1px solid var(--neutral-light);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.faq-card:hover {
  border-color: var(--primary-color);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Gallery Section */
#gallery {
  padding: 80px 0;
  background-color: var(--background-color);
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.gallery-image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* Contact Section */
#contacts {
  padding: 80px 0;
  background-color: var(--background-light);
}

.contact-form {
  background: var(--background-light);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--neutral-light);
  border-radius: 8px;
  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(99, 102, 241, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
}

/* Footer */
#footer {
  background-color: var(--neutral-dark);
  color: var(--neutral-light);
  padding: 60px 0 20px;
}

#footer h5 {
  color: var(--background-light);
  margin-bottom: 1.5rem;
}

#footer a {
  color: var(--neutral-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: var(--primary-light);
}

/* Utility Classes */
.section-padding {
  padding: 80px 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.animate-in:not(.animate-in) {
  opacity: 0;
  transform: translateY(30px);
}

.loaded {
  opacity: 1 !important;
  transition: opacity 0.3s ease;
}

/* Ensure all images are visible by default */
img {
  opacity: 1 !important;
  visibility: visible !important;
  transition: opacity 0.3s ease;
}

/* Fallback to make sure images are visible */
img:not(.loaded) {
  opacity: 1 !important;
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Responsive adjustments */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 768px) {
  #hero {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .feature-card,
  .service-card,
  .pricing-card {
    margin-bottom: 2rem;
  }
} 


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}
