:root {
  --primary: #d32f2f;       /* Red - energetic flavor feel */
  --primary-dark: #b71c1c;
  --secondary: #f57c00;     /* Orange accent */
  --light-bg: #ffffff;
  --accent: #ff9800;        /* Lighter orange */
  --dark-bg: #1a1a1a;       /* Dark background */
  --text-light: #ffffff;
  --text-dark: #2d3748;
  --text-muted: #718096;
  --shadow: rgba(0,0,0,0.1);
  --shadow-hover: rgba(0,0,0,0.15);
  --gradient-primary: linear-gradient(135deg, #d32f2f 0%, #f57c00 100%);
  --gradient-secondary: linear-gradient(135deg, #f57c00 0%, #ff9800 100%);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.7;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.navbar {
  background: white;
  box-shadow: 0 2px 20px var(--shadow);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary) !important;
  font-size: 1.8rem;
  text-shadow: none;
  transition: var(--transition);
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border-radius: var(--border-radius);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
  transform: translateY(-2px);
}

/* Search Button Styling - Bigger Size */
.search-btn {
  font-weight: 500;
  color: var(--text-dark) !important;
  transition: var(--transition);
  position: relative;
  padding: 0.6rem 1.2rem;
  margin: 0 0.25rem;
  border-radius: var(--border-radius);
  background: var(--gradient-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 42px;
}

.search-btn:hover {
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

.search-btn i {
  font-size: 1.1rem;
  color: white;
}

/* Search Modal Styles */
.search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
  animation: fadeIn 0.3s ease;
}

.search-modal.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.search-modal-content {
  background: white;
  width: 90%;
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}

.search-header h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.3rem;
  font-weight: 600;
}

.search-close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.3s ease;
}

.search-close-btn:hover {
  color: var(--primary);
}

.search-input-wrapper {
  position: relative;
  padding: 20px 24px;
}

#searchInput {
  width: 100%;
  padding: 16px 20px 16px 50px;
  font-size: 1.1rem;
  border: 2px solid #eee;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#searchInput:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
}

.search-icon {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 1.2rem;
}

.search-results {
  max-height: 400px;
  overflow-y: auto;
  padding: 0 24px 24px;
}

.search-result-item {
  display: block;
  padding: 14px 18px;
  margin-bottom: 8px;
  background: #f8f9fa;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.search-result-item:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateX(5px);
}

.search-result-item h4 {
  margin: 0 0 4px 0;
  font-size: 1rem;
  font-weight: 600;
}

.search-result-item p {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
}

.search-result-item:hover p {
  color: rgba(255, 255, 255, 0.8);
}

.search-no-results {
  text-align: center;
  padding: 30px;
  color: #999;
}

.hero {
  background: white;
  min-height: 10vh;
  color: var(--text-dark);
  display: flex;
  width: 100%;
  align-items: center;
  position: relative;
}

.hero::before {
  display: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.35rem;
  max-width: 720px;
  color: var(--text-dark);
  font-weight: 300;
}

.btn-flavor {
  background-color: var(--secondary);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s;
  color: white;
  position: relative;
  overflow: hidden;
}

.btn-flavor::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  transition: left 0.3s ease;
}

.btn-flavor:hover {
  background-color: var(--primary);
  color: white;
  transform: none;
}

.btn-flavor:hover::after {
  left: 100%;
}

.card-flavor {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.35s, box-shadow 0.35s, background-color 0.35s;
  background-color: #d32f2f;
  color: white;
}

.card-flavor .card-title,
.card-flavor .card-text {
  color: white;
}

.card-flavor:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  background-color: #f57c00;
}

.card-flavor:hover .btn-primary {
  background-color: #d32f2f;
}

.btn-primary {
  background-color: var(--secondary);
  border-color: transparent;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  transition: left 0.3s ease;
}

.btn-primary:hover {
  background: white;
  color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.btn-primary:hover::after {
  left: 100%;
}

.section-title {
  position: relative;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.content-center{
  justify-content: center;
}

.section-title:after {
  content: '';
  width: 80px;
  height: 4px;
  background: var(--primary);
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px;
}

.heading-with-line {
  position: relative;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.heading-with-line:after {
  content: '';
  width: 80px;
  height: 4px;
  background: var(--primary);
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px;
}

footer {
  background: #1a1a1a;
  color: #ddd;
}

@media (max-width: 767px) {
  .hero h1 { font-size: 2.8rem; }
  .hero p  { font-size: 1.15rem; }
}

/* Social Media Sidebar */
.social-sidebar {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--secondary);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.social-link:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.social-link i {
  font-size: 20px;
}

/* Scroll to Top Button */
.scroll-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.scroll-to-top-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.scroll-to-top-btn i {
  font-size: 20px;
}

.whole {
  background-image: url('images/banner6.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 100px 0;
  text-align: center;
}

/* About Section Styles */
#about {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

#about .section-title {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

#about .row {
  margin-bottom: 3rem;
}

#about .col-lg-6,
#about .col-lg-4,
#about .col-md-6,
#about .col-md-3 {
  margin-bottom: 2rem;
}

#about .bg-light {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

#about .bg-light:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

#about .h3 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

#about .h4 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

#about .display-4 {
  font-weight: 700;
  color: var(--primary);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

#about .display-4:hover {
  transform: scale(1.05);
}

#about .fs-5 {
  font-weight: 500;
  color: #666;
}

#about .card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  overflow: hidden;
}

#about .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

#about .card-body {
  padding: 2rem;
}

#about .card-title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

#about .card-text {
  color: #555;
  line-height: 1.6;
}

#about .bg-light.p-4.rounded {
  padding: 2rem !important;
}

#about .bg-light.p-4.rounded .row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: stretch;
}

#about .bg-light.p-4.rounded .row .col-md-3 {
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.8);
  margin: 0.5rem;
  flex: 1;
  min-width: 0;
}

#about .bg-light.p-4.rounded .row .col-md-3:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

#about .bg-light.p-4.rounded .row .col-md-3 h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

#about .bg-light.p-4.rounded .row .col-md-3 p {
  font-size: 0.9rem;
  margin: 0;
}

#about .list-unstyled li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

#about .list-unstyled li:hover {
  background: rgba(211,47,47,0.05);
  padding-left: 1rem;
  border-radius: 5px;
}

#about .list-unstyled li strong {
  color: var(--primary);
}

/* Categories Section Styles */
#categories {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
}

#categories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d32f2f" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23f57c00" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  z-index: 0;
}

#categories .container {
  position: relative;
  z-index: 1;
}

#categories .section-title {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 4rem;
  text-align: center;
}

.process-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  z-index: 1;
}

.process-step {
  position: relative;
  background: var(--text-light);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 10px 30px var(--shadow);
  transition: var(--transition);
  z-index: 2;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.process-step::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 17px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process-step:hover::before {
  opacity: 1;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-hover);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  z-index: 3;
}

.step-content {
  text-align: center;
  padding-top: 1rem;
}

.step-content h4 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.step-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.step-content .btn {
  background: var(--gradient-primary);
  border: none;
  color: var(--text-light);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.step-content .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(211,47,47,0.3);
  color: var(--text-light);
}

.process-arrow {
  display: none;
}

@media (min-width: 768px) {
  .process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .process-timeline::before {
    height: 2px;
  }

  .process-step {
    flex: 1;
    margin: 0 1rem;
    max-width: 300px;
  }

  .process-arrow {
    display: block;
    font-size: 2rem;
    color: var(--primary);
    background: var(--text-light);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--shadow);
    z-index: 3;
    position: relative;
  }
}

@media (max-width: 767px) {
  .process-timeline::before {
    display: none;
  }

  .process-step {
    margin-bottom: 3rem;
  }

  .step-number {
    position: static;
    transform: none;
    margin: 0 auto 1rem;
    display: block;
  }
}

/* Numbered List without Circles */
.numbered-list {
  list-style-type: decimal;
  padding-left: 1.5rem;
}

.numbered-list li {
  margin-bottom: 0.5rem;
}

/* Image Hover Effects */
.image-container {
  position: relative;
  overflow: hidden;
  border: 1px solid red;
  border-radius: 10px;
}

.image-container img {
  transition: filter 0.3s ease;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay p {
  color: white;
  font-size: 18px;
  text-align: center;
  margin: 0;
}

.image-container:hover .overlay {
  opacity: 1;
}

.image-container:hover img {
  filter: blur(2px);
}

.first-ghee {
  border: 1px solid red;
  border-radius: 10px;
}

/* Mobile Responsiveness for Social Sidebar and Scroll Button */
@media (max-width: 768px) {
  .social-sidebar {
    right: 15px;
    top: auto;
    bottom: 80px;
    transform: none;
    flex-direction: row;
    gap: 8px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .social-link i {
    font-size: 16px;
  }

  .scroll-to-top-btn {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
  }

  .scroll-to-top-btn i {
    font-size: 18px;
  }

  #about .section-title {
    font-size: 2rem;
  }

  #about .card-body {
    padding: 1.5rem;
  }

  #about .bg-light.p-4.rounded .row .col-md-3 {
    margin: 0.25rem;
    padding: 0.75rem;
  }

  /* Responsive sliders */
  .category-item {
    min-width: 120px;
    margin-right: 12px;
  }

  .category-item .h-40 {
    height: 120px;
    width: 120px;
  }

  .category-item p {
    width: 120px;
  }

  .blog-card {
    width: 250px;
    flex-shrink: 0;
  }

  .blog-card .h-44 {
    height: 120px;
  }
}

@media (max-width: 480px) {
  .category-item {
    min-width: 100px;
    margin-right: 8px;
  }

  .category-item .h-40 {
    height: 100px;
    width: 100px;
  }

  .category-item p {
    width: 100px;
    font-size: 14px;
  }

  .blog-card {
    width: 200px;
  }

  .blog-card .h-44 {
    height: 100px;
  }
}

/* Ghee Card Styles - Only applies to ghee product card */
.ghee-card {
    width: 100%;
    max-width: 900px;
    height: 450px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 3px solid #d32f2f;
    border-radius: 15px;
    display: flex;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.left-section {
    width: 65%;
    padding: 30px;
    position: relative;
    border-right: 2px solid #d32f2f;
    background: linear-gradient(135deg, #ffebee 0%, #fce4ec 100%);
}

.vertical-title {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: rotate(-90deg) translateY(-50%);
    transform-origin: left top;
    font-size: 24px;
    letter-spacing: 4px;
    color: #d32f2f;
    font-weight: bold;
}

.content {
    margin-top: 60px;
}

.content ul {
    list-style-type: disc;
    font-size: 20px;
    line-height: 40px;
    color: #333;
}

.content ul li strong {
    color: #d32f2f;
}

.right-section {
    width: 35%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #fff3e0 0%, #ffcc02 100%);
}

.top-box, .bottom-box {
    flex: 1;
    padding: 25px;
    border-bottom: 2px solid #f57c00;
}

.bottom-box {
    border-bottom: none;
}

.top-box h3,
.bottom-box h3 {
    margin-bottom: 15px;
    color: #d32f2f;
    font-weight: 600;
}

.top-box p,
.bottom-box p {
    margin: 8px 0;
    font-size: 16px;
    color: #555;
}

/* Flavor List Hover Effects */
.flavor-list li {
  transition: all 0.3s ease;
  cursor: pointer;
}

.flavor-list li:hover {
  color: #d32f2f;
  transform: translateX(10px);
  background-color: rgba(211, 47, 47, 0.1);
  padding-left: 10px;
  border-radius: 5px;
}

/* Column Hover Effects - Removed */

/* Blog Card Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 0;
}

/* Staggered animation delays */
.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

/* Blog card hover enhancement */
.blog-card-animated {
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
}

.blog-card-animated:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* Title link hover effect */
.blog-title-link {
  transition: color 0.3s ease;
}

.blog-title-link:hover {
  color: var(--primary) !important;
}

/* Button hover animation */
.blog-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-btn:hover {
  transform: translateX(5px);
}

.blog-btn::after {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.blog-btn:hover::after {
  right: 10px;
  opacity: 1;
}

/* Badge animation */
.blog-badge {
  transition: transform 0.3s ease;
}

.blog-badge:hover {
  transform: scale(1.1);
}

/* Contact Card Hover Effects */
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(211,47,47,0.15) !important;
}

.contact-icon-wrapper {
    transition: all .3s ease;
}

.contact-card:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(360deg);
}
