/* General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Comic Neue', 'Arial', sans-serif;
}
body {
  background: #111;
  color: #fff;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}



/* Spacing between sections */
section {
  padding: 80px 20px;
}

/* Animated background for entire page */
#animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}



/* Default desktop styles */
.logo-slogan {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Comic Neue', sans-serif;
  font-weight: 700;
  font-size: 2rem;
}

.logo-slogan .lets {
  color: #ffffff;
}

.logo-slogan .together {
  color: #FF6600;
}

.logo-slogan img {
  height: 7.8rem;
  width: auto;
  display: inline-block;
  object-fit: contain;
  transform: translateY(4%);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .logo-slogan {
    font-size: 1.4rem;            /* smaller text */
    gap: 4px;
  }
  .logo-slogan img {
    height: 2rem;                  /* scale down logo */
    transform: translateY(0);      /* remove vertical offset */
  }
}





/* Section Headings */
h2 {
  font-size: 2.8rem;
  color: #FF6600;
  margin-bottom: 40px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}




/* --- HERO (fixed + enhanced) --- */
.hero {
  position: relative;
  min-height: 80vh;  /* slightly shorter to move it up */
  padding: 80px 20px 40px;  /* less top padding */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  z-index: 1;
  overflow: visible;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  text-align: center;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  color: #FF6600;
  margin-bottom: 14px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.15rem;
  color: #eee;
  margin-bottom: 28px;
  line-height: 1.55;
}

/* Rotating word – Pop Art Bubble Container Style */
.hero-title-rotator {
  display: inline-block;
  padding: 12px 24px;                  /* bubble padding */
  font-family: 'Comic Neue', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #FF6600;                      /* text color */
  background: #f5f5f5;                 /* slightly darker white bubble */
  border-radius: 16px;                  /* rounded bubble edges */
  text-align: center;
  position: relative;
  transition: all 0.3s ease;

  /* Comic-style orange glow around the bubble */
  box-shadow: 
    0 0 12px 4px rgba(255,102,0,0.6),   /* soft orange glow */
    4px 4px 0 #ff4500,                   /* layered comic shadow */
    8px 8px 0 #f5f5f5;

  /* Subtle burst polygon shape */
  clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
}

/* Rotating word styling (text inside container) */
.hero-title-rotator .rotate-word {
  display: inline-block;
  opacity: 1;
  transition: opacity 0.6s ease, transform 0.3s ease;
}

/* Pop-art hover effect – bubble grows and tilts */
.hero-title-rotator:hover {
  transform: scale(1.2) rotate(-5deg);
  box-shadow:
    0 0 20px 6px rgba(255,102,0,0.8),   /* stronger glow on hover */
    6px 6px 0 #ff4500,
    12px 12px 0 #f5f5f5;
}


/* Hero buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 18px 0 32px;
}
.hero-buttons a {
  padding: 12px 26px;
  background: linear-gradient(135deg, #FF6600, #FF4500);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255,102,0,0.4);
  transition: all 0.3s ease;
}
.hero-buttons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,102,0,0.6);
  background: linear-gradient(135deg, #FF4500, #FF6600);
}

/* Horizontal hero cards (smaller, rectangular) */
.hero-cards.card-grid {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}
.hero-cards .card {
  flex: 1 1 220px;
  max-width: 260px;
  background: #111;
  padding: 16px 18px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  color: #eee;
  text-align: left;
  transition: transform 0.3s ease;
}
.hero-cards .card:hover {
  transform: translateY(-6px);
}
.hero-cards .card-icon {
  font-size: 36px;
  margin-bottom: 10px;
  color: #FF6600;
}
.hero-cards h3 {
  font-size: 1.2rem;
  color: #FF6600;
  margin-bottom: 8px;
}
.hero-cards p {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.4;
}

/* Stats strip */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
  font-size: 0.95rem;
  color: #eee;
  flex-wrap: wrap;
}
.hero-stats div { text-align: center; }
.hero-stats span {
  color: #FF6600;
  font-size: 1.4rem;
  font-weight: bold;
  display: block;
  margin-bottom: 2px;
}

.hero-logos {
  overflow: hidden;
  position: relative;
  height: 50px; /* adjust to fit logos */
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.hero-logos .logos-track {
  display: flex;
  align-items: center;
  gap: 36px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  white-space: nowrap;
}

.hero-logos img {
  height: 38px;
  width: auto;
  opacity: 0.9;
  filter: drop-shadow(0 0 6px rgba(255,102,0,0.35));
  transition: transform .25s ease, opacity .25s ease;
}

.hero-logos img:hover {
  transform: scale(1.06);
  opacity: 1;
}


/* Scroll cue */
.scroll-down {
  margin-top: 28px;
  font-size: 1.6rem;
  color: #FF6600;
  animation: bounce 1.5s infinite;
  cursor: pointer;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }

/* Responsive tweaks */
@media (max-width: 992px) {
  .hero { padding-top: 70px; }
  .hero-content h1 { font-size: 2.6rem; }
}
@media (max-width: 640px) {
  .hero-content h1 { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .hero-logos img { height: 30px; }
  .hero-cards { flex-direction: column; align-items: center; }
}


/* ===== Global Button Styles ===== */
.btn {
  padding: 12px 26px;
  background: linear-gradient(135deg, #FF6600, #FF4500);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255,102,0,0.4);
  transition: all 0.3s ease;
  display: inline-block;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,102,0,0.6);
  background: linear-gradient(135deg, #FF4500, #FF6600);
}

/* ===== Button Group (flex layout) ===== */
.btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 18px 0 32px;
}



/* Cards */
.card-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 25px; 
  margin-top: 50px; 
}
.card { 
  background: rgba(255, 255, 255, 0.05); 
  border: 1px solid rgba(255, 102, 0, 0.3); 
  padding: 30px; 
  border-radius: 20px; 
  transition: all 0.3s ease;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  text-align: center;
}
.card:hover { 
  transform: translateY(-7px); 
  border-color: #FF6600; 
  box-shadow: 0 10px 25px rgba(255,102,0,0.2);
}
.card h3 { 
  margin-top: 15px; 
  margin-bottom: 15px; 
  color: #FF6600; 
  text-align: center;
}
.card p { 
  margin-bottom: 20px; 
  color: #ddd; 
  line-height: 1.5; 
  text-align: center;
}
.card-icon { 
  font-size: 50px; 
  color: #FF6600; 
  margin-bottom: 20px; 
}



/* Our Work images */
#work img { 
  width: 100%; 
  height: 200px; 
  object-fit: cover; 
  border-radius: 10px; 
  margin-bottom: 15px; 
  display: block; 
}

/* CTA Banner */
.cta-banner { 
  max-width: 1000px; 
  margin: 60px auto; 
  padding: 50px 40px; 
  background: linear-gradient(135deg,#FF6600,#ff9933); 
  color: #111; 
  border-radius: 25px; 
  box-shadow: 0 15px 35px rgba(255,102,0,0.4); 
  text-align: center; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-banner:hover { 
  transform: translateY(-5px) scale(1.02); 
  box-shadow: 0 20px 50px rgba(255,102,0,0.5);
}
.cta-banner h2 { 
  font-size: 2.5rem; 
  margin-bottom: 25px; 
  font-weight: bold; 
  color: #fff; 
  text-align: center;
}
.cta-banner .btn-primary { 
  background: #fff; 
  color: #FF6600; 
  font-weight: bold; 
  padding: 15px 40px; 
  border-radius: 30px; 
  box-shadow: 0 5px 20px rgba(255,102,0,0.3);
}
.cta-banner .btn-primary:hover { 
  background: #FF6600; 
  color: #fff; 
  transform: translateY(-3px) scale(1.05); 
  box-shadow: 0 10px 30px rgba(255,102,0,0.5);
}

/* Navbar */
.navbar { 
  position: sticky; 
  top: 0; 
  width: 100%; 
  height: 80px; 
  padding: 0 40px; 
  background: rgba(0,0,0,0.85); 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  z-index: 1000;
}
.navbar .logo img { 
  height: 70px; 
  width: auto; 
  display: block; 
  object-fit: contain; 
  filter: drop-shadow(0 0 10px rgba(255,102,0,0.7)); 
}
.nav-links { 
  list-style: none; 
  display: flex; 
  gap: 25px; 
}
.nav-links li a { 
  color: #fff; 
  text-decoration: none; 
  font-weight: 500; 
  transition: color 0.3s ease, transform 0.2s ease; 
}
.nav-links li a:hover, .nav-links li a.active { 
  color: #FF6600; 
  transform: scale(1.05); 
}

/* Hamburger */
.hamburger { 
  display: none; 
  flex-direction: column; 
  justify-content: space-between; 
  width: 28px; 
  height: 22px; 
  cursor: pointer; 
  z-index: 1100; 
}
.hamburger span { 
  display: block; 
  height: 3px; 
  width: 100%; 
  background: #FF6600; 
  border-radius: 3px; 
  transition: 0.3s; 
}
.hamburger.toggle span:nth-child(1) { 
  transform: rotate(45deg) translate(5px,5px); 
}
.hamburger.toggle span:nth-child(2) { 
  opacity: 0; 
}
.hamburger.toggle span:nth-child(3) { 
  transform: rotate(-45deg) translate(5px,-5px); 
}

/* Mobile Nav */
@media screen and (max-width:768px){
  .hamburger { 
    display: flex; 
    position: absolute; 
    right: 20px; 
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-links { 
    position: absolute; 
    top: 100px; 
    right: 0; 
    width: 100%; 
    flex-direction: column; 
    background: rgba(0,0,0,0.95);
    display: none; 
    text-align: center; 
    padding: 20px 0; 
    gap: 15px; 
    transition: all 0.3s ease-in-out; 
  }

  .nav-links.active { display: flex; }

  .nav-links li { margin: 15px 0; }
  
  .navbar { 
    height: 100px;
    padding: 0 20px;
    position: relative;
  }
  
  .navbar .logo-slogan {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .navbar .logo-slogan img { 
    height: 85px !important;
    width: auto;
  }
}

/* Desktop override */
@media screen and (min-width:769px){
  .nav-links { display: flex !important; flex-direction: row; gap: 25px; }
}

/* Footer */
footer {
  background: linear-gradient(135deg,#111,#222);
  color: #fff;
  padding: 60px 20px 40px;
  border-top: 5px solid #FF6600;
  font-family: 'Comic Neue', sans-serif;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-info h3, .footer-links h4, .footer-services h4, .footer-social h4 {
  color: #FF6600;
  font-weight: bold;
}
.footer-links ul li a, .footer-services ul li a, .footer-social ul li a {
  color: #ccc;
  transition: all 0.3s ease;
}
.footer-links ul li a:hover, .footer-services ul li a:hover, .footer-social ul li a:hover {
  color: #FF6600;
  transform: translateX(5px);
}
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid rgba(255,102,0,0.3);
  padding-top: 20px;
}




/* Animated Circles (all page) */
.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,102,0,0.4); /* All orange */
  animation: float 10s infinite;
}
@keyframes float {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  50% { transform: translateY(-200px) scale(1.2); opacity: 0.5; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}





#projects .card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px; /* slightly larger gap for bigger cards */
}

#projects .card {
  display: flex;
  flex-direction: row; /* horizontal rectangle */
  width: 420px;        /* bigger than before */
  max-width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

#projects .card:hover {
  transform: translateY(-6px);
}

#projects .card img {
  width: 160px;   /* bigger left image */
  height: 160px;  /* keep square aspect */
  object-fit: cover;
}

#projects .card div {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#projects .card h3 {
  font-size: 1.25rem; /* slightly bigger title */
  color: #FF6600;
  margin-bottom: 8px;
}

#projects .card p {
  font-size: 1rem;   /* slightly bigger text */
  color: #eee;
  line-height: 1.5;
  margin-bottom: 12px;
}

#projects .card .btn {
  align-self: start;
  font-size: 1rem;   /* bigger button text */
  padding: 12px 24px;
}


/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;              /* width of the scrollbar */
}

::-webkit-scrollbar-track {
  background: #111;          /* background of the track */
}

::-webkit-scrollbar-thumb {
  background: #FF6600;       /* orange moving part */
  border-radius: 10px;       /* rounded edges */
}

::-webkit-scrollbar-thumb:hover {
  background: #e65c00;       /* slightly darker orange on hover */
}


/* ===== Projects cards vertical layout with centered logos ===== */
#projects .card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Card container */
#projects .card {
  display: flex;
  flex-direction: column;      /* vertical layout */
  align-items: center;         /* center image and text */
  width: 320px;
  background: #111;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  color: #eee;
  transition: transform 0.3s ease;
  text-align: center;
}

#projects .card:hover {
  transform: translateY(-5px);
}

/* Logo at the top */
#projects .card img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: contain;
  margin-bottom: 4px;      /* tighter spacing */
}

/* Card content container */
#projects .card .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;                /* spacing between h3 and p */
  padding: 0;
  margin: 0;
  width: 100%;
}

/* Card text */
#projects .card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #FF6600;
}

#projects .card p {
  font-size: 0.85rem;
  line-height: 1.3;
  margin: 0;
  flex: 0;
}

/* Buttons: fully match global .btn style */
#projects .card .btn {
  align-self: center;
  margin-top: 8px;             /* small spacing from text */
  
  /* Reset any inherited styles from card */
  background: linear-gradient(135deg, #FF6600, #FF4500);
  color: #fff;
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(255,102,0,0.4);
  padding: 12px 26px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-block;
  outline: none;
}

#projects .card .btn:hover,
#projects .card .btn:focus {
  background: linear-gradient(135deg, #FF4500, #FF6600);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,102,0,0.6);
  outline: none;
}




    /* Client logos section */
    #clients {
      padding: 60px 20px;
      text-align: center;
    }
   
    .clients-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      align-items: center;
    }
    .clients-grid img {
      max-width: 120px;
      max-height: 80px;
      object-fit: contain;
      transition: transform 0.3s;
    }
    .clients-grid img:hover { transform: scale(1.1); }







    /* ==== Large screen / TV / Ultra-wide adjustments ==== */
@media screen and (min-width: 1600px) {

  /* Hero Section */
  .hero {
    min-height: 100vh; /* full viewport height */
    padding: 120px 60px 60px;
  }
  .hero-content h1 {
    font-size: 4.5rem; /* bigger heading */
  }
  .hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }
  .hero-buttons a {
    padding: 16px 36px;
    font-size: 1.2rem;
  }
  .hero-cards.card-grid {
    gap: 28px;
  }
  .hero-cards .card {
    max-width: 300px;
    padding: 20px;
  }
  .hero-cards h3 { font-size: 1.5rem; }
  .hero-cards p { font-size: 1rem; }

  /* Stats */
  .hero-stats {
    font-size: 1.2rem;
    gap: 50px;
  }
  .hero-stats span { font-size: 2rem; }

  /* Hero Logos */
  .hero-logos {
    height: 70px;
  }
  .hero-logos img {
    height: 50px;
    margin: 0 20px;
  }

  /* Section Headings */
  h2 {
    font-size: 4rem;
    margin-bottom: 60px;
  }

  /* Projects Cards */
  #projects .card-grid {
    gap: 40px;
  }
  #projects .card {
    width: 380px;
  }
  #projects .card img {
    width: 160px;
    height: 160px;
  }
  #projects .card h3 { font-size: 1.5rem; }
  #projects .card p { font-size: 1.1rem; }
  #projects .card .btn { font-size: 1.1rem; padding: 14px 30px; }

  /* Clients Grid */
  .clients-grid {
    gap: 50px;
  }
  .clients-grid img {
    max-width: 180px;
    max-height: 120px;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 70px 60px;
    max-width: 1200px;
  }
  .cta-banner h2 { font-size: 3rem; }
  .cta-banner .btn-primary { padding: 18px 50px; font-size: 1.2rem; }

  /* Navbar spacing */
  .navbar {
    height: 100px;
    padding: 0 60px;
  }
  .nav-links li a {
    font-size: 1.1rem;
  }

  /* Footer */
  .footer-container {
    gap: 80px;
  }
  .footer-info p, 
  .footer-links ul li a, 
  .footer-services ul li a, 
  .footer-social ul li a {
    font-size: 1.1rem;
  }
}



.footer-bottom .footer-link {
  color: #FF6600; /* same as other footer links */
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom .footer-link:hover {
  color: #ccc;
  transform: translateX(5px);
}
