/* ---------- General ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* ---------- Header ---------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 80px;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease;
}

/* Logo */
.logo-img {
  width: 120px;
  transition: 0.3s ease;
}

/* Nav Links */
.header-center a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  margin: 0 22px;
  transition: 0.3s;
}

.header-center a:hover,
.header-center a.active {
  opacity: 0.7;
}

/* Contact Button */
.contact-btn {
   color: #fff;
  border: 1px solid #fff;
  padding: 8px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #fff;
  color: #981E13;
}

/* Scroll Effect */
.main-header.scrolled {
  background: #981E13; /* Same Red as index page */
  padding: 15px 80px;
}

/* Responsive base handled by responsive.css */

/* HERO BACKGROUND (More Movable Like Digitas) */
.services-hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at 20% 30%, #7A00FF, #C3007A, #1EB980, #7A00FF);
    background-size: 300% 300%;
    animation: moveGradient 6.5s infinite alternate ease-in-out;
}

@keyframes moveGradient {
    0% { background-position: 0% 30%; }
    50% { background-position: 80% 60%; }
    100% { background-position: 20% 80%; }
}

/* HERO TEXT */
.hero-content h1 {
    color: #fff;
    font-size: 58px;
font-weight: 300;
letter-spacing: 0.5px;
    text-align: center;
}


/* 2-Column Responsive Grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  padding: 0 8% 140px 8%;
}

/* Image Container */
.img-wrap {
  overflow: hidden;
  border-radius: 14px;
  height: 420px;
}

/* Image Style + Zoom Effect */
.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(0.19, 1, 0.22, 1);
}

.work-item:hover .img-wrap img {
  transform: scale(1.15);
}

/* Text */
.work-item h3 {
  margin-top: 22px;
  font-size: 26px;
  font-weight: 300;
  color: #8B0000;
}

.work-item p {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 200;
  opacity: 0.9;
}

/* Scroll Animation */
.work-item {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.work-item.active {
  opacity: 1;
  transform: translateY(0);
}
.big-heading-section {
  width: 100%;
  padding: 140px 0 100px 0;
  background: #fff;
  display: flex;
  align-items: flex-start;
}

.big-heading {
  font-size: 80px;
  font-weight: 200; /* thin, elegant */
  color: #8B0000; /* dark red */
  line-height: 1.1;
  text-align: left;
  margin-left: 8%;
  font-family: "Helvetica Neue", "Inter", sans-serif;
}

/* --- SCROLL ANIMATION --- */

/* initial state */
.reveal-text {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.8s cubic-bezier(0.19, 1, 0.22, 1); /* luxury smooth fade */
}

/* when visible */
.reveal-text.active {
  opacity: 1;
  transform: translateY(0);
}


/* Gradient Section */
.contact-section {
  background: linear-gradient(135deg, #ff00d4, #00e1ff, #7b00ff);
  padding: 120px 40px;
  display: flex;
  justify-content: center;
}

.contact-box {
  background: white;
  padding: 60px 40px;
  width: 85%;
  max-width: 1200px;
  border-radius: 6px;
}

.contact-box h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 40px;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.contact-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-col h3 {
  font-size: 22px;
  margin: 8px 0 4px;
}

.contact-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 22px;
  border: 1.5px solid black;
  border-radius: 40px;
  text-decoration: none;
  color: black;
  transition: 0.3s;
}

.contact-btn:hover {
  transform: scale(1.05);
}

/* Connect Form */
.connect-form {
  background: #e9e9e9;
  padding: 60px 20px;
  text-align: center;
}

.connect-form input {
  width: 260px;
  padding: 14px;
  border: none;
  border-bottom: 1.5px solid black;
  background: transparent;
  margin-right: 12px;
  outline: none;
}

.submit-btn {
  padding: 12px 30px;
  border-radius: 40px;
  border: 1.5px solid black;
  background: none;
  cursor: pointer;
  transition: .3s;
}
.submit-btn:hover{transform:scale(1.05);}

/* Footer */
footer {
  background: #000;
  color: white;
  padding: 80px 40px 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-logo {
  width: 60px;
  margin-bottom: 20px;
}

.social-links li {
  list-style: none;
  margin: 4px 0;
}

.social-links a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  opacity: 0.8;
}

.footer-right ul li {
  margin: 6px 0;
}

.footer-right ul li a {
  color: white;
  opacity: 0.9;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #444;
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 14px;
  opacity: 0.7;
}

/* Responsive */
@media(max-width:768px){
  .contact-box { width: 100%; }
  .contact-grid { flex-direction: column; text-align: center; gap: 40px; }
  .footer-content { flex-direction: column; text-align: center; gap: 40px; }
}

