:root {
    --primary-color: #520001;
    --secondary-color: #d76b26;
    --font-family: 'Fredoka', sans-serif;
}

body {
    font-family: "Fredoka", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
    padding: 0;
}

p{
	font-family: 'Onest';
}
.primary-color {
    color: var(--primary-color);
}

.primary-bg {
    background-color: var(--primary-color);
}

.secondary-bg {
    background-color: var(--secondary-color);
}

.secondary-color {
    color: var(--secondary-color);
}

.th-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border: none;
    text-align: center;
    background-color: var(--secondary-color);
    color: var(--white-color);
    font-size: 19px;
    line-height: 1;
    padding: 20px 30px;
    min-width: 120px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.6s linear;
    transition: all 0.6s linear;
    gap: 10px;
}

.th-btn:before,
.th-btn:after {
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    width: 0%;
    background-color: var(--secondary-bg);
    z-index: -1;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.th-btn:before {
    left: 0;
    border-radius: 0 10px 10px 0;
}

.th-btn.style2:after,
.th-btn.style2:before {
    background: var(--primary-color);
}

.th-btn.style2:after,
.th-btn.style2:before {
    background: var(--primary-color);
}

.th-btn:after {
    right: 0;
    border-radius: 10px 0 0 10px;
}

.th-btn:focus::before,
.th-btn:focus:after,
.th-btn:hover::before,
.th-btn:hover:after,
.th-btn:active::before,
.th-btn:active:after {
    width: 55%;
    border-radius: 0;
}
.heartbeat {
            animation: heartbeat 1.5s ease-in-out infinite;
        }
  @keyframes heartbeat {
            0% {
                transform: scale(1);
            }
            14% {
                transform: scale(1.15);
            }
            28% {
                transform: scale(1);
            }
            42% {
                transform: scale(1.15);
            }
            70% {
                transform: scale(1);
            }
        }
.shake {
    animation: shake 2s linear infinite;
}
@keyframes shake {
    0% {
        transform: rotate(0);
    }
    50% {
        transform: rotate(-10deg);
    }
    100% {
        transform: rotate(0);
    }
}
  
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 20px;
        }
        .swiper-pagination-bullet-active {
            background: #ff6b35;
        }
		.bg-mask {
    
    position: relative;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
	-webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}
.box-content.primary-bg {
    background: var(--primary-color);
}

.primary-bg.th-btn:before, .primary-bg.th-btn:after {
    background: var(--secondary-color);
}
 .feature-card {
            transition: transform 0.3s ease;
        }
        
        
        .bird-float {
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(-5deg); }
            50% { transform: translateY(-20px) rotate(-5deg); }
        }
        
        .circular-layout {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            min-height: 700px;
        }
        
        /* Position features in circular pattern */
        .feature-01 {
            position: absolute;
            bottom: 120px;
            left: 0;
        }
        
        .feature-02 {
            position: absolute;
            top: 180px;
            left: 0;
        }
        
        .feature-03 {
            position: absolute;
            top: 60px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .feature-04 {
            position: absolute;
            top: 180px;
            right: 0;
        }
        
        .feature-05 {
            position: absolute;
            bottom: 120px;
            right: 0;
        }
        
        .center-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
        }
        
        /* Curved dashed lines */
        .curve-line {
            position: absolute;
            stroke: #FF6B35;
            stroke-width: 2;
            stroke-dasharray: 10, 10;
            fill: none;
            opacity: 0.3;
        }
    
		  @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse-glow {
            0%, 100% {
                box-shadow: 0 4px 20px rgba(215, 107, 38, 0.4);
            }
            50% {
                box-shadow: 0 4px 30px rgba(215, 107, 38, 0.6);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .animate-fadeInLeft {
            animation: fadeInLeft 0.8s ease-out;
        }

        .animate-fadeInRight {
            animation: fadeInRight 0.8s ease-out;
        }

        .animate-slideInUp {
            animation: slideInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .animate-pulse-glow {
            animation: pulse-glow 2s ease-in-out infinite;
        }

        .animate-float {
            animation: float 3s ease-in-out infinite;
        }

        .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; }

        .glass-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
        }

        .gradient-text {
            background: linear-gradient(135deg, #ffffff 0%, #d76b26 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .point-item {
            position: relative;
            overflow: hidden;
        }

        .point-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(215, 107, 38, 0.15), transparent);
            transition: left 0.6s;
        }

        .point-item:hover::before {
            left: 100%;
        }

        .icon-bounce {
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .point-item:hover .icon-bounce {
            transform: scale(1.2) rotate(10deg);
        }
		 @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fadeInUp {
            animation: fadeInUp 0.8s ease-out;
        }

        .swiper {
            width: 100%;
            padding: 20px 0 60px 0;
        }

        .swiper-slide {
            height: auto;
        }

        .swiper-pagination-bullet {
            background: #d76b26;
            opacity: 0.4;
            width: 12px;
            height: 12px;
        }

        .swiper-pagination-bullet-active {
            opacity: 1;
            width: 32px;
            border-radius: 6px;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: #d76b26;
            background: rgba(255, 255, 255, 0.9);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px;
            font-weight: bold;
        }

        .review-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(215, 107, 38, 0.2);
        }

        .quote-icon {
            color: #d76b26;
            opacity: 0.2;
            font-size: 80px;
            position: absolute;
            top: -20px;
            left: 20px;
            font-family: Georgia, serif;
            line-height: 1;
        }
          @keyframes wipe {
      from { width: 0%; }
      to   { width: 100%; }
    }

    /* container holds two overlapping layers of the same text */
    .text-wipe {
      position: relative;
      display: inline-block;
      line-height: 1;
    }
    .text-wipe .fill {
      position: absolute;
      left: 0;
      top: 0;
      white-space: nowrap;
      overflow: hidden;
      width: 0;
      animation: wipe 2.5s forwards ease-out;
    }
    .loading {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease all 0.5s;
}
.loading.loaded {
    transform: scale(1, 0);
}
.paw-pattern {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }
        
        .paw {
            position: absolute;
            opacity: 0.4;
            fill: white;
        }
  .tab-btn {
    padding: 10px 18px;
    font-weight: 600;
    color: #6b7280;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
  }
  .tab-btn.active {
    color: #f97316;
    border-color: #f97316;
  }

  .tab-content {
    display: none;
  }
  .tab-content.active {
    display: block;
  }

  .input {
    width: 100%;
    padding: 16px;
    background: #f9fafb;
    border-radius: 16px;
    outline: none;
  }
  .input:focus {
    ring: 2px solid #f97316;
  }

  .submit-btn {
    background: #f97316;
    color: #fff;
    padding: 14px 40px;
    border-radius: 9999px;
    font-weight: 600;
  }
  .submit-btn:hover {
    background: #ea580c;
  }
  .job-table th,
    .job-table td {
      padding: 16px;
      border-bottom: 1px solid #e5e7eb;
    }

    /* Accordion animation */
    .job-desc-row {
      display: none;
    }

    .job-desc {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.4s ease, opacity 0.3s ease;
      padding: 0 16px;
    }

    .job-desc.active {
      max-height: 600px;
      opacity: 1;
      padding: 16px;
    }

    /* Arrow animation */
    .toggle-btn {
      transition: transform 0.3s ease;
      font-size: 18px;
    }

    .toggle-btn.active {
      transform: rotate(180deg);
    }

    /* Mobile Responsive */
        
        @media (max-width: 768px) {
            section {
    padding:50px 25px !important;
}
.swiper{
    padding-bottom: 0 !important;
}
.swiper-button-next, .swiper-button-prev {
    color: #fff;
    background: transparent;
    width: 25px;
    height: 25px;
}
            .hero {
    background: #f6e0d3;
    padding: 30px 20px;
    padding-bottom: 0 !important;
}
.th-btn {
    padding: 20px 30px;
    min-width: auto;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}
            .circular-layout {
                position: relative;
                min-height: auto;
            }
            
            .feature-01, .feature-02, .feature-03, .feature-04, .feature-05 {
                position: relative;
                left: auto !important;
                right: auto !important;
                top: auto !important;
                bottom: auto !important;
                transform: none !important;
                margin-bottom: 1.5rem;
            }
            
            .center-button {
                position: relative;
                transform: none;
                margin: 2rem auto;
            }
        }
    @media (max-width: 768px) {
      .job-table thead {
        display: none;
      }

      .job-table,
      .job-table tbody,
      .job-table tr,
      .job-table td {
        display: block;
        width: 100%;
      }

      .job-table tr {
        margin-bottom: 12px;
        border-bottom: 2px solid #f3f4f6;
      }

      .job-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px;
      }

      .job-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #6b7280;
      }

      .job-desc-row td {
        padding: 0;
      }
    }