/* 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); }
}
/* Lime Green: #B8FB3C (RGB: 184, 251, 60)

Dark Navy Blue: #03045E (RGB: 3, 4, 94) */
@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: 5px;
}

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

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

::-webkit-scrollbar-thumb:hover {
  background: #B8FB3C;
}
/* Headings */
h1 {
  font-size: 45px !important;
}

h2 {
  font-size: 40px !important;
}

h3 {
  font-size: 24px !important;
}

/* Paragraphs */
p {
  font-size: 16px !important;
}
/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 5%;
  position: fixed; /* FIXED instead of sticky */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(20, 20, 20, 0.95);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 0.5rem;
  color: white;
  font-family: 'Poppins', sans-serif;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 3rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 70px; /* matches navbar height */
  transition: all 0.3s ease;
}

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

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

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


/* Desktop Menu */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
}


/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1101; /* always above overlay */
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* Animate hamburger to X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform .35s ease, opacity .25s ease; /* ensure transform animates */
  transform-origin: 50% 50%; /* pivot from center */
}

@media (max-width: 890px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100%;
    /* max-width: 300px; */
    background: rgba(20, 20, 20, 0.97);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;   /* ✅ pushes links down so all fit */
    padding-bottom: 0rem;
    overflow-y: auto;   
    gap: -0rem;
    transition: right 0.4s ease;
    z-index: 1100;
  }

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

  .nav-links li {
    list-style: none;
  }

  .nav-links li a {
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
  }

  .hamburger {
    display: flex;
  }
}

/* Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 1000;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
/* Custom Scrollbar for Mobile Nav */
.nav-links::-webkit-scrollbar {
  width: 6px;               /* slim width */
}

.nav-links::-webkit-scrollbar-track {
  background: transparent;  /* no background */
}

.nav-links::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.3); /* light scrollbar */
  border-radius: 4px;
}

.nav-links::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.5);
}

/* For Firefox */
.nav-links {
  scrollbar-width: thin;           /* slim */
  scrollbar-color: rgba(255,255,255,0.3) transparent;
}


/* Ensure page content starts below navbar */
body {
  margin: 0;
  padding-top: 70px; /* prevent content from hiding under fixed navbar */
}


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

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

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



.separator {
  height: 4px;
  width: 80px;
  background: #B8FB3C;
  margin: 0 auto 1.5rem;
  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: #B8FB3C;
  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: 2rem;
  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 1px 11px rgba(184, 251, 60);
  /* 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 #B8FB3C55); */
}

.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 h1,
.portfolio-section h2{
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  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 1px 11px rgba(184, 251, 60);
}

.portfolio-item img {
  width: 120%;
  /*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: #B8FB3C;
  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: #B8FB3C;
  text-decoration: underline;
}

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

.view-more a {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: transparent;
  color: #B8FB3C;
  border: 2px solid #B8FB3C;
  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 1px 11px rgba(184, 251, 60);
}

/* 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: 0.4rem;
  color: #fff;
}

.features-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  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 1px 11px rgba(184, 251, 60);
  border-color: rgba(7, 85, 233, 0.4);
}

.icon {
  width: 48px;
  height: 48px;
  stroke: #B8FB3C;
  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: 2rem;
  color: #fff;
}

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

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: #B8FB3C;
  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: #B8FB3C;
  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 1px 11px rgba(184, 251, 60);
}

.timeline-year {
  color: #B8FB3C;
  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: 2rem;
}

.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: #2a2a2a;
  color: #f5f5f5;
  line-height: 1.6;
}/* Hero Base */
.main {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 85vh;
  padding: 0 5%;
  text-align: center;
  overflow: hidden;
  color: white;
}

/* Background Animation */
.seo-background {
  position: absolute;
  inset: 0;
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  z-index: 0;
}

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

.content {
  margin-top: 4rem;
  z-index: 2;
  animation: fadeUp 1.2s ease forwards;
  max-width: 700px;
}

.content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.3;
}

b {
  color: #B8FB3C;
}

.subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin: 1rem 0 2rem;
  color: rgba(255,255,255,0.85);
}

.btn button {
  background: white;
  color: #03045E;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn button:hover {
  background: #B8FB3C;
  color: #03045E;
  transform: scale(1.05);
}

.btn a {
  text-decoration: none;
  color: inherit;
}

/* Floating SEO Icons */
.floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-icons svg {
  position: absolute;
  width: clamp(20px, 4vw, 40px);
  height: clamp(20px, 4vw, 40px);
  color: rgba(255,255,255,0.7);
  animation: floatAround 5s linear infinite;
}

.floating-icons svg:nth-child(odd) { color: #B8FB3C; }

/* Icon Positions - placed around content */
.floating-icons svg:nth-child(1) { top: 5%; left: 8%; }
.floating-icons svg:nth-child(2) { top: 15%; right: 10%; }
.floating-icons svg:nth-child(3) { bottom: 5%; left: 12%; }
.floating-icons svg:nth-child(4) { bottom: 8%; right: 12%; }
.floating-icons svg:nth-child(5) { top: 80%; left: 5%; }
.floating-icons svg:nth-child(6) { top: 10%; left: 20%; }
.floating-icons svg:nth-child(7) { bottom: 10%; right: 5%; }
.floating-icons svg:nth-child(8) { top: 75%; left: 75%; }
.floating-icons svg:nth-child(9) { top: 35%; right: 2%; }
.floating-icons svg:nth-child(10) { bottom: 50%; left: 5%; }

@keyframes floatAround {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
  50% { transform: translateY(-25px) rotate(15deg); opacity: 1; }
  100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
}

/* Text Entrance Animation */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .content {
    margin-top: 2rem;
    padding: 0 1rem;
  }
  
  .floating-icons svg {
    opacity: 0.5;
  }
  
  /* Move icons further away from text */
  .floating-icons svg:nth-child(1) { top: 2%; left: 5%; }
  .floating-icons svg:nth-child(2) { top: 10%; right: 5%; }
  .floating-icons svg:nth-child(3) { bottom: 2%; left: 5%; }
  .floating-icons svg:nth-child(4) { bottom: 5%; right: 5%; }
}

@media (max-width: 480px) {
  .content h1 {
    font-size: 1.8rem;
  }
  
  .subtitle {
    font-size: 0.95rem;
  }
  
  .btn button {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
  }
}


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

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

.contact-container p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  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 1px 11px rgba(184, 251, 60);
}

.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: #B8FB3C;
  border: 2px solid #B8FB3C;
  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 1px 11px rgba(184, 251, 60);
  background: rgba(7, 85, 233, 0.1);
  z-index: 1;
}

/* Social Media Bar */
.social-bar {
  position: fixed;
  right: 2rem;
  top: 90%;
  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: #B8FB3C;
  color: #1a1a1a;
  transform: translateY(-5px) scale(1.1);
  box-shadow:0 1px 11px rgba(184, 251, 60);
}

/* 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: #B8FB3C;
  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: #B8FB3C;
  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: #B8FB3C;
  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(184, 251, 60);
  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: #B8FB3C;
  transform: translateY(-5px);
  box-shadow: 0 1px 11px rgba(184, 251, 60);
}

/* 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: 4px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 26px;
    padding-right: 0px;
  }
  
  .timeline-item::after {
    left: 21px;
  }
  
  .left::after, .right::after {
    left: -6px;
  }
  
  .right {
    left: 0%;
  }
}

@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;
  }
}.services-section {
  padding: 2rem 4rem;
  background: #2a2a2a;
  text-align: center;
  font-family: Arial, sans-serif;
}

.services-section h2 {
  font-size: 32px;
  font-weight: bold;
  color: white;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background: #000;
  padding: 30px;
  border-radius: 6px;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 1px 11px rgba(184, 251, 60);
  transform: translateY(-10px);
  background-color: #B8FB3C;
}

.service-card:hover h3,
.service-card:hover p {
  color: #000;
}

.service-card:hover .arrow-btn {
  background: #000;
  color: #fff;
}

.service-icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: white;
}

.service-card p {
  font-size: 14px;
  color: white;
  margin-bottom: 20px;
}

.arrow-btn {
  display: inline-block;
  font-size: 18px;
  color: white;
  border: 2px solid #B8FB3C;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease;
}

.view-all-container {
  margin-top: 40px;
}

.view-all-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #B8FB3C;
  color: black;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  transition: background 0.3s ease;
}

.view-all-btn:hover {
  background: rgba(184, 251, 60, 0.7);
}

/* Responsive Tweaks */
@media (max-width: 1024px) {
  .services-section {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services-section h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 1.5rem;
  }

  .services-section h2 {
    font-size: 24px;
  }

  .service-card {
    padding: 20px;
  }

  .arrow-btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
    line-height: 26px;
  }
}
.pricing-section {
  padding: 2rem 4rem;
  text-align: center;
}

.pricing-title {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.pricing-subtitle {
  color: #b3b3d1;
  margin-bottom: 50px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: all 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(184, 251, 60, 0.4);
}

.featured {
  border: 0px solid transparent;
  background-image: linear-gradient(#1a1a40, #1a1a40),
    linear-gradient(135deg, #b8fb3c, #00eaff);
  background-origin: border-box;
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #b8fb3c;
  color: #000;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 20px;
}

.plan-type {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
}

ul li {
  margin: 12px 0;
  color: #fff;
  font-size: 0.95rem;
}

ul li i {
  color: #b8fb3c;
  margin-right: 10px;
}

.buy-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  background: #b8fb3c;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.buy-btn:hover {
  background: #b8fb3cb5;
  color: #fff;
}

/* ===== Responsive Adjustments ===== */

/* Tablets */
@media (max-width: 1024px) {
  .pricing-section {
    padding: 2rem;
  }
  .pricing-title {
    font-size: 2rem;
  }
  .pricing-subtitle {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .pricing-section {
    padding: 1.5rem;
  }
  .pricing-title {
    font-size: 1.8rem;
  }
  .pricing-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .pricing-card {
    padding: 20px;
  }
 
  ul li {
    font-size: 0.9rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .pricing-section {
    padding: 1rem;
  }
  .pricing-title {
    font-size: 1.6rem;
  }
  .pricing-subtitle {
    font-size: 0.9rem;
  }
  .buy-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
/* animation: Home_gradientMove__kEOCq 4s linear infinite; }       ,     .Home_TextGradient__dYgmE em, .Home_TextGradientBlue__Nm9HP em, .Home_TextGradientEm__olgie, .Home_TextGradientGreen__Lrv13 em, .Home_TextGradientOrange__QvkTw em, .Home_TextGradientPink__7y7PJ em, .Home_TextGradientPurple__xnbe3 em, .Home_TextGradientRainbow__DM0Xu em { font-style: normal; display: inline-block; -webkit-background-clip: text; -webkit-text-fill-color: transparent; } */