/* Complete CSS with Professional Animations and Aesthetic Design */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
/* Keyframes for Custom Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes highlight {
  0% { background-color: rgba(7, 85, 233, 0); }
  50% { background-color: rgba(7, 85, 233, 0.3); }
  100% { background-color: rgba(7, 85, 233, 0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideInRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* 
body {
  font-family: 'Poppins', sans-serif;
  background-color: #1a1a1a;
  color: #ffffff;
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
} */

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #2d2d2d;
}

::-webkit-scrollbar-thumb {
  background: #0755e9;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0755e0;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  padding: 1rem 5%;
  background: rgba(20, 20, 20, 0.95);
}

.logo img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 2px solid #0755e9;
  transition: all 0.3s ease;
}

.logo img:hover {
  transform: rotate(15deg) scale(1.1);
box-shadow: 0 0 15px rgba(7, 85, 233, 0.3);

}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-links li a {
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #0755e9;
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: #0755e9;
}

.nav-links li a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #fff;
}

.search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.search-box:hover {
box-shadow: 0 0 15px rgba(7, 85, 233, 0.3);

}

.search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 0.5rem;
  width: 150px;
  transition: all 0.3s ease;
}

.search-box input:focus {
  width: 200px;
}

.search-box button {
  background: none;
  border: none;
  color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-box button:hover {
  color: #0755e9;
  transform: scale(1.1);
}

/* About Section */
.about-section {
  padding: 1.5rem 5%;
  background: #222;
  position: relative;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #fff;
  text-align: center;
}



.separator {
  height: 4px;
  width: 80px;
  background: #0755e9;
  margin: 0 auto 2rem;
  border-radius: 2px;
}

.about-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #eee;
  text-align: center;
}

.highlight {
  color: #0755e9;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-section {
    padding: 4rem 8%;
  }

  .about-section h1 {
    font-size: 2.5rem;
  }

  .about-section p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 3rem 6%;
  }

  .about-section h1 {
    font-size: 2.2rem;
  }

  .about-section p {
    font-size: 0.95rem;
  }

  .separator {
    width: 60px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 2rem 5%;
  }

  .about-section h1 {
    font-size: 1.8rem;
  }

  .about-section p {
    font-size: 0.9rem;
  }

  .separator {
    width: 50px;
  }
}

/* Skills Section */
.skills-section {
  padding: 1.5rem 5%;
  background: #0f0f0f;
  color: #fff;
}

.skills-section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 4rem;
  color: #fff;
}

/* Grid rows */
.skills-grid,
.skills-grid1,
.skills-grid2,
.skills-grid3 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
    gap: 3.7rem;

  margin-bottom: 2rem;
}

.skill-card {
  background: #1e1e1e;
  padding: 2rem 1rem;
  border-radius: 15px;
  text-align: center;
  width: 180px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid transparent;
}

.skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(7, 85, 233, 0.3);
  border-color: rgba(7, 85, 233, 0.4);
}

.skill-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 5px #0755e955);
}

.skill-card span {
  font-weight: 600;
  font-size: 1.1rem;
  color: #eee;
  text-align: center;
  word-wrap: break-word;
  max-width: 100%;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .skills-section h1 {
    font-size: 2.5rem;
  }

  .skill-card {
    width: 150px;
    min-height: 220px;
    padding: 1.5rem 1rem;
  }

  .skill-card img {
    width: 60px;
    height: 60px;
  }

  .skill-card span {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .skills-grid,
  .skills-grid1,
  .skills-grid2,
  .skills-grid3 {
    flex-direction: column;
    align-items: center;
  }
}
/* Portfolio Section */
.portfolio-section {
  padding: 1.5rem 5%;
  background: #222;
}

.portfolio-section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 4rem;
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Adjusted to fit smaller screens */
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(7, 85, 233, 0.3);
}

.portfolio-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  bottom: 0;
}

.portfolio-overlay h3 {
  color: #0755e9;
  margin-bottom: 0.5rem;
}

.portfolio-overlay p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.portfolio-overlay a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-overlay a:hover {
  color: #0755e9;
  text-decoration: underline;
}

.view-more {
  text-align: center;
  margin-top: 3rem;
}

.view-more a {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: transparent;
  color: #0755e9;
  border: 2px solid #0755e9;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.view-more a:hover {
  background: rgba(7, 85, 233, 0.1);
  box-shadow: 0 0 15px rgba(7, 85, 233, 0.3);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .portfolio-section h1 {
    font-size: 2.5rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); /* Adjusting grid for smaller screens */
  }

  .portfolio-item img {
    height: 220px; /* Adjusting image size for mobile */
  }

  .view-more a {
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .portfolio-section h1 {
    font-size: 2rem;
  }

  .portfolio-item img {
    height: 180px; /* Smaller images for extra small screens */
  }

  .view-more a {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
  }
}

/* Features Section */
.features-section {
  padding: 1.5rem 5%;
  background: #111;
  text-align: center;
}

.features-section h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.features-section p {
  font-size: 1.2rem;
  margin-bottom: 4rem;
  color: #ccc;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature {
  background: #1e1e1e;
  padding: 2rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(7, 85, 233, 0.3);
  border-color: rgba(7, 85, 233, 0.4);
}

.icon {
  width: 48px;
  height: 48px;
  stroke: #0755e9;
  stroke-width: 1.5;
  margin-bottom: 1.5rem;
}

.feature h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.feature p {
  font-size: 1rem;
  color: #bbb;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .features-section h1 {
    font-size: 2.3rem;
  }

  .features-section p {
    font-size: 1.1rem;
  }

  .icon {
    width: 40px;
    height: 40px;
  }

  .feature h3 {
    font-size: 1.2rem;
  }

  .feature p {
    font-size: 0.95rem;
  }
}

/* Experience Section */
.experience-section {
  padding: 1.5rem 5%;
  background: #222;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 4rem;
  color: #fff;
}

.timeline {
  position: relative;
  /*max-width: 1200px;*/
  margin: 0 auto;
  padding: 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: #0755e9;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #0755e9;
  border-radius: 50%;
  top: 15px;
  z-index: 1;
}

.left {
  left: 0;
}

.left::after {
  right: -10px;
}

.right {
  left: 50%;
}

.right::after {
  left: -10px;
}

.timeline-content {
  padding: 20px 30px;
  background: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(7, 85, 233, 0.2);
}

.timeline-year {
  color: #0755e9;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.job-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.company-name {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #ddd;
}

.job-description {
  font-size: 1rem;
  color: #ddd;
}

/* Responsive Timeline */
@media (max-width: 768px) {
  .timeline::after {
    left: 8px; /* Move center line to the left */
  }

  .timeline-item {
    width: 100%;
    padding-left: 30px;
    padding-right: 25px;
    margin-bottom: 2rem;
  }

  .timeline-item.right,
  .timeline-item.left {
    left: 0;
  }

  .timeline-item::after {
    left: 0;
    right: auto;
  }
}
/* Container and Heading Styles */
.main-container2 {
  /*max-width: 1200px*/
  margin: 60px auto;
  padding: 1.5rem 5%;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.heading2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.para {
  font-size: 1.22rem;
}

.main-container2 p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 40px;
}


.reviews-section {
  padding: 1.5rem 4%;
  background-color: #111;
  text-align: center;
}

.reviews-section h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 10px;
}

.reviews-section p {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 40px;
}

.swiper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

.swiper-slide {
  background-color: #222;
  border-radius: 12px;
    padding: 1rem 2%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.stars {
  color: #f9b017;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.review-text {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.6;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.reviewer {
  display: flex;
  align-items: center;
}

.reviewer img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 10px;
}

.reviewer-name {
  font-weight: bold;
  color: #fff;
}

.review-meta {
  font-size: 0.85rem;
  color: #777;
}

.g-logo img {
  width: 24px;
  height: 24px;
}
.icon-google-review::before {
  content: "G"; /* Placeholder until real icon loads */
  font-weight: bold;
  color: orange;
  font-size: 24px;
  font-family: Arial, sans-serif;
}
.g-logo {
  font-size: 24px;
  color: orange;
}



/* Global Reset & Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #2b2b2b;
  color: #f5f5f5;
  line-height: 1.6;
}

/* Hero Section */
.main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  padding: 8% 5%;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

.content {
  flex: 1;
  z-index: 10;
}

.content h1{
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  /* line-height: 1.3; */
  animation: slideInLeft 1s ease-out;
}

.content b {
  color: #0755e9;
  font-size: 3.2rem;
  text-shadow: 0 0 10px rgba(7, 85, 233, 0.5);
}
.btn {
  margin-top: 2rem;
    width: 10rem;
}

.btn button {
  background: #fff;
  color: #0755e9;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn a {
  text-decoration: none;
  color: #2b2b2b;
  border: none;
}

.btn button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(7, 85, 233, 0.4), transparent);
  transition: 0.5s;
}

.btn button:hover::before {
  left: 100%;
}
.btn:hover button{
  background: rgba(7, 85, 233, 0.1);
  box-shadow: 0 0 20px rgba(7, 85, 233, 0.3);
  transform: scale(1.05);
  color: #0755e9;
  border: 2px solid #0755e9;
}
.btn:hover a{
  background: rgba(7, 85, 233, 0.1);
  box-shadow: 0 0 20px rgba(7, 85, 233, 0.3);
  transform: scale(1.05);
  color: #0755e9;
  border: none;
}
.btn button{
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn a {
  transition: all 0.3s ease;
  border: none;
}

.webimg {
  flex: 0.7;
  display: flex;
  justify-content: center;
  animation: slideInRight 1s ease-out;
  margin-top: 2rem;
}

.webimg img {
  max-width: 100%;
  height: 30rem;
  /* border-radius: 20px; */
  /* border: 4px solid rgba(7, 85, 233, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); */
  /* animation: float 6s ease-in-out infinite, glow 3s ease-in-out infinite; */
}

.webimg img:hover {
  transform: scale(1.03);
  /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4); */
}

/* Animations */
@keyframes slideInLeft {
  0% { transform: translateX(-100px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  0% { transform: translateX(100px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(7, 85, 233, 0.2); }
  50% { box-shadow: 0 0 40px rgba(7, 85, 233, 0.4); }
}

/* Contact Section */

.contact-container {
  padding: 1.5rem 5%;
  background: linear-gradient(145deg, #1a1a1a, #111);
  text-align: center;
  color: #fff;
}

.contact-container h2 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 700;
}

.contact-container p {
  font-size: 1.2rem;
  margin-bottom: 4rem;
  color: #fff;
  /* max-width: 600px; */
  margin-inline: auto;
}

.contact-sections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0 auto;
}

.contact-section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1.25rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-section:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(7, 85, 233, 0.25);
}

.contact-section h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.contact-section p {
  font-size: 1rem;
  margin-bottom: 1.8rem;
  color: #bbb;
  line-height: 1.6;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  background: transparent;
  color: #0755e9;
  border: 2px solid #0755e9;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link i {
  margin-right: 0.6rem;
  font-size: 1.1rem;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  background: rgba(7, 85, 233, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.4s ease-in-out;
  z-index: 0;
}

.social-link:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.social-link:hover {
  color: #fff;
  box-shadow: 0 0 20px rgba(7, 85, 233, 0.5);
  background: rgba(7, 85, 233, 0.1);
  z-index: 1;
}

/* Social Media Bar */
.social-bar {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 100;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
  background: #0755e9;
  color: #1a1a1a;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(7, 85, 233, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .main {
    flex-direction: column;
    padding: 12% 5%;
    text-align: center;
  }

  .webimg {
    margin-top: 2rem;
  }

  .social-bar {
    right: 1rem;
  }

  .content h1 {
    font-size: 2rem;
  }

  .content b {
    font-size: 2.4rem;
  }
}
/* Footer */
.footer {
  background: #1a1a1a;
  padding: 1.5rem 5%;
  color: #ddd;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  margin-bottom: 2rem;
}

.footer-column .logo img {
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
}

.footer-column h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-column p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-column a {
  color: #0755e9;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-column a {
  display: block;
  color: #ddd;
  margin-bottom: 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #0755e9;
  transform: translateX(5px);
}

.social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #333;
}

.social a {
  color: #ddd;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social a:hover {
  color: #0755e9;
  transform: translateY(-3px);
}

.social i {
  margin-right: 0.5rem;
}

/* Media Queries */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 5%;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-column h3 {
    font-size: 1.2rem;
  }

  .footer-column p {
    font-size: 0.9rem;
  }

  .footer-column a {
    font-size: 0.9rem;
  }

  .social {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-column h3 {
    font-size: 1.1rem;
  }

  .footer-column p {
    font-size: 0.9rem;
  }

  .social a {
    font-size: 0.9rem;
  }

  .social {
    gap: 1rem;
    text-align: center;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(7, 85, 233, 0.8);
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #0755e9;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(7, 85, 233, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
  .main {
    flex-direction: column;
    text-align: center;
    padding-top: 10rem;
  }
  
  .content {
    margin-right: 0;
    margin-bottom: 3rem;
    align-items: center;
  }
  
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item::after {
    left: 21px;
  }
  
  .left::after, .right::after {
    left: 21px;
  }
  
  .right {
    left: 0%;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 5%;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    padding: 2rem;
    gap: 1.5rem;
  }
  
  .hamburger {
    display: block;
  }
  
  .search-box {
    margin-right: 0;
  }
  
  .content h1 {
    font-size: 2.2rem;
  }
  
  .content b {
    font-size: 2.5rem;
  }
  
  .social-bar {
    display: none;
  }
}

@media (max-width: 576px) {
  .content p {
    font-size: 1.8rem;
  }
  
  .content b {
    font-size: 2rem;
  }
  
  .btn button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .about-section, .skills-section, 
  .portfolio-section, .features-section,
  .experience-section, .testimonials,
  .contact-container {
    padding: 4rem 5%;
  }
  
  .section-title, .testimonials h2,
  .contact-container h2 {
    font-size: 2.5rem;
  }
}