* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #00d9ff;
  --secondary-color: #0080ff;
  --dark-bg: #0a1628;
  --darker-bg: #05080f;
  --text-primary: #e8ecef;
  --text-secondary: #a8b0ba;
  --border-color: #1a2435;
  --accent-color: #ff6b6b;
}

































html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top, #0a1f33, #020b13 60%),
    linear-gradient(120deg, #00d9ff22, transparent);
    
}

#threeCanvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  filter: drop-shadow(0 0 80px rgba(0,217,255,0.35));
}





.three-container {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

#threeCanvas {
  width: 100%;
  height: 100%;
}

#threeCanvas {
  filter: drop-shadow(0 0 50px rgba(0,217,255,0.35));
}











/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Added hamburger menu styling for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 0.4rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Enhanced logo styling with wrapper and animations */

/* Added logo container styling with animations */
.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.logo-image {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.4));
  transition: all 0.3s ease;
  animation: logoEnter 0.8s ease-out;
}

.logo-image:hover {
  filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.8));
  transform: scale(1.1) rotate(5deg);
}

.logo-link {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-link:hover {
  transform: translateX(5px);
  filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.3));
}

@keyframes logoEnter {
  from {
    opacity: 0;
    transform: scale(0.5) rotate(-180deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo-svg {
  color: var(--primary-color);
  filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.5));
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo:hover .logo-svg {
  filter: drop-shadow(0 0 16px rgba(0, 217, 255, 0.8));
}

.logo-text {
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.logo:hover .logo-text {
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Hero Section */




.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8rem 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  gap: 4rem;
}

.hero-content {
  flex: 1;
}

.hero-text-wrapper {
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin-bottom: 2rem;
  border-radius: 2px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.8;
}

.cta-button {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.primary-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--dark-bg);
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.4);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 217, 255, 0.6);
}

.primary-btn:active {
  transform: translateY(-1px);
}

.secondary-btn {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
  background: rgba(0, 217, 255, 0.1);
  transform: translateY(-3px);
}

.secondary-btn:active {
  transform: translateY(-1px);
}

/* Hero Visual */
/* .hero-visual {
  flex: 1;
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
} */

/* .geometric-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.animated-shape {
  width: 100%;
  max-width: 400px;
  filter: drop-shadow(0 0 40px rgba(0, 217, 255, 0.3));
}

.glow-circle {
  animation: float 6s ease-in-out infinite;
  opacity: 0.6;
}

.shape-main {
  animation: rotate 20s linear infinite;
  transform-origin: center;
}

.inner-circle {
  animation: pulse 3s ease-in-out infinite;
}

.floating-text {
  position: absolute;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  letter-spacing: 3px;
  animation: textFloat 4s ease-in-out infinite;
} */



/* About Section */
.about-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-card {
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: rgba(26, 58, 82, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-card:hover {
  border-color: var(--primary-color);
  background: rgba(26, 58, 82, 0.5);
  transform: translateY(-10px);
}

.about-card:hover::before {
  opacity: 1;
}

.card-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.about-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.about-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Services Section */
.services {
  padding: 6rem 2rem;
  background-color: var(--dark-bg);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(0, 128, 255, 0.05) 100%);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 128, 255, 0.1) 100%);
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  color: var(--dark-bg);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 1rem;
  transform: translateX(5px);
}

/* Portfolio Section */
.portfolio {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.portfolio-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--darker-bg);
  transition: all 0.4s ease;
  cursor: pointer;
  group-hover: scale(1.02);
}

.portfolio-image {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
}

.portfolio-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-image::before {
  opacity: 1;
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.1);
}

.portfolio-info {
  padding: 2rem;
}

.portfolio-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.portfolio-item p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.tech-tag {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--primary-color);
  background: rgba(0, 217, 255, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  border: 1px solid var(--primary-color);
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 2rem;
  background-color: var(--dark-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(0, 128, 255, 0.05) 100%);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 128, 255, 0.1) 100%);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 217, 255, 0.15);
}

.testimonial-stars {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.star {
  color: #ffd700;
  font-size: 1.2rem;
}

.testimonial-text {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  flex-shrink: 0;
}

.testimonial-header h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.testimonial-header p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
/* ================= CTA SECTION ================= */









.cta-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.cta-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .cta-section {
    padding: 5rem 2rem;
  }

  .cta-content h2 {
    font-size: 2.6rem;
  }

  .cta-content p {
    font-size: 1.05rem;
  }
}
@media (max-width: 768px) {
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .cta-content h2 {
    width:300px;
margin-left: 17px;
    font-size: 2.1rem;
    line-height: 1.2;
  }

  .cta-content p {
    font-size: 0.95rem;
    width:300px;
    margin-bottom: 2rem;
  }

  .cta-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 🔥 side by side */
    gap: 0.8rem;
    max-width: 340px;
    margin: 0 auto;
  }

  .cta-button {
    width: 100%;
    padding: 0.6rem 0.8rem;   /* 🔥 chota size */
    font-size: 0.76rem;
    border-radius: 16px;
  }
}
@media (max-width: 430px) {
  .cta-section {
    padding: 3.2rem 1.2rem;
  }

  .cta-content h2 {
    font-size: 1.85rem;
    letter-spacing: -0.5px;
  }

  .cta-content p {
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
  }
  .cta-buttons {
    max-width: 300px;
    gap: 0.7rem;
  }

  .cta-button {
    padding: 0.55rem 0.6rem;
    font-size: 0.8rem;
  }
}




/* Footer */
.footer {
  background: var(--darker-bg);
  border-top: 1px solid var(--border-color);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1400px;
 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}




.footer-bottom p {
  font-size: 0.75rem; /* 🔽 */
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 1rem; /* 🔽 */
}

.footer-links a {
  font-size: 0.75rem; /* 🔽 */
}


/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    r: 40;
    stroke-width: 2;
  }
  50% {
    r: 50;
    stroke-width: 1;
  }
}

@keyframes textFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px);
    opacity: 0.8;
  }
}

/* Comprehensive responsive design for mobile and tablet */

/* Tablet devices (768px to 1024px) */
@media (max-width: 1024px) {
  .hero {
    gap: 2rem;
    padding: 6rem 1.5rem 2rem;
  }
  .hero-content{
    position: relative;
    top:100px;
    height:auto;
  }

  .hero-visual {
    height: 500px;
  }

  .hero-title {
    font-size: 4rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .nav-menu {
    gap: 1.5rem;
  }

  .services-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile devices (max 768px) */
@media (max-width: 768px) {
  /* Navbar and Navigation */
  .nav-container {
    padding: 1rem 1.5rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    
    flex-direction: column;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
   
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-menu.active {
    max-height: 400px;
  }

  .nav-menu a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
  }

  /* Logo adjustments */
  .logo-container {
    gap: 0.5rem;
  }

  .logo-image { 
    width: 40px;
    height: 40px;
  }

  .logo-link {
    font-size: 1rem;
    letter-spacing: 1px;
  }
 

  /* Hero section */
  .hero {
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    gap: 2rem;
    min-height: auto;
  }

  .hero-visual {
    height: 350px;
    width: 100%;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-divider {
    width: 60px;
  }

  /* Sections */
  .about-section,
  .services,
  .portfolio,
  .testimonials,
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .about-grid,
  .services-grid,
  .portfolio-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-card,
  .service-card,
  .portfolio-item,
  .testimonial-card {
    padding: 1.5rem;
  }

  .about-card h3,
  .service-card h3,
  .portfolio-item h3 {
    font-size: 1.2rem;
  }

  .card-number {
    font-size: 2rem;
  }

  .service-icon {
    width: 50px;
    height: 50px;
  }

  .portfolio-image {
    height: 200px;
  }

  /* CTA Section */
  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-button {
    width: 100%;
  }
  
.footer {
  background: var(--darker-bg);
  border-top: 1px solid var(--border-color);
  padding: 2.2rem 1.5rem 1.2rem; /* 🔽 height kam */
}
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto 3rem;
  margin-left: 250px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-section h4 {
  font-size: 0.95rem; /* 🔽 */
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.footer-section li {
  margin-bottom: 0.45rem; /* 🔽 */
}

.footer-section a {
  font-size: 0.85rem; /* 🔽 */
  color: var(--text-secondary);
}


.footer-section a:hover {
  color: var(--primary-color);
}



.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-color);

  display: flex;
  justify-content: space-between; /* 🔥 proper desktop feel */
  align-items: center;
  gap: 1rem;
}


.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary-color);
}



@media (max-width: 1024px) {
  .footer {
    padding: 3.5rem 1.5rem 2rem;
  }

  .footer-content {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem 1rem;
  }

  .footer-content {
       margin-left: -10px!important;
    gap: 1.2rem;
    text-align: center;
  }
 
  .footer-section h4 {
    font-size: 0.9rem;
  }

  .footer-section a {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .footer-content {
    gap: 1rem;
  }

  .footer-bottom p {
    font-size: 0.72rem;
  }
}























/* new */
/* GLOBAL 3D BACKGROUND */

canvas {
  filter: drop-shadow(0 0 40px rgba(0,217,255,0.25));
}



#bgCanvas {
  position: fixed;
  inset: 0;
  z-index: -2;
}

/* DARK FUTURISTIC BASE */
body {
  background: radial-gradient(circle at top, #061d2e, #020b13);
  color: #fff;
  overflow-x: hidden;
}

/* GLASS LOOK */
.service-card,
.portfolio-item,
.testimonial-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
}

/* HERO GLOW */
.hero-title {
  text-shadow: 0 0 40px rgba(0,217,255,0.6);
}
