* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
line-height: 1.6;
color: #333;
background-color: #fff;
position: relative;
overflow-x: hidden;
min-height: 100vh;
display: flex;        
flex-direction: column; 
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: 0 20px;
position: relative;
z-index: 2;
}
a {
text-decoration: none;
color: inherit;
}
ul {
list-style: none;
}
img {
max-width: 100%;
display: block;
}
.bg-shape {
position: absolute;
background-color: #cceeff;
z-index: 0;
border-radius: 50px;
}
.shape1 {
top: -100px;
left: -150px;
width: 400px;

height: 300px;
transform: rotate(-30deg);
border-radius: 80px;
}
.shape2 {
top: -150px;
right: -200px;
width: 600px;
height: 900px;
transform: rotate(20deg);
border-radius: 100px;
}
.shape3 {
width: 250px;
height: 250px;
border-radius: 70px;
background-color: #b3e6ff;
}
.shape4 {
width: 300px;
height: 400px;
border-radius: 90px;
background-color: #99ddff;
}
.shape5 {
width: 200px;
height: 300px;
border-radius: 60px;
background-color: #e0f7ff;
}
.shape6 {
width: 200px;
height: 250px;
background-color: #d6f3ff;
top: 1800px;
left: -120px;
border-radius: 70px;
transform: rotate(-20deg);
}
.shape7 {
width: 300px;
height: 200px;
background-color: #a6e3ff;
top: 1900px;
right: -150px;
border-radius: 80px;
transform: rotate(25deg);
}
.shape8 {
width: 150px;
height: 150px;
background-color: #b3ecff;
top: 2100px;
left: 50%;
border-radius: 50%;
transform: translateX(-50%);
}
.shape9 {
width: 280px;
height: 320px;
background-color: #ccefff;
top: 2800px;
left: -180px;

border-radius: 90px;
transform: rotate(15deg);
}
.shape10 {
width: 220px;
height: 250px;
background-color: #99ddff;
top: 3000px;
right: -120px;
border-radius: 70px;
transform: rotate(-15deg);
}
.shape11 {
width: 250px;
height: 250px;
background-color: #e6f9ff;
top: 3800px;
left: -130px;
border-radius: 75px;
transform: rotate(-25deg);
}
.shape12 {
width: 300px;
height: 300px;
background-color: #b3e6ff;
top: 4000px;
right: -160px;
border-radius: 100px;
transform: rotate(20deg);
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 30px 0;
margin-bottom: 60px;
position: sticky;
top: 0;
background-color: #fff;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
transition: box-shadow 0.3s ease;
flex-wrap: wrap;
}
.logo {
font-weight: 700;
font-size: 1.5rem;
color: #2c3e50;
white-space: normal;
overflow: visible;
flex: 1;
}
@media (max-width: 768px) {
.logo {
font-size: 1.1rem;
}
}
nav ul {
display: flex;
}

nav ul li {
margin-left: 35px;
}
nav ul li a {
color: #555;
font-weight: 500;
transition: color 0.3s ease;
}
nav ul li a:hover {
color: #007bff;
}
.nav-link.active {
font-weight: 700;
color: #007bff;
border-bottom: 2px solid #007bff;
}
.auth-buttons {
display: flex;
align-items: center;
}
.login-btn {
margin-right: 20px;
color: #007bff;
font-weight: 600;
padding: 10px 15px;
}
.join-btn {
background-color: #00aaff;
color: #fff;
padding: 10px 25px;
border-radius: 8px;
font-weight: 600;
transition: background-color 0.3s ease;
box-shadow: 0 4px 10px rgba(0, 170, 255, 0.3);
}
.join-btn:hover {
background-color: #008bcc;
}
main {
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
}
.hero-content {
flex: 1;
max-width: 50%;
padding-right: 20px;
}
.tagline {
color: #00aaff;
font-weight: 600;
margin-bottom: 10px;
font-size: 0.9em;
text-transform: uppercase;
letter-spacing: 1px;
}
h1 {
font-size: 3.5em;

font-weight: 700;
color: #2c3e50;
line-height: 1.2;
margin-bottom: 20px;
}
.description {
color: #666;
font-size: 1.1em;
margin-bottom: 35px;
max-width: 450px;
}
.action-buttons {
display: flex;
gap: 15px;
}
.btn {
padding: 12px 30px;
border-radius: 8px;
font-weight: 600;
font-size: 1em;
cursor: pointer;
transition: all 0.3s ease;
display: inline-block;
text-align: center;
}
.btn-primary {
background-color: #00aaff;
color: #fff;
border: 2px solid #00aaff;
box-shadow: 0 4px 10px rgba(0, 170, 255, 0.3);
}
.btn-primary:hover {
background-color: #008bcc;
border-color: #008bcc;
transform: translateY(-2px);
}
.btn-secondary {
background-color: #fff;
color: #00aaff;
border: 2px solid #00aaff;
}
.btn-secondary:hover {
background-color: #e6f7ff;
transform: translateY(-2px);
}
.hero-image {
flex: 1;
max-width: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.hero-image img {
border-radius: 25px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
max-height: 450px;
width: auto;
}
@media (max-width: 992px) {
.shape2 {

height: 700px;
right: -150px;
}
h1 {
font-size: 2.8em;
}
.hero-content, .hero-image {
max-width: 100%;
flex-basis: 48%;
}
}
@media (max-width: 768px) {
header {
flex-direction: column;
align-items: center;
text-align: center;
}
nav ul {
margin-top: 15px;
margin-bottom: 15px;
justify-content: center;
flex-wrap: wrap;
}
nav ul li {
margin: 5px 15px;
}
.auth-buttons {
margin-top: 10px;
justify-content: center;
}
main {
flex-direction: column;
text-align: center;
}
.hero-content {
padding-right: 0;
margin-bottom: 40px;
order: 2;
}
.description {
margin-left: auto;
margin-right: auto;
}
.hero-image {
order: 1;
margin-bottom: 30px;
}
.action-buttons {
justify-content: center;
}
.shape1, .shape2 {
width: 300px;
height: 250px;
top: -50px;

}
.shape2 {
height: 500px;
right: -100px;
top: -80px;
}
h1 {
font-size: 2.5em;
}
}
@media (max-width: 480px) {
h1 {
font-size: 2em;
}
.logo {
font-size: 1.5em;
}
.btn {
padding: 10px 20px;
font-size: 0.9em;
}
.action-buttons {
flex-direction: column;
align-items: center;
gap: 10px;
}
.join-btn {
padding: 10px 15px;
}
}
.features-section {
padding: 80px 0;
text-align: center;
}
.section-title {
font-size: 2.5em;
font-weight: 700;
color: #2c3e50;
margin-bottom: 40px;
}
.slider-container {
position: relative;
overflow: hidden;
width: 100%;
margin: 0 auto;
border-radius: 15px;
background-color: #f7f7f7;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.slider-wrapper {
display: flex;
transition: transform 0.5s ease-in-out;
}
.feature-item {
min-width: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
padding: 40px;
gap: 40px;

}
.feature-image {
flex: 1;
min-width: 250px;
max-width: 450px;
height: 350px; /* Added fixed height for consistency */
display: flex;
align-items: center;
justify-content: center;
}
.feature-image img {
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
max-height: 100%;
max-width: 100%;
object-fit: contain; /* Ensures the image fits without distortion */
}
.feature-info {
flex: 1;
min-width: 250px;
text-align: left;
}
.feature-info h3 {
font-size: 1.8em;
color: #00aaff;
margin-bottom: 15px;
}
.feature-info p {
font-size: 1em;
color: #666;
}
.slider-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(0, 170, 255, 0.7);
color: #fff;
border: none;
padding: 10px 15px;
font-size: 1.5rem;
cursor: pointer;
border-radius: 50%;
z-index: 10;
transition: background-color 0.3s ease;
}
.slider-btn:hover {
background-color: #00aaff;
}
.prev-btn {
left: 10px;
}
.next-btn {
right: 10px;
}
@media (max-width: 768px) {
.feature-item {
flex-direction: column;
text-align: center;
}

.feature-image {
margin-bottom: 20px;
}
.feature-info {
text-align: center;
}
}
.haircuts-section {
padding: 80px 0;
text-align: center;
}
.haircuts-slider-container {
padding: 0;
background-color: transparent;
box-shadow: none;
}
.haircut-item {
min-width: 100%;
padding: 10px;
display: flex;
justify-content: center;
align-items: center;
}
.haircut-item img {
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
height: 400px;
width: auto;
object-fit: contain;
}
.developers-section {
padding: 80px 0;
text-align: center;
background-color: #e6f7ff;
margin-top: 60px;
position: relative;
overflow: hidden;
}
.developers-section .section-title {
color: #00aaff;
margin-bottom: 60px;
position: relative;
z-index: 1;
}
.developers-grid {
display: grid;
/* CHANGE 1: Set a fixed 2x2 grid layout on larger screens */
grid-template-columns: repeat(2, 1fr);
gap: 40px;
max-width: 1000px;
margin: 0 auto;
position: relative;
z-index: 1;
}
.developer-card {
background-color: #fff;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
padding: 30px;

text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 2px solid transparent;
}
.developer-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
border-color: #00aaff;
}
.developer-image {
width: 120px;
height: 120px;
border-radius: 50%;
overflow: hidden;
margin: 0 auto 20px;
border: 4px solid #cceeff;
display: flex;
align-items: center;
justify-content: center;
transition: border-color 0.3s ease;
}
.developer-card:hover .developer-image {
border-color: #00aaff;
}
.developer-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.developer-info h3 {
font-size: 1.5em;
color: #2c3e50;
margin-bottom: 10px;
font-weight: 600;
}
.developer-info p {
font-size: 0.95em;
color: #666;
line-height: 1.5;
}
@media (max-width: 992px) {
.developers-grid {
gap: 30px;
}
}
@media (max-width: 768px) {
.developers-section {
padding: 60px 0;
}
.developers-grid {
grid-template-columns: 1fr;
padding: 0 20px;
}
.developer-card {
padding: 25px;
}
.developer-image {
width: 100px;
height: 100px;
}
.developer-info h3 {

font-size: 1.3em;
}
.developer-info p {
font-size: 0.9em;
}
}
@media (max-width: 480px) {
.developers-section .section-title {
font-size: 2em;
}
}
.informatics-section {
padding: 80px 0;
background-color: #f9fbfc;
text-align: center;
}
.informatics-section .section-title {
color: #2c3e50;
margin-bottom: 30px;
}
.informatics-content {
max-width: 900px;
margin: 0 auto;
font-size: 1.05em;
color: #555;
line-height: 1.8;
text-align: justify;
}
.footer {
  background: #2c3e50;
  color: #fff;
  padding: 60px 20px 20px;
  margin-top: 40px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
}
.footer-about, .footer-links, .footer-social {
  flex: 1 1 250px;
}
.footer h3, .footer h4 {
  margin-bottom: 15px;
  color: #00aaff;
}
.footer-about p {
  font-size: 0.95em;
  line-height: 1.6;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin: 8px 0;
}
.footer-links a {
  color: #ddd;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #00aaff;
}
.social-icons {
  display: flex;
  gap: 15px;
}
.social-icons img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}
.social-icons a:hover img {
  transform: scale(1.2);
  filter: brightness(0) saturate(100%) invert(42%) sepia(100%) saturate(2000%) hue-rotate(180deg);
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  padding-top: 15px;
  font-size: 0.85em;
  color: #bbb;
}
.social-icons svg {
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-icons a:hover svg {
  transform: scale(1.2);
  color: #00aaff;
}

