/* ===== CSS VARIABLES ===== */
:root {
  --primary-teal: #15cb96;
  --primary-navy: #3e5169;
  --primary-coral: #ff6d82;
  --primary-sage: #a1d88d;
  --primary-cream: #efefef;
  
  /* Light/Dark Shades */
  --light-teal: #85d5c7;
  --dark-teal: #17804c;
  --light-navy: #4f5f72;
  --dark-navy: #172730;
  --light-coral: #ff838b;
  --dark-coral: #d14943;
  --light-sage: #b0cfaa;
  --dark-sage: #71955d;
  --light-cream: #faf8f3;
  --dark-cream: #f4ede2;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-teal), var(--primary-navy));
  --gradient-secondary: linear-gradient(45deg, var(--primary-coral), var(--primary-sage));
  --gradient-hero: linear-gradient(120deg, var(--primary-teal) 0%, var(--primary-navy) 50%, var(--primary-coral) 100%);
}

/* ===== GLOBAL STYLES ===== */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--primary-navy);
  background-color: var(--primary-cream);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--primary-navy);
}

.navbar-brand {
  font-size: 1.55rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(11px);
  transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../NOD_images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
    padding-top: 128px;
}

.hero-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: -100px;
  animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: -50px;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-23px); }
}

/* ===== SECTIONS ===== */
section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -110px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 7px;
}

/* ===== SERVICES CARDS ===== */
.service-card {
  background: white;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 11px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--light-cream);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.70rem;
}

.service-price {
  font-size: 1.94rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin-top: 1rem;
}

/* ===== FEATURES SECTION ===== */
.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

/* ===== TEAM SECTION ===== */
.team-member {
  text-align: center;
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-7px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary-teal);
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 19px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-coral);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-navy);
  margin-top: 1rem;
}



/* ===== PRICE PLANS ===== */
.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card.featured {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.05);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin: 1rem 0;
}

.price-card.featured .price-value {
  color: white;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--light-cream);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 0.2rem rgba(29, 175, 146, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(16, 158, 103, 0.30);
}

/* ===== GALLERY ===== */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-navy);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-teal);
  margin-bottom: 1.67rem;
}

.footer a {
  color: var(--light-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-teal);
}

/* ===== BREADCRUMBS ===== */
.breadcrumb-nav {
  padding: 1rem 0;
  background: var(--light-cream);
}

.breadcrumb-nav img {
  height: 30px;
  width: auto;
}

/* ===== ANIMATE IN CLASS FOR INTERSECTION OBSERVER ===== */
.no-animations * {
  animation: none !important;
  transition: none !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .section-header h2 {
    font-size: 1.89rem;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .hero-shape {
    display: none;
  }
}

/* ===== BLOG SECTION ===== */
.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-card h5 {
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--dark-navy);
  margin-bottom: 1.59rem;
}

.blog-link {
  color: var(--primary-teal);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--dark-teal);
}

/* ===== CASE STUDY CARDS ===== */
.case-study-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  border-top: 4px solid var(--primary-sage);
  transition: all 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-5px);
}

/* ===== PROCESS STEPS ===== */
.process-step {
  text-align: center;
  position: relative;
  padding: 2rem 1rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.55rem;
  font-weight: 700;
  color: white;
}

/* ===== TIMELINE ===== */
.timeline-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border-left: 4px solid var(--primary-teal);
}

/* ===== CAREER SECTION ===== */
.career-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.career-item:hover {
  transform: translateY(-3px);
}

.career-role {
  color: var(--primary-coral);
  font-weight: 600;
  margin-bottom: 0.62rem;
}

/* ===== CORE INFO CARDS ===== */
.coreinfo-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.coreinfo-card:hover {
  transform: translateY(-5px);
}

.coreinfo-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.64rem;
  color: white;
} 


/* 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;
    }
}
