/* Your existing CSS remains completely unchanged */
/* Base Styles & CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --primary: #667eea;
  --primary-dark: #5a6fd8;
  --accent: #764ba2;
  --dark: #2d3748;
  --light: #f9f9f9;
  --text: #4a5568;
}

body {
  line-height: 1.6;
  color: var(--text);
  background-color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 60px; /* adjust size as needed */
  width: auto;
  display: block;
  object-fit: contain;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary);
}

.mobile-menu {
  display: none;
  font-size: 1.5em;
  cursor: pointer;
}

/* UNIQUE HERO BANNER DESIGN */
.hero-banner {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
}

/* Animated Background Elements */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 15s infinite linear;
}

.shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  left: 80%;
  animation-delay: -5s;
}

.shape:nth-child(3) {
  width: 60px;
  height: 60px;
  top: 80%;
  left: 20%;
  animation-delay: -10s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-text h1 {
  font-size: 2em;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #fff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideUp 1s ease-out;
}

.hero-text > p {
  font-size: 17px;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
  animation: slideUp 1s ease-out 0.2s both;
  text-align: justify;
}

.services {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 25px;
  margin: 2.5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: slideUp 1s ease-out 0.4s both;
}

.services:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.services h3 {
  color: #fff;
  font-size: 1.3em;
  margin: 1.2rem 0 0.7rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.services h3:first-child {
  margin-top: 0;
}

.services h3::before {
  content: "✓";
  background: var(--primary);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8em;
}

.services p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: justify;
}

.hero-stats {
  display: flex;
  gap: 40px;
  animation: slideUp 1s ease-out 0.6s both;
  margin-top: 50px;
  margin-left: 95px;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.stat p {
  font-size: 0.9em;
  opacity: 0.8;
  color: white;
  font-weight: 600;
}

/* UPDATED IMAGE DESIGN - SQUARE SHAPE */
.hero-image {
  position: relative;
  width: 100%;
  text-align: center;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.image-composition {
  position: relative;
  width: 100%;
  max-width: 500px; /* Limit max width for square shape */
  aspect-ratio: 1/1; /* This ensures square shape */
  margin: 0 auto;
}

.main-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.main-image:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.main-image:hover img {
  transform: scale(1.1);
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 4;
  animation: float-card 8s infinite ease-in-out;
  transition: transform 0.3s ease;
}

.floating-card:hover {
  transform: scale(1.05);
}

.floating-card.server {
  top: 0;
  right: 0;
  width: 180px;
  animation-delay: 0s;
}

.floating-card.domain {
  bottom: 20%;
  left: 0;
  width: 200px;
  animation-delay: -2s;
}

.floating-card.hosting {
  bottom: 0;
  right: 20%;
  width: 160px;
  animation-delay: -4s;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2em;
}

.server .card-icon {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.domain .card-icon {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.hosting .card-icon {
  background: linear-gradient(135deg, #ffe66d, #f9c74f);
}

.card-content h4 {
  font-size: 0.9em;
  margin-bottom: 5px;
  color: var(--dark);
}

.card-content p {
  font-size: 0.8em;
  color: var(--text);
  opacity: 0.8;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 30px;
  color: white;
  z-index: 5;
}

.image-overlay h4 {
  font-size: 1.3em;
  margin-bottom: 0.5rem;
}

.connection-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  height: 2px;
  transform-origin: left center;
  z-index: 2;
}

.connection-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

.cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 2rem;
  animation: slideUp 1s ease-out 0.8s both;
}

.btn-hero {
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.btn-ghost {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* NEW: Professional Card-Based Info Sections */
.info-sections {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-header h2 {
  font-size: 3em;
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  border-radius: 2px;
}

.section-header p {
  font-size: 1.3em;
  color: var(--text);
  max-width: 700px;
  margin: 30px auto 0;
  line-height: 1.7;
}

.info-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}

.info-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.card-header {
  padding: 40px 40px 20px;
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
}

.card-header h2 {
  font-size: 2.2em;
  margin-bottom: 10px;
  font-weight: 800;
}

.card-header h3 {
  font-size: 1.4em;
  opacity: 0.9;
  font-weight: 600;
}

.card-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
}

.card-content {
  padding: 30px 40px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content p {
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 1.1em;
  text-align: justify; /* aligns text evenly on both sides */
  /* or use 'center' or 'right' if needed */
}

.card-content strong {
  color: var(--dark);
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 25px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(102, 126, 234, 0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(102, 126, 234, 0.1);
  transform: translateX(5px);
}

.feature-item i {
  color: #10b981;
  font-size: 1.2em;
}

.card-footer {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stats {
  display: flex;
  gap: 25px;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 1.8em;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.85em;
  color: var(--text);
  margin-top: 5px;
  font-weight: 600;
}

/* Alternate card style for visual variety */
.info-card:nth-child(even) .card-header {
  background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
}

.info-card:nth-child(even) .stat-value {
  color: #4ecdc4;
}

/* Professional Team Section */
.team-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 3em;
  margin-bottom: 1rem;
  color: var(--dark);
  text-align: center;
  font-weight: 800;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.3em;
  color: var(--text);
  max-width: 700px;
  margin: 40px auto 60px;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-member {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.member-img-container {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-member:hover .member-img {
  transform: scale(1.1);
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.9) 0%,
    rgba(118, 75, 162, 0.8) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.team-member:hover .member-overlay {
  opacity: 1;
}

.member-overlay h4 {
  font-size: 1.3em;
  margin-bottom: 10px;
  font-weight: 700;
}

.member-overlay p {
  font-size: 0.9em;
  margin-bottom: 20px;
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px);
}

.member-info {
  padding: 25px 20px;
  text-align: center;
  position: relative;
}

.member-info h3 {
  font-size: 1.3em;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 700;
}

.member-info p {
  color: var(--primary);
  font-weight: 600;
  font-size: 1em;
  margin-bottom: 10px;
}

.member-desc {
  color: var(--text);
  font-size: 0.85em;
  line-height: 1.5;
  margin-top: 8px;
}

.member-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.7em;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
  z-index: 2;
}

/* Stats Section */
.team-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.team-stat {
  text-align: center;
}

.team-stat-value {
  font-size: 2.5em;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
}

.team-stat-label {
  font-size: 1em;
  color: var(--text);
  margin-top: 8px;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .member-img-container {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2.2em;
  }

  .section-subtitle {
    font-size: 1.1em;
    margin: 30px auto 40px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .team-stats {
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
    padding-top: 40px;
  }

  .member-img-container {
    height: 320px;
  }
  .hero-image {
    position: relative;
    width: 100%;
    text-align: center;
    margin: -25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8em;
  }

  .member-img-container {
    height: 280px;
  }

  .member-info {
    padding: 20px 15px;
  }

  .member-info h3 {
    font-size: 1.2em;
  }
}
/* Stats Section */
.team-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.team-stat {
  text-align: center;
}

.team-stat-value {
  font-size: 3em;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
}

.team-stat-label {
  font-size: 1.1em;
  color: var(--text);
  margin-top: 10px;
  font-weight: 600;
}

/* Footer Styles */
footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 20px;
  margin-top: auto;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h3 {
  font-size: 1.3em;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
}

.footer-column p {
  margin-bottom: 1rem;
  opacity: 0.8;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 0.9em;
}

/* Banner Section */
.banner {
  position: relative;
  width: 100%;
  height: 500px; /* smaller banner height */
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill area without distortion */
}

/* Optional overlay text */
.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 15px 30px;
  border-radius: 10px;
}

.banner-text h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.banner-text p {
  font-size: 16px;
}

/* NEW: Professional Enhancements */

/* Enhanced Header with subtle gradient */
header {
  background: linear-gradient(to right, white 0%, #f8fafc 100%);
}

/* Improved hero section with better spacing */
.hero-banner {
  padding: 100px 0;
}

/* Enhanced services box with better typography */
.services {
  border-left: 4px solid rgba(255, 255, 255, 0.5);
}

/* Enhanced buttons with gradient */
.btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

/* Enhanced floating cards in hero */
.floating-card {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Improved responsive behavior */
@media (max-width: 1100px) {
  .info-cards-container {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 968px) {
  .info-image {
    flex: 0 0 400px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5em;
  }

  .hero-stats {
    justify-content: center;
  }

  .cta-buttons {
    justify-content: center;
  }

  .image-composition {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .hero-banner,
  .info-sections,
  .team-section {
    padding: 50px 0;
  }

  .hero-text h1 {
    font-size: 2.2em;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-stats {
    justify-content: center;
  }

  .mobile-menu {
    display: block;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    gap: 15px;
  }

  nav ul.active {
    display: flex;
  }

  .section-title {
    font-size: 2em;
  }

  .hero-text h1 {
    font-size: 2em;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    margin-left: 6px;
  }

  .services {
    padding: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .floating-card {
    transform: scale(0.8);
  }

  .floating-card.server {
    right: -10px;
  }

  .floating-card.domain {
    left: -10px;
  }

  .floating-card.hosting {
    right: 10%;
  }

  .banner {
    height: 300px; /* smaller on mobile */
  }

  .banner-text h1 {
    font-size: 24px;
  }

  .banner-text p {
    font-size: 14px;
  }

  .image-composition {
    max-width: 350px;
  }

  .card-header,
  .card-content {
    padding: 30px 25px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .card-footer {
    flex-direction: column;
    gap: 20px;
  }

  .stats {
    width: 100%;
    justify-content: space-between;
  }

  .section-header h2 {
    font-size: 2em;
  }

  .section-header p {
    font-size: 1.1em;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .team-stats {
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
    padding-top: 40px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8em;
  }

  .hero-stats {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .member-info {
    padding: 25px;
  }

  .image-composition {
    max-width: 300px;
  }

  .card-header h2 {
    font-size: 1.8em;
  }

  .card-header h3 {
    font-size: 1.2em;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4em;
    top: 20px;
    right: 20px;
  }

  .section-header h2 {
    font-size: 1.8em;
  }

  .section-header p {
    font-size: 1em;
  }

  .section-title {
    font-size: 1.8em;
  }

  .member-img-container {
    height: 280px;
  }

  .member-info h3 {
    font-size: 1.3em;
  }
}
