
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
color: #f8fafc;
line-height: 1.6;
overflow-x: hidden;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

/* Animated Background */
.bg-animation {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
overflow: hidden;
}

.floating-shape {
position: absolute;
opacity: 0.1;
animation: float 20s infinite ease-in-out;
}

.floating-shape:nth-child(1) {
width: 200px;
height: 200px;
background: linear-gradient(45deg, #10b981, #059669);
border-radius: 50%;
top: 20%;
left: 10%;
animation-delay: 0s;
}

.floating-shape:nth-child(2) {
width: 150px;
height: 150px;
background: linear-gradient(45deg, #f59e0b, #d97706);
border-radius: 30%;
top: 60%;
right: 15%;
animation-delay: 5s;
}

.floating-shape:nth-child(3) {
width: 100px;
height: 100px;
background: linear-gradient(45deg, #8b5cf6, #7c3aed);
border-radius: 20%;
bottom: 30%;
left: 20%;
animation-delay: 10s;
}

@keyframes float {
0%, 100% { transform: translateY(0px) rotate(0deg); }
25% { transform: translateY(-20px) rotate(5deg); }
50% { transform: translateY(-40px) rotate(10deg); }
75% { transform: translateY(-20px) rotate(5deg); }
}

/* Header */
header {
background: rgba(15, 23, 42, 0.9);
backdrop-filter: blur(20px);
padding: 20px 0;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
display: flex;
justify-content: space-between;
align-items: center;
}



.logo {
font-size: 2rem;
font-weight: 800;   
background: linear-gradient(45deg, #10b981, #059669);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.nav-links {
display: flex;
list-style: none;
gap: 2rem;
align-items: center;
}

.nav-links a {
text-decoration: none;
color: #cbd5e1;
font-weight: 500;
transition: all 0.3s ease;
position: relative;
}

.nav-links a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(45deg, #10b981, #059669);
transition: width 0.3s ease;
}

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

.nav-links a:hover {
color: #10b981;
}

.cta-btn {
background: linear-gradient(45deg, #10b981, #059669);
padding: 12px 24px;
border-radius: 50px;
text-decoration: none;
color: white;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.cta-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 30px rgba(16, 185, 129, 0.4);
}

/* Hero Section */
.hero {
padding: 140px 0 80px;
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
}

.hero-content {
display: flex;
align-items: center;
gap: 80px;
}

.hero-text {
flex: 1;
z-index: 2;
}

.hero h1 {
font-size: 4rem;
font-weight: 900;
margin-bottom: 30px;
background: linear-gradient(45deg, #f8fafc, #cbd5e1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1.1;
}

.hero .highlight {
background: linear-gradient(45deg, #10b981, #059669);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero p {
font-size: 1.3rem;
color: #94a3b8;
margin-bottom: 40px;
max-width: 600px;
line-height: 1.8;
}

.hero-buttons {
text-align: center;
display: flex;
gap: 20px;
margin-bottom: 60px;
}

.primary-btn {
margin: center;
background: linear-gradient(45deg, #10b981, #059669);
color: white;
padding: 18px 36px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;

}

.primary-btn:hover {
transform: translateY(-3px);
box-shadow: 0 8px 40px rgba(16, 185, 129, 0.4);
}

.secondary-btn {
background: rgba(255, 255, 255, 0.1);
color: #f8fafc;
padding: 18px 36px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-btn:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-3px);
}

.stats {
display: flex;
gap: 40px;
}

.stat {
text-align: center;
}

.stat-number {
font-size: 2.5rem;
font-weight: 900;
color: #10b981;
display: block;
}

.stat-label {         
color: #94a3b8;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 1px;
}

.hero-visual {
flex: 1;
position: relative;
display: flex;
justify-content: center;
align-items: center;
}

.pet-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(20px);
border-radius: 30px;
padding: 40px;
border: 1px solid rgba(255, 255, 255, 0.2);
position: relative;
animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
0%, 100% { transform: translateY(0px) rotate(0deg); }
50% { transform: translateY(-20px) rotate(2deg); }
}

.pet-icon {
width: 120px;
height: 120px;
background: linear-gradient(45deg, #f59e0b, #d97706);
border-radius: 50%;
margin: 0 auto 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.floating-elements {
position: absolute;
width: 100%;
height: 100%;
}

.floating-element {
position: absolute;
background: rgba(255, 255, 255, 0.1);
border-radius: 15px;
padding: 15px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
animation: elementFloat 8s ease-in-out infinite;
}

.floating-element:nth-child(1) {
top: -20px;
left: -30px;
animation-delay: 0s;
}

.floating-element:nth-child(2) {
top: -10px;
right: -40px;
animation-delay: 2s;
}

.floating-element:nth-child(3) {
bottom: 90px;
left: 20px;
animation-delay: 4s;
}
@media (max-width: 768px) {
  floating-element:nth-child(3)  {
    bottom: 100px;
  }
}



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

/* Process Section */
.process {
padding: 100px 0;
background: rgba(255, 255, 255, 0.02);
backdrop-filter: blur(20px);
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process h2 {
text-align: center;
font-size: 3rem;
font-weight: 800;
margin-bottom: 20px;
background: linear-gradient(45deg, #f8fafc, #cbd5e1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.process-subtitle {
text-align: center;
font-size: 1.2rem;
color: #94a3b8;
margin-bottom: 80px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.process-steps {
display: flex;
justify-content: space-between;
gap: 40px;
position: relative;
}

.process-steps::before {
content: '';
position: absolute;
top: 60px;
left: 60px;
right: 60px;
height: 2px;
background: linear-gradient(90deg, #10b981, #059669);
z-index: 1;
}

.process-step {
flex: 1;
text-align: center;
position: relative;
z-index: 2;
}

.step-icon {
width: 120px;
height: 120px;
border-radius: 50%;
margin: 0 auto 30px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2.5rem;
position: relative;
background: linear-gradient(45deg, #10b981, #059669);
box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
transition: all 0.3s ease;
}

.step-icon:hover {
transform: scale(1.1);
box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.process-step h3 {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 15px;
color: #f8fafc;
}

.process-step p {
color: #94a3b8;
line-height: 1.6;
}

/* Features Section */
.features {
padding: 100px 0;
}

.features h2 {
text-align: center;
font-size: 3rem;
font-weight: 800;
margin-bottom: 80px;
background: linear-gradient(45deg, #f8fafc, #cbd5e1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 40px;
}

.feature-card {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(20px);
border-radius: 25px;
padding: 40px;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, #10b981, #059669);
transform: translateX(-100%);
transition: transform 0.3s ease;
}

.feature-card:hover::before {
transform: translateX(0);
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-icon {
width: 80px;
height: 80px;
background: linear-gradient(45deg, #10b981, #059669);
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
margin-bottom: 25px;
box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.feature-card h3 {
font-size: 1.4rem;
font-weight: 700;
margin-bottom: 15px;
color: #f8fafc;
}

.feature-card p {
color: #94a3b8;
line-height: 1.6;
}


/* Contact us Section*/
.contact-con {
padding: 235px 0;
text-align: center;
background: linear-gradient(45deg, rgba(255, 255, 255, 0.05));
border-radius: 50px;
margin: 50px 20px;
}

.contact-con h2 {
font-size: 3rem;
font-weight: 800;
margin-bottom: 20px;
background: linear-gradient(45deg, #f8fafc, #cbd5e1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.contact-con p {
font-size: 1.2rem;
color: #94a3b8;
margin-bottom: 40px;
max-width: 10000px;
}

.social-icons a {
text-shadow: 0 5px 20px rgba(16, 185, 129, 0.486);
display: inline-block;
margin: 0 12px;
text-decoration: none;
color: #10b981;
font-weight: bold;
transition: color 0.3s ease;
font-size: 1.5rem;
}

.social-icons a:hover {
color: #0caf78;
transform: scale(1.1);
}

.number-contact p {
    text-shadow: 0 5px 20px rgba(16, 185, 129, 0.486);
display: inline-block;
margin: 0 12px;
text-decoration: none;
color: #10b981;
font-weight: bold;
transition: color 0.3s ease;
font-size: 1.5rem;
}
.number-contact a {
color: #10b981;
text-decoration: none;
}
.number-contact a:hover {
color: #0caf78;
text-decoration: underline;
}







/* CTA Section */
.final-cta {
padding: 100px 0;
text-align: center;
background: linear-gradient(45deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
border-radius: 50px;
margin: 50px 20px;
border: 1px solid rgba(16, 185, 129, 0.2);
}

.final-cta h2 {
font-size: 3rem;
font-weight: 800;
margin-bottom: 20px;
background: linear-gradient(45deg, #f8fafc, #cbd5e1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.final-cta p {
font-size: 1.2rem;
color: #94a3b8;
margin-bottom: 40px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

/* Footer */
footer {
background: rgba(15, 23, 42, 0.9);
padding: 60px 0 30px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}

.footer-section h3 {

color: #10b981;
margin-bottom: 20px;
font-weight: 700;
}

.footer-section p,
.footer-section a {
color: #94a3b8;
text-decoration: none;
line-height: 1.8;
}

.footer-section a:hover {
color: #10b981;
}

@media (max-width: 768px) {
  .footer-section h3,
  .footer-section p,
  .footer-section a {
    text-align: center;
  }
}

.footer-section-company h3 {
color: #10b981;
text-align: right;
margin-bottom: 20px;
font-weight: 700;
}

.footer-section-company p,
.footer-section-company a {
color: #94a3b8;
text-align: right;
text-decoration: none;
line-height: 1.8;
}

.footer-section-company a:hover {
color: #10b981;
}

@media (max-width: 768px) {
  .footer-section-company h3,
  .footer-section-company p,
  .footer-section-company a {
    text-align: center;
  }
}

.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: #64748b;
}


/* Modal Styles */
.modal {
display: none;
position: fixed;
z-index: 2000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(10px);
animation: fadeIn 0.3s ease;
overflow: hidden;
}

.modal.active {
display: flex;
justify-content: center;
align-items: center;
overflow-y: auto;   
}



.modal-content::-webkit-scrollbar {
  width: 0;
  height: 0;
}




.modal-content {
background: rgba(30, 41, 59, 0.95);
backdrop-filter: blur(30px);
border: 1px solid rgba(255, 255, 255, 0.1);
padding: 40px;
border-radius: 25px;
width: 90%;
max-width: 450px;
position: relative;
animation: slideIn 0.3s ease;
overflow-y: auto; 
max-height: 90vh;        /* ⇠ 80 % of the viewport */
overflow-y: auto;        /* internal scroll */
scrollbar-width: none;
-ms-overflow-style: none;
}

.modal-header {
text-align: center;
margin-bottom: 30px;

}

.modal-header h2 {
font-size: 2rem;
font-weight: 700;
color: #f8fafc;
margin-bottom: 10px;
}

.modal-header p {
color: #94a3b8;
}

.close-btn {
position: absolute;
top: 20px;
right: 25px;
font-size: 30px;
font-weight: bold;
color: #94a3b8;
cursor: pointer;
transition: color 0.3s ease;
}

.close-btn:hover {
color: #f8fafc;
}

.form-group {
position: relative;
margin-bottom: 20px;
}

.form-group label {
display: block;
margin-bottom: 8px;
color: #f8fafc;
font-weight: 500;
}

.form-group input {
width: 100%;
padding: 15px;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 12px;
background: rgba(255, 255, 255, 0.05);
color: #f8fafc;
font-size: 16px;
transition: all 0.3s ease;
}

.form-group input:focus {
outline: none;
border-color: #10b981;
box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group input::placeholder {
color: #64748b;
}

.form-group .show-password {
    position: absolute;
    right: 15px;
    bottom: 14px; /* Position from bottom of the form-group */
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0.6;
    object-fit: contain; 
    transition: opacity 0.2s ease;
    z-index: 1;
}

.form-group .show-password:hover {
  opacity: 1;
}

/* .form-group .show-password-signup{
    position: absolute;
    right: 50px;
    top: 447px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0.6;
    object-fit: contain; 
    transition: opacity 0.2s ease;
}
.form-group .show-password-signup:hover {
  opacity: 1;
}
 */





.form-btn {
width: 100%;
background: linear-gradient(45deg, #10b981, #059669);
color: white;
padding: 15px;
border: none;
border-radius: 12px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
margin-bottom: 20px;
}

.form-btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.form-btn:active {
transform: translateY(0);
}

.form-divider {
text-align: center;
margin: 20px 0;
color: #64748b;
position: relative;
}

.form-divider::before {
content: '';
position: absolute;
top: 50%;
left: 0;
right: 0;
height: 1px;
background: rgba(255, 255, 255, 0.1);
z-index: 1;
}

.form-divider span {
background: rgba(30, 41, 59, 0.95);
padding: 0 20px;
position: relative;
z-index: 2;
}

.social-btn {
width: 100%;
padding: 12px;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 12px;
background: rgba(255, 255, 255, 0.05);
color: #f8fafc;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
margin-bottom: 10px;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}

.social-btn:hover {
background: rgba(255, 255, 255, 0.1);
transform: translateY(-1px);
}

.switch-form {
text-align: center;
margin-top: 20px;
color: #94a3b8;
}

.switch-form a {
color: #10b981;
text-decoration: none;
font-weight: 600;
}

.switch-form a:hover {
text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

@keyframes slideIn {
from { 
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
}
to { 
    opacity: 1;
    transform: translateY(0) scale(1);
}
}









/* Button Loading State */
.btn-loading {
position: relative;
color: transparent !important;
}

.btn-loading::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 20px;
height: 20px;
border: 2px solid transparent;
border-top: 2px solid #fff;
border-radius: 50%;
animation: spin 1s linear infinite;
}

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

/* Mobile Menu */
.mobile-menu-btn {
display: none;
background: none;
border: none;
color: #f8fafc;
font-size: 1.5rem;
cursor: pointer;
padding: 10px;
}

.mobile-menu {
display: none;
position: fixed;
top: 80px;
left: 0;
right: 0;
background: rgba(15, 23, 42, 0.95);
backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
z-index: 999;
animation: slideDown 0.3s ease;
}

.mobile-menu.active {
display: block;
}

.mobile-menu ul {
list-style: none;
padding: 20px;
}

.mobile-menu li {
margin-bottom: 15px;
}

.mobile-menu a {
color: #cbd5e1;
text-decoration: none;
font-weight: 500;
display: block;
padding: 10px;
border-radius: 8px;
transition: all 0.3s ease;
}

.mobile-menu a:hover {
background: rgba(16, 185, 129, 0.1);
color: #10b981;
}

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

/* Success Message */
.success-message {
background: rgba(16, 185, 129, 0.1);
border: 1px solid rgba(16, 185, 129, 0.3);
color: #10b981;
padding: 15px;
border-radius: 12px;
margin-bottom: 20px;
text-align: center;
display: none;
}

.success-message.show {
display: block;
animation: fadeIn 0.3s ease;
}


/* Seccess message for pass reset */
.success-message-password {
display: none;
color: #858e8b;
text-shadow: 0 5px 20px rgba(104, 110, 108, 0.486);
text-align: center;
font-size: 1.2rem;
} 

.success-message-password.show {
display: block;
animation: fadeIn 0.3s ease;
}


/* Responsive Design */
@media (max-width: 768px) {
.hero h1 {
    font-size: 2.5rem;
}

.hero-content {
    flex-direction: column;
    gap: 40px;
}

.hero-buttons {
    flex-direction: column;
    align-items: center;
}

.stats {
    justify-content: center;
}

.process-steps {
    flex-direction: column;
    align-items: center;
}

.process-steps::before {
    display: none;
}

.nav-links {
    display: none;
}

.mobile-menu-btn {
    display: block;
}

.features-grid {
    grid-template-columns: 1fr;
}

.modal-content {
    margin: 20px;
    padding: 30px;
}
}


.resetPass {
  text-align: center; /* Center the <a> inside */  /* Optional spacing */
}
.resetPass a{
    font-size: 20px;
    text-decoration: none;         /* Remove underline */
    color: #64748b;             /* Set base color */
    font-weight: 500;
    transition: all 0.3s ease; 
}
.resetPass a:hover{
    color: #8a9cb6;                /* Lighter color on hover */
    text-shadow: 0 0 8px #6e7b8f;  /* Glow effect */
    transform: scale(1.05);  
}   