/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
text-decoration:none;
list-style:none;
}

body{
font-family:'Poppins', sans-serif;
background:#ffffff;
color:#333;
padding-top:80px;
}

/* BRAND COLORS */

:root{
--red:#d80000;
--pink:#f8c8dc;
--white:#ffffff;
}

/* NAVBAR */

.navbar{

position:fixed;
top:0;
width:100%;

background:rgba(216,0,0,0.7);
backdrop-filter:blur(10px);

display:flex;
justify-content:space-between;
align-items:center;

padding:15px 8%;
z-index:1000;
color:white;

}

.brand h2{
font-size:20px;
}

.brand p{
font-size:12px;
opacity:0.9;
}

/* NAV MENU */

.nav-menu{
display:flex;
gap:25px;
}

.nav-menu a{
color:white;
font-weight:500;
transition:0.3s;
}

.nav-menu a:hover{
color:var(--pink);
transform:translateY(-2px);
}

.nav-menu a.active{
color:var(--pink);
}

/* HAMBURGER */

.hamburger{
display:none;
flex-direction:column;
cursor:pointer;
}

.hamburger span{
height:3px;
width:25px;
background:white;
margin:4px;
}

/* HERO */

.hero{

height:70vh;

background:
linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
url("hero-background.png");

background-size:cover;
background-position:center;

display:flex;
align-items:center;
justify-content:center;

text-align:center;
color:white;

padding:20px;

}

.hero-content{
max-width:800px;
}

.hero h1{
font-size:45px;
margin-bottom:20px;
}

.hero p{
font-size:18px;
line-height:1.6;
}

/* ABOUT SECTION */

.about-section{
padding:80px 10%;
}

.about-container{

display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;

}

.about-image img{

width:100%;
border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,0.15);

}

/* ABOUT TEXT */

.about-content h2{

color:var(--red);
margin-top:20px;
margin-bottom:10px;

}

.about-content p{

line-height:1.7;
margin-bottom:15px;

}

/* BUTTON */

.btn-primary{

display:inline-block;

margin-top:20px;

background:var(--red);
color:white;

padding:14px 28px;

border-radius:40px;

font-weight:600;

transition:0.3s;

}

.btn-primary:hover{

background:var(--pink);
color:black;

transform:scale(1.05);

}

/* FOOTER */

.footer{

background:var(--red);
color:white;

margin-top:80px;

}

.footer-container{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:30px;

padding:50px 10%;

}

.footer-col h3,
.footer-col h2{
margin-bottom:15px;
}

.footer-col a{
color:white;
transition:0.3s;
}

.footer-col a:hover{
color:var(--pink);
}

.social-icons a{
margin-right:10px;
font-size:18px;
}

.footer-bottom{

text-align:center;

padding:15px;

border-top:1px solid rgba(255,255,255,0.3);

}

/* WHATSAPP BUTTON */

.whatsapp-float{

position:fixed;

bottom:25px;
right:25px;

background:#25D366;
color:white;

width:60px;
height:60px;

display:flex;
align-items:center;
justify-content:center;

font-size:28px;

border-radius:50%;

box-shadow:0 6px 15px rgba(0,0,0,0.2);

animation:pulse 2s infinite;

transition:0.3s;

}

.whatsapp-float:hover{

background:var(--pink);
color:black;

transform:scale(1.1);

}

@keyframes pulse{

0%{box-shadow:0 0 0 0 rgba(37,211,102,0.7);}
70%{box-shadow:0 0 0 15px rgba(37,211,102,0);}
100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}

}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

.nav-menu{

position:fixed;

top:0;
right:-100%;

width:260px;
height:100vh;

background:var(--red);

flex-direction:column;

align-items:center;

padding-top:100px;

gap:30px;

transition:0.4s;

}

.nav-menu.active{
right:0;
}

.hamburger{
display:flex;
}

.about-container{
grid-template-columns:1fr;
}

.hero h1{
font-size:32px;
}

.hero{
height:auto;
padding:120px 20px;
}

}
/* Red marker for lists */
.about-section ul {
  list-style: none;
  padding-left: 0;
}

.about-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.about-section ul li::before {
  content: "●";
  color: red;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
}
/* SECTION LAYOUT */
.about-section {
  padding: 80px 10%;
  background: #fff;
}

.about-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
}

/* CARD GRID */
.card-container {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* CARD DESIGN */
.card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* TOP BRAND LINE */
.card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #e60023, #ff4d6d);
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* HEADINGS */
.card h2 {
  color: #e60023;
  margin-bottom: 15px;
}

/* TEXT */
.card p {
  color: #333;
  line-height: 1.6;
}

/* LIST */
.card ul {
  list-style: none;
  padding: 0;
}

.card ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

/* RED ICON */
.card ul li::before {
  content: "✔";
  color: #ff4d6d;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* CTA CARD */
.cta-card {
  text-align: center;
  background: linear-gradient(to right, #e60023, #ff4d6d);
  color: white;
}

.cta-card h2,
.cta-card p {
  color: white;
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: white;
  color: #e60023;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #ffe6eb;
}

/* ANIMATION */
.card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.card:nth-child(1){animation-delay:0.1s;}
.card:nth-child(2){animation-delay:0.2s;}
.card:nth-child(3){animation-delay:0.3s;}
.card:nth-child(4){animation-delay:0.4s;}
.card:nth-child(5){animation-delay:0.5s;}
.card:nth-child(6){animation-delay:0.6s;}
.card:nth-child(7){animation-delay:0.7s;}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {

  /* Stack layout vertically */
  .about-container {
    flex-direction: column;
  }

  /* Image full width */
  .about-image {
    width: 100%;
  }

  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
  }

  /* Cards take full width */
  .card-container {
    grid-template-columns: 1fr;
  }

  /* Reduce padding */
  .about-section {
    padding: 50px 20px;
  }

  /* Improve card spacing */
  .card {
    padding: 20px;
  }

  /* Text adjustments */
  .card h2 {
    font-size: 20px;
  }

  .card p,
  .card li {
    font-size: 14px;
  }

  /* Button full width */
  .btn-primary {
    display: block;
    width: 100%;
    text-align: center;
  }

}