* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}



.hero {
display: flex;
flex-direction: column;
align-items: center;
padding: 12rem 2rem;
background-color: transparent;
color: white;
text-align: center;
}

.hero h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.hero p {
font-size: 1.1rem;
margin-bottom: 2rem;
max-width: 600px;
}

.hero .cta {
display: flex;
gap: 1rem;
}

.btn {
padding: 0.8rem 1.5rem;
border: none;
border-radius: 25px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
}

.btn-primary {
background-color: white;
color: #3b82f6;
}

.btn-primary:hover {
background-color: #e0e7ff;
}

.btn-secondary {
background-color: transparent;
border: 2px solid white;
color: white;
}

.btn-secondary:hover {
background-color: rgba(255,255,255,0.1);
}

.features {
padding: 3rem 2rem;
background-color: transparent;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 2fr));
gap: 1rem;
}

.feature {
background: rgba(255,255,255,0.05);
padding: 8rem;
border-radius: 1rem;
color: #ffffff;
text-align: center;
border: 3px solid rgba(217, 211, 211, 0.2)
}

.feature i {
font-size: 2rem;
color: #3b82f6;
margin-bottom: 1rem;
}

.feature h3 {
margin-bottom: 0.5rem;
}

@media (max-width: 600px) {
.hero h1 {
font-size: 1.8rem;
}

.hero p {
font-size: 1rem;
}
}

#creatorImage{
transition: transform 0.3s;
cursor: pointer;
}
#creatorImage:hover { transform: scale(1.1);

}
#getStarted {
transition: 0.5s;
}
#getStarted:hover {
transform: scale(1.1);
}

a { text-decoration: none; }


.features-section {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  background: radial-gradient(circle at top right, #1e3a8a, #0f172a 60%);
  overflow: hidden;
}

/* Floating glowing background blobs */
.features-section::before,
.features-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.4), transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: floatBlob 12s infinite alternate ease-in-out;
}

.features-section::before {
  top: -100px;
  left: -100px;
}

.features-section::after {
  bottom: -100px;
  right: -100px;
  animation-delay: 3s;
}

@keyframes floatBlob {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(50px,50px) scale(1.2); }
}

.features-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(90deg,#3b82f6,#8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.features-header p {
  max-width: 600px;
  margin: auto;
  color: #cbd5e1;
  font-size: 1.1rem;
}

/* Grid Layout */
.features-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* Feature Cards */
.feature-card {
  background: rgba(16, 37, 49, 0.589);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

/* Hover glow effect */
.feature-card::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, rgba(139,92,246,0.3), transparent 70%);
  opacity: 0;
  transition: 0.4s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

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

.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: white;
  margin-bottom: 0.8rem;
}

.feature-card p {
  color: #cbd5e1;
  font-size: 0.95rem;
}

/* Scroll reveal animation */
.feature-card {
  opacity: 0;
  transform: translateY(40px);
  animation: reveal 1s forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.2s; }
.feature-card:nth-child(2) { animation-delay: 0.4s; }
.feature-card:nth-child(3) { animation-delay: 0.6s; }
.feature-card:nth-child(4) { animation-delay: 0.8s; }

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .features-header h2 {
    font-size: 2rem;
  }
}

/* ===== CEO SECTION ===== */
.ceo-section {
background-color: rgb(25, 35, 57,0.7);
padding: 95px 35px;
border-top: 1px solid rgba(0, 0, 0, 0.05);
display: flex;
justify-content: center;
align-items: center;
}

.ceo-container {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 40px;
max-width: 1100px;
width: 100%;
text-align: left;
}

/* --- CEO Photo --- */
.ceo-photo {
flex: 1;
display: flex;
justify-content: center;
}

.ceo-photo img {
width: 180px;
height: 180px;
border-radius: 50%;
object-fit: cover;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ceo-photo img:hover {
transform: scale(1.05);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* --- CEO Text --- */
.ceo-text {
flex: 2;
}

.ceo-text h2 {
font-size: 26px;
color: white;
font-weight: 700;
cursor: default;
margin-bottom: 5px;
}

.ceo-text h3 {
font-size: 20px;
font-weight: 600;
cursor: default;
color:white;
margin-bottom: 15px;
}

.ceo-text p {
font-size: 16px;
color: white;
cursor: default;
line-height: 1.8;
margin-bottom: 20px;
}

.ceo-text a {
color: white;
text-decoration: none;
cursor: default;
font-weight: 500;
}

/* --- Social Icons --- */
.ceo-socials {
display: flex;
gap: 20px;
}

.social-link {
font-size: 22px;
color: #365e76;
transition: transform 0.3s ease, color 0.3s ease;
}

.social-link:hover {
color: #5f88a1;
transform: scale(1.15);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
.ceo-container {
flex-direction: column;
text-align: center;
}

.ceo-text {
flex: unset;
}

.ceo-photo img {
width: 150px;
height: 150px;
}
}

a {text-decoration: none;}
/* === Cookie Banner Styles === */
#cookie-banner {
  display: none; /* Hidden by default until JS shows it */
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 420px;
  background: var(--cookie-bg, #ffffff);
  color: var(--cookie-text, #333);
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  padding: 18px 20px;
  font-family: "Poppins", sans-serif;
  text-align: center;
  z-index: 9999;
  animation: slideUp 0.6s ease forwards;
}

/* Paragraph inside */
#cookie-banner p {
  font-size: 15px;
  margin: 0 0 12px 0;
  line-height: 1.5;
}

/* Accept button */
#cookie-banner button#acceptCookies {
  background: linear-gradient(135deg, #0078ff, #00c6ff);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#cookie-banner button#acceptCookies:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 120, 255, 0.3);
}

/* Simple fade/slide animation */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translate(-50%, 40px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Responsive tweak */
@media (max-width: 480px) {
  #cookie-banner {
    width: 95%;
    padding: 15px;
  }

  #cookie-banner p {
    font-size: 14px;
  }

  #cookie-banner button#acceptCookies {
    padding: 8px 18px;
    font-size: 14px;
  }
}
#ozia-ai-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-image: url('https://ozia-ai.netlify.app/favicon-16.png');
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 9999;
  animation: floatAI 3s ease-in-out infinite;
  transition: transform 0.2s;
}

#ozia-ai-button:hover {
  transform: scale(1.1);
}

@keyframes floatAI {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}