:root {
   --primary: #0077b6;         /* Modern tech blue */
  --secondary: #00b4d8;       /* Aqua/teal accent */
  --accent: #48cae4;          /* Light sky blue for hovers/CTAs */
  
  --twitter: #1da1f2;         /* Twitter brand blue */
  --instagram: #e1306c;       /* Instagram gradient pink base */
  --github: #24292e;          /* GitHub black */
  --facebook: #1877f2;        /* Facebook brand blue */
  
  --light: #f1f5f9;           /* Soft white-gray background */
  --dark: #0b0c10;            /* Deep black-blue for contrast */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f5f5f5;
  color: var(--dark);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}
.logo {
  text-align: center;
  margin-bottom: 20px;
  animation: fadeInDown 1s both;
}

.logo i {
  font-size: 3em;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logo h1 {
  font-size: 2em;
  margin: 0;

}

.bg {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 1;
}

/* Light orbs effect */
.bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 25%);
  pointer-events: none;
  z-index: 1;
}

.container-wrapper {
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 10;
}

.container {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease both;
}

.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

h1 {
  color: var(--light);
  margin-bottom: 30px;
  font-size: 2rem;
  animation: fadeInDown 1s ease both;
  animation-delay: 0.2s;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  margin: 0 auto 30px;
  animation: fadeIn 1s ease both;
  animation-delay: 0.4s;
  transition: transform 0.5s ease;
}

.profile-img:hover {
  transform: scale(1.05);
}

.parent {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  animation: fadeInUp 1s ease both;
  animation-delay: 0.6s;
}

.child {
  position: relative;
}

.button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.4s ease;
}

.button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.button:hover::before {
  transform: scale(2);
  opacity: 0;
}

.button svg {
  height: 24px;
  width: 24px;
  transition: all 0.3s ease;
  z-index: 2;
}

.btn-1 {
  background-color: rgba(30, 144, 255, 0.1);
}

.btn-1:hover {
  background-color: var(--twitter);
}

.btn-1:hover svg {
  fill: white;
}

.btn-2 {
  background-color: rgba(255, 0, 255, 0.1);
}

.btn-2:hover {
  background-color: var(--instagram);
}

.btn-2:hover svg {
  fill: white;
}

.btn-3 {
  background-color: rgba(51, 51, 51, 0.1);
}

.btn-3:hover {
  background-color: var(--github);
}

.btn-3:hover svg {
  fill: white;
}

.btn-4 {
  background-color: rgba(66, 103, 178, 0.1);
}

.btn-4:hover {
  background-color: var(--facebook);
}

.btn-4:hover svg {
  fill: white;
}

/* Contact form */
.contact-form {
  margin-top: 40px;
  text-align: left;
  max-width: 100%;
  animation: fadeIn 1s ease both;
  animation-delay: 0.8s;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1em;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(110, 0, 255, 0.2);
  outline: none;
  background-color: #fff;
}

label {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-weight: 500;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1em;
  width: 100%;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(110, 0, 255, 0.3);
}
.footer {
text-align: center;
margin-top: 20px;
font-size: 0.9em;
opacity: 0.8;
animation: fadeIn 1s both;
animation-delay: 0.6s;
}

.footer a {
color: white;
text-decoration: none;
}

.footer a:hover {
text-decoration: underline;
}

/* Animation keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 768px) {
  .container {
      padding: 30px 20px;
  }
  
  h1 {
      font-size: 1.8rem;
  }
  
  .profile-img {
      width: 120px;
      height: 120px;
  }
}

@media (max-width: 480px) {
  .parent {
      gap: 15px;
  }
  
  .button {
      width: 50px;
      height: 50px;
  }
  
  .button svg {
      height: 20px;
      width: 20px;
  }
}

/* Header Styling */
header {
  text-align: center;
  padding: 60px 20px 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(110, 0, 255, 0.05), rgba(167, 0, 255, 0.08));
  border-radius: 0 0 30px 30px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  z-index: 2;
}

header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(110, 0, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(167, 0, 255, 0.03) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

header h1, header h2, header p {
  position: relative;
  z-index: 3;
}

header h1 {
  margin-bottom: 15px;
  font-family: var(--font-tertiary);
  color: var(--dark);
  font-size: 2.5rem;
  transition: var(--transition-normal);
}

header h2 {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 20px;
  opacity: 0.9;
}

header p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--dark);
  opacity: 0.8;
  line-height: 1.6;
}

/* Breadcrumbs Styling */
.breadcrumbs {
  padding: 12px 25px;
  background-color: white;
  border-radius: 50px;
  margin: 20px 0;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  z-index: 5;
}

.breadcrumbs:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.breadcrumbs a {
  color: var(--dark);
  text-decoration: none;
  margin-right: 8px;
  position: relative;
  transition: all 0.3s;
  padding: 5px 8px;
  border-radius: 20px;
  display: flex;
  align-items: center;
}

.breadcrumbs a:hover {
  color: var(--primary);
  background-color: rgba(110, 0, 255, 0.05);
}

.breadcrumbs a i {
  margin-right: 6px;
  font-size: 14px;
  color: var(--primary);
}

.breadcrumbs a::after {
  content: '›';
  margin-left: 8px;
  color: #999;
  font-size: 16px;
  font-weight: 300;
}

.breadcrumbs a:last-child {
  color: var(--primary);
  font-weight: 500;
}

.breadcrumbs a:last-child::after {
  content: '';
}

.breadcrumbs .current {
  color: var(--primary);
  font-weight: 500;
  margin-right: 0;
  padding: 5px 8px;
  border-radius: 20px;
}

/* Animation for breadcrumbs */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.breadcrumbs a {
  animation: fadeInRight 0.5s ease forwards;
}

.breadcrumbs a:nth-child(2) {
  animation-delay: 0.1s;
}

.breadcrumbs a:nth-child(3) {
  animation-delay: 0.2s;
}

.breadcrumbs a:nth-child(4) {
  animation-delay: 0.3s;
}

.breadcrumbs .current {
  animation: fadeInRight 0.5s ease forwards;
  animation-delay: 0.4s;
}

/* Responsive design */
@media (max-width: 768px) {
  header {
    padding: 40px 15px 30px;
    border-radius: 0 0 20px 20px;
  }
  
  header h1 {
    font-size: 2rem;
  }
  
  header h2 {
    font-size: 1.1rem;
  }
  
  .breadcrumbs {
    padding: 10px 20px;
    border-radius: 30px;
    margin: 15px 0;
  }
}

@media (max-width: 600px) {
  header {
    padding: 30px 15px 25px;
  }
  
  header h1 {
    font-size: 1.7rem;
  }
  
  header h2 {
    font-size: 1rem;
  }
  
  .breadcrumbs {
    font-size: 0.8rem;
    padding: 8px 15px;
  }
  
  .breadcrumbs a {
    margin-right: 5px;
    padding: 3px 6px;
  }
  
  .breadcrumbs a::after {
    margin-left: 5px;
    font-size: 14px;
  }
  
  .breadcrumbs a i {
    margin-right: 4px;
    font-size: 12px;
  }
}