:root {
  --primary-color: #ee7629;
  --primary-light: #e6b305;
  --primary-dark: #e63600;
  --secondary-color: #1c9764;
  --secondary-light: #25ba70;
  --secondary-dark: #218350;
  --accent-color: #7e2fa0;
  --accent-light: #a764b8;
  --accent-dark: #542777;
  --tertiary-color: #e2da03;
  --tertiary-light: #f4ce4d;
  --tertiary-dark: #d5c421;
  --quaternary-color: #eb5155;
  --quaternary-light: #e07673;
  --quaternary-dark: #be412d;
  --neutral-50: #F8F9FA;
  --neutral-100: #e5efff;
  --neutral-200: #c9d2d7;
  --neutral-300: #d0e0ea;
  --neutral-400: #b7c0ce;
  --neutral-500: #636b78;
  --neutral-600: #55575c;
  --neutral-700: #3e4950;
  --neutral-800: #303236;
  --neutral-900: #060708;
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  --gradient-hero: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  --border-radius: 0.375rem;
  --border-radius-lg: 0.5rem;
  --border-radius-xl: 0.75rem;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--neutral-700);
  background-color: var(--neutral-50);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar-brand {
  font-size: 1.31rem;
  font-weight: 600;
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--neutral-600);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.hero-section {
  min-height: 100vh;
  background: var(--gradient-hero);
  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('../GAT_images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
    padding-top: 150px;
}

.hero-title {
  font-size: 2.58rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.40rem;
  font-weight: 400;
  margin-bottom: 1.62rem;
  opacity: 0.9;
}

.hero-description {
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--neutral-800);
}

.section-subtitle {
  font-size: 1.21rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 500;
}

.section-description {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--neutral-600);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: none;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.20rem;
  font-weight: 600;
  margin-bottom: 0.88rem;
  color: var(--neutral-800);
}

.card-text {
  color: var(--neutral-600);
  margin-bottom: 1rem;
}

.btn {
  font-weight: 500;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: none;
  padding: 0.75rem 1.5rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
}

.btn-primary:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
}

.service-card {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--neutral-600);
}

.service-features li::before {
  content: '“';
  color: var(--secondary-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-color);
}

.team-name {
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.32rem;
}

.team-role {
  color: var(--primary-color);
  font-weight: 500;
}



.faq-card {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--neutral-100);
  padding: 1.5rem;
  font-weight: 600;
  color: var(--neutral-800);
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--neutral-200);
}

.faq-question.active {
  background: var(--primary-color);
  color: white;
}

.faq-question.active:hover {
  background: var(--primary-dark);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--neutral-600);
  border-top: 1px solid var(--neutral-200);
}

.contact-form {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}

.form-control {
  border: 1px solid var(--neutral-300);
  border-radius: var(--border-radius);
  padding: 0.75rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(248, 129, 47, 0.25);
}

.form-control:invalid {
  border-color: #f1515c;
}

.form-control:valid {
  border-color: var(--secondary-color);
}

.was-validated .form-control:invalid {
  border-color: #f22d24;
  box-shadow: 0 0 0 0.2rem rgba(242, 79, 85, 0.25);
}

.was-validated .form-control:valid {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(57, 184, 91, 0.25);
}

.form-label {
  font-weight: 500;
  color: var(--neutral-700);
  margin-bottom: 0.70rem;
}

.footer {
  background: var(--neutral-800);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--neutral-300);
  text-decoration: none;
  transition: var(--transition);
}

.footer a:hover {
  color: var(--primary-color);
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.gallery-img:hover {
  transform: scale(1.05);
}

.process-step {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.58rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 1rem;
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
  border: 8px solid white;
  box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 12px;
  width: 2px;
  height: calc(100% + 20px);
  background: var(--neutral-300);
}

.timeline-item:last-child::after {
  display: none;
}

.career-position {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: var(--transition);
}

.career-position:hover {
  box-shadow: var(--shadow-xl);
}

.career-title {
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.69rem;
}

.career-role {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.breadcrumb {
  background: transparent;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

.blog-card {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: 2rem;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.blog-img {
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.24rem;
  font-weight: 600;
  margin-bottom: 0.93rem;
  color: var(--neutral-800);
}

.blog-excerpt {
  color: var(--neutral-600);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  text-decoration: underline;
}

.core-info-item {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  transition: var(--transition);
}

.core-info-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.core-info-title {
  font-size: 1.23rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 1rem;
}

.core-info-desc {
  color: var(--neutral-600);
}

.casestudy-item {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: var(--transition);
}

.casestudy-item:hover {
  box-shadow: var(--shadow-xl);
}

.casestudy-title {
  font-size: 1.29rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 1rem;
}

.casestudy-desc {
  color: var(--neutral-600);
}

#space {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--neutral-100);
  border-radius: var(--border-radius-lg);
  margin: 2rem 0;
}

.pricing-card {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.pricing-name {
  font-size: 1.36rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 2.63rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: var(--neutral-600);
  border-bottom: 1px solid var(--neutral-200);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '“';
  color: var(--secondary-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-name {
  font-size: 1.20rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.92rem;
}

.feature-desc {
  color: var(--neutral-600);
}

.about-feature {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: var(--transition);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.about-feature-name {
  font-size: 1.13rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.81rem;
}

.about-feature-desc {
  color: var(--neutral-600);
} 


/* 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;
    }
}
