diff --git a/about.css b/about.css index 9ff1b69..4980c78 100644 --- a/about.css +++ b/about.css @@ -53,7 +53,8 @@ body { background-color:black; height: 60vh; display: flex; - justify-content: space-evenly; + display: flex; + justify-content: center; align-items: center; gap: 70px; position: relative; @@ -61,28 +62,57 @@ body { padding: 4px; } - .card { - height: 80%; - width: 28%; + background: rgba(255, 255, 255, 0.95); border-radius: 20px; - background-size: cover; - background-position: center; - /* overflow: visible; */ - transition: all ease 0.6s; - box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23); + box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); + width: 450px; + height: 500px; + overflow: hidden; + transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); + transform-style: preserve-3d; + perspective: 1000px; + /* Add these properties to center children */ + display: flex; + justify-content: center; + align-items: center; +} + +.card:hover { + transform: translateY(-15px) rotateX(5deg); + box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3); +} + +.card::before { + content: ''; + position: absolute; + top: -50%; + left: -50%; + width: 200%; + height: 200%; + background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent); + transform: rotate(45deg); + transition: 0.8s; + opacity: 0; } -#card1 { - background-image: url('pictures/Chetan.png'); +.card:hover::before { + animation: shine 1.5s; } -#card2 { - background-image: url('pictures/Tanish.png'); +.profile-image { + /* Increase dimensions to something more visible */ + height: 500px; + width: 500px; + /* Optional: add a border or styling to the container */ + overflow: hidden; } -#card3 { - background-image: url('pictures/Vansh.png'); +.profile-image img { + /* Make the image fill its container */ + width: 100%; + height: 100%; + object-fit: cover; /* This keeps the image proportional */ } .overlay { @@ -204,9 +234,10 @@ h1 { .team-role { color: var(--primary); - font-weight: 600; - margin-bottom: 15px; + font-weight: 6000; + margin-bottom: 25px; display: block; + font-size: larger; } .social-links { @@ -236,27 +267,19 @@ html.dark .social-icons a { } .social-icons .bxl-twitter:hover { - color: rgb(17, 17, 17); + color: rgb(221, 216, 216); } .google-icon svg { - width: 24px; /* Ensure SVG scales within the container */ - height: 24px; /* Ensure SVG scales within the container */ -} - -.social-icons .bxl-github { - color: rgb(5, 5, 5); -} - -.social-icons .bxl-github:hover { - color: rgb(249, 246, 246); + width: 24px; + height: 24px; } .social-icons .bxl-github { - color: #f5f5f5; + color: #000000; } .social-icons .bxl-github:hover { - color: #060505; + color: #ffffff; } .social-icons .bxl-linkedin { color: rgb(45, 76, 232); @@ -266,6 +289,10 @@ html.dark .social-icons a { color: lightskyblue; } +a:hover{ + background-color: black; +} + .stats { padding: 80px 20px; background-color: var(--secondary); @@ -418,5 +445,4 @@ overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; hyphens: auto; -} - +} \ No newline at end of file diff --git a/about.html b/about.html index 4a6d1cc..096bf59 100644 --- a/about.html +++ b/about.html @@ -12,7 +12,7 @@ - About Us - Fitness Website + Fitness Planet - About Us @@ -54,23 +54,23 @@

Our Mission

- +
-
- +
+ Chetan Ajmani +

Chetan Ajmani

JavaScript Developer & Interactive Features Expert -

Bringing dynamic functionality to life, I specialize in JavaScript-driven interactivity, ensuring an engaging and responsive experience.


+

Bringing functionality to life,I specialize in JavaScript interactivity,engaging and responsive experience.


- + +
+
+ Tanish Mehta +

Tanish Mehta

Front-End Specialist & UI/UX Expert -

Crafting intuitive and visually engaging designs, I ensure seamless user navigation with expert HTML and CSS styling. Their keen focus on user experience makes every interaction smooth.


+

Crafting engaging designs,I ensure seamless user navigation with HTML and CSS styling.


+
+
+ Vansh Thakur +

Vansh Thakur

Content Strategist & Digital Optimization Specialist -

Driving meaningful engagement, I curate compelling content, optimize SEO, and ensure the website remains informative and impactful. Their expertise elevates the platform's reach and effectiveness.


+

I curate compelling content, optimize , and ensure the website remains informative and impactful.


+
+
diff --git a/about1.css b/about1.css deleted file mode 100644 index ac9e827..0000000 --- a/about1.css +++ /dev/null @@ -1,188 +0,0 @@ -/* @import url('https://fonts.googleapis.com/css2?family=Crimson+Pro'); -*{ - margin:0; - padding: 0; - font-family: poppins; - color: #fff; -} -.body { - display: flex; - justify-content: center; - align-content: center; - min-height: 100vh; - background: black; - } - - .container{ - height: 470px; - width: 250px; - border: 2px solid; - border-left-color: #0cf; - border-right-color: #0cf; - border-top-color: #ec45f2; - border-bottom-color: #ec45f2; - border: 25px; - display: flex; - justify-content: space-around; - align-content: center; - - } - .container .img-section{ - height: 100%; - width: 100%; - background: linear-gradient(#0cf,#ec45f2,#0cf,#ec45f2); - display: flex; - justify-content: center; - align-content: center; - border-radius: 50%; - overflow: hidden; - position:absolute; - top: 20%; - left: 50%; - transform: translate(-50%, -50%); - transition: .6s ease; - } - .container:hover .img-section{ - top: 20%; - height: 200px; - width: 200px; - } - .img{ - height: 25%; - width: 25%; - border-radius: 50%; - background:black; - } - - .text-content{ - text-align: center; - color:#fff; - font-weight: 500; - display: flex; - flex-direction: column; - align-items: center; - position: absolute; - top: 40%; - } - - .text-content span:nth-child(1){ - letter-spacing: 1px; - font-size: 32px; - } - - .text-content span:nth-child(2){ - letter-spacing: 1px; - font-size: 18px; - } - - .text-content p{ - font-size: 13px; - max-width: 300px; - margin-bottom: 10px; - } - - .btn{ - height: 35px; - width: 100px; - font-size: 15px; - background:#222; - color: #0cf; - border: 2px solid #0cf; - cursor: pointer; - margin-bottom: 20px; - border-radius: 5px; - transition: 0.5s; - } - - .btn:hover{ - background: #0cf; - color:#222; - box-shadow:0 0 10px #0cf; - } - - .social-media{ - cursor:pointer; - height:40px; - width: 40px; - border: 2px solid #0cf; - border-radius: 50%; - display: flex; - justify-content: center; - align-items: center; - font-size: 30px; - color: #0cf; - margin-left: 20px; - transition:0.4s; - } - - .social-media i:hover{ - box-shadow: 0 0 10px #0cf; - color: #222; - background: #0cf; - } */ - - body { - background: linear-gradient(135deg, #74ebd5 0%, #ACB6E5 100%); - height: 100vh; - display: flex; - align-items: center; - justify-content: center; - margin: 0; - font-family: Arial, sans-serif; - } - .profile-card { - background: #fff; - border-radius: 16px; - box-shadow: 0 8px 24px rgba(0,0,0,0.15); - padding: 2rem 1.5rem; - text-align: center; - width: 320px; - transition: transform 0.3s; - } - .profile-card:hover { - transform: translateY(-10px) scale(1.03); - box-shadow: 0 16px 32px rgba(0,0,0,0.18); - } - .profile-image img { - width: 100px; - height: 100px; - border-radius: 50%; - box-shadow: 0 4px 8px rgba(0,0,0,0.10); - margin-bottom: 1rem; - } - .profile-card h2 { - margin: 0.5rem 0 0.25rem; - } - .profile-card .title { - color: #888; - font-size: 1rem; - margin-bottom: 0.5rem; - } - .profile-card p { - margin: 0.25rem 0; - } - .social-links { - margin: 1rem 0; - } - .social-links a { - color: #555; - margin: 0 0.5rem; - font-size: 1.2rem; - transition: color 0.2s; - } - .social-links a:hover { - color: #0077b5; - } - .profile-card button { - background: #0077b5; - color: #fff; - border: none; - padding: 0.6rem 1.5rem; - border-radius: 24px; - cursor: pointer; - font-size: 1rem; - transition: background 0.2s; - } - .profile-card button:hover { - background: #005983; - } \ No newline at end of file diff --git a/about1.html b/about1.html deleted file mode 100644 index e341b8f..0000000 --- a/about1.html +++ /dev/null @@ -1,312 +0,0 @@ - - - - - - Enhanced Profile Card - - - - -
- -
- Profile Image -
-

John Doe

-

Senior Frontend Developer

-

- New York, USA -

- -
- -
-
-
125
-
Projects
-
-
-
42k
-
Followers
-
-
-
10+
-
Years Exp.
-
-
- -
- HTML5 - CSS3 - JavaScript - React - Vue.js -
- - - -
- - -
-
- - \ No newline at end of file diff --git a/cart.html b/cart.html index 423935e..7f2e964 100644 --- a/cart.html +++ b/cart.html @@ -3,7 +3,7 @@ - Fitness Planet - Store + Fitness Planet - Store diff --git a/signin.html b/signin.html index a02c182..2a62a64 100644 --- a/signin.html +++ b/signin.html @@ -4,7 +4,7 @@ - Sign In - Fitness Planet + Fitness Planet - Sign In