/* Custom styles for HRLinko Landing Page */

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* Loading animation */
.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #1A73E8;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth transitions */
.transition-all {
    transition: all 0.3s ease;
}

/* Fallback styles */
.fallback-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Image fallback styles */
.image-fallback {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

.image-fallback::before {
    content: "📊";
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

/* Custom 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);
    }
}

/* Apply animations to elements */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

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

/* Custom gradient backgrounds */
.hero-gradient {
    background: linear-gradient(135deg, #1A73E8 0%, #4285F4 50%, #5F9DFF 100%);
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Custom button styles */
.btn-primary {
    background: linear-gradient(135deg, #FF6D00 0%, #FF8A00 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E55A00 0%, #E57200 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 109, 0, 0.3);
}

.btn-secondary {
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Custom pricing card styles */
.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid #1A73E8;
    position: relative;
}

/* Custom testimonial styles */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Custom FAQ styles */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Custom navigation styles */
.header-navigation .h-16{
    height: 5rem;
}
.header-navigation .text-primary{
    color: rgb(26 115 232 / var(--tw-text-opacity, 1)) !important;
}
.header-navigation .bg-primary{
  background-color: rgb(26 115 232 / var(--tw-bg-opacity, 1)) !important;
}
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1A73E8;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Custom hero image styles */

.HR_hero-content .hero-main-title{
    font-size: 2.75rem;
    line-height: 1.2;
}
.HR_hero-content .hero-subtitle{
    font-size:16px;
    line-height: 1.6;
}
.HR_hero-content .HR_hero-btn{
    font-size: 1rem;
    text-align: center;
    border-radius: 0.5rem;
    padding: 0.89rem 1.5rem;
    color: rgb(255 255 255);
    background-color: rgb(255 109 0);
    line-height: 1.2;
    transition: all 0.3s ease;
}
.hero-image {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05) rotate(1deg);
}

/* Custom stats counter styles */
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1A73E8 0%, #4285F4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom form styles */
.form-input {
    transition: all 0.3s ease;
    border: 2px solid #E5E7EB;
}

.form-input:focus {
    border-color: #1A73E8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

/* Custom loading animation */
.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #1A73E8;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1A73E8;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1557B0;
}

/* Responsive typography */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Custom focus styles for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid #1A73E8;
    outline-offset: 2px;
}

/* Custom selection styles */
::selection {
    background: #1A73E8;
    color: white;
}

/* Custom print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* Custom dark mode support (if needed) */
@media (prefers-color-scheme: dark) {
    /* Dark mode styles can be added here */
}

/* Custom high contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #000;
    }
    
    .feature-card {
        border: 1px solid #000;
    }
}

/* Custom reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
} 
.pricing-section .gap-8,
.feature-section .gap-8,
.service-section .gap-8{
    gap: 2rem !important;
}
.HR_bg-primary{
    background-color: #1a73e8 !important;
}
.pricing-section .bg-primary{
    background-color: #1a73e8 !important;
}
.pricing-section .border-primary{
   border-color: rgb(26 115 232 / var(--tw-border-opacity, 1)) !important;
}
.header-navigation .HR_header-menu .HR_link{
    font-size: 16px;
}

.navbar-brand img{
    max-width: 150px;
    height: auto;
}
.HR_future-item a.more-btn {
    color: #1a73e8;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5rem;
    gap: 0.625rem;
    align-items: center;
    width: fit-content;
    height: fit-content;
    display: flex;
    position: relative;
}
.HR_future-item a.more-btn::before {
    content: '';
    position: absolute;
    display: block;
    width: 0%;
    height: 100%;
    transform-origin: right;
    border-bottom: 1px solid;
    border-color: #1a73e8;
    transition: all 300ms cubic-bezier(0, 0, 0.2, 1);
}
.HR_future-item a.more-btn:hover::before {
    width: 100%;
    transform-origin: left;
    border-bottom-width: 1px;
    border-color: #1a73e8;
    transition: all 300ms cubic-bezier(0, 0, 0.2, 1);
    transform: translate(0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
}
.HR_footer-section ul li a i{
    color: #1a73e8;
}
.HR_footer-section ul li a div p{
    font-size: 14px;
    line-height: 1.6;
}
.HR_footer-copyright .HR_copyright-text{
  font-size: 1rem;
  line-height: 1.75rem;
}
.HR_footer-copyright .HR_copyright-text a{
  color: #1a73e8;
}
@media (min-width: 768px) {
    .md-mt-0 {
        margin-top: 0px !important;
    }
}

/*Service Css*/

.HR_service-item .HR_service-icon{
  width: 3.5rem;
  height: 3rem;
  padding: 8px;
}
.HR_service-item .HR_service-icon img{
    width: 40px;
    height: 40px;
}
/*About css*/

.HR_theme-content .HR_title {
    color: #1a73e8;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.HR_theme-content .HR_sub-title {
    color: rgb(14 25 30 / 1);
    line-height: 45px;
    font-weight: 900;
    margin-top: 18px;
    font-size: 1.875rem;
}
.HR_theme-content p.HR_dec-text {
    color: rgb(91 91 91 / 1);
    font-size: 1.125rem;
    line-height: 1.75rem;
    max-width: 545px;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}
.HR_theme-content ul.HR_about-list {
    color: rgb(14 25 30 / 1);
    line-height: 30px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0;
}
.HR_theme-content ul.HR_about-list li {
    height: fit-content;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.HR_theme-content ul.HR_about-list li i {
    color: #FC0012;
    font-size: 16px;
}
.HR_about-left img{
    text-align: center;
    margin: auto;
}
@media (min-width: 640px) {
    .HR_theme-content .HR_sub-title {
        font-size: 40px;
    }
}

/*Work Section*/

.HR_work-item .HR_work-icon{
    width: 5rem;
    height: 5rem;
}
.HR_work-item .HR_work-icon .text-primary{
  color: rgb(26 115 232) !important;
  font-size: 2rem;
}
.HR_work-item .HR_work-icon img{
    width: 48px;
    height: 48px;
}
.HR_work-item  .HR_work-title {
    color: rgb(14 25 30 / 1);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 2rem;
    margin-bottom: 1.25rem;
}
@media (min-width: 1024px) {
    .work-section .HR_work-item:nth-child(even) {
        margin-top: 4.25rem;
    }
}

/*FAQ Section*/

.faq-section .faq-toggle span{
    font-size: 20px;
    color: #333333;
}
.faq-content {
    transition: max-height 0.5s ease;
}

/*contact section start*/

.Hr_page-btn{
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 125px;
  border: 2px solid #1a73e8;
  background-color: transparent;
  font-size: 16px;
  font-weight: 700;
  line-height: 15px;
  width: 100%;
  color: #fff;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  margin: auto;
  text-transform: capitalize;
  padding: 18px 38px;
}
.Hr_page-btn::after {
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  height: 100%;
  width: 100%;
  background-color: #1a73e8;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  content: '';
  transition-duration: 300ms;
}
.Hr_page-btn::before {
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  height: 100%;
  width: 100%;
  background-color: rgb(115 103 240 / 0.5);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  content: '';
  transition-delay: 200ms;
  transition-duration: 300ms;
}
.Hr_page-btn i{
  font-size: 20px;
}
.Hr_page-btn span{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.Hr_page-btn:hover {
  color: #000;
}
.Hr_page-btn:hover::before {
    content: '';
    top: -100%;
}
.Hr_page-btn:hover::after {
    content: '';
    top: -100%;
}
.Hr_contact-section .hr_contact-box{
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0px 0px 60px 0px #0000000D;
  border-radius: 20px;
  padding: 40px;
}
.Hr_contact-section .theme-content{
  text-align: center;
  margin-bottom: 60px;
}
.Hr_contact-section .theme-content p.dec-text {
 max-width: 100%; 
}
.Hr_contact-section .contact-img {
  background-color: #dbe9ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Hr_contact-section  .contact-form{
  padding: 10px 10px;
}
.Hr_contact-section .contact-form .form-control{
  border-width: 2px;
  padding: 18px 16px;
  border-radius: 20px;
  font-size: 18px;
}
.Hr_contact-section .contact-form .form-control::placeholder{
  font-size: 18px;
  line-height: 0;
}
.Hr_contact-section .contact-form .form-control[type=text],
.Hr_contact-section .contact-form .form-control[type=email],
.Hr_contact-section .contact-form .form-control[type=password]{
  font-size: 18px;
  line-height: 0;
}

.Hr_contact-section .contact-form .page-btn{
  padding: 18px 16px;
  width: 100%;
}
.Hr_contact-section .form-control:focus {
    color: var(--bs-heading-color);
    background-color: rgba(0, 0, 0, 0);
    border-color: #1a73e8;
    outline: 0;
    box-shadow: 0 .125rem .375rem 0 rgb(205 227 254);
}

.login-demo .logo-img img{
    max-width: 200px;
    height: auto;
    margin: auto;
}
.login-demo .text-primary{
    color: #1066dc !important;
}
/* contact section end */


/*testimonial*/
.auother-content .w-20{
    width: 5rem !important;
}



.view-all-btn-box{
    text-align: center;
    padding: 25px 0 0 0;
}
.view-all-btn-box .view-all-btn{
 display: inline-block;
 width: fit-content;
 font-weight: 500;
 outline: none;
 color: #fff;
 text-align: center;
 font-size: 16px;
 padding: 15px 20px;
 border-radius: 0.75rem;
 background-color: rgb(27 113 232);
 transition: all 300ms;
}
.view-all-btn-box .view-all-btn i{
    font-size: 18px;
    margin-left: 6px;
}
.view-all-btn-box .view-all-btn:hover{
    background-color: rgb(255 109 0);
    color: #fff;
}

/*Responsive CSS*/


@media (max-width: 992px) {
    .header-navigation .HR_header-menu{
        margin-left: 1.5rem !important;
    } 
    .header-navigation .HR_header-menu .HR_link{
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }
    .HR_hero-content .hero-main-title{
        font-size: 1.95rem;
        line-height: 1.4;
    }
}

@media (max-width: 525px) {
  .HR_hero-content .hero-main-title{
        font-size: 1.5rem;
        line-height: 1.2;
    }
}