/* ========================================
   DRONE PEST MONITORING TEMPLATE - MAIN CSS
   ======================================== */

/* Bootstrap 5 CDN Import */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');

/* FontAwesome CDN Import */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ========================================
   CSS VARIABLES - COLOR PALETTE
   ======================================== */
:root {
  /* Primary Colors */
  --primary-green: #31522a;
  --primary-blue: #3a84fa;
  --primary-orange: #ff8e1d;
  --primary-purple: #8d5cea;
  --primary-teal: #22a79d;
  
  /* Light Shades */
  --light-green: #a6ddbf;
  --light-blue: #d9ecff;
  --light-orange: #efc6aa;
  --light-purple: #ede8ff;
  --light-teal: #a1f8e8;
  
  /* Dark Shades */
  --dark-green: #1e3e17;
  --dark-blue: #103ba8;
  --dark-orange: #d77000;
  --dark-purple: #842bd8;
  --dark-teal: #107c80;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #cad2e5;
  --gray-300: #c9cdcf;
  --gray-400: #9ba3b6;
  --gray-500: #606578;
  --gray-600: #484f5d;
  --gray-700: #344154;
  --gray-800: #222938;
  --gray-900: #0b0e1e;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--primary-teal));
  --gradient-secondary: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  --gradient-accent: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
  
  /* Typography */
  --font-family: 'Inter', sans-serif;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-max-width: 1200px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -7px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* ========================================
   PREFERS-REDUCED-MOTION SUPPORT
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--font-size-3xl);
}

h2 {
  font-size: var(--font-size-2xl);
}

h3 {
  font-size: var(--font-size-xl);
}

p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   BREADCRUMB NAVIGATION
   ======================================== */
.breadcrumb-nav {
  background: var(--gray-50);
  padding: 1rem 0;
  margin-top: 80px; /* Account for fixed navbar */
}

.breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
  list-style: none;
  display: flex;
  align-items: center;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '>';
  padding: 0 0.5rem;
  color: var(--gray-500);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--gray-600);
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-green);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.5em;
  height: 1.5em;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('DAT_assets/DAT_images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 2rem 0;
    padding-top: 275px;
}

.hero h1 {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  margin-bottom: 1.63rem;
  color: var(--white);
}

.hero p {
  font-size: var(--font-size-lg);
  margin-bottom: 2rem;
  color: var(--light-green);
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
  background: var(--primary-green);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-outline:hover {
  background: var(--primary-green);
  color: var(--white);
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: var(--font-size-lg);
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  background: var(--gray-50);
}

.about-content {
  margin-bottom: 3rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 1.55rem;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 1.5rem;
}

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.73rem;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--gray-600);
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-green);
  margin-right: 0.5rem;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
  background: var(--gray-50);
}

/* Features grid removed - using Bootstrap 5 grid instead */

.feature-item {
  text-align: center;
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* ========================================
   PRICE PLAN SECTION
   ======================================== */
.priceplan {
  background: var(--white);
}

.price-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured {
  background: var(--gradient-primary);
  color: var(--white);
}

.price-card.featured .price-value {
  color: var(--white);
}

.price-value {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.price-features li:last-child {
  border-bottom: none;
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team {
  background: var(--gray-50);
}

.team-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-image {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.team-content {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 0.63rem;
  color: var(--gray-800);
}

.team-role {
  color: var(--primary-green);
  font-weight: 500;
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews {
  background: var(--white);
}

.review-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  height: 100%;
}

.review-stars {
  color: var(--primary-orange);
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.62rem;
  color: var(--gray-600);
}

.review-author {
  font-weight: 600;
  color: var(--gray-800);
}

/* ========================================
   CASE STUDIES SECTION
   ======================================== */
.casestudy {
  background: var(--gray-50);
}

.casestudy-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.casestudy-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process {
  background: var(--white);
}

.process-timeline {
  position: relative;
  padding: 2rem 0;
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.process-number {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-right: 2rem;
  flex-shrink: 0;
}

.process-content h3 {
  font-size: var(--font-size-xl);
  margin-bottom: 0.67rem;
}

/* ========================================
   TIMELINE SECTION
   ======================================== */
.timeline {
  background: var(--gray-50);
}

.timeline-item {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 2rem;
  width: 1rem;
  height: 1rem;
  background: var(--primary-green);
  border-radius: 50%;
}

/* ========================================
   CAREER SECTION
   ======================================== */
.career {
  background: var(--white);
}

.career-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.career-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 0.60rem;
  color: var(--gray-800);
}

.career-role {
  color: var(--primary-green);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* ========================================
   CORE INFO SECTION
   ======================================== */
.coreinfo {
  background: var(--gray-50);
}

.coreinfo-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  height: 100%;
}

.coreinfo-icon {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* ========================================
   ADDITIONAL PAGES COMPONENTS
   ======================================== */
.spec-card,
.ai-feature-card,
.analytics-card,
.support-card,
.capability-card,
.reporting-card,
.maintenance-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
  height: 100%;
  margin-bottom: 2rem;
}

.spec-card:hover,
.ai-feature-card:hover,
.analytics-card:hover,
.support-card:hover,
.capability-card:hover,
.reporting-card:hover,
.maintenance-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.capability-card {
  text-align: center;
}

.capability-card i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
  display: block;
}

.maintenance-card {
  text-align: center;
}

.maintenance-card i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
  display: block;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  background: var(--white);
}

.contact-form {
  background: var(--gray-50);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.68rem;
}

.form-label {
  display: block;
  margin-bottom: 0.71rem;
  font-weight: 500;
  color: var(--gray-700);
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--gray-200);
  border-radius: 0.5rem;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(55, 104, 55, 0.10);
}

.form-control::placeholder {
  color: var(--gray-400);
}

.contact-info {
  padding: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.68rem;
}

.contact-info-item i {
  font-size: 1.51rem;
  color: var(--primary-green);
  margin-right: 1rem;
  width: 2rem;
  text-align: center;
}

/* ========================================
   BLOG SECTION
   ======================================== */
.blog {
  background: var(--gray-50);
}

.blog-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.blog-excerpt {
  color: var(--gray-600);
  margin-bottom: 1.75rem;
}

.blog-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  text-decoration: underline;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
  background: var(--white);
}

.faq-card {
  background: var(--white);
  border-radius: 1rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  background: var(--gray-50);
  padding: 1.5rem;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  color: var(--gray-800);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--gray-100);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.57rem;
  color: var(--primary-green);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--gray-600);
  border-top: 1px solid var(--gray-200);
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
  background: var(--gray-50);
}

/* Gallery grid removed - using Bootstrap 5 grid instead */

.gallery-item {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--gray-800);
  color: var(--white);
  padding: 3rem 0 1rem;
}

/* Footer content grid removed - using Bootstrap 5 grid instead */
.footer-content {
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section ul {
  color: var(--gray-300);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.72rem;
}

.footer-section a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-400);
  margin: 0;
}

/* ========================================
   SPACE PAGE
   ======================================== */
#space {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: 1rem;
  margin: 2rem 0;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary-green);
}

.bg-primary {
  background: var(--gradient-primary);
}

.bg-secondary {
  background: var(--gray-50);
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.72rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.58rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.65rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.59rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: 0.71rem; padding-bottom: 0.65rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.74rem; padding-bottom: 1.68rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2 { padding-left: 1rem; padding-right: 1rem; }
.px-3 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-4 { padding-left: 2rem; padding-right: 2rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-none { display: none; }

.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.align-items-end { align-items: flex-end; }

.rounded { border-radius: 0.5rem; }
.rounded-lg { border-radius: 1rem; }
.rounded-circle { border-radius: 50%; }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); } 


/* 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;
    }
}
