

/* ===== Base ===== */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
}


.logo img {
  height: 170px;   /* Increase size */
  width: auto;
  animation: floatLogo 3s ease-in-out infinite;
}


@keyframes floatLogo {
  0%, 100% { transform: translateY(2px); }
  50% { transform: translateY(-8px); }
}




/* ===== Buttons ===== */
.btn {
  padding: 8px 15px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  display: inline-block;
  box-shadow: 0 5px 20px 4px rgba(9, 9, 9, 0.5);
}

/* space between buttons */
.btn-group {
  display: flex;
  justify-content: center;
  gap: 15px;               
}


.btn-primary {
  background: #4ebff3;
  color: white;
}

.btn-primary:hover {
  background: #4b00c8;
}

/* ===== Header ===== */
.header {
  background: white;
  padding: 0px 20px;
}

/* ===== Navigation ===== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: #333;
}

.nav a:hover {
  color: #6200ea;
}

/* ===== Hero & Background Sections ===== */
.main-content,
.main-content1 {
  position: relative;
  padding: 60px 20px;
  min-height: clamp(70vh, 85vh, 100vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
  border-radius: 10px;
}

.main-content::before,
.main-content1::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(1.5px);
  transform: scale(1.05);
  z-index: -2;
}

.main-content::before {
  background-image: url("Cover1.webp");
}

.main-content1::before {
  background-image: url("Contactback.jpg");
}


.main-content::after,
.main-content1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(127, 127, 184, 0.3);
  z-index: -1;
}

/* ===== Typewriter ===== */
.typewriter {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid white;
  font-size: clamp(1.4rem, 4vw, 2.2rem);

  animation:
    typing 3.5s steps(30, end) infinite,
    blink 0.7s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

/* ===== Projects Heading ===== */
.Project {
  text-align: center;
  margin: 30px 0;
}

.Project1 {
  text-align: center;
  margin: 30px 0;
  background-color: #1F3A40;
  border-radius: 10px;
}

.project-box {
  display: inline-block;
  padding: 8px 20px;
  background: #3c7bad;
  color: white;
  border-radius: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 8px 25px 4px rgba(0,0,0,0.6);
}

.project-box1 {
  display: inline-block;
  padding: 8px 20px;
  background: #3c7bad;
  color: white;
  border-radius: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 8px 25px 4px rgba(0,0,0,0.6);
  background-color: #3c7bad;
}

/* ===== Cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 100px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.card {
  background: #f8f0f0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px 4px rgba(0,0,0,0.6);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

/* Card top images */
.card-top,
.card-top1,
.card-top2 {
  height: 150px;
  background-size: cover;
  background-position: center;
  border-bottom-right-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-top { background-image: url("Coding.jpg"); }
.card-top1 { background-image: url("Moun.jpg"); }
.card-top2 { background-image: url("Food.webp"); }

/* Icon */
.icon {
  width: 150px;
  height: 35px;
  background: #eaeaea;
  font-weight: bold;
  font-size: 22px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 25px 4px rgba(0,0,0,0.6);
}

/* Card content */
.card-content {
  padding: 25px;
  text-align: center;
}

.card-content p {
  font-size: 16px;
  color: #555;
}

/* ===== Contact Box ===== */
.line-box {
  border: 3px solid white;
  border-radius: 10px;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  background: transparent;
  box-shadow: 0 15px 25px rgba(255,255,255,0.7);
}

.line-box h2 {
  font-size: clamp(1.2rem, 4vw, 1.8rem);
}

.line-box p {
  font-size: clamp(0.9rem, 3.5vw, 1.1rem);
}


/* ===== Social Icons ===== */
.social-icons-footer {
  position: fixed;
  bottom: 10px;
  left: 50%;
  display: flex;
  gap: 15px;
}

.social-icons-footer img {
  width: 25px;
  transition: transform 0.3s;
}

.social-icons-footer img:hover {
  transform: scale(1.2);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 10px;
  }

  .typewriter {
    font-size: 1.3rem;
  }
}


hr {
  border: none;
  height: 2px;
  background: #ccc;
  margin: 10px 0;
}

.hr-card {
  border: none;
  height: 4px;
  margin: 10px 0;
  background: #878f92;
  border-radius: 8px;
  box-shadow: 0 8px 25px 4px rgba(88, 89, 89, 0.6);
}

.video-row {
  display: flex;
  gap: 40px;           /* Space between cards */
  flex-wrap: wrap;      /* Stack on small screens */
  justify-content: center;
}

/* Individual video card */
.video-card {
  width: 350px;         /* Fixed width for both videos */
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

/* Hover effect */
.video-card:hover {
  transform: scale(1.03);
}

/* Video styling */
.video-card video {
  width: 100%;
  height: 200px;
  object-fit: cover;    /* Fill the box without stretching */
  border-radius: 5px;
}

/* Video titles */
.video-card p {
  margin-top: 10px;
  font-weight: bold;
}


.top-header {
  width: 100%;
  height: 70px;
  background: #0f2e33; /* matches your theme */
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.buy-btn {
  background: linear-gradient(135deg, #ff6a00, #ff8c1a);
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  background: linear-gradient(135deg, #e55d00, #ff7a00);
}





