/* 
===============================================
  Global Styles and Variables
===============================================
*/
:root {
  /* Main Colors */
  --primary: #0d6efd;
  --primary-light: #3d8bfd;
  --primary-dark: #0a58ca;
  --secondary: #6c757d;
  --secondary-light: #a8aeb4;
  --secondary-dark: #495057;
  --accent: #20c997;
  --accent-light: #4dd4ac;
  --accent-dark: #17a37d;
  
  /* Status Colors */
  --success: #198754;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #0dcaf0;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light: #f8f9fa;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --dark: #212529;
  
  /* Other Variables */
  --body-bg: var(--white);
  --body-color: var(--gray-800);
  --heading-color: var(--gray-900);
  --border-radius: 0.5rem;
  --border-radius-sm: 0.25rem;
  --border-radius-lg: 1rem;
  --transition: all 0.3s ease-in-out;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Dark Mode Variables */
[data-theme="dark"] {
  --body-bg: #121212;
  --body-color: #e0e0e0;
  --heading-color: #f8f9fa;
  --card-bg: #1e1e1e;
  --border-color: rgba(255, 255, 255, 0.1);
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Base Styles */
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--body-color);
  background-color: var(--body-bg);
  line-height: 1.6;
  overflow-x: hidden;
  transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

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

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

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

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

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

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

/* 
===============================================
  Preloader Styles
===============================================
*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--body-bg);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  width: 50px;
  height: 50px;
  border: 3px solid var(--gray-300);
  border-radius: 50%;
  border-top-color: var(--primary);
  animation: rotate 1s infinite ease-in-out;
}

/* 
===============================================
  Header/Navigation Styles
===============================================
*/
#mainNav {
  transition: var(--transition);
  padding: 1rem 0;
}

#mainNav.navbar-scrolled {
  box-shadow: var(--box-shadow);
  background-color: var(--white);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

.logo-text {
  position: relative;
  padding-bottom: 5px;
}

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

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
  color: var(--gray-700);
}

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

.nav-link:hover:before,
.nav-link.active:before {
  width: 70%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.btn-theme-switch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-200);
  color: var(--gray-700);
  transition: var(--transition);
}

.btn-theme-switch:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* 
===============================================
  Hero Section Styles
===============================================
*/
.hero-section {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bg-shape-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background-color: rgba(13, 110, 253, 0.1);
  top: -250px;
  right: -200px;
}

.bg-shape-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(32, 201, 151, 0.1);
  bottom: -100px;
  left: -100px;
}

.welcome-text {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
  padding-left: 40px;
}

.welcome-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
  transform: translateY(-50%);
}

.hero-content .name {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.hero-content .name:after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 15px;
  background-color: rgba(32, 201, 151, 0.2);
  z-index: -1;
}

.profession {
  color: var(--gray-700);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  height: 40px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.hero-btns .btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

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

.hero-image {
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.hero-image img {
  max-width: 90%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
}

.shape {
  position: absolute;
  z-index: -1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float 8s ease-in-out infinite alternate;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background-color: rgba(13, 110, 253, 0.1);
  top: -50px;
  left: -100px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background-color: rgba(32, 201, 151, 0.1);
  bottom: -30px;
  right: -50px;
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 0;
  background-color: var(--white);
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
}

.exp-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.exp-text {
  font-size: 0.75rem;
  text-align: center;
  color: var(--gray-700);
}

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

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  animation: fadeIn 1s both, pulse 2s infinite;
}

.scroll-down a {
  color: var(--gray-700);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.scroll-down a:hover {
  color: var(--primary);
}

.scroll-down i {
  font-size: 1.5rem;
  animation: slideDown 2s infinite;
}

/* 
===============================================
  Common Section Styles
===============================================
*/
.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary);
}

.section-title p {
  color: var(--gray-600);
  font-size: 1.1rem;
}

/* 
===============================================
  About Section Styles
===============================================
*/
.about-image {
  position: relative;
  margin-bottom: 30px;
}

.about-image img {
  box-shadow: var(--box-shadow);
}

.experience-box {
  position: absolute;
  bottom: 30px;
  right: 0;
  background-color: var(--primary);
  color: var(--white);
  padding: 1rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
}

.experience-box h3 {
  font-size: 2rem;
  margin-bottom: 0;
  color: var(--white);
}

.experience-box p {
  margin-bottom: 0;
  font-size: 0.85rem;
}

.about-content h3 {
  margin-bottom: 1.5rem;
  color: var(--gray-800);
}

.about-content p {
  margin-bottom: 1.5rem;
  color: var(--gray-700);
}

.info-item {
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
}

.info-title {
  min-width: 80px;
  font-weight: 600;
  color: var(--gray-800);
}

.info-value {
  color: var(--gray-600);
}

.info-value.available {
  color: var(--success);
}

.about-btns .btn {
  padding: 0.6rem 1.5rem;
  font-weight: 500;
}

/* 
===============================================
  Skills Section Styles
===============================================
*/
.skills-content h3 {
  position: relative;
  padding-bottom: 10px;
}

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

.skill-item {
  margin-bottom: 25px;
}

.skill-item h6 {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.skill-progress {
  width: 100%;
  height: 8px;
  background-color: var(--gray-200);
  border-radius: 5px;
  overflow: hidden;
}

.skill-progress-bar {
  height: 100%;
  background-color: var(--primary);
  border-radius: 5px;
  transition: width 1.5s ease-in-out;
}

.skill-box {
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.skill-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.skill-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(13, 110, 253, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.skill-icon i {
  font-size: 28px;
  color: var(--primary);
}

.skill-box h5 {
  margin-bottom: 0;
  font-size: 1rem;
}

/* 
===============================================
  Portfolio Section Styles
===============================================
*/
.btn-filter {
  background: transparent;
  border: none;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem 1rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
  position: relative;
}

.btn-filter:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.btn-filter:hover, .btn-filter.active {
  color: var(--primary);
}

.btn-filter:hover:after, .btn-filter.active:after {
  width: 80%;
}

.portfolio-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  background-color: var(--white);
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.portfolio-img {
  position: relative;
  overflow: hidden;
}

.portfolio-img img {
  transition: var(--transition);
}

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 110, 253, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay-content {
  display: flex;
  gap: 1rem;
}

.portfolio-overlay-content a {
  width: 45px;
  height: 45px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s 0.1s ease-in-out;
}

.portfolio-card:hover .portfolio-overlay-content a {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-overlay-content a:hover {
  background-color: var(--primary);
  color: var(--white);
}

.portfolio-info {
  padding: 20px;
}

.portfolio-info h4 {
  margin-bottom: 5px;
  font-size: 1.25rem;
}

.portfolio-info p {
  color: var(--gray-600);
  margin-bottom: 0;
}

/* 
===============================================
  Services Section Styles
===============================================
*/
.service-box {
  padding: 40px 30px;
  border-radius: var(--border-radius);
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  z-index: 1;
}

.service-box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary);
  transition: var(--transition);
  z-index: -1;
}

.service-box:hover:before {
  height: 100%;
}

.service-box:hover {
  transform: translateY(-10px);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(13, 110, 253, 0.1);
  color: var(--primary);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.service-box:hover .service-icon {
  background-color: var(--white);
}

.service-box h4 {
  margin-bottom: 15px;
  transition: var(--transition);
}

.service-box p {
  color: var(--gray-600);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-link {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.service-link i {
  transition: var(--transition);
}

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

.service-box:hover h4,
.service-box:hover p,
.service-box:hover .service-link {
  color: var(--white);
}

/* 
===============================================
  Testimonials Section Styles
===============================================
*/
.testimonial-item {
  padding: 30px;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--gray-200);
}

.testimonial-content p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding: 0 20px;
}

.testimonial-content p:before,
.testimonial-content p:after {
  content: '"';
  position: absolute;
  font-size: 2rem;
  color: var(--primary);
  line-height: 1;
}

.testimonial-content p:before {
  top: -10px;
  left: 0;
}

.testimonial-content p:after {
  bottom: -10px;
  right: 0;
}

.testimonial-content h5 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.testimonial-content span {
  color: var(--gray-600);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-rating {
  color: var(--warning);
  font-size: 1rem;
}

.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  box-shadow: var(--box-shadow);
  color: var(--primary);
}

.carousel-control-prev {
  left: -20px;
}

.carousel-control-next {
  right: -20px;
}

.carousel-indicators {
  bottom: -50px;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gray-300);
  margin: 0 5px;
}

.carousel-indicators button.active {
  background-color: var(--primary);
}

/* 
===============================================
  Contact Section Styles
===============================================
*/
.contact-info {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(13, 110, 253, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
}

.contact-details h5 {
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.contact-details p {
  margin-bottom: 0;
  color: var(--gray-600);
}

.contact-social h5 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.contact-form {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  height: 100%;
}

.form-floating > label {
  color: var(--gray-600);
}

.form-control {
  border-color: var(--gray-300);
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

/* 
===============================================
  Footer Styles
===============================================
*/
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 30px 0;
}

.copyright {
  font-size: 0.9rem;
}

.footer .social-icons a {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
  border-color: transparent;
}

.footer .social-icons a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

/* 
===============================================
  WhatsApp Button & Popup Styles
===============================================
*/
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  cursor: pointer;
  z-index: 99;
  font-size: 28px;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-popup {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 300px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  z-index: 999;
  overflow: hidden;
  transform: scale(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-in-out;
}

.whatsapp-popup.show {
  transform: scale(1);
}

.whatsapp-popup-header {
  background-color: #25D366;
  color: var(--white);
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
}

.whatsapp-popup-header h5 {
  margin: 0;
  font-size: 1rem;
  color: var(--white);
}

.status {
  font-size: 0.75rem;
  opacity: 0.8;
  margin: 0;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
}

.whatsapp-popup-body {
  padding: 15px;
  max-height: 200px;
  overflow-y: auto;
}

.whatsapp-popup-body p {
  background-color: #e2f7cb;
  padding: 10px 15px;
  border-radius: 10px;
  margin-bottom: 0;
  position: relative;
}

.whatsapp-popup-body p:after {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-right: 15px solid #e2f7cb;
  border-bottom: 10px solid transparent;
}

.whatsapp-popup-footer {
  padding: 15px;
  border-top: 1px solid var(--gray-200);
}

.whatsapp-popup-footer .btn-success {
  background-color: #25D366;
  border-color: #25D366;
}

.whatsapp-popup-footer .btn-success:hover {
  background-color: #128C7E;
  border-color: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* 
===============================================
  Back to Top Button
===============================================
*/
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(13, 110, 253, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
}

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

.back-to-top:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-5px);
}

/* 
===============================================
  Responsive Styles
===============================================
*/
@media (max-width: 1199.98px) {
  .hero-content .name {
    font-size: 3rem;
  }
  
  .profession {
    font-size: 1.5rem;
  }
  
  .experience-badge {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 80px 0;
  }
  
  .hero-section {
    height: auto;
    padding: 120px 0 80px;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .hero-content .name {
    font-size: 2.5rem;
  }
  
  .hero-desc {
    margin: 0 auto 1.5rem;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .welcome-text:before {
    left: -40px;
    top: 50%;
  }
  
  .scroll-down {
    bottom: 20px;
  }
  
  .about-image {
    margin-bottom: 40px;
  }
  
  .carousel-control-prev {
    left: 0;
  }
  
  .carousel-control-next {
    right: 0;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .hero-content .name {
    font-size: 2.25rem;
  }
  
  .profession {
    font-size: 1.25rem;
    height: 30px;
  }
  
  .hero-desc {
    font-size: 1rem;
  }
  
  .about-content h3 {
    font-size: 1.5rem;
  }
  
  .personal-info .col-md-6:first-child {
    margin-bottom: 1rem;
  }
  
  .contact-info {
    margin-bottom: 30px;
  }
}

@media (max-width: 575.98px) {
  .section-padding {
    padding: 50px 0;
  }
  
  .hero-content .name {
    font-size: 2rem;
  }
  
  .hero-image {
    max-width: 80%;
    margin: 0 auto;
  }
  
  .experience-badge {
    width: 80px;
    height: 80px;
    right: 0;
  }
  
  .exp-number {
    font-size: 1.5rem;
  }
  
  .exp-text {
    font-size: 0.7rem;
  }
  
  .whatsapp-popup {
    width: 280px;
    right: 20px;
    bottom: 90px;
  }
  
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    right: 20px;
    bottom: 20px;
    font-size: 24px;
  }
  
  .back-to-top {
    width: 40px;
    height: 40px;
    left: 20px;
    bottom: 20px;
  }
}