@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/css/lightbox.min.css');

/* Custom Color Palette - 5 Primary Colors with Shades */
:root {
  --primary-blue: #4398d6;
  --primary-blue-light: #9ad0f6;
  --primary-blue-dark: #2d76a3;
  
  --primary-green: #23af6c;
  --primary-green-light: #89e8a4;
  --primary-green-dark: #2ea16a;
  
  --primary-orange: #f28601;
  --primary-orange-light: #ffc271;
  --primary-orange-dark: #df8219;
  
  --primary-purple: #7f31a2;
  --primary-purple-light: #af83b8;
  --primary-purple-dark: #8543ac;
  
  --primary-red: #dc5c46;
  --primary-red-light: #ff8d85;
  --primary-red-dark: #ba502d;
  
  --light-gray: #f8f9fa;
  --dark-gray: #40454d;
  --white: #ffffff;
  --black: #000000;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-small: 17px;
  --font-size-large: 14px;
  --font-size-h1: 2rem;
  --font-size-h2: 1.75rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-h5: 1.1rem;
  --font-size-h6: 1rem;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Accessibility - Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography - Conservative Sizes */
h1 { font-size: var(--font-size-h1); font-weight: 600; margin-bottom: 1rem; }
h2 { font-size: var(--font-size-h2); font-weight: 600; margin-bottom: 0.96rem; }
h3 { font-size: var(--font-size-h3); font-weight: 600; margin-bottom: 0.96rem; }
h4 { font-size: var(--font-size-h4); font-weight: 500; margin-bottom: 0.68rem; }
h5 { font-size: var(--font-size-h5); font-weight: 500; margin-bottom: 0.63rem; }
h6 { font-size: var(--font-size-h6); font-weight: 500; margin-bottom: 0.61rem; }

p { margin-bottom: 1rem; }

/* Header Styles */
.navbar-brand {
  font-size: 1.38rem !important;
  font-weight: 600;
  color: var(--primary-blue) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-gray) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue) !important;
}

/* Hero Section - Fullscreen Height */
.hero-section h1 {
    padding-top: 150px !important;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  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('../images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.1;
}

.hero-content h1 {
  padding-top: 100px !important;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
}

.hero-title {
  color: var(--white);
  font-weight: 700;
}

.hero-subtitle {
  color: var(--light-gray);
  margin-bottom: 1.67rem;
}

.hero-desc {
  color: var(--white);
  font-size: var(--font-size-large);
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.hero-shape:nth-child(2) {
  width: 150px;
  height: 150px;
  bottom: 30%;
  left: 5%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

.section:nth-child(even) {
  background-color: var(--light-gray);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, var(--primary-blue), var(--primary-green));
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-card ul li {
  padding: 0.25rem 0;
  color: var(--dark-gray);
}

.service-price {
  font-size: 1.78rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 1rem 0;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  text-align: center;
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 5px solid var(--primary-blue-light);
}

/* Testimonials Slider */
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-blue);
}

/* Case Studies */
.case-study-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
}

.case-study-card:hover {
  transform: translateY(-5px);
}

.case-study-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Timeline */
.timeline-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.timeline-item {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  border-left: 6px solid var(--primary-blue);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 2rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-blue);
}

.timeline-item h4 {
  color: var(--primary-blue);
  margin-bottom: 0.56rem;
}

/* Career Cards */
.career-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
}

.career-card:hover {
  transform: translateY(-5px);
}

.career-card h4 {
  color: var(--primary-blue);
  margin-bottom: 0.64rem;
}

.career-card p:first-of-type {
  font-weight: 600;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

/* Core Info Cards */
.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.coreinfo-item {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
}

.coreinfo-item h4 {
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  color: var(--dark-gray);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-blue);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--dark-gray);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(49, 146, 223, 0.25);
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-blue), var(--primary-green));
  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(45deg, var(--primary-blue-dark), var(--primary-green-dark));
}

/* Footer */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-blue-light);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-blue-light);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
  color: var(--light-gray);
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--light-gray);
}

.breadcrumb-container img {
  width: 24px;
  height: 24px;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--primary-orange), var(--primary-red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.35rem;
}

.process-step:nth-child(1)::before { content: '1'; }
.process-step:nth-child(2)::before { content: '2'; }
.process-step:nth-child(3)::before { content: '3'; }
.process-step:nth-child(4)::before { content: '4'; }
.process-step:nth-child(5)::before { content: '5'; }

.process-step h4 {
  margin-top: 4rem;
  color: var(--primary-blue);
}

/* Price Plans */
.price-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.price-plan {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.price-plan:hover {
  transform: translateY(-5px);
}

.price-plan.featured {
  border: 3px solid var(--primary-blue);
  transform: scale(1.05);
}

.plan-price {
  font-size: 2.63rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 1rem 0;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.plan-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.plan-features li:last-child {
  border-bottom: none;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-content a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

.blog-card-content a:hover {
  text-decoration: underline;
}

/* Additional Pages Sections */
.additional-section {
  padding: 3rem 0;
}

.additional-section:nth-child(odd) {
  background: var(--light-gray);
}

/* Space Page */
#space {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-purple-light), var(--primary-blue-light));
  border-radius: 12px;
  margin: 2rem 0;
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(45deg, var(--primary-blue), var(--primary-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
}

.shadow-custom {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section h1 {
    padding-top: 150px !important;
}

.hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .services-grid,
  .team-grid,
  .price-plans,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline-container {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  h1 { font-size: 1.79rem; }
  h2 { font-size: 1.58rem; }
  h3 { font-size: 1.37rem; }
}

@media (max-width: 576px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 1.59rem;
  }
  
  .section {
    padding: 1.5rem 0;
  }
  
  .timeline-item {
    padding: 1.5rem;
  }
  
  .career-card,
  .case-study-card {
    padding: 1.5rem;
  }
} 


/* 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;
    }
}
