:root {
  /* Primary Color Palette - Science Theme */
  --primary-blue: #31a3ff;
  --primary-green: #3eb04b;
  --primary-orange: #ff7800;
  --primary-purple: #a920be;
  --primary-teal: #008373;
  
  /* Light Shades */
  --light-blue: #fcfeff;
  --light-green: #d2f3d6;
  --light-orange: #ece9e6;
  --light-purple: #dfc3e4;
  --light-teal: #dbfeff;
  
  /* Dark Shades */
  --dark-blue: #1a6aab;
  --dark-green: #398536;
  --dark-orange: #fc8112;
  --dark-purple: #7c1d9f;
  --dark-teal: #00765a;
  
  /* Additional Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --gray: #76848c;
  --dark-gray: #3c434b;
  --black: #000000;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 18.00px;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

/* 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;
  }
}

/* Conservative Typography */
h1 {
  font-size: 2.11rem;
  font-weight: 700;
  margin-bottom: 1.10rem;
}

h2 {
  font-size: 1.86rem;
  font-weight: 600;
  margin-bottom: 0.95rem;
}

h3 {
  font-size: 1.54rem;
  font-weight: 600;
  margin-bottom: 0.90rem;
}

h4 {
  font-size: 1.32rem;
  font-weight: 500;
  margin-bottom: 0.71rem;
}

p {
  font-size: 18.00px;
  margin-bottom: 1.10rem;
}

/* Header */
.navbar-brand {
  font-size: 1.32rem !important;
  font-weight: bold;
  color: var(--primary-teal) !important;
}

.navbar {
  padding: 0.75rem 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--light-teal) 100%);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
  font-weight: 500;
  margin: 0 0.5rem;
  color: var(--dark-gray) !important;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-teal) !important;
  transform: translateY(-1px);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-purple) 50%, var(--light-orange) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../HOP_images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

#hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding-top: 100px !important;
  animation: fadeInUp 1s ease-out;
}

.hero-image {
  animation: fadeInRight 1s ease-out 0.3s both;
}

/* Decorative Shapes */
.shape {
  position: absolute;
  z-index: 1;
}

.shape-1 {
  top: 10%;
  right: 10%;
  width: 100px;
  height: 100px;
  background: var(--primary-orange);
  border-radius: 50%;
  opacity: 0.3;
}

.shape-2 {
  bottom: 20%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: var(--primary-green);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: 0.2;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3.07rem;
}

.section-title h2 {
  color: var(--primary-teal);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 11px;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-purple));
  border-radius: 2px;
}

/* About Section */
#about {
  background: var(--light-gray);
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 17px;
  box-shadow: 0 9px 17px rgba(0, 0, 0, 0.1);
  margin-bottom: 2.14rem;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-blue);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 27px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 2.63rem;
  color: var(--primary-teal);
  margin-bottom: 1.10rem;
}

/* Services Section */
#services {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-blue) 100%);
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2.14rem;
  box-shadow: 0 14px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-9px);
  border-color: var(--primary-orange);
  box-shadow: 0 19px 30px rgba(0, 0, 0, 0.2);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1.68rem;
}

.service-price {
  font-size: 1.54rem;
  font-weight: bold;
  color: var(--primary-purple);
  margin-top: 1.16rem;
}

/* Features Section */
#e7ce9ctures {
  background: var(--white);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2.14rem;
}

.feature-item i {
  font-size: 3.11rem;
  color: var(--primary-green);
  margin-bottom: 1.10rem;
}

/* Price Plan Section */
#priceplan {
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-orange) 100%);
}

.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  margin-bottom: 2.14rem;
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-teal), var(--primary-orange));
}

.price-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.price-amount {
  font-size: 2.63rem;
  font-weight: bold;
  color: var(--primary-teal);
  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(--light-gray);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
#team {
  background: var(--light-gray);
}

.team-member {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  margin-bottom: 2.14rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-teal);
}

/* Reviews Section */
#reviews {
  background: linear-gradient(135deg, var(--light-teal) 0%, var(--light-green) 100%);
}

.review-item {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2.14rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.review-item::before {
  content: '"';
  font-size: 4.13rem;
  color: var(--primary-orange);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

.review-author {
  font-weight: bold;
  color: var(--primary-teal);
  margin-top: 1.16rem;
  text-align: right;
}

/* Case Study Section */
#casestudy {
  background: var(--white);
}

.case-item {
  background: var(--light-blue);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2.14rem;
  transition: all 0.3s ease;
}

.case-item:hover {
  background: var(--light-purple);
}

/* Process Section */
#process {
  background: linear-gradient(135deg, var(--light-orange) 0%, var(--light-purple) 100%);
}

.process-step {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2.14rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.54rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

/* Timeline Section */
#timeline {
  background: var(--light-gray);
}

.timeline-item {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2.14rem;
  border-left: 4px solid var(--primary-green);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Career Section */
#career {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-teal) 100%);
}

.career-item {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2.14rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.career-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Core Info Section */
#coreinfo {
  background: var(--white);
}

.info-card {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-blue) 100%);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2.14rem;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: scale(1.02);
}

/* Blog Section */
#blog {
  background: var(--light-gray);
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2.14rem;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-link {
  color: var(--primary-teal);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  color: var(--dark-teal);
}

/* FAQ Section */
#faq {
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-orange) 100%);
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 1.10rem;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background: var(--primary-teal);
  color: var(--white);
  padding: 1.5rem;
  margin: 0;
  cursor: pointer;
  font-weight: 500;
}

.faq-answer {
  padding: 1.5rem;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
#gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2.10rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Contact Section */
#contact {
  background: linear-gradient(135deg, var(--light-teal) 0%, var(--light-blue) 100%);
}

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.10rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 0.2rem rgba(7, 128, 111, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-blue));
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(9, 144, 132, 0.40);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-gray) 0%, var(--dark-teal) 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  margin-bottom: 2.14rem;
}

.footer-links a {
  color: var(--light-gray);
  text-decoration: none;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

#site-copyright {
  text-align: center;
  padding-top: 2.09rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-gray);
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-image {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Swiper Customizations */
.swiper {
  padding-bottom: 2.13rem;
}

.swiper-pagination-bullet {
  background: var(--primary-teal);
}

.swiper-pagination-bullet-active {
  background: var(--primary-orange);
}

/* Mobile Optimizations */
@media (max-width: 767.98px) {
  .shape-1, .shape-2 {
    display: none;
  }
  
  .hero-content, .hero-image {
    text-align: center;
  }
  
  .service-card, .price-card, .team-member {
    margin-bottom: 1.68rem;
  }
  
  h1 {
    font-size: 1.86rem;
  }
  
  h2 {
    font-size: 1.54rem;
  }
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
