/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #f4f4f4;
  padding-top: 70px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Main content */
section {
  padding: 5rem 0;
  background-color: #fff;
  margin-bottom: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1, h2 {
  font-family: 'Roboto Slab', serif;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background-color: #3498db;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Home section */
#home {
  background-image: url("./portfolio.avif");
  background-position: top center; /* Adjusted to better align the background */
  background-size: contain; /* Ensures the image fits within the container */
  background-repeat: no-repeat;
  color: #ffffff;
  text-align: center;
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center; /* Centers the content */
  padding-top: 85px;
}



#home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #3498db, #2c3e50);
  opacity: 0.8;
  z-index: -1;
}

#home h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
/* Heading Style */
#home h2 {
  font-size: 2.5rem; /* Slightly larger for emphasis */
  margin-bottom: 1.5rem;
  color: #333333; /* Dark text for better contrast */
  font-weight: bold;
  text-align: center;
}

/* Social Links Container */
.social-links {
  margin-top: 2.5rem; /* Increase spacing for balance */
  text-align: center; /* Center-align links */
}

/* Social Links Styling */
.social-links a {
  color: #007BFF; /* Vibrant blue for visibility */
  font-size: 1.5rem; /* Balanced size */
  margin: 0 1rem; /* Even spacing between links */
  border: 2px solid transparent; /* Optional border for hover effect */
  padding: 10px 15px;
  border-radius: 8px; /* Rounded edges for a modern look */
  transition: all 0.3s ease; /* Smooth animation */
}

.social-links a:hover {
  color: #fff; /* White text on hover */
  background-color: #007BFF; /* Blue background */
  transform: translateY(-3px); /* Subtle upward animation */
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2); /* Light shadow effect */
}

/* For Hover Transitions */
.social-links a i {
  margin-right: 0.5rem; /* Space icons from text */
  transition: transform 0.3s ease;
}

.social-links a:hover i {
  transform: rotate(360deg); /* Smooth rotation for hover effect */
}

/* General Adjustments for Spacing and Alignment */
#home {
  text-align: center;
  padding: 3rem 1rem; /* Padding for balanced layout */
  background-color: #f8f9fa; /* Light background for contrast */
}

.scroll-down a {
  color: #007BFF;
  font-size: 1.2rem;
  text-decoration: none;
  margin-top: 2rem;
}

.scroll-down a:hover {
  color: #333333; /* Darker hover effect */
  transform: scale(1.1); /* Subtle zoom */
}


/* Projects section */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.project-card {
  background-color: #f8f9fa;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #3498db, #2c3e50);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.project-card:hover::before {
  opacity: 0.1;
}

.project-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.project-card ul {
  list-style-type: none;
  margin-bottom: 1.5rem;
}

.project-card li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.project-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #3498db;
}

.project-link {
  display: inline-block;
  background-color: #3498db;
  color: #fff;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-weight: 600;
}

.project-link:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
}

/* Skills Section Styles */
#skills {
  padding: 80px 0;
  background-color: #f8f9fa;
}

/* Skills Grid Container */
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.skill-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-5px);
}

/* Skill Card */
.skill-card {
  background-color: #f7f9fc; /* Light Background */
  border: 1px solid #e1e5ea;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.skill-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.progress-wrapper {
  position: relative;
  width: 100%;
}

.progress {
  height: 15px;
  background-color: #e6e9ef; /* Progress Bar Background */
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin: 8px 0;
}

.progress-bar {
  height: 100%;
  position: relative;
  transition: width 1.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--progress-width);
}

.progress-percentage {
  position: absolute;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  line-height: 15px;
  z-index: 2;
}

/* Certifications section */
#certifications {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 1rem 0;
}

.cert-card {
  background: var(--white-color);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cert-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.status-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-badge.ongoing {
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary-color);
}

.status-badge.completed {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.cert-icon {
  width: 60px;
  height: 60px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cert-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.cert-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.cert-issuer {
  color: var(--text-color);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.cert-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cert-details li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: var(--text-color);
  font-size: 0.9rem;
}

.cert-details li i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.cert-footer {
  margin-top: 2rem;
}

.cert-btn {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cert-btn span {
  margin-right: 0.5rem;
}

.cert-btn i {
  transition: transform 0.3s ease;
}

.cert-btn:hover {
  color: var(--primary-dark);
}

.cert-btn:hover i {
  transform: translateX(5px);
}

/* Background Blobs */
.cert-blob-1 {
  top: -10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: rgba(var(--primary-rgb), 0.05);
}

.cert-blob-2 {
  bottom: -10%;
  left: -5%;
  width: 250px;
  height: 250px;
  background: rgba(var(--primary-rgb), 0.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cert-card {
      padding: 1.5rem;
  }

  .cert-title {
      font-size: 1.1rem;
  }

  .cert-details li {
      font-size: 0.85rem;
  }
}

/* Contact Section Styles */
#contact {
  padding: 80px 0;
  background-color: #f8f9fa;
}

#contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

#contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.input-group {
  border-radius: 5px;
  overflow: hidden;
}

.input-group-text {
  background-color: #f8f9fa;
  border-right: none;
  padding: 0.75rem 1.25rem;
}

.input-group-text i {
  font-size: 1.2rem;
  color: #6c757d;
}

.form-control {
  border-left: none;
  padding: 0.75rem 1.25rem;
}

.form-control:focus {
  box-shadow: none;
  border-color: #ced4da;
}

.input-group:focus-within {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
}

#contact-form button {
  background: linear-gradient(45deg, #007bff, #00bcd4);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#contact-form button:hover {
  background: linear-gradient(45deg, #0056b3, #008ba3);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

#contact-form button:active {
  transform: translateY(0);
  animation: submitPulse 0.3s ease;
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 2rem;
}

footer p {
  margin-bottom: 1rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes textGradient {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

#animated-name {
  background: linear-gradient(45deg, #3498db, #2c3e50, #3498db);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: textGradient 5s ease infinite;
  display: inline-block;
}

/* Responsive design */
@media screen and (max-width: 768px) {
  .nav-links {
      position: fixed;
      right: -100%;
      height: 100vh;
      top: 60px;
      background-color: #2c3e50;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      transition: right 0.5s ease-in;
  }

  .nav-links.nav-active {
      right: 0;
  }

  .nav-links li {
      opacity: 0;
      margin: 1rem 0;
  }

  .burger {
      display: block;
  }

  .project-grid,
  .cert-grid,
  .education-grid {
      grid-template-columns: 1fr;
  }

  #home {
      padding: 4rem 1rem;
  }

  #home h1 {
      font-size: 2.5rem;
  }

  #home h2 {
      font-size: 1.5rem;
  }

  section {
      padding: 3rem  1rem;
  }

  h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
  }

  .project-card,
  .cert-card,
  .education-card {
      padding: 1.5rem;
  }

  .project-card h3,
  .cert-card h3,
  .education-card h3 {
      font-size: 1.2rem;
  }

  .skills-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }

  .skill-card {
      padding: 1.5rem;
  }

  #contact-form {
      margin: 0 1rem;
      padding: 1.5rem;
  }
  
  #contact-form button {
      width: 100%;
      justify-content: center;
  }
}

/* Navbar Styles */
.navbar {
backdrop-filter: blur(10px);
background-color: rgba(255, 255, 255, 0.9) !important;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}

.navbar-brand {
font-size: 1.8rem;
position: relative;
}

.brand-dot {
position: absolute;
width: 5px;
height: 5px;
background: var(--bs-primary);
border-radius: 50%;
bottom: 5px;
right: -8px;
}

.nav-link {
font-weight: 500;
position: relative;
transition: color 0.3s ease;
}

.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 50%;
background-color: var(--bs-primary);
transition: all 0.3s ease;
transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
width: 80%;
}



/* Mobile Responsive */
@media (max-width: 991px) {
.navbar-collapse {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-link {
  padding: 0.8rem 1rem !important;
  border-radius: 5px;
}

.nav-link:hover {
  background-color: rgba(var(--bs-primary-rgb), 0.1);
}

.contact-btn {
  margin: 0.5rem 0;
}
}

/* Gradient text effect */
.gradient-text {
background: linear-gradient(45deg, #2196F3, #673AB7);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-size: 200% auto;
animation: gradient 3s ease infinite;
}

/* Social buttons hover effect */
.social-btn {
position: relative;
overflow: hidden;
transition: all 0.3s ease;
}

.social-btn:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-text {
margin-left: 8px;
display: none;
}

.social-btn:hover .social-text {
display: inline;
}

/* Scroll down animation */
.scroll-down {
animation: bounce 2s infinite;
}

.scroll-down-arrow {
animation: fadeInDown 2s infinite;
}

/* Background shapes */
.shape-blob {
position: absolute;
top: 0;
right: 0;
width: 600px;
height: 600px;
background: linear-gradient(45deg, rgba(33,150,243,0.1), rgba(103,58,183,0.1));
border-radius: 50%;
filter: blur(50px);
z-index: -1;
}

.shape-blob.two {
left: 0;
bottom: 0;
top: auto;
right: auto;
transform: rotate(45deg);
}

/* Animations */
@keyframes gradient {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}

@keyframes bounce {
0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
40% { transform: translateY(-20px); }
60% { transform: translateY(-10px); }
}

@keyframes fadeInDown {
0% { opacity: 0; transform: translateY(-10px); }
100% { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
from {
  opacity: 0;
  transform: translateY(20px);
}
to {
  opacity: 1;
  transform: translateY(0);
}
}

.typing-text {
border-right: none;
animation: typing 3.5s steps(40, end),
           blink-caret .75s step-end infinite;
white-space: nowrap;
overflow: hidden;
}

.typing-cursor {
animation: blink 1s step-end infinite;
}

@keyframes typing {
from { width: 0 }
to { width: 100% }
}

@keyframes blink {
from, to { opacity: 1 }
50% { opacity: 0 }
}

.role-text {
position: relative;
}

.role-wrapper {
position: relative;
display: inline-block;
padding-top: 0.1em;
padding-right: 0.05em;
padding-bottom: 0.15em;
}

.role-wrapper .letters {
display: inline-block;
line-height: 1.5em;
opacity: 0;
animation: moveIn 1.5s ease-out forwards;
}

@keyframes moveIn {
0% {
  opacity: 0;
  transform: translateY(50px) rotate(5deg);
  filter: blur(5px);
}
30% {
  opacity: 0.3;
  transform: translateY(30px) rotate(-2deg);
  filter: blur(3px);
}
60% {
  opacity: 0.7;
  transform: translateY(15px) rotate(1deg);
  filter: blur(1px);
}
100% {
  opacity: 1;
  transform: translateY(0) rotate(0);
  filter: blur(0);
}
}

/* Add a gradient background to text */
.role-wrapper .letters {
background: linear-gradient(120deg, #1e88e5, #9c27b0);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-size: 200% 200%;
animation: 
  moveIn 1.5s ease-out forwards,
  gradient 4s ease infinite;
}

@keyframes gradient {
0% {
  background-position: 0% 50%;
}
50% {
  background-position: 100% 50%;
}
100% {
  background-position: 0% 50%;
}
}

/* Add a subtle shadow effect */
.role-wrapper::after {
content: '';
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
background: linear-gradient(120deg, rgba(30,136,229,0.2), rgba(156,39,176,0.2));
filter: blur(20px);
z-index: -1;
opacity: 0;
animation: glowIn 2s ease-out forwards;
}

@keyframes glowIn {
from {
  opacity: 0;
  transform: scale(0.9);
}
to {
  opacity: 1;
  transform: scale(1);
}
}

/* Optional: Add hover effect */
.role-wrapper:hover .letters {
animation: rubberBand 1s;
}

@keyframes rubberBand {
from {
  transform: scale3d(1, 1, 1);
}
30% {
  transform: scale3d(1.25, 0.75, 1);
}
40% {
  transform: scale3d(0.75, 1.25, 1);
}
50% {
  transform: scale3d(1.15, 0.85, 1);
}
65% {
  transform: scale3d(0.95, 1.05, 1);
}
75% {
  transform: scale3d(1.05, 0.95, 1);
}
to {
  transform: scale3d(1, 1, 1);
}
}

/* About Section Styles */
.section-padding {
padding: 80px 0;
background: #fff;
}

/* Section Title */
.section-header {
text-align: center;
margin-bottom: 50px;
}

.section-title {
font-size: 2.5rem;
font-weight: 700;
color: #2d2e32;
margin-bottom: 20px;
}

.section-title .highlight {
color: #007bff;
}

/* Image Styles */
.about-image-wrapper {
position: relative;
padding: 20px;
z-index: 1;
}

.image-container {
position: relative;
border-radius: 30px;
overflow: hidden;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}

/* Background Shape */
.image-bg-shape {
position: absolute;
top: -50px;
left: -50px;
width: 200px;
height: 200px;
background: linear-gradient(45deg, #2196F3, #00BCD4);
border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
z-index: -1;
animation: morphShape 8s linear infinite;
}

@keyframes morphShape {
0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

/* Image Styling */
.image-container img {
width: 100%;
height: auto;
border-radius: 30px;
transition: all 0.5s ease;
filter: contrast(1.1) saturate(1.2);
}

.image-container:hover {
transform: translateY(-10px);
}

.image-container:hover img {
transform: scale(1.05);
}

/* Experience Badge */
.experience-badge {
position: absolute;
bottom: 30px;
right: -20px;
width: 120px;
height: 120px;
display: flex;
align-items: center;
justify-content: center;
z-index: 2;
}

.badge-content {
position: absolute;
width: 100px;
height: 100px;
background: linear-gradient(45deg, #2196F3, #00BCD4);
border-radius: 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: white;
box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
animation: pulseLight 2s infinite;
}

.badge-border {
position: absolute;
width: 120px;
height: 120px;
fill: none;
stroke: #2196F3;
stroke-width: 2;
stroke-dasharray: 283;
stroke-dashoffset: 283;
animation: drawCircle 2s forwards;
}

/* Counter Styles */
.experience-badge .counter {
font-size: 32px;
font-weight: 700;
line-height: 1;
margin-bottom: -5px;
}

.experience-badge .plus {
font-size: 20px;
font-weight: 600;
}

.experience-badge .text {
font-size: 14px;
text-align: center;
line-height: 1.2;
margin-top: 5px;
}

/* Project Badge */
.project-badge {
position: absolute;
top: 30px;
left: -15px;
background: white;
padding: 10px 20px;
border-radius: 20px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
align-items: center;
animation: slideIn 0.5s ease-out;
}

.project-badge .counter {
font-size: 24px;
font-weight: 700;
color: #2196F3;
}

.project-badge .text {
font-size: 12px;
color: #666;
}

/* Animations */
@keyframes pulseLight {
0% { box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3); }
50% { box-shadow: 0 5px 30px rgba(33, 150, 243, 0.6); }
100% { box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3); }
}

@keyframes drawCircle {
to {
  stroke-dashoffset: 0;
}
}

@keyframes slideIn {
from {
  opacity: 0;
  transform: translateX(-30px);
}
to {
  opacity: 1;
  transform: translateX(0);
}
}

/* Image Frame Effect */
.image-container::before {
content: '';
position: absolute;
inset: 0;
border: 2px solid rgba(255, 255, 255, 0.1);
border-radius: 30px;
z-index: 1;
}

/* Responsive Styles */
@media (max-width: 991px) {
.about-image-wrapper {
  max-width: 500px;
  margin: 0 auto;
}

.experience-badge {
  width: 100px;
  height: 100px;
  right: -10px;
}

.badge-content {
  width: 85px;
  height: 85px;
}

.experience-badge .counter {
  font-size: 28px;
}
}

@media (max-width: 768px) {
.image-bg-shape {
  width: 150px;
  height: 150px;
}
}

/* Social Links */
.social-links {
display: flex;
gap: 15px;
margin-top: 20px;
justify-content: center;
}

.social-link {
width: 40px;
height: 40px;
background: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #007bff;
font-size: 20px;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
background: #007bff;
color: white;
transform: translateY(-3px);
}

/* Content Styles */
.about-content {
padding: 20px;
}

.role-title {
font-size: 2rem;
font-weight: 600;
color: #2d2e32;
margin-bottom: 20px;
}

.about-description {
font-size: 1.1rem;
line-height: 1.8;
color: #767676;
margin-bottom: 30px;
}

/* Info Grid */
.info-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
margin-bottom: 30px;
}

.info-item {
display: flex;
align-items: center;
gap: 15px;
padding: 15px;
background: white;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-item i {
font-size: 20px;
color: #007bff;
}

.info-text {
display: flex;
flex-direction: column;
}

.info-text .label {
font-size: 14px;
color: #767676;
}

.info-text .value {
font-weight: 500;
color: #2d2e32;
}

/* CTA Buttons */
.cta-buttons {
display: flex;
gap: 15px;
}

.btn {
padding: 12px 25px;
border-radius: 25px;
font-weight: 500;
transition: all 0.3s ease;
}

.btn-primary {
background: #007bff;
border: none;
color: white;
}

.btn-outline {
border: 2px solid #007bff;
color: #007bff;
background: transparent;
}

.btn:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 991px) {
.about-image-wrapper {
  max-width: 400px;
  margin: 0 auto 30px;
}

.info-grid {
  grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
.section-padding {
  padding: 60px 0;
}

.section-title {
  font-size: 2rem;
}

.role-title {
  font-size: 1.75rem;
}

.experience-badge {
  width: 80px;
  height: 80px;
  right: -10px;
  bottom: 20px;
}

.cta-buttons {
  flex-direction: column;
}
}

/* About Section Button Styles */
.about-cta-buttons {
display: flex;
gap: 20px;
margin-top: 30px;
}

.about-btn {
position: relative;
padding: 15px 32px;
border-radius: 30px;
font-size: 16px;
font-weight: 600;
text-decoration: none;
overflow: hidden;
transition: all 0.4s ease;
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 180px;
border: none;
cursor: pointer;
}

/* Primary Button */
.about-btn-primary {
background: linear-gradient(45deg, #2196F3, #00BCD4);
color: white;
box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.about-btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
color: white;
}

/* Outline Button */
.about-btn-outline {
background: transparent;
border: 2px solid #2196F3;
color: #2196F3;
}

.about-btn-outline:hover {
color: white;
background: linear-gradient(45deg, #2196F3, #00BCD4);
border-color: transparent;
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}

/* Button Content */
.about-btn-content {
display: flex;
align-items: center;
gap: 10px;
position: relative;
z-index: 1;
}

.about-btn-content i {
font-size: 18px;
transition: transform 0.3s ease;
}

.about-btn:hover .about-btn-content i {
transform: translateX(-3px);
}

/* Glow Effect */
.btn-glow {
position: absolute;
width: 20px;
height: 100%;
background: rgba(255, 255, 255, 0.3);
top: 0;
filter: blur(5px);
transform: skewX(-45deg) translateX(-150%);
transition: 0.5s;
}

.about-btn-primary:hover .btn-glow {
transform: skewX(-45deg) translateX(150%);
}

/* Particles Effect */
.btn-particles {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
overflow: hidden;
z-index: 0;
}

.btn-particles::before,
.btn-particles::after {
content: '';
position: absolute;
width: 20px;
height: 20px;
background: rgba(33, 150, 243, 0.2);
border-radius: 50%;
top: 50%;
transform: translateY(-50%) scale(0);
transition: transform 0.5s ease;
}

.btn-particles::before {
left: 10%;
}

.btn-particles::after {
right: 10%;
}

.about-btn-outline:hover .btn-particles::before,
.about-btn-outline:hover .btn-particles::after {
transform: translateY(-50%) scale(1);
}

/* Active State */
.about-btn:active {
transform: translateY(0);
box-shadow: 0 4px 15px rgba(33, 150, 243, 0.2);
}

/* Loading State */
.about-btn.loading .about-btn-content {
opacity: 0.7;
}

.about-btn.loading::after {
content: '';
position: absolute;
width: 20px;
height: 20px;
border: 2px solid rgba(255, 255, 255, 0.3);
border-top-color: white;
border-radius: 50%;
animation: spin 1s infinite linear;
}

@keyframes spin {
to { transform: rotate(360deg); }
}

/* Responsive Styles */
@media (max-width: 768px) {
.about-cta-buttons {
  flex-direction: column;
  gap: 15px;
}

.about-btn {
  width: 100%;
  padding: 12px 25px;
  font-size: 15px;
}
}

/* Project Section Base Styles */
.project-section {
background: linear-gradient(135deg, #f6f9fc 0%, #eef3f8 100%);
padding: 100px 0;
position: relative;
overflow: hidden;
}

/* Animated Background Elements */
.project-bg-shape {
position: absolute;
border-radius: 50%;
filter: blur(60px);
z-index: 0;
opacity: 0.1;
}

.project-bg-shape-1 {
background: linear-gradient(45deg, #4158D0, #C850C0);
width: 500px;
height: 500px;
top: -250px;
right: -100px;
animation: projectShapeFloat 8s ease-in-out infinite;
}

.project-bg-shape-2 {
background: linear-gradient(45deg, #0093E9, #80D0C7);
width: 300px;
height: 300px;
bottom: -150px;
left: -50px;
animation: projectShapeFloat 6s ease-in-out infinite reverse;
}

@keyframes projectShapeFloat {
0%, 100% { transform: translate(0, 0) rotate(0deg); }
25% { transform: translate(10px, -10px) rotate(5deg); }
50% { transform: translate(0, -20px) rotate(0deg); }
75% { transform: translate(-10px, -10px) rotate(-5deg); }
}

/* Project Header Styles */
.project-header {
text-align: center;
margin-bottom: 60px;
position: relative;
}

.project-title {
font-size: 2.8rem;
font-weight: 700;
margin-bottom: 20px;
}

.project-title-gradient {
background: linear-gradient(45deg, #4158D0, #C850C0);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.project-subtitle {
color: #6B7280;
font-size: 1.1rem;
max-width: 600px;
margin: 0 auto;
}

/* Project Filter Buttons */
.project-filter-container {
display: flex;
justify-content: center;
gap: 15px;
margin-bottom: 40px;
}

.project-filter-btn {
background: transparent;
border: 2px solid #4158D0;
padding: 10px 25px;
border-radius: 30px;
color: #4158D0;
font-weight: 600;
transition: all 0.3s ease;
cursor: pointer;
}

.project-filter-btn.active,
.project-filter-btn:hover {
background: linear-gradient(45deg, #4158D0, #C850C0);
color: white;
border-color: transparent;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(65, 88, 208, 0.2);
}

/* Project Card Flip Styles */
.project-flip-card {
perspective: 1500px;
height: 500px;
margin-bottom: 30px;
}

.project-flip-inner {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 0.8s;
transform-style: preserve-3d;
cursor: pointer;
}

.project-flip-card:hover .project-flip-inner {
transform: rotateY(180deg);
}

.project-flip-front,
.project-flip-back {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
border-radius: 20px;
overflow: hidden;
}

.project-flip-front {
background: white;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.project-flip-back {
background: linear-gradient(45deg, #4158D0, #C850C0);
color: white;
transform: rotateY(180deg);
}

.project-back-content {
padding: 25px;
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.project-back-title {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 15px;
}

.project-back-description {
font-size: 0.9rem;
line-height: 1.6;
margin-bottom: 15px;
}

.project-features-list {
margin: 15px 0;
}

.project-feature-item {
display: flex;
align-items: center;
margin-bottom: 10px;
font-size: 0.9rem;
}

.project-feature-icon {
margin-right: 10px;
font-size: 1rem;
width: 20px;
}

.project-tech-details {
margin: 15px 0;
}

.project-tech-title {
font-size: 0.9rem;
margin-bottom: 10px;
}

.project-tech-stack {
display: flex;
flex-wrap: wrap;
gap: 8px;
}

.project-tech-pill {
background: rgba(255, 255, 255, 0.1);
padding: 5px 12px;
border-radius: 15px;
font-size: 0.8rem;
}

.project-action-links {
display: flex;
gap: 10px;
margin-top: auto;
width: 100%;
}

.project-link-btn {
flex: 1;
padding: 10px 15px;
border-radius: 8px;
font-size: 0.9rem;
font-weight: 500;
text-decoration: none;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
transition: all 0.3s ease;
}

.project-link-live {
background: white;
color: #4158D0;
}

.project-link-code {
background: transparent;
border: 2px solid white;
color: white;
}

.project-link-btn:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.project-status-badge {
position: absolute;
top: 20px;
right: 20px;
background: linear-gradient(45deg, #4158D0, #C850C0);
color: white;
padding: 5px 15px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 500;
z-index: 1;
}

.project-image-wrapper {
position: relative;
padding-top: 60%;
overflow: hidden;
}

.project-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}

.project-image-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(65, 88, 208, 0.9);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s ease;
}

.project-flip-front:hover .project-image-overlay {
opacity: 1;
}

.project-overlay-content {
color: white;
text-align: center;
}

.project-overlay-content i {
font-size: 1.5rem;
margin-bottom: 10px;
}

.project-content {
padding: 20px;
}

.project-name {
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 10px;
}

.project-description {
font-size: 0.9rem;
color: #6B7280;
margin-bottom: 15px;
}

@media (max-width: 768px) {
.project-flip-card {
  height: 450px;
}

.project-back-content {
  padding: 20px;
}

.project-action-links {
  flex-direction: column;
}

.project-link-btn {
  width: 100%;
}
}

/* View More Section Styles */
.project-view-more-container {
text-align: center;
margin-top: 60px;
padding: 20px 0;
}

.project-view-more-wrapper {
display: inline-block;
position: relative;
}

.project-view-more-btn {
position: relative;
display: inline-flex;
align-items: center;
padding: 15px 40px;
font-size: 1.1rem;
font-weight: 600;
color: #4158D0;
background: transparent;
border: 2px solid #4158D0;
border-radius: 50px;
text-decoration: none;
overflow: hidden;
transition: all 0.3s ease;
z-index: 1;
}

.btn-content {
display: flex;
align-items: center;
gap: 12px;
position: relative;
z-index: 2;
}

.btn-text {
transition: all 0.3s ease;
}

.btn-icon {
display: flex;
align-items: center;
transition: transform 0.3s ease;
}

/* Button Hover Effects */
.project-view-more-btn::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, #4158D0, #C850C0);
z-index: 1;
transition: transform 0.5s ease;
transform: scaleX(0);
transform-origin: right;
}

.project-view-more-btn:hover {
color: white;
border-color: transparent;
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(65, 88, 208, 0.2);
}

.project-view-more-btn:hover::before {
transform: scaleX(1);
transform-origin: left;
}

.project-view-more-btn:hover .btn-icon {
transform: translateX(5px);
}

/* Particle Effects */
.btn-particles {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}

.btn-particles::before,
.btn-particles::after {
content: '';
position: absolute;
width: 10px;
height: 10px;
border-radius: 50%;
background: linear-gradient(45deg, #4158D0, #C850C0);
opacity: 0;
transition: all 0.5s ease;
}

.btn-particles::before {
left: 10%;
top: -50%;
}

.btn-particles::after {
right: 10%;
bottom: -50%;
}

.project-view-more-btn:hover .btn-particles::before {
animation: particleTop 0.5s ease forwards;
}

.project-view-more-btn:hover .btn-particles::after {
animation: particleBottom 0.5s ease forwards;
}

@keyframes particleTop {
0% {
  opacity: 0;
  transform: translate(0, 0);
}
50% {
  opacity: 1;
}
100% {
  opacity: 0;
  transform: translate(-20px, -20px);
}
}

@keyframes particleBottom {
0% {
  opacity: 0;
  transform: translate(0, 0);
}
50% {
  opacity: 1;
}
100% {
  opacity: 0;
  transform: translate(20px, 20px);
}
}

/* Media Queries */
@media (max-width: 768px) {
.project-view-more-btn {
  padding: 12px 30px;
  font-size: 1rem;
}
}

@media (max-width: 480px) {
.project-view-more-btn {
  padding: 10px 25px;
  font-size: 0.9rem;
}
}

/* Skills Section Styles */
.section-padding {
padding: 80px 0;
}

.section-header {
margin-bottom: 50px;
}

.section-title {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 15px;
position: relative;
}

.highlight {
color: var(--primary-color);
position: relative;
}

.section-subtitle {
color: #6c757d;
font-size: 1.1rem;
margin-bottom: 30px;
}

/* Skills Grid Layout */
.skills-grid {
display: grid;
gap: 40px;
}

.skill-category {
background: #fff;
border-radius: 15px;
padding: 30px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease;
}

.skill-category:hover {
transform: translateY(-5px);
}

.category-title {
font-size: 1.5rem;
color: #333;
margin-bottom: 25px;
padding-bottom: 10px;
border-bottom: 2px solid var(--primary-color);
}

/* Skill Cards */
.skill-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
}

.skill-card {
background: #f8f9fa;
border-radius: 12px;
padding: 20px;
transition: all 0.3s ease;
}

.skill-card:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.skill-icon {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 15px;
}

.skill-card h4 {
font-size: 1.2rem;
margin-bottom: 15px;
color: #333;
}

/* Progress Bar Styles */
.progress-wrapper {
position: relative;
margin-bottom: 15px;
}

.progress {
height: 8px;
background-color: #e9ecef;
border-radius: 4px;
overflow: hidden;
}

.progress-bar {
background: linear-gradient(45deg, var(--primary-color), #4a90e2);
transition: width 1s ease;
position: relative;
}

.progress-tooltip {
position: absolute;
right: 0;
top: -25px;
background: var(--primary-color);
color: white;
padding: 2px 6px;
border-radius: 3px;
font-size: 0.75rem;
opacity: 0;
transition: opacity 0.3s ease;
}

.progress-wrapper:hover .progress-tooltip {
opacity: 1;
}

/* Skill Tags */
.skill-tags {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 15px;
}

.skill-tag {
background: rgba(var(--primary-rgb), 0.1);
color: var(--primary-color);
padding: 4px 10px;
border-radius: 15px;
font-size: 0.8rem;
font-weight: 500;
transition: all 0.3s ease;
}

.skill-tag:hover {
background: var(--primary-color);
color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
.section-title {
  font-size: 2rem;
}

.skill-cards {
  grid-template-columns: 1fr;
}

.skill-category {
  padding: 20px;
}
}

/* Animation for Progress Bars */
@keyframes fillProgress {
from {
  width: 0;
}
to {
  width: 100%;
}
}

.progress-bar {
animation: fillProgress 1.5s ease-out forwards;
}

/* Optional: Add these variables to your root if not already present */
:root {
--primary-color: #007bff;
--primary-rgb: 0, 123, 255;
}

/* Education Section Styles */
#education {
position: relative;
overflow: hidden;
}

/* Section Header */
.section-header {
text-align: center;
margin-bottom: 3rem;
}

.section-title {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1rem;
}

.section-title .highlight {
color: var(--primary-color);
position: relative;
}

.section-subtitle {
color: #6c757d;
font-size: 1.1rem;
}

/* Timeline Styles */
.timeline {
position: relative;
padding: 2rem 0;
}

.timeline::before {
content: '';
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 2px;
height: 100%;
background: linear-gradient(180deg, 
  rgba(var(--primary-rgb), 0.1),
  rgba(var(--primary-rgb), 0.5),
  rgba(var(--primary-rgb), 0.1));
}

.timeline-item {
margin-bottom: 3rem;
position: relative;
}

.timeline-content {
width: 90%;
max-width: 600px;
margin: 0 auto;
position: relative;
}

/* Education Card Styles */
.education-card {
background: #ffffff;
border-radius: 15px;
padding: 2rem;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
position: relative;
overflow: hidden;
}

.education-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.education-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 100%;
background: var(--primary-color);
}

/* Icon Styles */
.education-icon {
width: 60px;
height: 60px;
background: rgba(var(--primary-rgb), 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
}

.education-icon i {
font-size: 1.8rem;
color: var(--primary-color);
}

/* Education Details Styles */
.education-title {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 1rem;
color: #2d2d2d;
}

.education-meta {
display: flex;
gap: 1.5rem;
margin-bottom: 1rem;
color: #6c757d;
font-size: 0.95rem;
}

.education-type {
font-size: 1.1rem;
color: var(--primary-color);
font-weight: 500;
margin-bottom: 1rem;
}

/* Subject Tags */
.education-subjects {
display: flex;
flex-wrap: wrap;
gap: 0.8rem;
margin-bottom: 1.5rem;
}

.subject-tag {
background: rgba(var(--primary-rgb), 0.1);
color: var(--primary-color);
padding: 0.5rem 1rem;
border-radius: 25px;
font-size: 0.9rem;
display: inline-flex;
align-items: center;
transition: background-color 0.3s ease;
}

.subject-tag:hover {
background: rgba(var(--primary-rgb), 0.2);
}

.subject-tag i {
margin-right: 0.5rem;
}

/* Achievements Section */
.education-achievements {
margin-top: 1.5rem;
padding-top: 1.5rem;
border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.achievements-title {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 1rem;
color: #2d2d2d;
}

.achievements-list {
list-style: none;
padding: 0;
margin: 0;
}

.achievements-list li {
margin-bottom: 0.8rem;
display: flex;
align-items: center;
color: #6c757d;
}

.achievements-list li i {
color: var(--primary-color);
}

/* Background Blobs */
.education-blob-1,
.education-blob-2 {
position: absolute;
border-radius: 50%;
filter: blur(50px);
z-index: -1;
opacity: 0.1;
}

.education-blob-1 {
width: 300px;
height: 300px;
background: var(--primary-color);
top: 10%;
left: -150px;
}

.education-blob-2 {
width: 250px;
height: 250px;
background: var(--secondary-color, #6c757d);
bottom: 10%;
right: -100px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
.timeline::before {
  left: 30px;
}

.timeline-content {
  width: calc(100% - 60px);
  margin-left: 60px;
}

.education-meta {
  flex-direction: column;
  gap: 0.5rem;
}

.education-card {
  padding: 1.5rem;
}

.education-icon {
  width: 50px;
  height: 50px;
}

.education-icon i {
  font-size: 1.5rem;
}
}

/* Animation Classes */
.fade-in-up {
animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
from {
  opacity: 0;
  transform: translateY(20px);
}
to {
  opacity: 1;
  transform: translateY(0);
}
}

/* Footer Styles */
.footer-section {
background: linear-gradient(to bottom, #1a1a1a, #2d2d2d);
color: #fff;
position: relative;
padding: 80px 0 0;
overflow: hidden;
}

/* Brand Section */
.footer-brand {
font-size: 2rem;
text-decoration: none;
color: #fff;
}

.footer-description {
color: #b3b3b3;
line-height: 1.8;
margin-bottom: 25px;
}

/* Social Links */
.footer-social-links {
display: flex;
padding-left: 70px;
gap: 15px;
}

.social-link {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
color: #fff;
transition: all 0.3s ease;
position: relative;
}

.social-link:hover {
background: var(--primary);
transform: translateY(-3px);
}

.social-hover {
position: absolute;
bottom: -25px;
font-size: 12px;
opacity: 0;
transition: all 0.3s ease;
}

.social-link:hover .social-hover {
opacity: 1;
}

/* Footer Titles */
.footer-title {
color: #fff;
font-size: 1.25rem;
margin-bottom: 25px;
position: relative;
padding-bottom: 10px;
}

.footer-title::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 50px;
height: 2px;
background: var(--primary);
}

/* Footer Links Grid */
.footer-links-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}

.footer-link {
color: #b3b3b3;
text-decoration: none;
display: flex;
align-items: center;
gap: 10px;
transition: all 0.3s ease;
}

.footer-link:hover {
color: var(--primary);
transform: translateX(5px);
}

/* Contact Info */
.contact-item {
display: flex;
gap: 15px;
margin-bottom: 20px;
}

.contact-icon {
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
/* margin-right: 10px; */
color: var(--primary);
}

.contact-details h6 {
color: #fff;
margin-bottom: 5px;
}

.contact-details p {
color: #b3b3b3;
text-align: left;
margin: 0;
}

/* Footer Bottom */
.footer-divider {
border-color: rgba(255, 255, 255, 0.1);
margin: 30px 0;
}

.copyright {
color: #b3b3b3;
}

.footer-legal {
display: flex;
gap: 15px;
align-items: center;
}

.legal-link {
color: #b3b3b3;
text-decoration: none;
transition: color 0.3s ease;
}

.legal-link:hover {
color: var(--primary);
}

.separator {
color: #b3b3b3;
}

/* Background Shapes */
.footer-shape-1,
.footer-shape-2 {
position: absolute;
width: 300px;
height: 300px;
border-radius: 50%;
opacity: 0.1;
z-index: 0;
}

.footer-shape-1 {
background: var(--primary);
top: -150px;
right: -150px;
}

.footer-shape-2 {
background: var(--primary);
bottom: -150px;
left: -150px;
}

/* Self Edit */
.brand-dot {
  display: inline-block; /* Ensures it behaves like a block-level element */

  width: 7px; /* Set your desired size */
  height: 7px; /* Set your desired size */
  background-color: blue; /* Optional: Add a color for visibility */
  border-radius: 50%; /* For a circular dot */
}
