/* ---------- General ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* ---------- Header ---------- */
/* ---------- Header ---------- */
.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 img {
  width: 100px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
}

.nav a:hover {
  opacity: 0.7;
}

.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;
}

/* When you scroll down */
.header.scrolled {
  background: #981E13; /* Red theme */
  padding: 15px 80px;
}
/* ---------- Hero Section ---------- */
.hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100vh;
  padding: 0 10%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #1e3aff, #8c1eff, #ff2050, #ff8cb0);
  background-size: 200% 200%;
  animation: gradientFlow 10s ease-in-out infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 50% 0%;
  }
}


.hero-content {
  max-width: 700px; /* limit text width */
}

.hero h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 100px;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin: 0;
  text-align: left;
  animation: fadeIn 1.5s ease forwards;
}



@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.hero-text {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .header {
    padding: 20px 30px;
  }

  .nav ul {
    gap: 20px;
  }

  .hero-text {
    font-size: 2.8rem;
  }
}

.hero-strip {
  background: #000; /* black strip */
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 10%;
  position: relative;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 18px;
}

.strip-container {
  display: inline-block;
  animation: stripMove 20s linear infinite;
}

.strip-item {
  display: inline-block;
  margin-right: 60px; /* space between items */
}
@keyframes stripMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}


/* About Section */
.about-section {
  padding: 120px 10% 100px; /* increased top padding to push heading slightly down */
  background-color: #fff;
  display: flex;
  justify-content: center;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
}

.about-left {
  flex: 1 1 35%;
  display: flex;
  align-items: flex-start;
}

.about-left h2 {
  font-family: 'Inter', sans-serif;
  font-size: 56px;       /* slightly bigger */
  font-weight: 300;      /* thin */
  line-height: 1.2;
  color: #981E13;        /* deep reddish-brown */
  margin-top: 20px;      /* push heading slightly lower */
}

.about-right {
  flex: 1 1 60%;
}

.about-right p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;      /* thin for content as well */
  color: #333;
  margin-bottom: 20px;
}

/* Banner animation */
.scroll-banner {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  opacity: 0;
  transform: translateY(100px);
  animation: bannerEnter 1.2s ease-out forwards;
}

@keyframes bannerEnter {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* VIEW Cursor */
.custom-cursor {
    position: fixed;
  top: 0;
  left: 0;
  width: 90px;
  height: 90px;
  background: black;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  z-index: 9999;
 transform: none;

  transition: opacity 0.3s ease, transform 0.15s ease-out;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.96);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  z-index: 999;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.overlay-content {
  position: relative;
  max-width: 800px;
  padding: 40px;
  text-align: center;
  line-height: 1.7;
  animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Close button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: white;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.close-btn:hover {
  transform: scale(1.2);
  color: #ff4b4b;
}





body {
  font-family: 'Poppins', sans-serif;
}

.services-section {
  padding: 80px 8%;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.service-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 18px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 15px 30px rgba(0,0,0,0.08);
}

.service-card h3 {
  color: #b30000;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  font-weight: 300;
}


/* Gradient Section - Make a Connection */
.connection-section {
  background: linear-gradient(135deg, #ff007f, #7928ca);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.connection-content {
  background: #fff;
  padding: 60px;
  border-radius: 12px;
  text-align: center;
  width: 85%;
  max-width: 1000px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.connection-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 50px;
}

.connection-columns {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.connection-item h4 {
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #666;
}

.connection-item h3 {
  font-size: 1.4rem;
  margin: 10px 0 5px;
  color: #000;
}

.connection-item p {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.email-btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1.5px solid #000;
  border-radius: 25px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: 0.3s;
}

.email-btn:hover {
  background: #000;
  color: #fff;
}

/* Black Footer */
.site-footer {
  background: #000;
  color: #fff;
  padding: 100px 50px 30px;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 60px;
}

.footer-logo {
  width: 50px;
  margin-bottom: 20px;
}

.footer-social h4 {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #aaa;
  text-transform: uppercase;
}

.footer-social a {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #b47cff;
}

.footer-right a {
  color: #fff;
  text-decoration: none;
  margin: 0 20px;
  font-size: 1rem;
  transition: 0.3s;
}

.footer-right a:hover {
  color: #b47cff;
}

/* Footer Bottom */
.footer-bottom {
  position: absolute;
  right: 50px;
  bottom: 15px;
  font-size: 0.8rem;
  color: #aaa;
}

.footer-bottom a {
  color: #aaa;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}

