/**
* Template Name: MyResume
* Template URL: https://bootstrapmade.com/free-html-bootstrap-template-my-resume/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General - Modern Purple & White UI
--------------------------------------------------------------*/
:root {
  --primary-purple: #6366f1;
  --dark-purple: #4f46e5;
  --light-purple: #818cf8;
  --accent-purple: #8b5cf6;
  --white: #ffffff;
  --light-gray: #f8fafc;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --gradient-purple: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  --gradient-purple-light: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
  --gradient-hero: linear-gradient(135deg, rgba(99, 102, 241, 0.95) 0%, rgba(139, 92, 246, 0.95) 50%, rgba(236, 72, 153, 0.85) 100%);
  --shadow-sm: 0 2px 8px rgba(99, 102, 241, 0.08);
  --shadow-md: 0 4px 16px rgba(99, 102, 241, 0.12);
  --shadow-lg: 0 8px 32px rgba(99, 102, 241, 0.16);
  --shadow-xl: 0 16px 48px rgba(99, 102, 241, 0.2);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
}

* {
  scroll-behavior: smooth;
}

html {
  scroll-padding-top: 80px;
}

body {
  font-family: "Inter", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 991px) {
  body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  html {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  * {
    max-width: 100%;
  }
}

a {
  color: var(--primary-purple);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--dark-purple);
  text-decoration: none;
  transform: translateY(-2px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2d3436;
  margin-bottom: 1rem;
}


.download-resume {
  float: left;
  width: 100%;
}
.download-link {
  margin-top: 0;
  background: var(--gradient-purple);
  border: 0;
  padding: 16px 40px;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50px;
  font-size: 18px !important;
  color: white !important;
  box-shadow: var(--shadow-lg);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  will-change: transform;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

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

.download-link:hover {
  background: var(--gradient-purple-light);
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.6);
  transform: translateY(-2px);
}

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

.mg-top-20 {
  margin-top: 20px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--gradient-purple);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--gradient-purple-light);
  color: #fff;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.6);
}

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

/* Floating Hire Me Button */
.floating-hire-btn {
  position: fixed;
  bottom: 90px;
  right: 15px;
  z-index: 995;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  transition: all 0.4s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: float 3s ease-in-out infinite;
}

.floating-hire-btn:hover {
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
  color: #ffffff;
  text-decoration: none;
}

.floating-hire-btn i {
  font-size: 24px;
}

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

@media (max-width: 768px) {
  .floating-hire-btn {
    bottom: 80px;
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .floating-hire-btn span {
    display: none;
  }
  
  .floating-hire-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }
  
  .floating-hire-btn i {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--gradient-purple);
  transition: opacity 0.3s ease;
}

#preloader[style*="display: none"] {
  display: none !important;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100px;
  z-index: 9997;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px 12px;
  overflow-y: auto;
  overflow-x: hidden;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.98) 100%);
  border-right: 1px solid rgba(99, 102, 241, 0.08);
  box-shadow: 2px 0 24px rgba(99, 102, 241, 0.06);
}

#header::-webkit-scrollbar {
  width: 4px;
}

#header::-webkit-scrollbar-track {
  background: transparent;
}

#header::-webkit-scrollbar-thumb {
  background: rgba(99, 102, 241, 0.2);
  border-radius: 2px;
}

#header::-webkit-scrollbar-thumb:hover {
  background: rgba(99, 102, 241, 0.3);
}

@media (max-width: 991px) {
  #header {
    width: 300px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 251, 0.98) 100%);
    border-right: 1px solid rgba(99, 102, 241, 0.1);
    left: -300px;
    padding: 20px;
  }
}

@media (min-width: 992px) {
  #main {
    margin-left: 100px;
    padding-top: 0;
  }
  
  #hero {
    margin-left: 100px;
    width: calc(100% - 100px);
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.nav-menu {
  padding: 0;
  display: block;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zen-text-secondary);
  padding: 14px;
  margin-bottom: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 15px;
  border-radius: 14px;
  background: var(--zen-gray-50);
  height: 56px;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--zen-gray-200);
  will-change: transform;
  position: relative;
}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 22px;
  color: var(--zen-text-secondary);
  transition: all 0.3s ease;
}

.nav-menu a span,
.nav-menu a:focus span {
  padding: 0 5px 0 8px;
  color: var(--zen-text-secondary);
  font-weight: 500;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .nav-menu a,
  .nav-menu a:focus {
    width: 56px;
    padding: 14px;
    justify-content: center;
  }

  .nav-menu a span,
  .nav-menu a:focus span {
    display: none;
  }
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover>a {
  color: #fff;
  background: var(--zen-gradient-primary);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
  transform: translateY(-2px);
  border-color: transparent;
}

.nav-menu a:hover i,
.nav-menu .active i,
.nav-menu .active:focus i,
.nav-menu li:hover>a i {
  color: #fff;
  transform: scale(1.1);
}

.nav-menu a:hover span,
.nav-menu .active span,
.nav-menu .active:focus span,
.nav-menu li:hover>a span {
  color: #fff;
}

.nav-menu a:hover,
.nav-menu li:hover>a {
  width: 100%;
  color: #fff;
}

.nav-menu a:hover span,
.nav-menu li:hover>a span {
  display: block;
}

@media (min-width: 992px) {
  .nav-menu a:hover,
  .nav-menu li:hover>a {
    width: 56px;
  }
  
  .nav-menu a:hover span,
  .nav-menu li:hover>a span {
    display: none;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: var(--zen-white);
  font-size: 28px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 0;
  cursor: pointer;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: var(--zen-shadow-md);
  border: 1px solid var(--zen-gray-200);
}

.mobile-nav-toggle i {
  color: var(--zen-text-primary);
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  background: var(--zen-gradient-primary);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
  border-color: transparent;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background: var(--gradient-hero), url("../img/react+laavel.webp") top right no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: overlay;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fix background attachment on mobile for better performance */
@media (max-width: 768px) {
  #hero {
    background-attachment: scroll;
    background-position: center;
    min-height: auto;
    height: auto;
    padding: 100px 0 60px;
  }
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.3) 0%, transparent 50%);
  animation: gradientShift 15s ease infinite;
  z-index: 0;
}

#hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.4;
  z-index: 0;
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

@media (min-width: 992px) {
  #hero {
    padding-left: 160px;
  }
}

/* Fix hero section for mobile - override desktop styles */
@media (max-width: 991px) {
  #hero {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

#hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
}

/* Ensure container is properly centered on mobile */
@media (max-width: 991px) {
  #hero .container {
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }
}

/* Online Status Indicator */
.status-indicator {
  margin-bottom: 20px;
  display: inline-block;
}

.online-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: pulse 2s ease-in-out infinite;
  transition: all 0.3s ease;
}

.online-status:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #25d366;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.6);
}

.status-dot::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #25d366;
  border-radius: 50%;
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.status-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

#hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  color: #ffffff;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

#hero p {
  color: #ffffff;
  margin: 15px 0 0 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.1);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

#hero p span {
  color: #ffffff;
  background: rgba(255,255,255,0.2);
  padding: 5px 15px;
  border-radius: 8px;
  letter-spacing: 1px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  display: inline-block;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

/* Hero Actions - Hire Me & Download Resume Buttons */
.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.hire-me-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
  will-change: transform;
}

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

.hire-me-btn:hover {
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  color: #ffffff;
  text-decoration: none;
}

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

.hire-me-btn i {
  font-size: 24px;
}

.hero-actions .download-link {
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-actions .download-link i {
  font-size: 20px;
}

#hero .social-links {
  margin-top: 30px;
}

#hero .social-links a {
  font-size: 24px;
  display: inline-block;
  color: #ffffff;
  line-height: 1;
  margin-right: 20px;
  transition: all 0.3s ease;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

#hero .social-links a:hover {
  background: rgba(255,255,255,0.3);
  color: #ffffff;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 5px 20px rgba(255,255,255,0.3);
}

/* Responsive Hero Section */
@media (max-width: 991px) {
  #hero {
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    padding-top: 100px !important;
    padding-bottom: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  #hero .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .hero-actions {
    justify-content: center !important;
    flex-direction: column !important;
    gap: 15px !important;
    width: 100% !important;
    align-items: center !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
  }
  
  .hire-me-btn,
  .download-link {
    font-size: 16px !important;
    padding: 14px 32px !important;
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
  }

  #hero h1 {
    font-size: 36px !important;
    line-height: 42px !important;
    margin-bottom: 15px !important;
    text-align: center !important;
    padding: 0 10px !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  #hero p {
    margin-top: 15px !important;
    font-size: 18px !important;
    line-height: 26px !important;
    padding: 0 15px !important;
    text-align: center !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  #hero p span {
    display: inline-block !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    padding: 5px 12px !important;
    font-size: 18px !important;
  }
  
  .status-indicator {
    margin-bottom: 15px !important;
    display: inline-block !important;
    text-align: center !important;
  }
  
  #hero .social-links {
    margin-top: 25px !important;
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    width: 100% !important;
  }
  
  #hero .social-links a {
    margin-right: 0 !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 768px) {
  #hero {
    padding-top: 100px !important;
    padding-bottom: 50px !important;
    min-height: auto !important;
    height: auto !important;
  }
  
  #hero .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  #hero h1 {
    font-size: 28px !important;
    line-height: 34px !important;
    padding: 0 10px !important;
  }

  #hero p {
    font-size: 16px !important;
    line-height: 24px !important;
    padding: 0 10px !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  #hero p span {
    font-size: 16px !important;
    padding: 4px 10px !important;
    max-width: calc(100% - 20px) !important;
    display: inline-block !important;
  }
  
  .hero-actions {
    gap: 12px !important;
    padding: 0 10px !important;
  }
  
  .hire-me-btn,
  .download-link {
    font-size: 15px !important;
    padding: 12px 28px !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  
  #hero .social-links {
    padding: 0 10px !important;
  }
  
  #hero .social-links a {
    width: 38px !important;
    height: 38px !important;
    font-size: 18px !important;
  }
}

@media (max-width: 576px) {
  #hero {
    padding-top: 80px !important;
    padding-bottom: 40px !important;
  }
  
  #hero .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  #hero h1 {
    font-size: 24px !important;
    line-height: 30px !important;
    padding: 0 5px !important;
  }

  #hero p {
    font-size: 15px !important;
    line-height: 22px !important;
    padding: 0 5px !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  #hero p span {
    font-size: 15px !important;
    padding: 4px 8px !important;
    max-width: calc(100% - 10px) !important;
    display: inline-block !important;
    line-height: 1.4 !important;
  }
  
  .hero-actions {
    padding: 0 5px !important;
  }
  
  .hire-me-btn,
  .download-link {
    font-size: 14px !important;
    padding: 11px 24px !important;
    width: 100% !important;
  }
  
  .status-indicator {
    margin-bottom: 10px !important;
  }
  
  #hero .social-links {
    padding: 0 5px !important;
    gap: 10px !important;
  }
  
  #hero .social-links a {
    width: 36px !important;
    height: 36px !important;
    font-size: 16px !important;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 120px 0;
  overflow: hidden;
  position: relative;
  will-change: transform;
}

/* Responsive Section Padding */
@media (max-width: 991px) {
  section {
    padding: 80px 0;
  }
  
  #main {
    margin-left: 0 !important;
    padding-top: 0;
  }
}

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

@media (max-width: 576px) {
  section {
    padding: 40px 0;
  }
}

section.section-bg {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
  position: relative;
}

section.section-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gradient-purple);
  bottom: 0;
  left: calc(50% - 30px);
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(108, 92, 231, 0.4);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #728394;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #0563bb;
  line-height: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts .count-box {
  padding: 40px 30px 35px 30px;
  margin-top: 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 4px solid var(--primary-purple);
  overflow: hidden;
}

.facts .count-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.facts .count-box:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.facts .count-box:hover::before {
  transform: scaleX(1);
}

.facts .count-box:nth-child(1) { border-top-color: #6c5ce7; }
.facts .count-box:nth-child(2) { border-top-color: #a29bfe; }
.facts .count-box:nth-child(3) { border-top-color: #8b7ae8; }
.facts .count-box:nth-child(4) { border-top-color: #5f3dc4; }

.facts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: var(--gradient-purple);
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.facts .count-box span {
  font-size: 42px;
  display: block;
  font-weight: 700;
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.facts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Akills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #45505b;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #f2f3f5;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background: var(--gradient-purple);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(108, 92, 231, 0.4);
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #45505b;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 3px solid;
  border-image: var(--gradient-purple) 1;
  position: relative;
  transition: all 0.3s ease;
}

.resume .resume-item:hover {
  padding-left: 25px;
  transform: translateX(5px);
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: #f7f8f9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50px;
  left: -10px;
  top: 0;
  background: #fff;
  border: 3px solid;
  border-image: var(--gradient-purple) 1;
  box-shadow: 0 0 10px rgba(108, 92, 231, 0.5);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #272829;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #0563bb;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(69, 80, 91, 0.8);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #d7dce1;
  border-left: 3px solid #d7dce1;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #d7dce1;
  border-right: 3px solid #d7dce1;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #45505b;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #45505b;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #45505b;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #148af9;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0563bb;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0563bb;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(69, 80, 91, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 60px 30px 70px 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: 24px;
  border: 1px solid rgba(99, 102, 241, 0.1);
  position: relative;
  overflow: hidden;
}

.services .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.services .icon-box:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: rgba(99, 102, 241, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.services .icon-box:hover::before {
  transform: scaleX(1);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #45505b;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: var(--primary-purple);
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: var(--primary-purple);
}

.services .iconbox-blue:hover {
  background: var(--gradient-purple);
  color: #fff;
}

.services .iconbox-orange i {
  color: var(--accent-purple);
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: var(--accent-purple);
}

.services .iconbox-orange:hover {
  background: var(--gradient-purple-light);
  color: #fff;
}

.services .iconbox-pink i {
  color: var(--light-purple);
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: var(--light-purple);
}

.services .iconbox-pink:hover {
  background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
  color: #fff;
}

.services .iconbox-yellow i {
  color: var(--dark-purple);
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: var(--dark-purple);
}

.services .iconbox-yellow:hover {
  background: linear-gradient(135deg, #5f3dc4 0%, #6c5ce7 100%);
  color: #fff;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #90c8fc;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0563bb;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0563bb;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.contact .info i {
  font-size: 22px;
  color: #fff;
  float: left;
  width: 56px;
  height: 56px;
  background: var(--gradient-purple);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
}

.contact .info h4 {
  padding: 0 0 0 70px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #728394;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: var(--gradient-purple-light);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.6);
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message,
.php-email-form .sent-message,
.form-messages .sent-message {
  display: none !important;
  color: #fff;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  text-align: center;
  padding: 12px 16px;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  margin-bottom: 0;
}

.contact .php-email-form .sent-message[style*="display: block"],
.php-email-form .sent-message[style*="display: block"],
.form-messages .sent-message[style*="display: block"] {
  display: block !important;
}

.contact .php-email-form .loading,
.php-email-form .loading,
.form-messages .loading {
  display: none !important;
  background: transparent;
  text-align: center;
  padding: 12px;
  margin-bottom: 0;
  color: var(--zen-text-secondary);
  font-weight: 500;
}

.contact .php-email-form .loading[style*="display: block"],
.php-email-form .loading[style*="display: block"],
.form-messages .loading[style*="display: block"] {
  display: block !important;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--gradient-purple);
  border: 0;
  padding: 12px 40px;
  color: #fff;
  transition: all 0.4s ease;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
  font-weight: 600;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--gradient-purple-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.6);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--gradient-purple);
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  margin-left: 0;
  width: 100%;
}

@media (min-width: 992px) {
  #footer {
    margin-left: 100px;
    width: calc(100% - 100px);
  }
}

#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 1;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links {
  position: relative;
  z-index: 1;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 8px;
  border-radius: 50%;
  text-align: center;
  width: 42px;
  height: 42px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

#footer .social-links a:hover {
  background: rgba(255,255,255,0.3);
  color: #fff;
  text-decoration: none;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 5px 20px rgba(255,255,255,0.3);
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

/*--------------------------------------------------------------
# Responsive Styles for Intro Section & Services
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .intro-section {
    padding: 60px 0 !important;
  }
  
  .intro-section .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  
  .intro-section .row {
    flex-direction: column-reverse !important;
    margin: 0 !important;
  }
  
  .intro-section .col-lg-6 {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .intro-section .col-lg-6:first-child {
    margin-top: 30px !important;
    text-align: center !important;
  }
  
  .intro-image {
    margin-bottom: 30px !important;
    text-align: center !important;
  }
  
  .intro-image img {
    max-width: 100% !important;
    height: auto !important;
  }
  
  .section-heading {
    font-size: 2rem !important;
    text-align: center !important;
  }
  
  .intro-section .lead,
  .intro-section p {
    text-align: center !important;
  }
  
  .services-preview {
    padding: 60px 0 !important;
  }
  
  .services-preview .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  
  .services-preview .col-lg-4 {
    margin-bottom: 30px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .mt-4 {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
    width: 100% !important;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .btn-secondary.ms-3 {
    margin-left: 0 !important;
  }
}

@media (max-width: 768px) {
  .intro-section {
    padding: 50px 0;
  }
  
  .section-heading {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .intro-section .lead {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .intro-section p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .services-preview {
    padding: 50px 0;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .section-title p {
    font-size: 0.95rem;
  }
  
  .service-card {
    margin-bottom: 25px;
  }
  
  .service-card h4 {
    font-size: 1.25rem;
  }
  
  .service-card p {
    font-size: 0.9rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .service-icon i {
    font-size: 1.5rem;
  }
  
  .btn-primary,
  .btn-secondary {
    font-size: 15px;
    padding: 12px 28px;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .intro-section {
    padding: 40px 0;
  }
  
  .section-heading {
    font-size: 1.5rem;
  }
  
  .intro-section .lead {
    font-size: 1rem;
  }
  
  .intro-section p {
    font-size: 0.9rem;
  }
  
  .services-preview {
    padding: 40px 0;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
    padding-bottom: 15px;
  }
  
  .section-title h2::before {
    width: 80px;
    left: calc(50% - 40px);
  }
  
  .section-title h2::after {
    width: 40px;
    left: calc(50% - 20px);
  }
  
  .service-card {
    padding: 1.5rem 1rem;
  }
  
  .service-card h4 {
    font-size: 1.1rem;
  }
  
  .service-card p {
    font-size: 0.85rem;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
  }
  
  .service-icon i {
    font-size: 1.25rem;
  }
  
  .btn-primary,
  .btn-secondary {
    font-size: 14px;
    padding: 11px 24px;
  }
}

/* Responsive Container Padding */
@media (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Responsive Main Content */
@media (max-width: 991px) {
  #main {
    margin-left: 0 !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  section {
    margin-left: 0 !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    max-width: 100% !important;
  }
}