@import url('https://fonts.googleapis.com/css2?family=Playball&display=swap');
/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primary Brand Colors */
  --color-dark-green: #1f80e0;
  --color-yellow: #ffdd57;
  --color-deep-navy: #0f172a;

  /* Accent Colors */
  --color-accent-green: #22c55e;
  --color-light-gray: #f8f9fa;
  --color-white: #ffffff;
  --color-gray-text: #dddddd;

  /* Text & Shadows */
  --color-text-main: #ffffff;
  --color-shadow: rgba(0, 0, 0, 0.1);

    --bg-dark: #1e1e1e;
  --color-light: #f9f9f9;
  --color-overlay: rgba(0, 0, 0, 0.6);

  --main-bg: #101820;
  --accent: #ffdd57;
  --white: #ffffff;
  --overlay-dark: rgba(0, 0, 0, 0.6);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --text-light: #d3d3d3;
}

body, html {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  background: var(--color-light-gray);
  color: var(--color-text-main);
}

/* Navbar */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: var(--color-deep-navy);
  color: var(--color-text-main);
  z-index: 1000;
  box-shadow: 0 2px 5px var(--color-shadow);
}
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logger h1{
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: lighter;
    font-family: 'Playball', cursive;
}

.logo-img{
  max-width: 40px;
  border-radius: 50%;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.logo-img:hover{
  transform: scale(2.05);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}
.nav-links a {
  color: var(--color-text-main);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--color-yellow);
}

/* Hero Section */
 .header {
  height: 100vh;
  background: linear-gradient(to right, var(--color-dark-green), var(--color-deep-navy));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}
.header .hero-content {
  max-width: 700px;
  display: flex;
   flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  animation: fadeInUp 1.5s ease;
}
.main-heading {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
}
.main-heading span {
  color: var(--color-yellow);
}
.subheading {
  font-size: 1.2rem;
  margin: 1rem 0;
  color: var(--color-gray-text);
}
.cta-buttons {
  margin-top: 1.5rem;
}
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.btn-primary {
  background: var(--color-accent-green);
  color: var(--color-white);
  margin-right: 1rem;
}
.btn-primary:hover {
  transform: scale(1.05);
}
.btn-secondary {
  background: transparent;
  border: 2px solid var(--color-yellow);
  color: var(--color-yellow);
}
.btn-secondary:hover {
  transform: scale(1.05);
}

/* Floating Icons */
.floating-icons .float-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.2;
  animation: floatIconer 6s ease-in-out infinite;
}
@keyframes floatIconer {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--color-white);
}

/* Responsive */
@media (max-width: 768px) {
  .main-heading {
    font-size: 2rem;
  }
 
 .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-deep-navy);
    flex-direction: column;
    display: none;
    text-align: center;
    padding: 1rem 0;
    transition: all 0.3s ease-in-out;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin: 1rem 0;
  }

  .nav-content {
    position: relative;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ======= Home Section ======= */
.hero {
  background: linear-gradient(135deg, var(--color-dark-green), var(--color-deep-navy));
  color: var(--color-white);
  min-height: 100vh;
  padding: 6rem 2rem 3rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.container.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 500px;
  animation: fadeInUp 1.2s ease forwards;
}

.main-heading {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.main-heading span {
  color: var(--color-yellow);
}

.subheading {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--color-yellow);
  font-weight: 500;
  max-width: 460px;
}

.cta-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2.2rem;
  border-radius: 40px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease;
  user-select: none;
}

.btn-primary {
  background-color: var(--color-yellow);
  color: var(--color-deep-navy);
  box-shadow: 0 8px 15px rgba(255, 221, 87, 0.3);
}
.btn-primary:hover,
.btn-primary:focus {
  transform: scale(1.05);
  box-shadow: 0 12px 20px rgba(255, 221, 87, 0.6);
}

.btn-secondary {
  border: 2px solid var(--color-yellow);
  color: var(--color-yellow);
  background: transparent;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--color-yellow);
  color: var(--color-deep-navy);
  transform: scale(1.05);
}

/* Hero Image */
.hero-image {
  flex: 1 1 400px;
  max-width: 500px;
  perspective: 1000px;
  animation: fadeInRight 1.5s ease forwards;
}
.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}
.hero-image img:hover {
  transform: rotateY(15deg) rotateX(8deg) scale(1.05);
}

/* Floating Icons */
/* Position floating icon containers */
.floating-icons.left {
  position: absolute;
  top: 15%;
  left: 5%;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  pointer-events: none;
  z-index: 5;
}

.floating-icons.right {
  position: absolute;
  top: 10%;
  right: 5%;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  pointer-events: none;
  z-index: 5;
}

/* Basic icon style */
.float-icon {
  font-size: 2.5rem;
  color: var(--color-yellow);
  opacity: 0.15;
  transform-origin: center;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}

/* Left icons: float vertically + small horizontal move left→right */
.floating-icons.left .float-icon {
  animation-name: floatLeft;
  animation-duration: 5s;
}

/* Right icons: float vertically + small horizontal move right→left */
.floating-icons.right .float-icon {
  animation-name: floatRight;
  animation-duration: 6s;
}

/* Stagger animation delays for left icons */
.floating-icons.left .icon1 { animation-delay: 0s; }
.floating-icons.left .icon2 { animation-delay: 1.3s; }

.floating-icons.right .icon3 { animation-delay: 0s; }
.floating-icons.right .icon4 { animation-delay: 1.5s; }
.floating-icons.right .icon5 { animation-delay: 3s; }


/* Keyframes for left floating icons */
@keyframes floatLeft {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.15;
  }
  50% {
    transform: translate(10px, -20px) rotate(15deg);
    opacity: 0.25;
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.15;
  }
}

/* Keyframes for right floating icons */
@keyframes floatRight {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.15;
  }
  50% {
    transform: translate(-10px, -20px) rotate(-15deg);
    opacity: 0.25;
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.15;
  }
}


.float-icon {
  font-size: 2.5rem;
  color: var(--color-yellow);
  opacity: 0.15;
  animation: floatIcon 6s ease-in-out infinite;
  transform-origin: center;
}

/* Stagger animations for icons */
.float-icon.icon1 {
  animation-delay: 0s;
}
.float-icon.icon2 {
  animation-delay: 1.3s;
}
.float-icon.icon3 {
  animation-delay: 2.6s;
}
.float-icon.icon4 {
  animation-delay: 4s;
}
.float-icon.icon5 {
     padding-right: 3rem;
  animation-delay: 5.5s;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.15;
  }
  50% {
    transform: translateY(-20px) rotate(15deg);
    opacity: 0.25;
  }
}

/* Scroll Cue */
.scroll-cue {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--color-yellow);
  font-weight: 600;
  font-size: 0.9rem;
  user-select: none;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--color-yellow);
  border-radius: 25px;
  margin: 0 auto 8px;
  position: relative;
}

.wheel {
  width: 6px;
  height: 10px;
  background: var(--color-yellow);
  border-radius: 3px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelMove 2s infinite;
}

@keyframes wheelMove {
  0% {
    top: 8px;
    opacity: 1;
  }
  100% {
    top: 28px;
    opacity: 0;
  }
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .container.hero-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .hero-text,
  .hero-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .main-heading {
    font-size: 2.2rem;
  }

  .subheading {
    max-width: 100%;
  }

  .floating-icons {
    top: auto;
    right: 10px;
    bottom: 140px;
    flex-direction: row;
    gap: 1.2rem;
  }

  .float-icon {
    font-size: 2rem;
    opacity: 0.1;
  }
}


@media (max-width: 480px) {
  .main-heading {
    font-size: 1.6rem;
  }

.hero{
  align-items: center;
  justify-content: center;
}
  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}
/* about section */

.about-section {
  position: relative;
  min-height: 100vh;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  z-index: 1;
}

.about-heading span {
  display: inline-block;
  opacity: 0;
 
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.about-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  text-align: center;
}

.about-content h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.about-subtitle {
  font-size: 1.25rem;
  color: var(--color-yellow);
  margin-bottom: 2rem;
}

.about-description p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--color-light);
  line-height: 1.6;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.value-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  width: 250px;
  border-radius: 1rem;
  transition: transform 0.4s ease;
  backdrop-filter: blur(6px);
}

.value-box:hover {
  transform: translateY(-10px) scale(1.03);
}

.value-box i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-yellow);
}

.value-box h4 {
  margin-bottom: 0.5rem;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--color-yellow);
  color: var(--bg-dark);
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 8px 20px rgba(255, 221, 87, 0.3);
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #e6c94e;
}

@media (max-width: 768px) {
  .about-values {
    flex-direction: column;
    align-items: center;
  }

  .value-box {
    width: 100%;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-subtitle {
    font-size: 1rem;
  }
}

/* services */
.services-section {
  position: relative;
  background: var(--main-bg);
  color: var(--white);
  padding: 5rem 2rem;
  overflow: hidden;
}

.services-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, #1a1a2e 0%, #0f0f1b 100%);
  z-index: 0;
  animation: pulseOverlay 12s infinite alternate ease-in-out;
}

.services-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-heading {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
  animation: slideInTop 1s ease forwards;
}

.services-subheading {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  animation: fadeIn 2s ease forwards;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  z-index: 2;
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transform-style: preserve-3d;
  transform: perspective(800px) rotateX(5deg);
  opacity: 0;
  transition: all 0.6s ease-out;
}

.service-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.service-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.cta-button {
  margin-top: 3rem;
  padding: 0.8rem 2rem;
  background: var(--accent);
  color: var(--main-bg);
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  box-shadow: 0 0 15px var(--accent);
}

.cta-button:hover {
  background: #e6c94e;
}

/* Animations */
@keyframes slideInTop {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulseOverlay {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

@media (max-width: 768px) {
  .services-heading {
    font-size: 2rem;
  }
  .services-subheading {
    font-size: 1rem;
  }
}

/* graphic design */
:root {
  --primary: #ffdd57;
  --dark: #0f0f1b;
  --text-light: #eee;
  --tile-bg: rgba(255, 255, 255, 0.1);
  --glass: rgba(255, 255, 255, 0.07);
}

.graphic-design-section {
  font-family: 'Poppins', sans-serif;
  color: var(--text-light);
  background: var(--dark);
  padding: 0;
  overflow: hidden;
}

/* Hero Section */
.graphic-hero {
  height: 50vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.graphic-hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #333 20%, #0f0f1b);
  animation: pulseBg 10s ease infinite;
  z-index: 1;
}
.hero-content {
  z-index: 2;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.hero-content p {
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Carousel */
.carousel-container {
  padding: 3rem 1rem;
  background: #111;
    width: 100%;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
}
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide img {
   width: 100%;
  height: 55vh;
  display: block;
  max-width: 400px;
  border-radius: 3rem;
  transition: transform 0.5s;
}
.swiper-slide-active img {
  transform: scale(1.05);
}

/* Service Tiles */
.services-tiles {
  padding: 4rem 1rem;
}
.tiles-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.tile {
  background: var(--tile-bg);
  backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: 15px;
  width: 250px;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  transition: transform 0.6s ease, box-shadow 0.3s ease;
}
.tile i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.tile h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}
.tile p {
  font-size: 0.95rem;
  color: #ccc;
}
.tile:nth-child(even) {
  animation: floatL 10s infinite ease-in-out;
}
.tile:nth-child(odd) {
  animation: floatR 10s infinite ease-in-out;
}

/* Quote */
.design-quote {
  text-align: center;
  padding: 4rem 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  animation: floatUp 4s infinite alternate;
}



/* CTA */
.graphic-cta {
  background: linear-gradient(135deg, #ffdd57, #ff9d00);
  text-align: center;
  padding: 3rem 1rem;
  color: #111;
}
.graphic-cta h2 {
  margin-bottom: 1rem;
}
.cta-btn {
  background: #111;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s;
}
.cta-btn:hover {
  background: #333;
}

/* Animations */
@keyframes pulseBg {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}
@keyframes floatL {
  0% { transform: translateX(0); }
  50% { transform: translateX(-10px); }
  100% { transform: translateX(0); }
}
@keyframes floatR {
  0% { transform: translateX(0); }
  50% { transform: translateX(10px); }
  100% { transform: translateX(0); }
}
@keyframes floatUp {
  from { transform: translateY(0); }
  to { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .tiles-wrapper {
    flex-direction: column;
    align-items: center;
  }
}


/* web development */
/* Web Development Section */
.web-dev-section {
  padding: 5rem 2rem;
  background: #0f172a;
  color: #ffffff;
}
.web-hero h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
.web-hero p {
  text-align: center;
  font-size: 1.2rem;
  color: #94a3b8;
}

.tech-stack {
  text-align: center;
  margin-top: 4rem;
}
.tech-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 2rem;
  margin-top: 1rem;
}
.tech-icons i {
  color: #10b981;
  transition: transform 0.3s;
}
.tech-icons i:hover {
  transform: scale(1.2);
}

.live-demos {
  margin-top: 4rem;
}
.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.demo-grid .iframe {
  width: 100%;
  height: 250px;
  border: none;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.demo-grid .iframe a{
  margin: 1rem;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 20px;
  background: var(--accent);
  color: var(--color-deep-navy);
  text-decoration: none;
}

.code-snippet {
  margin-top: 4rem;
  background: #1e293b;
  padding: 1rem;
  border-radius: 10px;
  overflow-x: auto;
}
.code-snippet pre {
  color: #10b981;
  font-family: monospace;
}
.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  background: #f5f5f5;
  text-align: center;
}

.stat-box {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  width: 200px;
}

.stat-box h4 {
  font-size: 2.5rem;
  color: #10b981;
}
.stat-box p {
  color: var(--color-deep-navy);
  text-align: center;
}

.counter {
  font-size: 48px;
  font-weight: bold;
  color: var(--primary-color, #ff6600);
}

.performance-score {
  text-align: center;
  margin-bottom: 3rem;
}
.score-bar {
  margin-top: 0.5rem;
  background: #1e293b;
  padding: 0.5rem;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.score-bar .bar {
  background: #10b981;
  width: 90%;
  text-align: center;
  color: #000;
  padding: 0.3rem;
  border-radius: 5px;
}

.dev-timeline {
  text-align: center;
}
.dev-timeline ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  list-style: none;
  padding: 0;
}
.dev-timeline li {
  background: #1e293b;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .stats {
    flex-direction: column;
    align-items: center;
  }
}

/* SOCIAL MEDIA MANAGEMENT */
:root {
  --synk-bg-dark: #0d0d0d;
  --synk-blue: #007bff;
  --synk-white: #fff;
  --synk-card-bg: rgba(255, 255, 255, 0.07);
  --synk-glow: 0 0 25px rgba(0, 123, 255, 0.5);
}

.synk-social-section {
  position: relative;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  padding: 6rem 1.5rem;
  overflow: hidden;
  color: var(--synk-white);
}

.synk-social-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.2), transparent);
  z-index: 1;
}

.synk-social-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 3rem;
}

.synk-social-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--synk-blue);
}

.synk-social-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.8;
}

.synk-social-services {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.synk-social-card {
  background: var(--synk-card-bg);
  padding: 1.5rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 5px 0 var(--synk-glow);
  transform: rotateX(10deg) rotateY(-10deg);
  transition: transform 0.5s ease;
}

.synk-social-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: var(--synk-blue);
}

.synk-social-card p {
  font-size: 0.95rem;
  color: #ccc;
}

.synk-social-counters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 4rem auto 2rem;
  position: relative;
  z-index: 2;
}

.synk-counter-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  flex: 1 1 220px;
  max-width: 250px;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
  backdrop-filter: blur(6px);
  transition: transform 0.3s;
}

.synk-counter-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #00acee;
}

.synk-counter-number {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}

.synk-counter-label {
  color: #ccc;
  font-size: 1rem;
  margin-top: 0.3rem;
}

.synk-counter-label small {
  font-size: 0.85rem;
  display: block;
  margin-top: 0.2rem;
}

@media (max-width: 768px) {
  .synk-counter-box {
    max-width: 100%;
  }
}


.synk-floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.synk-floating-icons i {
  position: absolute;
  font-size: 1.8rem;
  color: var(--synk-blue);
  opacity: 0.3;
  animation: floatIcon 20s linear infinite;
}

@keyframes floatIcon {
  0% {
    transform: translateY(100vh) translateX(0);
  }
  100% {
    transform: translateY(-100vh) translateX(20vw);
  }
}

/* Position icons randomly across the section */
.synk-floating-icons i:nth-child(1) { left: 10%; animation-delay: 0s; }
.synk-floating-icons i:nth-child(2) { left: 25%; animation-delay: 4s; }
.synk-floating-icons i:nth-child(3) { left: 40%; animation-delay: 8s; }
.synk-floating-icons i:nth-child(4) { left: 55%; animation-delay: 12s; }
.synk-floating-icons i:nth-child(5) { left: 70%; animation-delay: 2s; }
.synk-floating-icons i:nth-child(6) { left: 85%; animation-delay: 6s; }
.synk-floating-icons i:nth-child(7) { left: 50%; animation-delay: 10s; }
.synk-floating-icons i:nth-child(8) { left: 35%; animation-delay: 14s; }

@media (max-width: 768px) {
  .synk-social-title {
    font-size: 2rem;
  }
  .synk-social-card {
    transform: none;
  }
}




/* cyber services */
:root {
  --cyber-bg: #0a0f1b;
  --cyber-glow: #00f0ff;
  --cyber-card-bg: rgba(255, 255, 255, 0.05);
  --cyber-card-border: rgba(0, 255, 255, 0.2);
}

.cyber-services {
  padding: 100px 20px;
  background: var(--cyber-bg);
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cyber-heading h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  background: var(--color-deep-navy);
  -webkit-text-fill-color: var(--color-dark-green);
  animation: slideInTop 1.5s ease-in-out;
}

.cyber-heading p {
  font-size: 1.1rem;
  opacity: 0.7;
  animation: fadeIn 2s ease-in;
}

.cyber-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.cyber-card {
  background: var(--cyber-card-bg);
  border: 1px solid var(--cyber-card-border);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.05);
  transition: transform 0.5s ease-in-out;
  animation: floatCard 6s infinite ease-in-out;
}

.cyber-card:nth-child(even) {
  animation-delay: 2s;
}
.cyber-card:nth-child(3n) {
  animation-delay: 4s;
}

.cyber-card i {
  font-size: 2.5rem;
  color: var(--cyber-glow);
  margin-bottom: 15px;
}

.cyber-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.cyber-card p {
  font-size: 0.95rem;
  opacity: 0.8;
}

.cyber-cta {
  margin-top: 60px;
}

.cyber-btn {
  padding: 14px 32px;
  background: var(--cyber-glow);
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 0 0 20px var(--cyber-glow);
  transition: transform 0.3s ease;
  display: inline-block;
  animation: pulse 2s infinite;
}

.cyber-btn:hover {
  transform: scale(1.05);
}

/* Animations */
@keyframes slideInTop {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.7;
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 20px var(--cyber-glow);
  }
  50% {
    box-shadow: 0 0 40px var(--cyber-glow);
  }
}

/* Responsive Fixes */
@media (max-width: 600px) {
  .cyber-heading h2 {
    font-size: 2rem;
  }
  .cyber-card {
    padding: 20px;
  }
}


/* partners */
:root {
  --synk-primary: #1f3b1f;
  --synk-accent: #ffdd57;
  --synk-light-bg: #f3f3f3;
  --synk-text-dark: #222;
  --synk-text-muted: #666;
}

.synk-partners-section {
  padding: 80px 20px;
  background: var(--accent);
  text-align: center;
}

.synk-partners-title {
  font-size: 2.5rem;
  color: var(--synk-primary);
  margin-bottom: 10px;
}

.synk-partners-subtitle {
  font-size: 1.1rem;
  color: var(--synk-text-muted);
  margin-bottom: 40px;
}

.synk-partners-swiper {
  padding: 20px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease;
}

.synk-partner-logo {
  width: 120px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.5s ease;
}

.swiper-slide-visible .synk-partner-logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.synk-partners-next,
.synk-partners-prev {
  color: var(--synk-primary);
}

@media (max-width: 768px) {
  .synk-partner-logo {
    width: 90px;
  }
}


/* contact */
:root {
  --contact-bg: #0c1a24;
  --contact-glow: #1f80e0;
  --contact-text: #ffffff;
  --contact-card: rgba(255, 255, 255, 0.05);
}

.synk-contact-section {
  background: var(--contact-bg);
  padding: 5rem 1rem;
  color: var(--contact-text);
  display: flex;
  justify-content: center;
  align-items: center;
}

.synk-contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
}

.synk-contact-left,
.synk-contact-right {
  flex: 1;
  min-width: 320px;
  background: var(--contact-card);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.synk-contact-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.synk-contact-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.synk-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.synk-input-group {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
}

.synk-input-group input,
.synk-contact-form input,
.synk-contact-form textarea {
  flex: 1;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: none;
  outline: none;
  background: #ffffff10;
  color: white;
  font-size: 1rem;
  transition: 0.3s;
}

.synk-contact-form input:focus,
.synk-contact-form textarea:focus {
  box-shadow: 0 0 10px var(--contact-glow);
}

.synk-submit-btn {
  padding: 0.8rem;
  background: #25d366;
  color: white;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.synk-submit-btn:hover {
  background: #2a9fff;
}

.synk-contact-info h3 {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: #fff;
}

.synk-contact-info p,
.synk-contact-info a {
  color: #ccc;
  margin: 0.2rem 0;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .synk-input-group {
    flex-direction: column;
  }
}

/* footer */
.synk-footer {
  background-color: #0c1a24;
  color: #a0a0a0;
  padding: 1rem 0;
  font-size: 0.9rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  box-shadow: inset 0 1px 5px rgba(255, 255, 255, 0.05);
}

.synk-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.synk-footer-link {
  color: #ffbb00; /* Accent color */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.synk-footer-link:hover,
.synk-footer-link:focus {
  color: #ffc633; /* Slightly lighter on hover/focus */
  text-decoration: underline;
}


@media screen and (max-width: 480px) {
  .synk-footer {
    font-size: 0.8rem;
    padding: 0.8rem 0;
  }
}
