/* Shmoopi.net Static Site - Flat Theme Design */

/* CSS Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 80px;
  color: #34495e;
  background: #f5f5f5;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  margin-top: 0;
  line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin: 0 0 1rem;
}

a {
  color: #3498db;
  text-decoration: none;
  transition: all 300ms ease;
}

a:hover {
  color: #2980b9;
  text-decoration: none;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a img {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

a:hover img {
  transform: scale(1.03);
  opacity: 0.9;
}

ul {
  padding-left: 20px;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  padding: 0 15px;
  flex: 1;
}

.col-12 { width: 100%; flex: 0 0 100%; }
.col-6 { width: 50%; flex: 0 0 50%; }
.col-4 { width: 33.333%; flex: 0 0 33.333%; }
.col-3 { width: 25%; flex: 0 0 25%; }

@media (max-width: 992px) {
  .col-md-12 { width: 100%; flex: 0 0 100%; }
  .col-md-6 { width: 50%; flex: 0 0 50%; }
}

@media (max-width: 768px) {
  .col-sm-12 { width: 100%; flex: 0 0 100%; }
  .col { width: 100%; flex: 0 0 100%; }
  .col-6, .col-4, .col-3 { width: 100%; flex: 0 0 100%; }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.hidden-xs { display: block; }
.visible-xs { display: none; }

@media (max-width: 768px) {
  .hidden-xs { display: none !important; }
  .visible-xs { display: block !important; }
}

.gap { margin-bottom: 50px; }
.big-gap { margin-bottom: 100px; }

.divider-lg { margin-bottom: 100px; }
.divider-md { margin-bottom: 50px; }
.divider-sm { margin-bottom: 20px; }
.divider-xs { margin-bottom: 10px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  transition: all 300ms ease;
}

.btn-primary {
  background-color: #3498db;
  color: #fff;
}

.btn-primary:hover {
  background-color: #2980b9;
  color: #fff;
}

.btn-danger {
  background-color: #e74c3c;
  color: #fff;
}

.btn-danger:hover {
  background-color: #c0392b;
  color: #fff;
}

.btn-transparent {
  border: 3px solid #fff;
  background: transparent;
  color: #fff;
}

.btn-transparent:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-lg {
  padding: 15px 30px;
  font-size: 18px;
}

.btn-xlg {
  padding: 24px 48px;
  font-size: 24px;
}

/* Color Classes - Flat Design Colors */
.turquoise { background-color: #1abc9c; color: #fff; }
.green-sea { background-color: #16a085; color: #fff; }
.sun-flower { background-color: #f1c40f; color: #fff; }
.orange { background-color: #f39c12; color: #fff; }
.emerald { background-color: #2ecc71; color: #fff; }
.nephritis { background-color: #27ae60; color: #fff; }
.carrot { background-color: #e67e22; color: #fff; }
.pumkin { background-color: #d35400; color: #fff; }
.peter-river { background-color: #3498db; color: #fff; }
.belize-hole { background-color: #2980b9; color: #fff; }
.alizarin { background-color: #e74c3c; color: #fff; }
.pomegranate { background-color: #c0392b; color: #fff; }
.amethyst { background-color: #9b59b6; color: #fff; }
.wisteria { background-color: #8e44ad; color: #fff; }
.clouds { background-color: #ecf0f1; color: #777; }
.silver { background-color: #bdc3c7; color: #fff; }
.wet-asphalt { background-color: #34495e; color: #fff; }
.midnight-blue { background-color: #2c3e50; color: #fff; }
.concrete { background-color: #95a5a6; color: #fff; }
.asbestos { background-color: #7f8c8d; color: #fff; }

.wet-asphalt h1, .wet-asphalt h2, .wet-asphalt h3, .wet-asphalt h4, .wet-asphalt h5, .wet-asphalt h6,
.midnight-blue h1, .midnight-blue h2, .midnight-blue h3, .midnight-blue h4, .midnight-blue h5, .midnight-blue h6 {
  color: #fff;
}

.wet-asphalt a { color: #bdc3c7; }
.wet-asphalt a:hover { color: #ecf0f1; }

/* Header / Navbar */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #34495e;
  padding: 10px 0;
}

#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  margin-right: 10px;
}

.navbar-brand:hover {
  color: #fff;
}

/* Desktop Navigation */
.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
}

.navbar-nav li {
  position: relative;
}

.navbar-nav li a {
  display: block;
  padding: 10px 15px;
  color: #bdc3c7;
  border-radius: 4px;
  transition: all 300ms ease;
}

.navbar-nav li a:hover,
.navbar-nav li.active a {
  background-color: #2c3e50;
  color: #fff;
}

/* Dropdown Menu */
.navbar-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: #2c3e50;
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: 0 0 4px 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 300ms ease;
}

.navbar-nav li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  padding: 10px 15px;
  border-radius: 0;
}

.dropdown-menu li a:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

/* Mobile Menu Toggle */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 300ms ease;
}

@media (max-width: 768px) {
  .navbar-toggle {
    display: block;
  }

  .navbar-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: #34495e;
    padding: 10px 0;
  }

  .navbar-nav.active {
    display: flex;
  }

  .navbar-nav li a {
    padding: 12px 20px;
    border-radius: 0;
  }

  .navbar-nav .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background-color: rgba(0, 0, 0, 0.2);
  }
}

/* Main Slider / Hero Section */
#main-slider {
  position: relative;
  margin: 0;
  padding: 0;
  background-color: #34495e;
  overflow: hidden;
}

.slider-item {
  min-height: 500px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
}

.slider-content {
  color: #fff;
}

.slider-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  animation: fadeInUp 0.5s ease forwards;
}

.slider-content p {
  font-size: 18px;
  margin-bottom: 25px;
  animation: fadeInUp 0.5s ease 0.2s forwards;
  opacity: 0;
}

.slider-content .btn {
  animation: fadeInUp 0.5s ease 0.4s forwards;
  opacity: 0;
}

.slider-content.boxed h2,
.slider-content.boxed p {
  display: inline-block;
  padding: 10px 15px;
  background-color: rgba(0, 0, 0, 0.8);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Featured Products Carousel */
#featured-carousel {
  padding: 0;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
}

.carousel-inner {
  position: relative;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 50px 0;
  color: #fff;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  z-index: 0;
  pointer-events: none;
}

.carousel-slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
  pointer-events: auto;
}

.carousel-slide h2 {
  color: #fff;
  margin-bottom: 15px;
}

.carousel-slide ul {
  color: #fff;
}

/* Carousel Navigation Dots */
.carousel-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.carousel-dot.active {
  background-color: #fff;
  transform: scale(1.2);
}

/* Carousel Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.carousel-arrow:hover {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.carousel-arrow-prev {
  left: 20px;
}

.carousel-arrow-next {
  right: 20px;
}

.carousel-arrow-prev::after {
  content: "";
  border: solid #fff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 6px;
  transform: rotate(135deg);
  margin-left: 4px;
}

.carousel-arrow-next::after {
  content: "";
  border: solid #fff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 6px;
  transform: rotate(-45deg);
  margin-right: 4px;
}

@media (max-width: 768px) {
  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .carousel-arrow-prev {
    left: 10px;
  }

  .carousel-arrow-next {
    right: 10px;
  }

  .carousel-arrow-prev::after,
  .carousel-arrow-next::after {
    padding: 4px;
  }
}

/* Page Sections */
section {
  padding: 50px 0;
}

/* Page Title / Subtitle Section */
#title {
  padding: 30px 0;
}

#title h1 {
  margin: 0;
  font-size: 36px;
}

.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.breadcrumb li {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb li + li::before {
  content: "/";
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb li a {
  color: #fff;
}

.breadcrumb li a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Services / Features Section */
.service-box-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.service-box-link:hover {
  color: inherit;
  transform: translateY(-5px);
}

.service-box-link:hover .service-box {
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: 8px;
}

.service-box {
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 30px;
  transition: background-color 0.3s ease;
}

.service-box .icon {
  font-size: 48px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  margin: 0 auto 20px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  transition: all 500ms ease;
}

.service-box:hover .icon,
.service-box-link:hover .icon {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.service-box h4 {
  margin-bottom: 15px;
}

/* Contact Option Boxes */
.contact-option {
  transition: all 0.3s ease;
}

.contact-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Media Object */
.media-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.media-link:hover {
  color: inherit;
  transform: translateX(5px);
}

.media-link:hover .icon-md {
  border-radius: 10px;
  transform: scale(1.1);
}

.media {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.media-left {
  margin-right: 20px;
  flex-shrink: 0;
}

.media-body {
  flex: 1;
}

.media-body h4 {
  margin-bottom: 5px;
}

.icon-md {
  font-size: 36px;
  height: 68px;
  width: 68px;
  line-height: 68px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  text-align: center;
  display: block;
  border-radius: 50%;
  transition: all 500ms ease;
}

.media:hover .icon-md {
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Content Box */
.box {
  background: #fff;
  padding: 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
  border-radius: 4px;
}

/* Post / Article Styles */
.post, article {
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 20px;
  word-wrap: break-word;
}

.post .entry-thumbnail {
  margin: -20px -20px 20px;
}

.post .entry-thumbnail img {
  width: 100%;
  border-radius: 5px 5px 0 0;
}

.post h2.entry-title {
  margin-top: 0;
}

.entry-meta {
  margin-bottom: 20px;
}

.entry-meta ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.entry-meta ul li {
  font-size: 12px;
  color: #999;
}

.entry-meta ul li a {
  color: #999;
}

/* Pricing Tables */
.pricing-table {
  background: #3498db;
  border-radius: 4px;
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 20px;
  color: #fff;
}

.pricing-table.featured {
  background-color: #2c3e50;
}

.pricing-table h3 {
  margin: 0 0 20px;
  font-size: 24px;
}

.pricing-table .price {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 50%;
  font-size: 28px;
  margin-bottom: 20px;
}

.pricing-table ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.pricing-table ul li {
  padding: 8px 0;
}

/* Portfolio / Gallery */
.portfolio-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 992px) {
  .portfolio-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .portfolio-items {
    grid-template-columns: 1fr;
  }
}

.portfolio-item {
  position: relative;
  background: #fff;
  border: 1px solid #eee;
  padding: 10px;
  overflow: hidden;
}

.portfolio-item img {
  width: 100%;
  transition: transform 300ms ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item h5 {
  margin: 10px 0 0;
  font-weight: 700;
  font-size: 14px;
  color: #2c3e50;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.portfolio-item .overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 40px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 300ms ease;
}

.portfolio-item:hover .overlay {
  opacity: 1;
}

/* Contact Form */
.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 400;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 300ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3498db;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .form-status {
  margin-top: 15px;
  padding: 12px 15px;
  border-radius: 4px;
  display: none;
}

.contact-form .form-status.success {
  display: block;
  background-color: rgba(46, 204, 113, 0.15);
  color: #27ae60;
  border: 1px solid #2ecc71;
}

.contact-form .form-status.error {
  display: block;
  background-color: rgba(231, 76, 60, 0.15);
  color: #c0392b;
  border: 1px solid #e74c3c;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  transition: all 300ms ease;
}

.social-icons li a:hover {
  transform: translateY(-3px);
}

.btn-facebook { background-color: #3c5899; }
.btn-facebook:hover { background-color: #4e6fba; }
.btn-twitter { background-color: #1da1f2; }
.btn-twitter:hover { background-color: #4db5f5; }
.btn-linkedin { background-color: #0077b5; }
.btn-linkedin:hover { background-color: #0099e5; }
.btn-github { background-color: #333; }
.btn-github:hover { background-color: #555; }

/* Icon Styles (using CSS shapes for minimal JS) */
.icon-lg {
  font-size: 48px;
  height: 108px;
  width: 108px;
  line-height: 108px;
  color: #fff;
  margin: 10px;
  background-color: rgba(0, 0, 0, 0.4);
  text-align: center;
  display: inline-block;
  border-radius: 50%;
}

/* Bottom Section */
#bottom {
  padding: 50px 0;
}

#bottom h4 {
  margin-top: 0;
  margin-bottom: 20px;
}

#bottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#bottom ul li {
  padding: 5px 0;
}

#bottom ul li::before {
  content: "\2192";
  margin-right: 8px;
  opacity: 0.7;
}

/* Footer */
#footer {
  padding: 30px 0;
}

#footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

#footer a {
  color: #bdc3c7;
}

#footer a:hover {
  color: #fff;
}

#footer ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
}

#gototop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: all 300ms ease;
}

#gototop:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  #footer .container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  #footer ul {
    justify-content: center;
  }
}

/* Widget Area */
.widget {
  margin-bottom: 30px;
}

.widget h4 {
  margin-bottom: 15px;
}

.widget ul {
  list-style: none;
  padding: 0;
}

.widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget ul li:last-child {
  border-bottom: none;
}

/* Tags */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.tag-cloud a {
  display: inline-block;
  padding: 4px 10px;
  background-color: #3498db;
  color: #fff;
  border-radius: 3px;
  font-size: 14px;
  transition: all 300ms ease;
}

.tag-cloud a:hover {
  background-color: #2980b9;
  color: #fff;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

th {
  font-weight: 400;
  background-color: #f9f9f9;
}

/* Responsive Embed */
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Alerts */
.alert {
  padding: 15px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.alert-info { background-color: #3498db; color: #fff; }
.alert-success { background-color: #2ecc71; color: #fff; }
.alert-warning { background-color: #f39c12; color: #fff; }
.alert-danger { background-color: #e74c3c; color: #fff; }

/* Cards */
.card {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 20px;
}

.card-img {
  width: 100%;
  height: auto;
}

.card-body {
  padding: 20px;
}

.card-title {
  margin-top: 0;
  margin-bottom: 10px;
}

/* List Styles */
.list-unstyled {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-inline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* Flex Utilities */
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }

/* Spacing Utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.py-1 { padding-top: 10px; padding-bottom: 10px; }
.py-2 { padding-top: 20px; padding-bottom: 20px; }
.py-3 { padding-top: 30px; padding-bottom: 30px; }
.py-4 { padding-top: 40px; padding-bottom: 40px; }
.py-5 { padding-top: 50px; padding-bottom: 50px; }

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Animation Classes */
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.6s ease forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.6s ease forwards;
}

.animate-scale-in {
  animation: scaleIn 0.5s ease forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Staggered Animation Delays */
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }
.delay-5 { animation-delay: 0.5s; opacity: 0; }
.delay-6 { animation-delay: 0.6s; opacity: 0; }

/* Feature List Boxes */
.feature-list-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.feature-list-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-list-box h4 {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #ecf0f1;
}

.feature-list-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list-box ul li {
  padding: 12px 15px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-list-box ul li:hover {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #fff;
  transform: translateX(5px);
}

.feature-list-box ul li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #3498db;
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-list-box ul li:hover::before {
  background-color: #fff;
}

.feature-list-box.purple ul li:hover {
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.feature-list-box.purple ul li::before {
  background-color: #9b59b6;
}

.feature-list-box.green ul li:hover {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.feature-list-box.green ul li::before {
  background-color: #2ecc71;
}

.feature-list-box.red ul li:hover {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.feature-list-box.red ul li::before {
  background-color: #e74c3c;
}

/* Service Hero Section */
.service-hero {
  text-align: center;
  padding: 40px 0;
}

.service-hero-icon {
  width: 180px;
  height: 180px;
  margin: 0 auto 30px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  animation: float 3s ease-in-out infinite;
}

.service-hero-icon:hover {
  transform: scale(1.1) rotate(5deg);
}

.service-hero h2 {
  margin-bottom: 20px;
}

.service-hero p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 18px;
  color: #7f8c8d;
}

/* Animated Step Numbers */
.step-number {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  line-height: 1;
}

.step-number::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: currentColor;
  border-radius: 2px;
  opacity: 0.5;
}

/* Animated Box Hover */
.box-animated {
  transition: all 0.3s ease;
}

.box-animated:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Card Grid Spacing */
.row.card-grid {
  gap: 30px 0;
}

.row.card-grid > [class*="col-"] {
  padding: 0 20px;
}

/* Media Card Style */
.media-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.media-card:hover .icon-md {
  transform: scale(1.1) rotate(5deg);
}

.media-card .media {
  margin-bottom: 0;
}

/* Icon Pulse Animation */
.icon-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #3498db 0%, #9b59b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Print Styles */
@media print {
  #header, #footer, #gototop {
    display: none;
  }

  body {
    padding-top: 0;
  }
}
