@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
@import url('https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/css/lightbox.min.css');

/* CSS Variables - 5 Primary Colors */
:root {
  --primary-color: #2c5282;
  --secondary-color: #e2725b;
  --accent-color: #38a169;
  --neutral-color: #4a5568;
  --highlight-color: #805ad5;
  
  /* Light shades */
  --primary-light: #3182ce;
  --secondary-light: #fc8181;
  --accent-light: #48bb78;
  --neutral-light: #718096;
  --highlight-light: #9f7aea;
  
  /* Dark shades */
  --primary-dark: #1a365d;
  --secondary-dark: #c53030;
  --accent-dark: #2f855a;
  --neutral-dark: #2d3748;
  --highlight-dark: #553c9a;
  
  /* Conservative font sizes */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --h1-size: 2rem;
  --h2-size: 1.75rem;
  --h3-size: 1.5rem;
  --navbar-brand-size: 1.25rem;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  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(--neutral-dark);
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }

p {
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
}

/* Header */
.navbar {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: var(--navbar-brand-size);
  font-weight: 700;
  color: white !important;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-light) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  position: relative;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--highlight-color);
  border-radius: 50%;
  opacity: 0.1;
  top: 20%;
  right: 10%;
  z-index: 1;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8f9fa, white);
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: var(--primary-light);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background: var(--neutral-light);
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: scale(1.05);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 5px solid var(--primary-light);
}

/* Testimonials */
.reviews-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--highlight-color), var(--highlight-light));
  color: white;
}

.review-card {
  background: white;
  color: var(--neutral-dark);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-align: center;
  margin: 1rem;
}

/* Gallery */
.gallery-section {
  padding: 5rem 0;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
  background: var(--primary-color);
  color: white;
  padding: 1.5rem;
  cursor: pointer;
  border-radius: 10px 10px 0 0;
  font-weight: 600;
}

.faq-answer {
  padding: 1.5rem;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Contact Form */
.contact-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  color: white;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-form .form-control {
  border-radius: 10px;
  border: 2px solid #e9ecef;
  padding: 1rem;
  margin-bottom: 1rem;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(44, 82, 130, 0.2);
}

/* Blog Section */
.blog-section {
  padding: 5rem 0;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 2rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--neutral-dark), var(--neutral-color));
  color: white;
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--secondary-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  border: none;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Utility Classes */
.section-padding {
  padding: 5rem 0;
}

.gradient-bg {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.text-gradient {
  background: linear-gradient(45deg, var(--primary-color), var(--highlight-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Breadcrumbs */
.breadcrumb-section {
  padding: 1rem 0;
  background: #f8f9fa;
}

.breadcrumb-img {
  width: 30px;
  height: 20px;
  object-fit: cover;
}

/* Swiper Customization */
.swiper-pagination-bullet {
  background: var(--primary-color);
}

.swiper-pagination-bullet-active {
  background: var(--secondary-color);
}

/* Price Plans */
.priceplan-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, white, #f8f9fa);
}

.price-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.price-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.price-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transform: translateY(-10px);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

/* Process/Timeline */
.process-section, .timeline-section {
  padding: 5rem 0;
}

.process-step, .timeline-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border-left: 5px solid var(--primary-color);
}

/* Career Section */
.career-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.career-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.career-card:hover {
  transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }
  
  .hero-shape {
    display: none;
  }
  
  .service-card, .team-member, .blog-card {
    margin-bottom: 2rem;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  /* Disable Swiper autoplay and effects on mobile */
  .swiper-slide {
    transition: none !important;
  }
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
