/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #ffffff;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  background: #000;
  padding-left: 80px 0;
  position: relative;
  z-index: 10;
}

.navbar .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 130px;
  margin-left: -220px;
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.05);
}

/* MODERN MENU STYLE */
.menu {
  margin-right: -220px;
}

.menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 45px;
}

.menu a {
  position: relative;
  text-decoration: none;
  color: #f5f5f5;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #ff3b3f, #ff9b00);
  transition: width 0.3s ease;
}

.menu a:hover {
  color: #ff9b00;
  text-shadow: 0 0 10px rgba(255, 155, 0, 0.5);
}

.menu a:hover::after,
.menu a.active::after {
  width: 100%;
}

.menu a.active {
  color: #ff3b3f;
}



/* HERO SECTION */

.hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../img/y1.png') center center no-repeat;
  background-size: cover;
}


.hero-overlay {
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero-overlay h1 {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 10px;
  animation: fadeInDown 1.2s ease forwards;
}

.hero-overlay p {
  font-size: 1.3rem;
  color: #ffffff;
  animation: fadeInUp 1.5s ease forwards;
}

/* HERO ANIMATIONS */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ABOUT SECTION */
.aboutBody {
  position: relative;
  background-color: #000;
  color: #fff;
  padding: 100px 0;
}

.aboutLogo {
  position: absolute;
  top: 40px;
  left: 80px;
}

.aboutLogo img {
  width: 140px;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.aboutLogo img:hover {
  transform: scale(1.05);
  opacity: 1;
}

.aboutContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  gap: 80px;
}

.aboutImage {
  flex: 1;
  opacity: 0;
  transform: translateX(-80px);
  animation: slideInLeft 1.4s ease forwards;
}

.aboutImage img {
  width: 500px;
  border-radius: 18px;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.aboutImage img:hover {
  transform: scale(1.08);
}

.aboutText {
  flex: 1;
  max-width: 600px;
  opacity: 0;
  transform: translateX(80px);
  animation: slideInRight 1.4s ease forwards;
}

.aboutText h2 {
  font-size: 2.7rem;
  color: #ff3b3f;
  margin-bottom: 25px;
}

.aboutText p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 18px;
}

/* ABOUT ANIMATIONS */
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== CONTACT BLOCK ===== */
.contact-block{
  background:linear-gradient(160deg,#0e1a27 0%, #0b141e 55%, #0e1a27 100%);
  padding:70px 0 80px;
  position:relative;
  overflow:hidden;
}
.contact-block::before{
  content:"";
  position:absolute;inset:0;
  background:
    radial-gradient(circle at 82% 18%,rgba(56,182,255,.18),transparent 60%),
    radial-gradient(circle at 16% 84%,rgba(255,122,45,.18),transparent 62%);
  pointer-events:none;
  mix-blend-mode:screen;
  opacity:.55;
}
.contact-container{
  width:min(1200px,92%);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:40px;
}
.contact-head h2{
  font-size:42px;
  font-weight:800;
  letter-spacing:.6px;
  margin:0 0 12px;
  background:linear-gradient(90deg,#0a74da,#38b6ff,#ff7a2d);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.contact-head p{
  max-width:640px;
  color:#90a7b8;
  font-size:15px;
  line-height:1.5;
}
.contact-grid{
  display:grid;
  gap:26px;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
}
.c-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:22px 20px 24px;
  display:flex;
  flex-direction:column;
  gap:10px;
  position:relative;
  transition:.35s cubic-bezier(.25,.9,.3,1);
  backdrop-filter:blur(6px);
}
.c-card:hover{
  transform:translateY(-6px);
  border-color:#38b6ff;
  box-shadow:0 14px 34px -8px rgba(0,0,0,.55);
}
.c-card .icon{
  width:52px;height:52px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,#0a74da,#38b6ff);
  border-radius:14px;
  color:#fff;
  font-size:22px;
  box-shadow:0 8px 22px -6px rgba(10,116,218,.55);
}
.c-card h3{
  font-size:16px;
  font-weight:700;
  letter-spacing:.4px;
  margin:0;
  color:#eaf0f6;
}
.c-card p{
  font-size:14px;
  line-height:1.5;
  color:#b9c6d3;
  margin:0;
}
.c-card a{
  color:#38b6ff;
  text-decoration:none;
  font-weight:600;
  transition:.25s;
}
.c-card a:hover{color:#ff7a2d}

.contact-cta{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-top:10px;
}
.cta-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:linear-gradient(90deg,#0a74da,#38b6ff);
  color:#fff;
  font-weight:700;
  padding:14px 24px;
  border-radius:16px;
  text-decoration:none;
  font-size:15px;
  letter-spacing:.4px;
  box-shadow:0 10px 30px -6px rgba(10,116,218,.55);
  transition:.35s cubic-bezier(.25,.9,.3,1);
}
.cta-btn:hover{
  transform:translateY(-4px) scale(1.02);
  background:linear-gradient(90deg,#38b6ff,#0a74da);
}
.cta-btn.ghost{
  background:rgba(255,255,255,.06);
  color:#b9c6d3;
  box-shadow:none;
  border:1px solid rgba(255,255,255,.14);
}
.cta-btn.ghost:hover{
  background:rgba(56,182,255,.12);
  color:#fff;
  transform:translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .aboutContainer {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .aboutLogo {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .aboutImage img {
    width: 90%;
  }

  .aboutText {
    max-width: 90%;
  }

  .hero-overlay h1 {
    font-size: 2.4rem;
  }

  .hero-overlay p {
    font-size: 1.1rem;
  }
}

@media (max-width:640px){
  .contact-head h2{font-size:34px}
  .c-card{padding:20px 18px}
  .contact-block{padding:60px 0 70px}
}

/* FOOTER */
footer {
  background-color: #111;
  padding: 40px 0;
  text-align: center;
}

footer p {
  color: #aaa;
  font-size: 0.9rem;
}
