:root {
  --bg-color: #0a0a0a;
  --text-color: #f8f9fa;
  --primary-color: #4cc9f0;
  --secondary-color: #4895ef;
  --accent-color: #f72585;
  --nav-bg: rgb(26 60 110);
  --shadow: 0 4px 6px rgb(15 244 195 / 100%);
  --primary-color: #2563eb;
  --secondary-color: #1e3a8a;
  --accent-color: #38bdf8;
}

body.light-mode {
  --bg-color: #fdfdfd;
  --text-color: #1e1e1e;
  --primary-color: #2563eb;
  --secondary-color: #9333ea;
  --accent-color: #f43f5e;
  --card-bg: #ffffff;
  --nav-bg: rgba(255, 255, 255, 0.85);
  --shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: all 0.5s ease;
  overflow-x: hidden;
  position: relative;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

p {
  line-height: 1.6;
}

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

.threejs-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.15;
}

.hero-threejs-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
}

.floating-icons {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 30px;
  height: 30px;
  opacity: 0.3;
  transition: all 0.5s ease;
  animation: floatIcon 10s infinite ease-in-out;
}

.floating-icon:hover {
  opacity: 0.7;
  transform: scale(1.2) rotate(360deg);
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

/* ===== ENHANCED NAVBAR STYLES ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background-color: var(--nav-bg);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

body.light-mode .navbar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.logo {
  height: 50px;
  width: auto;
  transition: transform 0.5s ease-in-out;
  border-radius: 25px;
  padding: 3px;
}

.logo:hover {
  transform: scale(1.1) rotate(360deg);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-menu a {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent-color);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-btn .cv-button {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border: none;
  padding: 0.7rem 1.8rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 0.9rem;
}

.nav-btn .cv-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.nav-btn .cv-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.nav-btn .cv-button:hover::before {
  left: 0;
}

.nav-btn .cv-button a {
  color: white;
  text-decoration: none;
}

/* ===== DROPDOWN MENU STYLES ===== */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-toggle .fa-chevron-down {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.nav-dropdown.active .dropdown-toggle .fa-chevron-down {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

body.light-mode .dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-color);
  border-left-color: var(--accent-color);
  padding-left: 1.8rem;
}

body.light-mode .dropdown-menu a:hover {
  background: rgba(0, 0, 0, 0.05);
}
/* ===== MOBILE MENU - CLEAN STYLES ===== */

/* Base Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  z-index: 1001;
}

.mobile-menu-btn.active {
  display: block;
}

/* Hamburger Menu Toggle */
.menu-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
}

.menu-toggle:hover {
  opacity: 0.8;
}

.menu-toggle__hamburger {
  width: 25px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  display: block;
  position: relative;
}

.menu-toggle__hamburger::before,
.menu-toggle__hamburger::after {
  content: '';
  width: 25px;
  height: 2px;
  background: white;
  display: block;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
}

/* Light Mode - Hamburger Toggle */
body.light-mode .menu-toggle__hamburger,
body.light-mode .menu-toggle__hamburger::before,
body.light-mode .menu-toggle__hamburger::after {
  background: #333;
}

.menu-toggle__hamburger::before {
  top: -8px;
}

.menu-toggle__hamburger::after {
  bottom: -8px;
}

/* Active Hamburger Animation */
.menu-toggle.active .menu-toggle__hamburger {
  background: transparent;
}

.menu-toggle.active .menu-toggle__hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.active .menu-toggle__hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: none;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Container */
.mobile-nav-menu-container {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--nav-bg);
  z-index: 1001;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
}

.mobile-nav-menu-container.active {
  display: block;
  transform: translateX(0);
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Mobile Nav Header with Close Button */
.mobile-nav-header {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.mobile-nav-close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

/* Light Mode - Mobile Nav Header */
body.light-mode .mobile-nav-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .mobile-nav-close {
  color: #333;
}

body.light-mode .mobile-nav-close:hover {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
}

/* Mobile Nav Content - Main Menu Items */
.mobile-nav-content {
  flex: 1;
  padding: 0.5rem 0;
  overflow-y: auto;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-left-color: #38bdf8;
  padding-left: 1.8rem;
}

.mobile-nav-item i {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.mobile-nav-item span {
  font-weight: 500;
  font-size: 1rem;
}

/* Light Mode - Mobile Nav Items */
body.light-mode .mobile-nav-item {
  color: rgba(0, 0, 0, 0.8);
}

body.light-mode .mobile-nav-item:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #2563eb;
  border-left-color: #2563eb;
}

/* Mobile Nav Download Section */
.mobile-nav-download {
  padding: 1rem;
  border-top: 1px solid #e5e7eb;
  margin-top: auto;
}

.mobile-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: #2563eb;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.mobile-download-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-menu {
    display: none !important;
  }

  .nav-btn {
    display: none !important;
  }

  .navbar {
    padding: 1rem 1rem;
  }
}

@media (max-width: 480px) {
  .mobile-nav-menu-container {
    width: 90%;
    max-width: 280px;
  }

  .mobile-nav-item {
    padding: 0.65rem 1.2rem;
    font-size: 0.95rem;
  }

  .mobile-nav-close {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .mobile-download-btn {
    padding: 0.65rem 0.8rem;
    font-size: 0.9rem;
  }
}
/*Hero Section (Desktop)*/
.home-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 5%;
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      var(--secondary-color) 40%,
      rgba(10, 10, 10, 0.9) 100%);
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  transition: transform 0.3s ease;
}

.home-section:hover {
  transform: scale(1.003);
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 3rem;
  z-index: 1;
}

.left-content {
  max-width: 650px;
  padding-right: 2rem;
  z-index: 1;
}

.intro {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.95);
  animation: slideInLeft 1s ease-out;
}

.name {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  color: #fff;
  animation: fadeInUp 1s ease-out;
}

.title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 1s ease-out 0.2s;
  animation-fill-mode: both;
}

.subheading {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  font-weight: 500;
  animation: fadeInUp 1s ease-out 0.4s;
  animation-fill-mode: both;
}

.description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 1s ease-out 0.6s;
  animation-fill-mode: both;
}

.button-group {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 1s ease-out 0.8s;
  animation-fill-mode: both;
}

.contact-btn,
.projects-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-btn {
  background-color: var(--accent-color);
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.35);
}

.projects-btn {
  background-color: transparent;
  color: white;
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.contact-btn:hover,
.projects-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.contact-btn::after,
.projects-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.25),
      transparent);
  transition: all 0.4s ease;
}

.contact-btn:hover::after,
.projects-btn:hover::after {
  left: 100%;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.social-proof {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1.5rem;
  animation: fadeInUp 1s ease-out 1s;
  animation-fill-mode: both;
}

.right-image {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

.right-image img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 5px solid var(--primary-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.right-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .left-content {
    max-width: 100%;
    padding: 0 1rem;
  }

  .name {
    font-size: 3rem;
  }

  .title {
    font-size: 1.5rem;
  }

  .subheading {
    font-size: 1.2rem;
  }

  .description {
    font-size: 1rem;
  }

  .contact-btn,
  .projects-btn {
    width: 100%;
    max-width: 300px;
  }

  .right-image img {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 600px) {
  .home-section {
    padding: 4rem 1.5rem;
    min-height: 80vh;
  }

  .name {
    font-size: 2.5rem;
  }

  .intro {
    font-size: 1.2rem;
  }

  .title {
    font-size: 1.3rem;
  }

  .subheading {
    font-size: 1.1rem;
  }

  .description {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .right-image img {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 390px) {
  .home-section {
    padding: 3rem 1rem;
  }

  .hero-content {
    gap: 1.5rem;
  }

  .name {
    font-size: 2rem;
    word-break: break-word;
  }

  .intro {
    font-size: 1rem;
  }

  .title {
    font-size: 1.2rem;
  }

  .subheading {
    font-size: 1rem;
  }

  .description {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .button-group {
    flex-direction: column;
    gap: 0.8rem;
  }

  .right-image img {
    width: 140px;
    height: 140px;
  }
}

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

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes clickPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

.about-section {
  padding: 5rem 5%;
  gap: 3rem;
  position: relative;
}

.about-section:hover {
  transform: scale(1.01);
}

.about-left {
  flex: 1;
}

.about-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-description {
  margin-bottom: 2rem;
}

.about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-right h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.connect-description {
  margin-bottom: 1.5rem;
}

.social-buttons {
  display: flex;
  gap: 1rem;
}

.social-buttons img {
  width: 40px;
  height: 40px;
  transition: transform 0.5s ease-in-out;
}

.social-buttons img:hover {
  transform: scale(1.2) rotate(360deg);
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

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

/* Header */
.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-subtitle {
  color: #60a5fa;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.services-title {
  font-size: 3rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-description {
  font-size: 1.2rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.1), transparent);
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #60a5fa;
  box-shadow: 0 20px 40px rgba(96, 165, 250, 0.2);
}

.service-card.featured {
  border: 2px solid #60a5fa;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(255, 255, 255, 0.05));
}

.popular-badge {
  position: absolute;
  top: 4px;
  right: 20px;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

/* Service Icon */
.service-icon {
  margin-bottom: 25px;
  text-align: center;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(96, 165, 250, 0.4);
}

/* Service Content */
.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 15px;
  text-align: center;
}

.service-description {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

/* Service Features */
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
  justify-content: center;
}

.feature {
  background: rgba(96, 165, 250, 0.1);
  color: #60a5fa;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(96, 165, 250, 0.2);
}

/* Tech Stack */
.tech-stack {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.tech-stack i {
  font-size: 1.5rem;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-stack i:hover {
  transform: scale(1.15);
  background: rgba(96, 165, 250, 0.2);
  box-shadow: 0 5px 15px rgba(96, 165, 250, 0.3);
}

/* Service CTA */
.service-cta {
  text-align: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
}

.service-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.service-link:hover::before {
  left: 100%;
}

.service-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(96, 165, 250, 0.5);
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.service-link:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(96, 165, 250, 0.4);
}

/* Arrow animation on hover */
.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(3px);
}

/* Alternative CTA Styles for Different Services */
.service-card:nth-child(2) .service-link {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.service-card:nth-child(2) .service-link:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.service-card:nth-child(3) .service-link {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.service-card:nth-child(3) .service-link:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

/* Featured Service CTA Special Styling */
.service-card.featured .service-link {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
  animation: pulse-gold 2s infinite;
}

.service-card.featured .service-link:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
  animation: none;
}

@keyframes pulse-gold {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
  }

  50% {
    box-shadow: 0 4px 25px rgba(245, 158, 11, 0.7);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .service-link {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .service-cta {
    margin-top: 20px;
    padding-top: 15px;
  }
}

@media (max-width: 480px) {
  .service-link {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
}

/* Services CTA */
.services-cta {
  background: linear-gradient(135deg, #1e40af 0%, #1e293b 100%);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.cta-content h3 {
  color: #f8fafc;
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-content p {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(96, 165, 250, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }

  .services-title {
    font-size: 2.2rem;
  }

  .services-description {
    font-size: 1.1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .services-cta {
    padding: 30px 20px;
  }

  .cta-content h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-title {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 25px 15px;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .service-title {
    font-size: 1.2rem;
  }

  .service-description {
    font-size: 0.9rem;
  }

  .tech-stack i {
    font-size: 1.2rem;
    padding: 8px;
  }
}

.projects-section {
  padding: 5rem 5%;
  position: relative;
}

.projects-section:hover {
  transform: scale(1.01);
}

.projects-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5rem;
}

.projects-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.projects-description {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

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

.project-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.5s ease;
  background: #111;
  color: #fff;
}

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

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}

.project-card img:hover {
  transform: scale(1.2);
}

.project-name {
  font-weight: 700;
  font-size: 1.3rem;
  padding: 1rem;
  text-align: left;
  color: #ffd43b;
}

.project-details {
  padding: 0 1rem 1rem;
  color: #ddd;
  line-height: 1.6;
  font-size: 0.95rem;
}

.detail-heading {
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 0.2rem;
}

.detail-heading.problem {
  color: #ff4d6d;
}

.detail-heading.solution {
  color: #ffd43b;
}

.detail-heading.impact {
  color: #4dd0e1;
}

.project-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: var(--primary-color);
  font-weight: 600;
  transition: color 0.3s ease, transform 0.3s ease;
}

.project-link:hover {
  color: var(--accent-color);
  transform: scale(1.05);
}

.tech-stack {
  display: flex;
  gap: 0.8rem;
  padding: 0 1rem 1rem;
  flex-wrap: wrap;
}

.tech-stack i {
  font-size: 1.8rem;
  transition: transform 0.4s ease, color 0.4s ease, text-shadow 0.4s ease;
  cursor: pointer;
  color: inherit;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.15);
}

.tech-stack i:hover {
  transform: scale(1.2);
  text-shadow:
    0 0 6px currentColor,
    0 0 12px rgba(255, 255, 255, 0.3);
}

.clients-section {
  padding: 5rem 5%;
  text-align: center;
  position: relative;
}

.clients-section:hover {
  transform: scale(1.01);
}

.clients-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.clients-description {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.clients-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.client-logo img {
  height: 50px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.5s ease-in-out;
}

.client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.2) rotate(360deg);
}

.cta-section {
  background: linear-gradient(135deg, #0e15514a 0%, #067e52ab 100%);
  padding: 3rem;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
  transition: transform 0.5s ease;
  text-align: center;
}

.cta-section:hover {
  transform: scale(1.05);
}

.cta-text {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 2rem;
}

.cta-input-group {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.email-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 5px 0 0 5px;
  font-size: 1rem;
}

.quote-btn {
  padding: 0 1.5rem;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 0 5px 5px 0;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.quote-btn:hover {
  animation: none;
  background-color: #d91a6d;
  transform: scale(1.05);
}

.quote-btn:active {
  animation: clickPulse 0.3s ease;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* Responsive Fix for Mobile */
@media (max-width: 600px) {
  .cta-section {
    padding: 2rem 1rem;
  }

  .cta-text {
    font-size: 1.2rem;
  }

  .cta-input-group {
    flex-direction: column;
    width: 100%;
  }

  .email-input {
    border-radius: 5px;
    margin-bottom: 1rem;
    width: 100%;
  }

  .quote-btn {
    border-radius: 5px;
    width: 100%;
    padding: 0.75rem;
  }
}

.skills-section {
  padding: 5rem 5%;
  position: relative;
}

.skills-section:hover {
  transform: scale(1.01);
}

.skills-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5rem;
}

.skills-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.skills-description {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.resume-content {
  max-width: 1200px;
  margin: 0 auto;
}

.resume-flex {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.resume-box {
  flex: 1;
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.resume-box:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.resume-box:active {
  animation: clickPulse 0.3s ease;
}

.resume-subheading {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.resume-degree {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.resume-institution,
.resume-duration,
.resume-cgpa {
  color: rgba(var(--text-color), 0.8);
  margin-bottom: 0.5rem;
}

.resume-info {
  margin-top: 1rem;
}

.skills-heading {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--primary-color);
}

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

.skill-box {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.skill-box:hover {
  box-shadow: 0 0 15px var(--primary-color);
  transform: scale(1.05);
}

.skill-box:active {
  animation: clickPulse 0.3s ease;
}

.skill-logo {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  transition: transform 0.5s ease-in-out;
}

.skill-logo:hover {
  transform: scale(1.2) rotate(360deg);
}

.progress-bar {
  height: 8px;
  background-color: rgba(var(--text-color), 0.1);
  border-radius: 4px;
  margin: 0.5rem 0;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg,
      var(--primary-color),
      var(--secondary-color));
  border-radius: 4px;
}

/* ===========================
   ✨ TESTIMONIALS SECTION (PREMIUM DESIGN)
=========================== */

.testimonials-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(96, 165, 250, 0.08), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.06), transparent 70%);
  pointer-events: none;
}

/* ===========================
   HEADER
=========================== */
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-subtitle {
  color: #60a5fa;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: block;
}

.testimonials-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 15px;
  line-height: 1.25;
}

.testimonials-description {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ===========================
   TESTIMONIALS GRID
=========================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.2);
}

/* Header Logo */
.testimonial-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.2rem;
}

.client-logo {
  width: 100%;
  max-width: 120px;
  height: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 1rem;
  padding: 0.8rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Content */
.testimonial-content {
  text-align: center;
  margin-bottom: 20px;
}

.quote-icon {
  color: #60a5fa;
  font-size: 1.5rem;
  margin-bottom: 12px;
  opacity: 0.8;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.65;
  color: #e2e8f0;
  margin-bottom: 20px;
}

/* Business Results */
.business-results {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.result-item {
  padding: 8px 14px;
  background: rgba(96, 165, 250, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(96, 165, 250, 0.2);
  text-align: center;
}

.result-metric {
  font-size: 0.9rem;
  font-weight: 600;
  color: #60a5fa;
}

.result-label {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* Author Info */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.author-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #3b82f6;
  box-shadow: 0 2px 10px rgba(96, 165, 250, 0.2);
  transition: all 0.3s ease;
}

.author-avatar:hover {
  transform: scale(1.08);
  border-color: #60a5fa;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 600;
  color: #f8fafc;
  font-size: 1rem;
  margin-bottom: 2px;
}

.author-company {
  color: #60a5fa;
  font-weight: 500;
  font-size: 0.85rem;
}

.author-role {
  color: #94a3b8;
  font-size: 0.8rem;
}

.rating {
  color: #fbbf24;
  font-size: 0.85rem;
}

/* ===========================
   TRUST INDICATORS
=========================== */
.trust-indicators {
  text-align: center;
  margin-bottom: 60px;
  padding: 35px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.trust-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 20px;
}

.client-locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.location-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: rgba(96, 165, 250, 0.1);
  border-radius: 10px;
  color: #60a5fa;
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.location-item i {
  color: #3b82f6;
  font-size: 0.9rem;
}

/* ===========================
   CTA SECTION
=========================== */
.testimonial-cta {
  background: linear-gradient(135deg, #1e40af 0%, #1e293b 100%);
  border-radius: 18px;
  padding: 50px 30px;
  text-align: center;
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.cta-content h3 {
  color: #f8fafc;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.cta-content p {
  color: #cbd5e1;
  font-size: 1rem;
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  color: white;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(96, 165, 250, 0.4);
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.btn-secondary {
  background: transparent;
  color: #f8fafc;
  border: 2px solid #60a5fa;
}

.btn-secondary:hover {
  background: rgba(96, 165, 250, 0.1);
  transform: translateY(-3px);
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 70px 0;
  }

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

  .testimonials-description {
    font-size: 1rem;
  }

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

  .testimonial-cta {
    padding: 35px 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .testimonials-title {
    font-size: 1.7rem;
  }

  .testimonial-card {
    padding: 22px;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
  }

  .client-locations {
    grid-template-columns: 1fr;
  }
}


/* Quick Contact Icons */
.quick-contact-icons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

/* 🌟 Button Style */
.quick-contact-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

/* ✨ Hover effect */
.quick-contact-icon:hover {
  transform: scale(1.15) translateY(-3px);
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* 🎭 Icon inside button */
.quick-contact-icon img {
  width: 28px;
  height: 28px;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
}

.quick-contact-icon:hover img {
  transform: scale(1.25) rotate(12deg);
}


/* ===========================
   ✨ BUSINESS CONTACT SECTION
=========================== */

.contact-section {
  padding: 6rem 8%;
  background: var(--card-bg);
  color: var(--text-color);
  position: relative;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s ease;
}

body.light-mode .contact-section {
  background: #fafafa;
  color: #1c1c1c;
}

/* ===== HEADER ===== */
.contact-header {
  max-width: 850px;
  margin: 0 auto 4rem;
}

.contact-subtitle {
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
}

.contact-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.contact-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin: 0 auto;
}

body.light-mode .contact-description {
  color: rgba(0, 0, 0, 0.7);
}

/* ===== CONTACT GRID ===== */
.contact-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* ===== LEFT INFO CARD ===== */
.contact-info {
  flex: 1;
  min-width: 320px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
}

body.light-mode .contact-info {
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.contact-info:hover {
  transform: translateY(-5px);
}

.contact-info h3 {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* ===== METHODS ===== */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

body.light-mode .contact-method {
  background: #f6f6f6;
}

.contact-method:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  transform: translateY(-4px);
}

.contact-method i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.contact-method:hover i {
  color: #fff;
}

.contact-method h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.contact-method a,
.contact-method p {
  font-size: 0.95rem;
  opacity: 0.9;
  color: inherit;
  text-decoration: none;
}

.contact-method a:hover {
  text-decoration: underline;
}

/* ===== FORM CARD ===== */
.contact-form {
  flex: 1;
  min-width: 320px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
  text-align: left;
}

body.light-mode .contact-form {
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.contact-form:hover {
  transform: translateY(-5px);
}

.contact-form h3 {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* ===== FORM ELEMENTS ===== */
.form-group {
  margin-bottom: 1.2rem;
  position: relative;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Custom Select Dropdown Styling */
.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 3rem;
  cursor: pointer;
}

body.light-mode .contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

/* Select Options Styling */
.contact-form select option {
  background: #1a1a1a;
  color: #ffffff;
  padding: 12px;
  font-size: 1rem;
  border: none;
}

body.light-mode .contact-form select option {
  background: #ffffff;
  color: #333333;
}

/* Focus state for select */
.contact-form select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2337b9f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
  transform: scale(1.02);
  outline: none;
}

body.light-mode .contact-form select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2337b9f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

/* Light Mode Form Elements */
body.light-mode .contact-form input,
body.light-mode .contact-form select,
body.light-mode .contact-form textarea {
  background: #f9fafc;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #111;
}

/* Placeholder Styling */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

body.light-mode .contact-form input::placeholder,
body.light-mode .contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

/* Focus States */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
  transform: scale(1.02);
  outline: none;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* Form Note */
.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  line-height: 1.4;
}

body.light-mode .form-note {
  color: rgba(0, 0, 0, 0.5);
}

/* ===== SUBMIT BUTTON ===== */
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.submit-btn:active {
  transform: translateY(-1px);
}

.submit-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

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

/* ===== ENHANCED SELECT DROPDOWN FOR DIFFERENT BROWSERS ===== */
/* For WebKit browsers */
.contact-form select::-ms-expand {
  display: none;
}

/* For Firefox */
.contact-form select {
  text-indent: 0.01px;
  text-overflow: '';
}

/* For IE10+ */
.contact-form select::-ms-expand {
  display: none;
}

/* Custom dropdown arrow container */
.form-group select {
  position: relative;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .contact-content {
    flex-direction: column;
    gap: 2.5rem;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .contact-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 4rem 6%;
  }

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

  .contact-description {
    font-size: 1rem;
  }

  .contact-info,
  .contact-form {
    padding: 1.8rem;
    min-width: unset;
  }

  .contact-method {
    padding: 0.8rem 1rem;
  }

  .submit-btn {
    font-size: 0.95rem;
    padding: 0.8rem 1.2rem;
  }

  /* Adjust select padding for mobile */
  .contact-form select {
    padding-right: 2.5rem;
    background-position: right 0.8rem center;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    border-width: 2px;
  }
  
  .contact-form select:focus,
  .contact-form input:focus,
  .contact-form textarea:focus {
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.5);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .contact-section,
  .contact-info,
  .contact-form,
  .contact-method,
  .submit-btn,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    transition: none;
  }
  
  .submit-btn::before {
    display: none;
  }
}
/* Footer Styles */
.footer-section {
  color: #e2e8f0;
  padding: 60px 0 20px;
  margin-top: 80px;
  border-top: 1px solid #334155;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.newsletter-content h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.newsletter-content p {
  color: #dbeafe;
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.newsletter-form {
  max-width: 500px;
}

.input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.newsletter-input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-input:focus {
  outline: none;
  box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
}

.newsletter-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 15px 30px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.newsletter-note {
  font-size: 0.85rem;
  color: #93c5fd;
  margin: 0;
}

.newsletter-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
  font-weight: 500;
}

.benefit-item i {
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Main Footer Content */
.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.brand-column {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
}

.logo-text {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-tagline {
  color: #94a3b8;
  margin-bottom: 25px;
  line-height: 1.6;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 7rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #94a3b8;
}

.contact-item a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #3b82f6;
}

.contact-item i {
  width: 20px;
  color: #3b82f6;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: #3b82f6;
  transform: translateX(5px);
}

.footer-links a:before {
  content: "▸";
  margin-right: 8px;
  color: #3b82f6;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.footer-links a:hover:before {
  transform: translateX(3px);
}

.client-cta {
  background: rgba(59, 130, 246, 0.1);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #334155;
  margin-top: 20px;
}

.client-cta p {
  color: #e2e8f0;
  margin-bottom: 15px;
  font-weight: 500;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* ===== Footer Bottom ===== */
.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 40px;
  text-align: center;
}

/* ===== Social Section ===== */
.social-section {
  margin-bottom: 35px;
}

.social-title {
  color: #94a3b8;
  font-weight: 500;
  margin-bottom: 25px;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 12px;
  padding: 10px;
  position: relative;
}

.social-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 8px;
  position: relative;
  transition: all 0.3s ease;
}

/* Verified Badge */
.verified-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: #1e293b;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.verified-badge i {
  color: #3b82f6;
  font-size: 0.9rem;
}

/* Hover animation */
.social-link:hover .social-icon {
  transform: scale(1.15);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

/* Platform colors */
.facebook { background: #1877f2; }
.twitter { background: #1da1f2; }
.linkedin { background: #0077b5; }
.github { background: #24292e; }
.whatsapp { background: #25d366; }

.social-icon i {
  font-size: 1.4rem;
}

.social-link span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #cbd5e1;
  transition: color 0.3s ease;
}

.social-link:hover span {
  color: #fff;
}

/* ===== Legal Section ===== */
.legal {
  margin-top: 25px;
}

.legal-links {
  color: #94a3b8;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.legal-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #3b82f6;
}

.copyright {
  color: #64748b;
  font-size: 0.85rem;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 600px) {
  .social-icon {
    width: 45px;
    height: 45px;
  }
  .social-link span {
    font-size: 0.8rem;
  }
}

.legal-section {
  text-align: center;
  border-top: 1px solid #334155;
  padding-top: 30px;
}

.legal-links {
  margin-bottom: 20px;
}

.legal-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.legal-links a:hover {
  color: #3b82f6;
}

.separator {
  color: #475569;
  margin: 0 10px;
}

.copyright {
  color: #64748b;
}

.copyright p {
  margin: 5px 0;
}

.business-tag {
  color: #3b82f6;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .newsletter-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 20px;
  }

  .input-group {
    flex-direction: column;
  }

  .newsletter-btn {
    justify-content: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-column {
    max-width: 100%;
  }

  .footer-logo {
    justify-content: center;
  }

  .contact-info {
    align-items: center;
  }

  .social-links {
    gap: 10px;
  }

  .social-link {
    min-width: 70px;
    padding: 10px;
  }

  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .separator {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-section {
    padding: 40px 0 20px;
  }

  .newsletter-section {
    padding: 25px 15px;
  }

  .newsletter-content h3 {
    font-size: 1.5rem;
  }

  .social-links {
    gap: 5px;
  }

  .social-link {
    min-width: 60px;
    padding: 8px;
  }

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

@media (max-width: 1024px) {

  .about-section,
  .resume-flex,
  .contact-content {
    flex-direction: column;
  }

  .testimonials-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {

  .nav-menu,
  .nav-btn {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .home-section {
    flex-direction: column;
    text-align: center;
    padding-top: 2rem;
  }

  .button-group {
    justify-content: center;
  }

  .right-image {
    margin-top: 3rem;
  }

  .right-image img {
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .name {
    font-size: 2.5rem;
  }

  .title {
    font-size: 1.2rem;
  }

  .button-group {
    flex-direction: column;
  }

  .quick-contact-icons {
    bottom: 1rem;
    right: 1rem;
  }

  .quick-contact-icon {
    width: 40px;
    height: 40px;
  }

  .quick-contact-icon img {
    width: 20px;
    height: 20px;
  }

  .floating-icon {
    width: 20px;
    height: 20px;
  }
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1rem;
  transition: transform 0.5s ease-in-out;
}

.theme-toggle:hover {
  transform: scale(1.1) rotate(360deg);
}

.theme-toggle i {
  font-size: 1.8rem;
}

.stats-section {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 80px 5%;
  color: #f8fafc;
  position: relative;
  text-align: center;
  overflow: hidden;
  }
  
  .stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  }
  
  .stat-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
  }
  
  .stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 1.8rem;
  transition: all 0.4s ease;
  }
  
  .stat-item:hover .stat-icon {
  background: #3b82f6;
  color: white;
  transform: scale(1.15) rotate(10deg);
  }
  
  .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  -webkit-text-fill-color: transparent;
  transition: color 0.3s ease;
  }
  
  .stat-label {
  font-size: 1rem;
  color: #cbd5e1;
  margin-bottom: 15px;
  }
  
  .progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(148, 163, 184, 0.2);
  border-radius: 5px;
  overflow: hidden;
  }
  
  .progress-bar span {
  display: block;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  animation: growBar 2s ease forwards;
  }
  
  @keyframes growBar {
  from {
  width: 0;
  }
  to {
  width: var(--width, 100%);
  }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
  .stat-number {
  font-size: 2rem;
  }
  .stat-label {
  font-size: 0.95rem;
  }
  .stat-item {
  padding: 25px 15px;
  }
  }
  