    /* Reset and Base Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background-color: #fff;
      color: #333;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .sd-container {
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header Styles */
    .sd-header {
      background-color: #fff;
      box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      transition: all 0.4s ease;
    }

    .sd-header.scrolled {
      background-color: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 5px 0;
    }

    .sd-navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
      transition: all 0.4s ease;
    }

    .sd-header.scrolled .sd-navbar {
      padding: 10px 0;
    }

    .sd-logo {
      font-size: 28px;
      font-weight: 700;
      color: #ac1c14;
      text-decoration: none;
      display: flex;
      align-items: center;
      z-index: 1100;
    }

    .sd-logo i {
      margin-right: 8px;
      transition: transform 0.5s ease;
    }

    .sd-logo:hover i {
      transform: rotate(15deg);
    }

    /* Nav Links */
    .sd-nav-links {
      display: flex;
      list-style: none;
    }

    .sd-nav-links li {
      margin-left: 30px;
      position: relative;
    }

    .sd-nav-links a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: color 0.3s ease;
      position: relative;
      padding: 5px 0;
    }

    .sd-nav-links a:hover {
      color: #ac1c14;
    }

    .sd-nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background: #ac1c14;
      bottom: 0;
      left: 0;
      transition: width 0.3s ease;
    }

    .sd-nav-links a:hover::after {
      width: 100%;
    }

    /* Mobile Menu Toggle */
    .sd-toggle {
      display: none;
      font-size: 26px;
      cursor: pointer;
      color: #ac1c14;
      z-index: 1100;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .sd-toggle {
        display: block;
      }

      .sd-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.2);
      }

      .sd-nav-links.active {
        right: 0;
      }

      .sd-nav-links li {
        margin: 20px 0;
      }
    }

      /* Updated Hero Section */
        .sd-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1581578731540-c1afb8cdd2a5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 180px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .sd-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(172, 28, 20, 0.3), transparent 70%);
            z-index: 1;
        }
        
        .sd-hero-content {
            position: relative;
            z-index: 2;
            margin-bottom: 50px;
        }
        
        .sd-hero h1 {
            font-size: 64px;
            margin-bottom: 20px;
            animation: sd-fadeInDown 1.2s ease;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        
        .sd-hero p {
            font-size: 22px;
            max-width: 800px;
            margin: 0 auto 40px;
            animation: sd-fadeInUp 1.2s ease 0.3s both;
        }
        
        .sd-btn {
            display: inline-block;
            background: #ac1c14;
            color: white;
            padding: 15px 40px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.4s ease;
            border: 2px solid #ac1c14;
            animation: sd-fadeIn 1.2s ease 0.6s both;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .sd-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: white;
            transition: all 0.4s ease;
            z-index: -1;
        }
        
        .sd-btn:hover {
            color: #ac1c14;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .sd-btn:hover::before {
            left: 0;
        }
        
        .hero-image-container {
            position: relative;
            z-index: 2;
            max-width: 1000px;
            margin: 0 auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            animation: sd-fadeIn 1.2s ease 0.9s both;
        }
        
        .hero-image-container img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 1.2s ease;
        }
        
        .hero-image-container:hover img {
            transform: scale(1.03);
        }
        
         /* About Section with Image */
        .about-container {
            padding: 100px 0;
            background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .bg-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }
        
        .bg-shapes div {
            position: absolute;
            border-radius: 50%;
            background: rgba(172, 28, 20, 0.05);
            animation: float 15s infinite linear;
        }
        
        .bg-shapes div:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .bg-shapes div:nth-child(2) {
            width: 100px;
            height: 100px;
            top: 60%;
            left: 80%;
            animation-delay: 2s;
        }
        
        .bg-shapes div:nth-child(3) {
            width: 150px;
            height: 150px;
            top: 10%;
            left: 70%;
            animation-delay: 4s;
        }
        
        .bg-shapes div:nth-child(4) {
            width: 60px;
            height: 60px;
            top: 80%;
            left: 20%;
            animation-delay: 6s;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: translateY(-1000px) rotate(720deg);
                opacity: 0;
            }
        }
        
        .about-heading {
            text-align: left;
            margin-bottom: 50px;
            position: relative;
            overflow: hidden;
        }
        
        .about-heading h2 {
            font-size: 3.5rem;
            font-weight: 800;
            color: #ac1c14;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            opacity: 1;
            animation: fadeInUp 1s 0.5s forwards;
        }
        
        .heading-underline {
            width: 200px;
            height: 6px;
            background: linear-gradient(to right, transparent, #ac1c14, transparent);
            margin: 0;
            border-radius: 3px;
            position: relative;
            overflow: hidden;
            opacity: 1;
            animation: fadeIn 1s 1s forwards;
        }
        
        .heading-underline::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
            animation: shine 3s infinite;
        }
        
        @keyframes shine {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
            position: relative;
            z-index: 1;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
            opacity: 1;
            animation: slideInLeft 1s 0.8s forwards;
        }
        
        .about-text p {
            margin-bottom: 25px;
            font-size: 1.2rem;
            line-height: 1.8;
            color: #555;
        }
        
        .btn-container {
            margin-top: 30px;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .about-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 15px 30px;
            background: #ac1c14;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .about-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: #333;
            transition: all 0.4s ease;
            z-index: -1;
        }
        
        .about-btn:hover::before {
            width: 100%;
        }
        
        .about-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        
        .about-btn i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .btn-secondary {
            background: transparent;
            border: 2px solid #ac1c14;
            color: #ac1c14;
        }
        
        .btn-secondary::before {
            background: #ac1c14;
        }
        
        .btn-secondary:hover {
            color: white;
        }
        
        /* About Image Styles */
        .about-image {
            flex: 1;
            min-width: 300px;
            opacity: 1;
            animation: slideInRight 1s 0.8s forwards;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #ac1c14, #333);
        }
        
        .about-image img {
            width: 100%;
            height: 600px;
            display: block;
            transition: transform 1.2s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }

       /* Stats Section */
.sd-stats {
  padding: 100px 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.sd-stats::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(172, 28, 20, 0.05) 0%, transparent 70%);
  top: -50%;
  left: -50%;
  animation: sd-rotate 20s linear infinite;
}

.sd-stats-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.sd-stat-item {
  text-align: center;
  padding: 30px;
  flex: 1;
  min-width: 200px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.sd-stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.sd-stat-number {
  font-size: 60px;
  font-weight: 700;
  color: #ac1c14;
  margin-bottom: 10px;
  display: block;
}

.sd-stat-text {
  font-size: 18px;
  color: #666;
  font-weight: 500;
}

/* slider */
   /* Slider Section */
    .sd-slider-section {
      padding: 60px 20px;
      background: #f9f9f9;
      position: relative;
    }

    .sd-slider-container {
      overflow: hidden;
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
    }

    .sd-slider-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .sd-slide {
      flex: 0 0 25%; /* 4 images per row on desktop */
      padding: 10px;
    }

    .sd-slide img {
      width: 100%;
      height: 400px;
      /* border-radius: 10px; */
      display: block;
    }

    /* Buttons */
    .sd-slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #ac1c14;
      color: #fff;
      border: none;
      font-size: 24px;
      padding: 10px 15px;
      cursor: pointer;
      border-radius: 50%;
      z-index: 10;
      transition: 0.3s;
    }

    .sd-slider-btn:hover {
      background: #800f0a;
    }

    #sd-prevBtn {
      left: 10px;
    }

    #sd-nextBtn {
      right: 10px;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .sd-slide {
        flex: 0 0 50%; /* 2 images per row on tablet */
      }
    }

    @media (max-width: 576px) {
      .sd-slide {
        flex: 0 0 100%; /* 1 image per row on mobile */
      }
    }

     /* Security Section */
.sd-security {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  position: relative;
}

.sd-security::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23ac1c14" opacity="0.03"><path d="M20,20 L80,20 L80,80 L20,80 Z M30,30 L70,30 L70,70 L30,70 Z"/></svg>');
  background-size: 50px;
  top: 0;
  left: 0;
  z-index: 0;
}

.sd-security-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.sd-security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}

.sd-security-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
  cursor: pointer;
  position: relative;
}

.sd-security-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.sd-security-name {
  padding: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  background: #fff;
  color: #333;
  transition: all 0.4s ease;
}

.sd-security-item:hover .sd-security-name {
  background: #ac1c14;
  color: white;
}

.sd-security-details {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(172, 28, 20, 0.95);
  color: white;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease;
  pointer-events: none;
}

.sd-security-item:hover .sd-security-details {
  opacity: 1;
  transform: scale(1);
}

.sd-security-details h3 {
  font-size: 22px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 8px;
}

.sd-security-details h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background: white;
  bottom: 0;
  left: 0;
}

.sd-security-details p {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.5;
}

.sd-security-features {
  list-style: none;
  padding: 0;
}

.sd-security-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}

.sd-security-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: bold;
}

        
        /* Gallery Section */
        .sd-gallery {
            padding: 0;
            background: #fff;
            position: relative;
            overflow: hidden;
        }
        
        .sd-gallery-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        
        .sd-carousel {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            height: 80vh;
        }
        
        .sd-carousel-item {
            min-width: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .sd-carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 1.2s ease;
        }
        
        .sd-carousel-item:hover img {
            transform: scale(1.05);
        }
        
        .sd-carousel-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 40px;
            text-align: center;
        }
        
        .sd-carousel-caption h3 {
            font-size: 36px;
            margin-bottom: 10px;
        }
        
        .sd-carousel-caption p {
            font-size: 20px;
            opacity: 0.9;
        }
        
        .sd-carousel-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 30px;
            z-index: 2;
        }
        
        .sd-carousel-btn {
            background: rgba(172, 28, 20, 0.9);
            color: white;
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .sd-carousel-btn:hover {
            background: #ac1c14;
            transform: scale(1.1);
        }
        
        .sd-carousel-dots {
            display: flex;
            justify-content: center;
            margin: 30px 0;
            gap: 15px;
        }
        
        .sd-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .sd-dot::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: #ac1c14;
            border-radius: 50%;
            transform: scale(0);
            transition: transform 0.4s ease;
        }
        
        .sd-dot.active::before {
            transform: scale(1);
        }
        
        /* Testimonials Section */
        .sd-testimonials {
            padding: 50px 0;
            background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
            position: relative;
        }
        
        .sd-testimonials::after {
            content: '';
            position: absolute;
            /* width: 100px;
            height: 100px; */
            background: #ac1c14;
            border-radius: 50%;
            bottom: -100px;
            right: -100px;
            opacity: 0.05;
        }
        
        .sd-testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
        }
        
        .sd-testimonial {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.5s ease;
            position: relative;
            opacity: 1;
            transform: translateY(30px);
        }
        
        .sd-testimonial.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .sd-testimonial:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        .sd-testimonial::before {
            content: '"';
            font-size: 100px;
            color: #ac1c14;
            opacity: 0.1;
            position: absolute;
            top: 10px;
            left: 20px;
            line-height: 1;
            font-family: Georgia, serif;
        }
        
        .sd-testimonial p {
            margin-bottom: 25px;
            font-style: italic;
            color: #555;
            font-size: 17px;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }
        
        .sd-testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .sd-testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 3px solid #ac1c14;
            transition: all 0.4s ease;
        }
        
        .sd-testimonial:hover .sd-testimonial-avatar {
            transform: scale(1.1);
        }
        
        .sd-testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .sd-testimonial-info h4 {
            font-size: 20px;
            margin-bottom: 5px;
            color: #333;
        }
        
        .sd-testimonial-info p {
            font-size: 15px;
            color: #777;
            margin: 0;
            font-style: normal;
        }
        
       /* Contact Section */
.sd-contact {
  padding: 100px 20px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.sd-contact::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23ac1c14" opacity="0.03"><path d="M20,20 L80,20 L80,80 L20,80 Z M30,30 L70,30 L70,70 L30,70 Z"/></svg>');
  background-size: 80px;
  top: 0;
  left: 0;
  transform: rotate(45deg);
}

.sd-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sd-contact-wrapper {
  display: flex;
  gap: 60px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

/* Contact Info */
.sd-contact-info {
  flex: 1;
  min-width: 280px;
}

.sd-contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}

.sd-contact-info-item:hover {
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateX(10px);
}

.sd-contact-icon {
  background: #ac1c14;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  font-size: 20px;
  transition: all 0.4s ease;
}

.sd-contact-info-item:hover .sd-contact-icon {
  transform: rotate(15deg) scale(1.1);
}

.sd-contact-text h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #333;
}

.sd-contact-text p {
  color: #666;
  font-size: 15px;
  line-height: 1.5;
}

/* Contact Form */
.sd-contact-form {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.sd-form-group {
  margin-bottom: 20px;
}

.sd-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.sd-form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.4s ease;
  background: #f9f9f9;
}

.sd-form-control:focus {
  border-color: #ac1c14;
  outline: none;
  box-shadow: 0 0 0 3px rgba(172, 28, 20, 0.2);
  background: white;
}

.sd-form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* Button */
.sd-btn {
  background: #ac1c14;
  color: #fff;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.sd-btn:hover {
  background: #8c1510;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .sd-contact-wrapper {
    flex-direction: column;
    gap: 40px;
  }
}

        
        /* Notification */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 15px 25px;
            background: #4bb543;
            color: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateX(150%);
            transition: transform 0.4s ease;
            z-index: 1000;
        }
        
        .notification.show {
            transform: translateX(0);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes sd-fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes sd-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes sd-fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes sd-rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }