@import "tailwindcss";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');




@theme {
  --color-primary: #0F2121;
  /* --color-primary-dark: #5932ee; */
  --color-secondary: #1a1239;
  --color-default: #FAE18F;
  --color-pera: #3E4737;
  /* --color-third: #c9c3e0; */
  --color-background-light: #f9f9f9;
  --color-background: #FFF9EA;

  /* --font-plus-jakarta: "Plus Jakarta Sans", sans-serif; */

  --text-base: 1rem;
  --text-4xl: 2.25rem;

  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1536px;
}












/* 🌟 Improved Text Selection Styling (Soft Neon Effect) */
::selection {
  background: rgba(137, 95, 252, 0.8);
  color: #ffffff;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* 🎨 Custom Scrollbar (Glassmorphism & Gradient Effect) */
::-webkit-scrollbar {
  width: 8px; /* Slightly wider for better usability */
  background: #111; /* Keeps it modern */
}

/* Scrollbar Track (Glass Effect) */
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1); /* Transparent look */
  border-radius: 10px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Scrollbar Thumb (Gradient & Smooth Look) */
::-webkit-scrollbar-thumb {
  background: #111;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
html {
    scroll-behavior: smooth;
}

body{
  background-color: #FCFFF5;
  font-family: var(--roboto-condensed);
 overflow-x: hidden;
}


.default-header-text {
  @apply font-semibold text-3xl lg:text-4xl xl:text-7xl 2xl:text-8xl 2xl:leading-24 xl:leading-20 lg:leading-10 sm:leading-tight uppercase;
}

.default-scnd-header-text {
  @apply font-bold text-3xl lg:text-4xl xl:text-6xl 2xl:text-7xl 2xl:leading-17 xl:leading-14 uppercase lg:leading-4 sm:leading-tight mb-0 xl:mb-4 lg:mb-7;
}

.default-sub-header-text {
  @apply font-bold text-2xl lg:text-2xl xl:text-2xl 2xl:text-2xl leading-tight;
}

.default-secondary-text {
  @apply text-base xl:text-xl lg:text-lg leading-normal 2xl:leading-8;
}



.btn-a {
  border-radius: 80px;
   background: var(--Light-lime, #FAE18F);
  border: 1px solid #FAE18F;
  color: #0F2121;
   padding: 12px 36px;
  font-weight: 00;
  font-size: 18px;
  transition: 0.3s;
}
.btn-a:hover{
background-color:transparent;
color: #FAE18F;
border: 1px solid #FAE18F;
}

.btn-a-1 {
  border-radius: 80px;
  padding: 12px 36px;
  font-weight: 500;
  font-size: 18px;
  transition: 0.3s;
  background-color:transparent;
  color: #FAE18F;
 border: 1px solid #FAE18F;
}
.btn-a-1:hover{
  background: var(--Light-lime, #FAE18F);
  /* border: 1px solid #FAE18F; */
  color: #0F2121;
}

.btn-a-2 {
  border-radius: 80px;
  padding: 11px 36px;
  font-weight: 400;
  font-size: 18px;
  transition: 0.3s;
  background:#0F2121;
  color: #FAE18F;
 border: 1px solid #0F2121;
}
.btn-a-2:hover{
  background:  #FAE18F;
  border: 1px solid #FAE18F;
  color: #0F2121;
}


.btn-a-3 {
  border-radius: 80px;
  padding: 11px 36px;
  font-weight: 400;
  font-size: 18px;
  transition: 0.3s;
  background:#FAE18F;
  color: #0F2121;
 border: 1px solid #FAE18F;
}
.btn-a-3:hover{
  background:  #0F2121;
  border: 1px solid #0F2121;
  color: #FAE18F;
}


.lsitdiv {
  max-height: 325px;
  overflow-y: auto !important; /* Force scroll */
  overflow-x: hidden;
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #ccc transparent; /* Custom scrollbar */
}


.lsitdiv::-webkit-scrollbar {
  width: 8px; /* Slightly wider for better usability */
  background: #FCFFF5; /* Keeps it modern */
}

 

/* Scrollbar Thumb (Gradient & Smooth Look) */
.lsitdiv::-webkit-scrollbar-thumb {
  background: #05C7AA;
  border-radius: 0px;
  transition: all 0.3s ease-in-out;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
ul.plan-list {display: block;padding-right: 25px;}

ul.plan-list>li {
    display: flex;
    gap: 20px;
    margin-bottom: 14px;
}
 

ul.plan-list>li>p {
    color: #232121;
    font-size: 17px;
    font-weight: 500;
}
ul.plan-list.pwhite>li>p{
  color: #fff;
}
ul.plan-list.pwhite>li>span {
    color: #FB0;
}
.ft-link p{
  color: #303030;
  line-height: 25px;
  font-size: 17px;
}
ul.ft-lin>li{
  margin-bottom: 10px;
}
ul.ft-lin>li>p{
  color: #303030;
  font-size: 17px;
   
}
ul.ft-lin>li>a{
  color: #303030;
  text-transform: capitalize;
  font-size: 17px;
  transition: 0.3s;
}
ul.ft-lin>li>a:hover{
  color: #FAE18F;
  padding-left: 5px;
}
/* form */
.conf input, .conf textarea {
  border-bottom: 1px solid #4B4B4B;
  width: 100%;
  background-color: transparent;
  color: #030233;
  padding: 10px 12px;
  transition: 0.3s;
  font-size: 17px;
  letter-spacing: 1px;
}
.conf textarea
{
  resize: none;
  height: 150px;
}
.conf input:focus, .conf textarea:focus {
  border-bottom: 1px solid #B1FF01;
}

.conf button {
  color: #000;
  background-color: #b6d800;
  font-weight: 500;
  padding: 15px 50px;
  text-transform: capitalize;
  border-radius: 10px;
}

.packwh{
  width: 460px;
  height: 838px;
}
.ltri {
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  width: 60px;
  height: 60px;
  background: #FCFFF5;
  position: absolute;
  left: 0;
  top: 0;
}
.rtri.rtbcolor{
  background: #030728;
}
.rtri.rtwcolor{
  background: #FCFFF5;
}
.rtri 
{
  clip-path: polygon(100% 100%, 0% 100%, 100% 0);
  width: 60px;
  height: 60px;
  
  position: absolute;
  right: 0;
  bottom: -1px;
}
 
button{
  cursor: pointer;
}


.work-w {
  width: 350px;
  height: 280px;
}


/* ========media========= */

@media (max-width: 1440px) {
  .work-w {
    width: 300px;
    height: 260px;
  }
  .packwh{
    width: 418px;
     
  }
  ul.plan-list>li {
  
    margin-bottom: 17px;
}
}
@media (max-width: 1400px) {
  .packwh{
    width: 397px;
   
  }
  .work-w {
    width: 280px;
    height: 260px;
  }
}
@media (max-width: 1300px) 
{
  .packwh{
    width: 378px;
    
  }
  .work-w {
    width: 260px;
    height: 260px;
  }
}
@media (max-width: 1399px) {

  br{
    display: none;
  }
  .btn-a {
           padding: 8px 26px;
        font-size: 16px;
}
  .btn-a-1 {
          padding: 8px 26px;
        font-size: 16px;
}
  .btn-a-2 {
        padding: 10px 35px;
        font-size: 16px;
}
.btn-a-3 {
        padding: 10px 35px;
        font-size: 16px;
}
ul.plan-list>li {
  margin-bottom: 15px;
}
}


/* button button css */



@media (max-width: 768px){
  .btn-a{
    padding: 8px 12px;
    width: 100%;
    height: 100%;
    font-size: 14px;
    max-width: 140px;
  }
  .btn-a-1{
    padding: 8px 12px;
    width: 100%;
    height: 100%;
    max-width: 150px;
    font-size: 14px;
  }
  .btn-a-2{
    padding: 8px 13px;
    width: 100%;
    height: 100%;
    max-width: 150px;
    font-size: 14px;
  }
  .btn-a-3{
    padding: 8px 13px;
    width: 100%;
    height: 100%;
    max-width: 150px;
    font-size: 14px;
  }
}



 .price {
      width: 140px;
    height: 140px;
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #030728;
    border-radius: 100%;
    border: 10px solid #fff;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 900;
    text-align: center;
    padding: 35px 10px;
    line-height: 18px;
    position: absolute;
    top: -46px;
    left: -39px;
    color: #fff;
}

/* Custom Swiper Styles for Why Different Section */
.why-different-swiper {
  padding-bottom: 50px !important;
}

.why-different-swiper .swiper-pagination {
  bottom: 10px !important;
}

.why-different-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(15, 33, 33, 0.3);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.why-different-swiper .swiper-pagination-bullet-active {
  background: #0F2121;
  transform: scale(1.2);
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
  .why-different-swiper .swiper-slide {
    height: auto;
  }
  
  .why-different-swiper .feature-card {
    min-height: 280px;
  }
}
/* Testimonials Hover Effects */
.testimonial-card {
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(250, 225, 143, 0.1), transparent);
  transition: left 0.6s ease-in-out;
  z-index: 1;
}

.testimonial-card:hover::before {
  left: 100%;
}

.testimonial-card > * {
  position: relative;
  z-index: 2;
}

/* Enhanced star hover effect */
.testimonial-card:hover svg[fill="#f4d89f"] {
  fill: #FAE18F;
  filter: drop-shadow(0 0 4px rgba(250, 225, 143, 0.4));
}

/* Smooth border glow on hover */
.testimonial-card:hover {
  border-color: rgba(250, 225, 143, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(250, 225, 143, 0.2);
}
/* Header Navigation Active States */
.nav-link {
  position: relative;
}

.nav-link.active-nav::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FAE18F;
  border-radius: 2px;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    width: 0;
    left: 50%;
  }
  to {
    width: 100%;
    left: 0;
  }
}

/* Mobile Menu Smooth Animation */
.mobile-menu-enter {
  opacity: 0;
  transform: translateY(-10px);
}

.mobile-menu-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 300ms ease-in-out, transform 300ms ease-in-out;
}

.mobile-menu-exit {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-exit-active {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 300ms ease-in-out, transform 300ms ease-in-out;
}
/* Footer Link Animations */
.footer-link {
  position: relative;
  padding: 8px 12px;
  margin: -8px -12px;
  border-radius: 8px;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FAE18F, #f4d89f);
  transition: width 0.3s ease-out;
}

.footer-link:hover::before {
  width: 100%;
}

.footer-link:hover {
  transform: translateX(8px);
}

/* Enhanced button hover effects */
.footer-cta-button {
  position: relative;
  overflow: hidden;
}

.footer-cta-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  transition: all 0.4s ease-out;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.footer-cta-button:hover::after {
  width: 300px;
  height: 300px;
}

/* Social icon pulse effect */
@keyframes socialPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(15, 33, 33, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(15, 33, 33, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(15, 33, 33, 0);
  }
}

.footer-social-icon:hover {
  animation: socialPulse 1.5s infinite;
}

/* date picker */

.react-datepicker-wrapper{
  width: 100%;
}
