* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(180deg, #f5f7fb, #eef2f7);
    color: #111;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.2px;
    padding-top: 70px;
}

html {
    scroll-behavior: smooth;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(5, 10, 25, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
    color: white;
    font-weight: bold;
}

.logo img {
  height: 120px;
  width: auto;
  object-fit: contain;
}

.nav-links a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: red;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}


/* HERO */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(5, 10, 25, 0.85), rgba(5, 10, 25, 0.85)),
        url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b');
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero p {
    margin: 20px 0;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
    transition: transform 0.6s ease;
}

.hero:hover .hero-content {
    transform: translateY(-5px);
}

.hero h1 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -1px;
  text-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
}

.hero h1 {
  animation: fadeUp 1s ease forwards;
}

.hero p {
  animation: fadeUp 1.3s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroZoom {
    from {
        background-size: 100%;
    }

    to {
        background-size: 110%;
    }
}

.hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,0,0,0.25), transparent 70%);
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(80px);
  z-index: 0;
}


/* BUTTON */
.btn-primary {
  background: linear-gradient(135deg, #ff2a2a, #ff0000);
  color: white;
  padding: 12px 22px;
  border-radius: 6px;
  transition: 0.3s;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 5px 20px rgba(255,0,0,0.25);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255,0,0,0.5);
  text-decoration: none;
}

/* SECTION */
.section {
    padding: 100px 0;
}

.section.dark {
    background: #0b0f19;
    color: white;
}

.section.dark p {
  color: rgba(255,255,255,0.75);
}

.section.dark .center {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.section.dark h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: red;
  margin: 15px auto;
}

/* GRID */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* CARD */

.card {
  background: white;
  padding: 30px;
  border-radius: 14px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}   

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,0,0,0.05));
  opacity: 0;
  transition: 0.3s;
}

.card:hover::before {
  opacity: 1;
}

/* GLASS CARD */
.glass-card {
  background: rgba(255,255,255,0.04);
  padding: 30px;
  border-radius: 14px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s;
}

.glass-card .icon {
  font-size: 22px;
  color: red;
  margin-bottom: 10px;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,0,0,0.4);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

/* TRUST */
.trust {
  background: linear-gradient(to right, #ffffff, #f1f4f9);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 20px;
}

.trust span {
  font-weight: 500;
  color: #333;
}

.trust-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

/* CONTACT */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;

    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  transition: 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: red;
  box-shadow: 0 0 0 2px rgba(255,0,0,0.1);
}

h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 20px;
  font-weight: 600;
}

p {
  color: #555;
  line-height: 1.6;
}

.icon {
  font-size: 28px;
  color: red;
  margin-bottom: 15px;
}

.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

.highlight {
  border-left: 4px solid red;
}

.highlight:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 16px;
  }
}

/* FOOTER */
.footer {
  background: #050a19;
  color: white;
  padding: 40px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  margin: 0 10px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: red;
}

.footer img {
    height: 90px;
    width: auto;
    margin-bottom: 10px;
}

/* Navbar scroll effect */
.navbar.scrolled {
  background: rgba(5, 10, 25, 0.95);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  backdrop-filter: blur(16px);
}

/* CTA Strip */
.cta-strip {
  background: linear-gradient(135deg, #0b0f19, #050a19);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.cta-content h2 {
  margin-bottom: 20px;
}

.contact-details {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.contact-details h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.contact-details p {
    margin-bottom: 12px;
    color: #444;
}

.contact-details i {
    color: red;
    margin-right: 10px;
}

/* Form Success/Error Message */
#form-message {
  margin-bottom: 15px;
}

.success-message {
  background: #e8f8ee;
  color: #1f7a3f;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  border-left: 4px solid #1f7a3f;
}

.error-message {
  background: #ffeaea;
  color: #c62828;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  border-left: 4px solid #c62828;
}