body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0b0b0b;
  color: #fff;
   padding-top: 90px; 
}
@media (max-width: 900px) {
  body {
    padding-top: 70px;
  }
}
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 3.2rem;
  letter-spacing: 2px;
}

.btn-primary {
  margin-top: 20px;
  padding: 14px 36px;
  background: linear-gradient(45deg,#ff004c,#ffb347);
  color: #000;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
}
/* Header */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
}

.header-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ffb347;
  text-decoration: none;
}

.main-nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #fff;
  font-weight: 400;
}

.main-nav a:hover {
  color: #ff004c;
}

.btn-header {
  padding: 10px 22px;
  background: linear-gradient(45deg,#ff004c,#ffb347);
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.main-header.scrolled {
  background: rgba(0,0,0,0.9);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}


/*scroll effect 
.main-header.scrolled {
  background: rgba(0,0,0,0.9);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
/* HERO SECTION*/
.split-hero {
  display: flex;
   min-height: calc(100vh - 90px);;
  background: linear-gradient(to right,#0b0b0b,#050505);
}

/* LEFT */
.hero-left {
  width: 50%;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;

  /* Vibrant cinematic background */
  background: linear-gradient(
    135deg,
    #1a002b 0%,
    #2b004f 35%,
    #3d0066 60%,
    #120018 100%
  );

  position: relative;
  overflow: hidden;
}

/* Subtle light texture / glow */
.hero-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 179, 71, 0.18), transparent 45%),
    radial-gradient(circle at bottom right, rgba(255, 64, 129, 0.15), transparent 50%);
  z-index: 0;
}

.hero-left > * {
  position: relative;
  z-index: 1;
}

/* Headline – bold, entertainment-grade */
.hero-left h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;

  background: linear-gradient(
    90deg,
    #ffb347,
    #ff4081,
    #a855f7
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 10px 40px rgba(255, 64, 129, 0.25);
}

/* Body text – clean & premium */
.hero-left p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
}
/* Tablets & below */
@media (max-width: 991px) {
  .hero-left {
    width: 100%;
    padding: 70px 50px;
  }

  .hero-left h1 {
    font-size: 40px;
  }

  .hero-left p {
    font-size: 17px;
  }
}

/* Mobile devices */
@media (max-width: 767px) {
  .hero-left {
    width: 100%;
    padding: 60px 30px;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero-left p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 auto;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero-left {
    padding: 50px 22px;
  }

  .hero-left h1 {
    font-size: 28px;
  }

  .hero-left p {
    font-size: 15px;
  }
}



/* RIGHT */
.hero-right {
  width: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* SLIDES */
.hero-slide {
  position: absolute;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero-slide p {
  color: #bbb;
  margin-bottom: 25px;
}
/*hero video back ground*/
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: 1s ease;
  z-index: 1;
}

.bg-video.active {
  opacity: 0.35;
}

/* CTA */
.hero-btn {
  padding: 14px 36px;
  background: linear-gradient(45deg,#ff004c,#ffb347);
  color: #000;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
}
@media(max-width: 900px) {
  .split-hero {
    flex-direction: column;
  }

  .hero-left,
  .hero-right {
    width: 100%;
    padding: 60px 30px;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 34px;
  }
}
.progress-bar {
  position: absolute;
  bottom: 40px;
  width: 60%;
  height: 3px;
  background: rgba(255,255,255,0.2);
  z-index: 5;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(45deg,#ff004c,#ffb347);
}
/* HERO ANIMATION */
.hero-left {
  animation: slideLeft 1.2s ease forwards;
}

.hero-slide.active {
  animation: fadeUp 1s ease;
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-right {
  position: relative;
  width: 50%;
  overflow: hidden;
}

/* Background videos */
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}

.bg-video.active {
  opacity: 0.35;
}

/* Slides */
.hero-slide {
  position: absolute;
  z-index: 5;
  text-align: center;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: translateY(0);
}
.hero-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 12px;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.3);
  z-index: 6;
}
/* hero left */

.hero-left {
  position: relative;
  width: 50%;
  background-image:
    linear-gradient(
      to bottom right,
      rgba(0,0,0,0.75),
      rgba(20,0,10,0.85)
    ),
    url('assets/images/left-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 80px;
  display: flex;
  align-items: center;
}

.hero-left-overlay {
  z-index: 2;
}

.hero-left h1 {
  font-size: 48px;
  color: #ffb347;
  margin-bottom: 20px;
}

.hero-left p {
  font-size: 18px;
  line-height: 1.7;
  color: #ddd;
}

/* Footer statts */
.footer-bottom{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;                 /* not much spacing */
    flex-wrap:wrap;
    text-align:center;
    font-size:13px;
    padding:12px 10px;
}

.footer-bottom span{
    display:flex;
    align-items:center;
    gap:8px;
}

.fb-socials a{
    color:#fff;
    font-size:15px;
    margin:0 3px;
    transition:0.2s;
}

.fb-socials a:hover{
    opacity:0.7;
}

.fb-contact a{
    color:#fff;
    text-decoration:none;
}

.fb-contact a:hover{
    text-decoration:underline;
}


/* Footerr ends */
/* contact form -home page*/
.contact-section {
  padding: 100px 20px;
  background: radial-gradient(circle at top,#111,#050505);
  text-align: center;
}

.contact-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-form {
  max-width: 600px;
  margin: 40px auto 0;
  display: grid;
  gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

.contact-form button {
  padding: 14px;
  background: linear-gradient(45deg,#ff004c,#ffb347);
  border: none;
  border-radius: 40px;
  font-weight: 700;
  cursor: pointer;
}

/* base select */
.eco-contact select{
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    background:#0f1115;
    color:#fff;
    border:1px solid #2a2e3a;
    padding:12px 14px;
    border-radius:8px;
    outline:none;
}

/* remove blue focus ring */
.eco-contact select:focus{
    outline:none;
    box-shadow:none;
    border-color:#ff3d3d;
}

/* try to keep dark option list (works in some browsers only) */
.eco-contact select option{
    background:#151822;
    color:#fff;
}


/*about */
/* COMMON */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

/* ABOUT */
.about-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    #2a0040 0%,
    #3a005c 45%,
    #4b0072 100%
  );
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Soft light wash */
.about-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 15%,
    rgba(255, 179, 71, 0.2),
    transparent 40%
  );
  pointer-events: none;
}

/* Grid layout */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Text block */
.about-text h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  color: #ffb347;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
}

/* Highlight cards */
.about-highlight {
  display: grid;
  gap: 24px;
}

.about-highlight div {
  padding: 30px 24px;
  border-radius: 18px;
  text-align: center;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);

  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* Numbers */
.about-highlight h3 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffb347;
}

/* Labels */
.about-highlight span {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* SERVICES */
.services-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    #3a005c 0%,
    #4b0072 45%,
    #5b1a85 100%
  );
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Ambient glow for depth */
.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,179,71,0.16), transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(168,85,247,0.14), transparent 50%);
  pointer-events: none;
}

/* Grid layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.service-card {
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.15),
    rgba(255,255,255,0.06)
  );
  padding: 34px 30px;
  border-radius: 22px;
  text-decoration: none;
  color: #ffffff;

  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
@media (hover: hover) {
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow:
      0 25px 55px rgba(0,0,0,0.35),
      0 0 0 1px rgba(255,179,71,0.25);
  }
}
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffb347;
}
.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
}
.service-card span {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: #ffb347;
  letter-spacing: 0.3px;
}
/* Tablets */
@media (max-width: 991px) {
  .services-section {
    padding: 80px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .services-section {
    padding: 70px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-card {
    padding: 28px 24px;
    border-radius: 18px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .services-section {
    padding: 60px 0;
  }

  .service-card {
    padding: 24px 20px;
  }
}

/* CLIENTS */
.clients-section {
  background: radial-gradient(circle at center, #220015, #000);
  color: #fff;
  text-align: center;
}

.clients-section h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.clients-section p {
  color: #ccc;
  font-size: 16px;
}

/* FOUNDER */
.founder-section {
  background: #0b0b0b;
  color: #fff;
}

.founder-card {
  max-width: 700px;
  margin: auto;
  background: rgba(255,255,255,0.06);
  padding: 50px;
  border-radius: 24px;
  text-align: center;
}

.founder-name {
  font-size: 22px;
  color: #ffb347;
  margin-bottom: 10px;
}

/* MOBILE */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }

  .about-text h2 {
    font-size: 30px;
  }
}
.about-section {
  background:
    linear-gradient(
      135deg,
      rgba(10,0,20,0.95),
      rgba(0,0,0,0.9)
    ),
    url('assets/images/about-bg.jpg');
  background-size: cover;
  background-position: center;
}
.services-section {
  background:
    repeating-linear-gradient(
      45deg,
      #0b0b0b,
      #0b0b0b 10px,
      #0e0e0e 10px,
      #0e0e0e 20px
    );
}
.clients-section {
  background:
    radial-gradient(
      circle at center,
      rgba(255,179,71,0.15),
      rgba(0,0,0,0.95)
    );
}
.founder-section {
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.85),
      rgba(0,0,0,0.95)
    ),
    url('assets/images/founder-bg.jpg');
  background-size: cover;
  background-position: center;
}
.contact-section {
  background:
    linear-gradient(
      135deg,
      #ff004c,
      #ff7a18,
      #ffb347
    );
  color: #000;
}

.contact-section h2,
.contact-section p {
  color: #000;
}
section {
  position: relative;
}

section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg,#ff004c,#ffb347);
  opacity: 0.4;
}
@media (max-width: 900px) {

  .split-hero {
    flex-direction: column;
  }

  .hero-left,
  .hero-right {
    width: 100%;
    min-height: 50svh;
    padding: 40px 20px;
  }

  .hero-left {
    background-position: center;
    text-align: center;
  }

  .hero-left-overlay {
    max-width: 100%;
  }
}
.hero-right {
  position: relative;
  min-height: 50svh;
}

/* Desktop video */
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* MOBILE: hide video, show image */
@media (max-width: 900px) {
  .bg-video {
    display: none;
  }
}
.bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}

.bg-image.active {
  opacity: 0.35;
}

/* Desktop hides images */
@media (min-width: 901px) {
  .bg-image {
    display: none;
  }
}
.hero-slide {
  z-index: 5;
  max-width: 90%;
  padding: 20px;
}

.hero-slide h2 {
  font-size: 32px;
}

@media (max-width: 900px) {
  .hero-slide h2 {
    font-size: 26px;
  }
}
@media (max-width: 900px) {
  .hero-right {
    min-height: 60svh;
  }
}
/* MOBILE HEADER FIX */
@media (max-width: 900px) {

  .main-header {
    height: 70px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
  }

  .header-wrap {
    padding: 12px 16px;
  }

  /* LOGO SIZE */
  .logo a {
    font-size: 20px;
    letter-spacing: 2px;
  }

  /* If logo is an image */
  .logo img {
    max-height: 86px;
    width: auto;
  }

  /* HAMBURGER ALIGNMENT */
  .hamburger {
    margin-left: auto;
  }
}
@media (max-width: 900px) {
  body {
    padding-top: 70px;
  }
}
@media (max-width: 900px) {
  .main-header.scrolled .logo a {
    font-size: 18px;
  }

  .main-header.scrolled .logo img {
    max-height: 52px;
  }
}
.main-header {
  height: 85px;              /* reduced from 90px */
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
}
@media (max-width: 900px) {
  .main-header {
    height: 56px;
  }
}
.logo img {
 height:60px;
  width: auto;
}

@media (max-width: 900px) {
  .logo img {
    height: 58px;
  }
}
body {
  padding-top: 68px;
}

@media (max-width: 900px) {
  body {
    padding-top: 56px;
  }
}
.header-wrap {
  padding: 8px 16px;
}
.main-header.scrolled {
  height: 52px;
}

.main-header.scrolled .logo img {
  height: 74px;
}
.main-header {
  background:
    linear-gradient(
      135deg,
      rgba(255, 0, 76, 0.35),
      rgba(255, 179, 71, 0.35)
    );
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 8px 30px rgba(255, 0, 76, 0.25);
}
.main-header {
  background:
    linear-gradient(
      90deg,
      rgba(20, 0, 30, 0.85),
      rgba(60, 0, 40, 0.85)
    );
  backdrop-filter: blur(10px);
}
.main-header {
  background: transparent;
  backdrop-filter: blur(14px) saturate(150%);
}

.mobile-nav{
    position:fixed;
    top:70px;               /* below header */
    right:12px;

    width:260px;
    max-width:80vw;

    background:rgba(20,22,30,0.85);
    backdrop-filter: blur(10px);

    border-radius:16px;

    padding:18px 18px;

    transform:translateX(120%);
    transition:transform .35s ease;

    z-index:999;

    display:flex;
    flex-direction:column;
    gap:14px;
}

/* OPEN STATE */
.mobile-nav.open{
    transform:translateX(0);
}

.mobile-nav a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    padding:8px 6px;
    border-radius:8px;
}

.mobile-nav a:hover{
    background:rgba(255,255,255,0.08);
}


.mobile-nav.open{
    right:0;
}
.hamburger{
    width:28px;
    height:20px;
    display:none;
    flex-direction:column;
    justify-content:space-between;
    cursor:pointer;
    position:relative;
    z-index:1001;
}

.hamburger span{
    display:block;
    height:3px;
    width:100%;
    background:#fff;
    border-radius:3px;
    transition:.3s ease;
    display:flex;
    flex-direction:column;
    gap:5px;   /* ← this is the gap */
}

/* animation */
.hamburger.active span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}


/* mobile only */
@media(max-width:900px){
    .hamburger{ display:flex; }
    .main-nav,
    .header-cta{ display:none; }
}


@media(max-width:900px){
    .hamburger{
        display:block;
    }

    .main-nav,
    .header-cta{
        display:none;
    }
}

@media (max-width:900px){

  .header-wrap{
    position:relative;
    min-height:64px;   /* control header height */
    align-items:center;
  }

  .logo{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
  }

  .logo img{
    display:block;
    max-height:70px;  /* adjust if needed */
  }

  .hamburger{
    position:absolute;
    right:16px;
    top:50%;
    transform:translateY(-50%);
  }

}

