/**
* Template Name: EasyFolio
* Template URL: https://bootstrapmade.com/easyfolio-bootstrap-portfolio-template/
* Updated: Feb 21 2025 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Questrial",  sans-serif;
  --nav-font: "Noto Sans",  sans-serif;
}

/* Global Colors - Ultra vibrant devotional palette for Ganga Snaan mela trust */
:root { 
  --background-color: linear-gradient(135deg, #FFF8E1 0%, #F3E5F5 50%, #E8F5E8 100%); /* Warm devotional background */
  --default-color: #2D3748; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1A202C; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #FF6B35; /* Primary accent color - Vibrant Saffron */
  --surface-color: rgba(255, 255, 255, 0.95); /* Semi-transparent white for cards */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  
  /* Traditional Indian Devotional Colors */
  --saffron: #FF9933;
  --deep-saffron: #FF6600;
  --holy-orange: #FF8C00;
  --sacred-red: #DC143C;
  --crimson: #B22222;
  --devotional-yellow: #FFD700;
  --turmeric: #E1AD01;
  --peacock-blue: #005F73;
  --krishna-blue: #1E3A8A;
  --ganga-blue: #4682B4;
  --sacred-green: #228B22;
  --tulsi-green: #32CD32;
  --lotus-pink: #FFB6C1;
  --royal-purple: #663399;
  --spiritual-violet: #8A2BE2;
  --marigold: #FF8C42;
  --sindoor: #CC5500;
  
  /* Extended Vibrant Palette */
  --primary-orange: #FF6B35;
  --primary-blue: #1E3A8A;
  --primary-gold: #F59E0B;
  --secondary-green: #16A085;
  --secondary-purple: #8B5CF6;
  --secondary-red: #DC2626;
  --warm-yellow: #FCD34D;
  --deep-teal: #0F766E;
  --royal-purple: #7C3AED;
  --forest-green: #059669;
  --bright-magenta: #FF1493;
  --electric-blue: #00BFFF;
  --lime-green: #32CD32;
  --coral: #FF7F50;
  --indigo: #4B0082;
  --turquoise: #40E0D0;
  
  /* Traditional Devotional Gradients */
  --gradient-sunrise: linear-gradient(135deg, #FF9933 0%, #FFD700 50%, #FF6600 100%);
  --gradient-sunset: linear-gradient(135deg, #FF6600 0%, #DC143C 50%, #B22222 100%);
  --gradient-ocean: linear-gradient(135deg, #005F73 0%, #4682B4 50%, #00BFFF 100%);
  --gradient-ganga: linear-gradient(135deg, #4682B4 0%, #1E3A8A 50%, #005F73 100%);
  --gradient-royal: linear-gradient(135deg, #663399 0%, #8A2BE2 50%, #4B0082 100%);
  --gradient-nature: linear-gradient(135deg, #228B22 0%, #32CD32 50%, #059669 100%);
  --gradient-fire: linear-gradient(135deg, #FF6600 0%, #FF9933 50%, #FFD700 100%);
  --gradient-warm: linear-gradient(135deg, #FFD700 0%, #E1AD01 50%, #FF8C42 100%);
  --gradient-cool: linear-gradient(135deg, #1E3A8A 0%, #4682B4 50%, #40E0D0 100%);
  --gradient-vibrant: linear-gradient(135deg, #FF9933 0%, #8A2BE2 25%, #32CD32 50%, #FF1493 75%, #00BFFF 100%);
  --gradient-spiritual: linear-gradient(135deg, #FF6600 0%, #663399 50%, #228B22 100%);
  --gradient-devotional: linear-gradient(135deg, #FF9933 0%, #DC143C 25%, #1E3A8A 50%, #32CD32 75%, #FFD700 100%);
  --gradient-rainbow: linear-gradient(135deg, #FF0000 0%, #FF8C00 16%, #FFD700 32%, #32CD32 48%, #00BFFF 64%, #4B0082 80%, #8A2BE2 100%);
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #FFD700; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #0a0f14; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e87532; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: linear-gradient(135deg, #FEF7ED 0%, #FDF4FF 50%, #F0FDF4 100%);
  --surface-color: rgba(255, 255, 255, 0.9);
  background: var(--background-color);
  position: relative;
  overflow: hidden;
}

.light-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(22, 160, 133, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.dark-background {
  --background-color: linear-gradient(135deg, #1A202C 0%, #2D3748 50%, #4A5568 100%);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: rgba(255, 255, 255, 0.1);
  --contrast-color: #ffffff;
  background: var(--background-color);
  position: relative;
  overflow: hidden;
}

.dark-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.2) 0%, transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(245, 158, 11, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background: linear-gradient(135deg, #FFF8E1 0%, #FDF4FF 25%, #FFEAA7 50%, #FFE5B4 75%, #FFF8E1 100%);
  background-attachment: fixed;
  font-family: var(--default-font);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 10%, rgba(255, 153, 51, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 90% 20%, rgba(220, 20, 60, 0.12) 0%, transparent 25%),
    radial-gradient(circle at 20% 80%, rgba(34, 139, 34, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 80% 90%, rgba(138, 43, 226, 0.12) 0%, transparent 25%),
    radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 30%),
    linear-gradient(45deg, rgba(255, 140, 0, 0.05) 0%, transparent 50%, rgba(30, 144, 255, 0.05) 100%);
  pointer-events: none;
  z-index: -1;
  animation: colorShift 20s ease-in-out infinite;
}

@keyframes colorShift {
  0%, 100% { 
    filter: hue-rotate(0deg) brightness(1);
  }
  25% { 
    filter: hue-rotate(15deg) brightness(1.1);
  }
  50% { 
    filter: hue-rotate(30deg) brightness(0.95);
  }
  75% { 
    filter: hue-rotate(-15deg) brightness(1.05);
  }
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background:   linear-gradient(135deg, #FF9933 0%, #ff0000 30%, #FF6600 70%, #DC143C 100%)
  

  
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  position: relative;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    rgba(255, 107, 53, 0.1) 0%, 
    transparent 25%, 
    rgba(139, 92, 246, 0.1) 50%, 
    transparent 75%, 
    rgba(22, 160, 133, 0.1) 100%);
  pointer-events: none;
}

.header .header-container {
  background: linear-gradient(135deg, #FF9933 0%, #FFD700 30%, #FF6600 70%, #DC143C 100%);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 
    0px 8px 30px rgba(255, 153, 51, 0.3),
    0px 4px 20px rgba(255, 215, 0, 0.2),
    0px 2px 15px rgba(220, 20, 60, 0.15);
  position: relative;
  overflow: hidden;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  padding-left: 5px;
  font-weight: 600;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.5);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: white;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-sunrise);
  transition: all 0.3s ease;
  font-size: 18px;
  margin-left: 5px;
  box-shadow: 0 3px 15px rgba(255, 107, 53, 0.3);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.header .header-social-links a:hover {
  background: var(--gradient-sunrise);
  color: white;
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.header .header-social-links a i {
  line-height: 0px;
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 24px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 20px 0;
  position: relative;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .social-links {
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 0 5px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--gradient-sunrise);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transition: all 0.4s;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.scroll-top::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-vibrant);
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.scroll-top:hover::before {
  opacity: 1;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
  transition: all 0.3s ease;
}

.scroll-top:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.scroll-top:hover i {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-3px); }
  60% { transform: translateY(-2px); }
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  text-align: center;
  padding: 20px 0;
}

.page-title .breadcrumbs {
  margin-bottom: 1.5rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 40px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(120deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title .title-shape {
  width: 200px;
  height: 20px;
  margin: 0 auto;
  color: var(--accent-color);
  opacity: 0.5;
}

.section-title .title-shape svg {
  width: 100%;
  height: 100%;
}

.section-title p {
  margin: 15px auto 0;
  font-size: 16px;
  max-width: 700px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.8;
}

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

  .section-title .subtitle-wrapper .subtitle {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 20px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, 
    rgba(255, 153, 51, 0.1) 0%, 
    rgba(220, 20, 60, 0.08) 25%, 
    rgba(34, 139, 34, 0.1) 50%, 
    rgba(138, 43, 226, 0.08) 75%, 
    rgba(255, 215, 0, 0.1) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 85%, rgba(255, 140, 0, 0.2) 0%, transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(30, 144, 255, 0.15) 0%, transparent 30%),
    radial-gradient(circle at 45% 45%, rgba(255, 20, 147, 0.12) 0%, transparent 25%);
  pointer-events: none;
  z-index: 1;
  animation: heroColorShift 25s ease-in-out infinite;
}

@keyframes heroColorShift {
  0%, 100% { 
    opacity: 0.6;
    filter: hue-rotate(0deg);
  }
  25% { 
    opacity: 0.8;
    filter: hue-rotate(20deg);
  }
  50% { 
    opacity: 0.7;
    filter: hue-rotate(40deg);
  }
  75% { 
    opacity: 0.9;
    filter: hue-rotate(-10deg);
  }
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero .content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
  .hero .content h2 {
    font-size: 2.5rem;
  }
}

.hero .content .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (max-width: 576px) {
  .hero .cta-buttons {
    flex-direction: column;
  }
}

.hero .cta-buttons .btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.hero .cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
  background: transparent;
}

.hero .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.hero .hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

@media (max-width: 576px) {
  .hero .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.hero .hero-stats .stat-item .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.hero .hero-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 0.5rem;
  display: block;
}

.hero .hero-image {
  position: relative;
  padding: 2rem;
}

.hero .hero-image img {
  position: relative;
  z-index: 2;
}

.hero .hero-image .shape-1,
.hero .hero-image .shape-2 {
  position: absolute;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  z-index: 1;
}

.hero .hero-image .shape-1 {
  width: 300px;
  height: 300px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  top: -20px;
  right: -20px;
  animation: morphShape 15s linear infinite;
}

.hero .hero-image .shape-2 {
  width: 200px;
  height: 200px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  bottom: -20px;
  left: -20px;
  animation: morphShape 20s linear infinite reverse;
}

@media (max-width: 991px) {
  .hero {
    text-align: center;
    padding: 60px 0;
  }

  .hero .cta-buttons {
    justify-content: center;
  }

  .hero .hero-stats {
    justify-content: center;
  }

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

@keyframes morphShape {
  0% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  }

  25% {
    border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
  }

  50% {
    border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
  }

  75% {
    border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
  }

  100% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-image {
  position: relative;
}

.about .about-image img {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.about .about-content {
  padding-left: 2rem;
}

@media (max-width: 991.98px) {
  .about .about-content {
    padding-left: 0;
    margin-top: 3rem;
  }
}

.about .about-content .subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: block;
}

.about .about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about .about-content .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about .personal-info {
  margin-top: 2rem;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.about .personal-info .info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about .personal-info .info-item .label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .personal-info .info-item .value {
  font-weight: 600;
  color: var(--heading-color);
}

.about .signature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.about .signature .signature-image {
  max-width: 150px;
}

.about .signature .signature-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.about .signature .signature-info p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

/*--------------------------------------------------------------
# Skills Section - Ultra Vibrant Enhancement
--------------------------------------------------------------*/
.skills {
  background: linear-gradient(135deg, 
    rgba(255, 153, 51, 0.03) 0%, 
    rgba(139, 92, 246, 0.03) 25%,
    rgba(34, 139, 34, 0.03) 50%,
    rgba(220, 20, 60, 0.03) 75%,
    rgba(255, 215, 0, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

.skills::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 20%, rgba(34, 139, 34, 0.08) 0%, transparent 40%);
  pointer-events: none;
  animation: skillsBackgroundShift 30s ease-in-out infinite;
}

@keyframes skillsBackgroundShift {
  0%, 100% { opacity: 0.3; filter: hue-rotate(0deg); }
  25% { opacity: 0.5; filter: hue-rotate(30deg); }
  50% { opacity: 0.4; filter: hue-rotate(60deg); }
  75% { opacity: 0.6; filter: hue-rotate(-20deg); }
}

.skills .skill-box {
  padding: 2.5rem;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.skills .skill-box:hover {
  transform: translateY(-15px) scale(1.05) rotateX(5deg);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

/* Ultra-vibrant gradient backgrounds */
.skills .skill-box::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 25px;
  z-index: -2;
  transition: all 0.4s ease;
}

.skills .skill-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
  border-radius: 25px;
  z-index: -1;
  pointer-events: none;
}

/* First skill box - Ultra Sunrise */
.skills .skill-box:nth-child(1)::before {
  background: linear-gradient(135deg, 
    #FF6B00 0%, #FF8E53 20%, #FFB74D 40%, 
    #FF9800 60%, #FF5722 80%, #E65100 100%);
  box-shadow: 
    0 20px 60px rgba(255, 107, 0, 0.4),
    0 10px 40px rgba(255, 142, 83, 0.3),
    inset 0 2px 15px rgba(255, 183, 77, 0.2);
  animation: ultraGlow1 4s ease-in-out infinite;
}

.skills .skill-box:nth-child(1):hover::before {
  box-shadow: 
    0 30px 80px rgba(255, 107, 0, 0.6),
    0 15px 50px rgba(255, 142, 83, 0.4),
    0 5px 25px rgba(255, 183, 77, 0.3);
}

/* Second skill box - Ultra Ocean */
.skills .skill-box:nth-child(2)::before {
  background: linear-gradient(135deg, 
    #0277BD 0%, #0288D1 20%, #039BE5 40%, 
    #03A9F4 60%, #29B6F6 80%, #4FC3F7 100%);
  box-shadow: 
    0 20px 60px rgba(2, 119, 189, 0.4),
    0 10px 40px rgba(3, 169, 244, 0.3),
    inset 0 2px 15px rgba(79, 195, 247, 0.2);
  animation: ultraGlow2 4s ease-in-out infinite;
}

.skills .skill-box:nth-child(2):hover::before {
  box-shadow: 
    0 30px 80px rgba(2, 119, 189, 0.6),
    0 15px 50px rgba(3, 169, 244, 0.4),
    0 5px 25px rgba(79, 195, 247, 0.3);
}

/* Third skill box - Ultra Nature */
.skills .skill-box:nth-child(3)::before {
  background: linear-gradient(135deg, 
    #2E7D32 0%, #388E3C 20%, #43A047 40%, 
    #4CAF50 60%, #66BB6A 80%, #81C784 100%);
  box-shadow: 
    0 20px 60px rgba(46, 125, 50, 0.4),
    0 10px 40px rgba(76, 175, 80, 0.3),
    inset 0 2px 15px rgba(129, 199, 132, 0.2);
  animation: ultraGlow3 4s ease-in-out infinite;
}

.skills .skill-box:nth-child(3):hover::before {
  box-shadow: 
    0 30px 80px rgba(46, 125, 50, 0.6),
    0 15px 50px rgba(76, 175, 80, 0.4),
    0 5px 25px rgba(129, 199, 132, 0.3);
}

/* Fourth skill box - Ultra Royal */
.skills .skill-box:nth-child(4)::before {
  background: linear-gradient(135deg, 
    #6A1B9A 0%, #7B1FA2 20%, #8E24AA 40%, 
    #9C27B0 60%, #AB47BC 80%, #BA68C8 100%);
  box-shadow: 
    0 20px 60px rgba(106, 27, 154, 0.4),
    0 10px 40px rgba(156, 39, 176, 0.3),
    inset 0 2px 15px rgba(186, 104, 200, 0.2);
  animation: ultraGlow4 4s ease-in-out infinite;
}

.skills .skill-box:nth-child(4):hover::before {
  box-shadow: 
    0 30px 80px rgba(106, 27, 154, 0.6),
    0 15px 50px rgba(156, 39, 176, 0.4),
    0 5px 25px rgba(186, 104, 200, 0.3);
}

/* Glowing animations */
@keyframes ultraGlow1 {
  0%, 100% { filter: brightness(1) saturate(1.2); }
  50% { filter: brightness(1.1) saturate(1.4); }
}

@keyframes ultraGlow2 {
  0%, 100% { filter: brightness(1) saturate(1.2) hue-rotate(0deg); }
  50% { filter: brightness(1.1) saturate(1.4) hue-rotate(10deg); }
}

@keyframes ultraGlow3 {
  0%, 100% { filter: brightness(1) saturate(1.3); }
  50% { filter: brightness(1.15) saturate(1.5); }
}

@keyframes ultraGlow4 {
  0%, 100% { filter: brightness(1) saturate(1.2) hue-rotate(0deg); }
  50% { filter: brightness(1.1) saturate(1.4) hue-rotate(-10deg); }
}

.skills .skill-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  font-weight: 800;
  color: white;
  text-shadow: 
    0 3px 6px rgba(0, 0, 0, 0.4),
    0 1px 3px rgba(0, 0, 0, 0.2),
    0 0 15px rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 10;
  letter-spacing: 0.5px;
}

.skills .skill-box h3::after {
  content: '✦';
  position: absolute;
  right: -10px;
  top: -5px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.skills .skill-box p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
  font-weight: 500;
}

.skills .skill-box .progress {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  height: 14px;
  margin-top: 15px;
  overflow: hidden;
  box-shadow: 
    inset 0 3px 6px rgba(0, 0, 0, 0.3),
    0 2px 8px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.skills .skill-box .progress::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.1) 30%, 
    rgba(255, 255, 255, 0.2) 50%, 
    rgba(255, 255, 255, 0.1) 70%, 
    transparent 100%);
  animation: progressShine 3s linear infinite;
}

@keyframes progressShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

.skills .skill-box .progress .progress-bar {
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(255, 255, 255, 1) 30%,
    rgba(255, 255, 255, 0.9) 70%,
    rgba(255, 255, 255, 0.85) 100%);
  height: 100%;
  position: relative;
  border-radius: 50px;
  transition: width 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 
    0 0 15px rgba(255, 255, 255, 0.6),
    0 2px 10px rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.skills .skill-box .progress .progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.4) 45%, 
    rgba(255, 255, 255, 0.6) 55%, 
    transparent 100%);
  animation: ultraShimmer 2.5s ease-in-out infinite;
}

@keyframes ultraShimmer {
  0% { transform: translateX(-120%); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateX(120%); opacity: 0; }
}

.skills .skill-box span {
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.4),
    0 0 10px rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 10;
  display: inline-block;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Additional floating decorative elements */
.skills .skill-box:hover::after {
  animation: floatingElements 3s ease-in-out infinite;
}

@keyframes floatingElements {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-3px) rotate(1deg); }
  66% { transform: translateY(3px) rotate(-1deg); }
}

/* Enhanced section title for skills */
.skills .section-title h2 {
  background: linear-gradient(45deg, 
    #FF6B00 0%, #03A9F4 25%, #4CAF50 50%, #9C27B0 75%, #FF6B00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: gradientTextFlow 4s ease-in-out infinite;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .skills .skill-box {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .skills .skill-box h3 {
    font-size: 1.3rem;
  }
  
  .skills .skill-box:hover {
    transform: translateY(-10px) scale(1.02);
  }
}

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .resume-wrapper .resume-block {
  margin-bottom: 3rem;
}

.resume .resume-wrapper .resume-block:last-child {
  margin-bottom: 0;
}

.resume .resume-wrapper .resume-block h2 {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  background: var(--gradient-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.resume .resume-wrapper .resume-block h2 span {
  color: var(--accent-color);
}

.resume .resume-wrapper .resume-block .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.resume .resume-wrapper .timeline {
  position: relative;
}

.resume .resume-wrapper .timeline::before {
  content: "";
  position: absolute;
  left: 20%;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--gradient-sunrise);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.resume .resume-wrapper .timeline .timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  position: relative;
}

.resume .resume-wrapper .timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-left {
  width: 20%;
  padding-right: 3rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.resume .resume-wrapper .timeline .timeline-item .timeline-left .company {
  color: var(--primary-orange);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.resume .resume-wrapper .timeline .timeline-item .timeline-left .period {
  background: var(--gradient-warm);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.resume .resume-wrapper .timeline .timeline-item .timeline-dot {
  position: absolute;
  left: calc(20% + 2px);
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--gradient-fire);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  z-index: 10;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-right {
  width: 70%;
  padding-left: 3rem;
  margin-top: -4px;
  background: linear-gradient(135deg, rgba(22, 160, 133, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.1);
  position: relative;
  overflow: hidden;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(22, 160, 133, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-right .position {
  background: var(--gradient-ocean);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-right .description {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.7;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-right ul {
  padding-left: 20px;
  position: relative;
  z-index: 1;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-right ul li {
  padding-bottom: 15px;
  position: relative;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-right ul li::marker {
  color: var(--primary-orange);
}

.resume .resume-wrapper .timeline .timeline-item:nth-child(even) .timeline-right {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
  border-color: rgba(220, 38, 38, 0.1);
}

.resume .resume-wrapper .timeline .timeline-item:nth-child(even) .timeline-right::before {
  background: 
    radial-gradient(circle at 20% 20%, rgba(30, 58, 138, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
}

.resume .resume-wrapper .timeline .timeline-item:nth-child(even) .timeline-left {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(15, 118, 110, 0.1) 100%);
  border-color: rgba(30, 58, 138, 0.2);
}

.resume .resume-wrapper .timeline .timeline-item:nth-child(even) .timeline-left .company {
  color: var(--primary-blue);
}

.resume .resume-wrapper .timeline .timeline-item:nth-child(even) .timeline-left .period {
  background: var(--gradient-cool);
}

.resume .resume-wrapper .timeline .timeline-item:nth-child(even) .timeline-dot {
  background: var(--gradient-ocean);
}

@media (max-width: 992px) {
  .resume .resume-wrapper .resume-block h2 {
    font-size: 2rem;
  }

  .resume .resume-wrapper .timeline::before {
    left: 1rem;
  }

  .resume .resume-wrapper .timeline .timeline-item {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .resume .resume-wrapper .timeline .timeline-item .timeline-left {
    width: 100%;
    text-align: left;
    padding-right: 0;
    padding-left: 2.5rem;
    margin-bottom: 1.6rem;
    margin-top: -4px;
  }

  .resume .resume-wrapper .timeline .timeline-item .timeline-dot {
    left: calc(1rem + 1px);
  }

  .resume .resume-wrapper .timeline .timeline-item .timeline-right {
    width: 100%;
    padding-left: 2.5rem;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters-container {
  margin-bottom: 40px;
}

.portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.portfolio .portfolio-filters li {
  font-size: 15px;
  font-weight: 500;
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 30px;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  color: var(--default-color);
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.portfolio .portfolio-filters li.filter-active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.portfolio .portfolio-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
}

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

.portfolio .portfolio-card:hover .portfolio-overlay .portfolio-actions {
  transform: translateY(0);
}

.portfolio .portfolio-card .portfolio-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.portfolio .portfolio-card .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-in-out;
}

.portfolio .portfolio-card .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.portfolio .portfolio-card .portfolio-overlay .portfolio-actions {
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
  display: flex;
  gap: 15px;
}

.portfolio .portfolio-card .portfolio-overlay .portfolio-actions a {
  width: 45px;
  height: 45px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.3s ease;
}

.portfolio .portfolio-card .portfolio-overlay .portfolio-actions a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.portfolio .portfolio-card .portfolio-content {
  padding: 25px;
}

.portfolio .portfolio-card .portfolio-content .category {
  font-size: 14px;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.portfolio .portfolio-card .portfolio-content h3 {
  font-size: 20px;
  margin: 0 0 15px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.portfolio .portfolio-card .portfolio-content h3:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-card .portfolio-content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    padding: 6px 15px;
  }

  .portfolio .portfolio-card .portfolio-content {
    padding: 20px;
  }

  .portfolio .portfolio-card .portfolio-content h3 {
    font-size: 18px;
  }

  .portfolio .portfolio-card .portfolio-content p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-slider {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .testimonials .testimonial-item {
    padding: 20px;
  }
}

.testimonials .testimonial-item h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonials .testimonial-item .profile {
  gap: 15px;
}

.testimonials .testimonial-item .profile .profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .testimonial-item .profile .profile-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.testimonials .testimonial-item .profile .profile-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
}

.testimonials .testimonial-item .featured-img-wrapper {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.testimonials .testimonial-item .featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonials .swiper-navigation {
  position: absolute;
  bottom: 0;
  gap: 10px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: 0.3s;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 20px;
  color: var(--default-color);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.testimonials .swiper-button-prev:hover::after,
.testimonials .swiper-button-next:hover::after {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 80px 0;
}

.services .servies-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.services .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 10px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.services .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.services .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.services .service-item:hover {
  transform: scale(1.05);
}

.services .service-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  display: inline-block;
  margin-bottom: 15px;
}

.services .service-item h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.services .service-item h3 a {
  color: var(--heading-color);
}

.services .service-item h3 a:hover {
  color: var(--accent-color);
}

.services .service-item p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

@media (max-width: 991px) {
  .services h2 {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  position: relative;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.faq .faq-container .faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.9;
  border-radius: 20px;
  z-index: -1;
  transition: all 0.4s ease;
}

.faq .faq-container .faq-item:nth-child(1)::before {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
}

.faq .faq-container .faq-item:nth-child(2)::before {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(22, 160, 133, 0.1) 100%);
}

.faq .faq-container .faq-item:nth-child(3)::before {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
}

.faq .faq-container .faq-item:nth-child(4)::before {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
}

.faq .faq-container .faq-item:nth-child(5)::before {
  background: linear-gradient(135deg, rgba(22, 160, 133, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
}

.faq .faq-container .faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.faq .faq-container .faq-item:hover::before {
  opacity: 0.15;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  margin: 0 40px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: var(--heading-color);
}

.faq .faq-container .faq-item h3 .num {
  background: var(--gradient-sunrise);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-right: 15px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.faq .faq-container .faq-item:nth-child(2) h3 .num {
  background: var(--gradient-ocean);
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.faq .faq-container .faq-item:nth-child(3) h3 .num {
  background: var(--gradient-royal);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.faq .faq-container .faq-item:nth-child(4) h3 .num {
  background: var(--gradient-fire);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.faq .faq-container .faq-item:nth-child(5) h3 .num {
  background: var(--gradient-nature);
  box-shadow: 0 4px 15px rgba(22, 160, 133, 0.3);
}

.faq .faq-container .faq-item h3:hover {
  color: var(--primary-orange);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.4s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.6;
  font-size: 15px;
  padding-left: 47px;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 0;
  transition: all 0.4s ease;
  cursor: pointer;
  border: 2px solid rgba(255, 107, 53, 0.2);
  color: var(--primary-orange);
}

.faq .faq-container .faq-item .faq-toggle:hover {
  background: var(--gradient-sunrise);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.faq .faq-container .faq-active {
  border-color: var(--primary-orange);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.15);
}

.faq .faq-container .faq-active::before {
  opacity: 0.2;
}

.faq .faq-container .faq-active h3 {
  color: var(--primary-orange);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 20px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(45deg);
  background: var(--gradient-sunrise);
  color: white;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .section-category {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact .content h2 {
  font-weight: 700;
  line-height: 1.2;
}

.contact .content .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.contact .contact-info .info-item {
  font-size: 1.1rem;
}

.contact .contact-info .info-item i {
  color: var(--accent-color);
  font-size: 1.4rem;
}

.contact .contact-info .map-link {
  color: var(--heading-color);
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact .contact-info .map-link i {
  transition: transform 0.3s ease;
}

.contact .contact-info .map-link:hover {
  color: var(--accent-color);
}

.contact .contact-info .map-link:hover i {
  transform: translateX(5px);
}

.contact .contact-form {
  background-color: var(--surface-color);
  border: none;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.75rem 1.25rem;
  border-color: #e5e5e5;
  border-radius: 8px;
  font-size: 1rem;
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn-submit {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact .contact-form .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-1px);
}

.contact .contact-form .btn-submit:active {
  transform: translateY(0);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

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

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

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

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

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

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-details-slider {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}

.service-details .service-details-slider .swiper-wrapper {
  height: auto !important;
}

.service-details .service-details-slider .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 2;
}

.service-details .service-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--contrast-color);
  opacity: 0.5;
  transition: 0.3s;
}

.service-details .service-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 20px;
  border-radius: 5px;
}

.service-details .content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-details .content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
}

.service-details .content .features .feature-box {
  padding: 20px;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: 0.3s;
}

.service-details .content .features .feature-box:hover {
  transform: translateY(-5px);
}

.service-details .content .features .feature-box i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 15px;
}

.service-details .content .features .feature-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.service-details .service-info {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.service-details .service-info h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .service-info .info-item {
  margin-bottom: 25px;
}

.service-details .service-info .info-item:last-child {
  margin-bottom: 0;
}

.service-details .service-info .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.service-details .service-info .info-item h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.service-details .service-info .info-item p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.service-details .related-services {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.service-details .related-services h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .related-services .service-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .related-services .service-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-details .related-services .service-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.service-details .related-services .service-item h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-details .related-services .service-item h5 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.service-details .related-services .service-item h5 a:hover {
  color: var(--accent-color);
}

.service-details .related-services .service-item p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  font-size: 14px;
}

@media (max-width: 991px) {

  .service-details .service-info,
  .service-details .related-services {
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Events Section - Ultra Vibrant Enhancement
--------------------------------------------------------------*/
.events {
  background: linear-gradient(135deg, 
    rgba(255, 153, 51, 0.03) 0%, 
    rgba(139, 92, 246, 0.03) 25%,
    rgba(34, 139, 34, 0.03) 50%,
    rgba(220, 20, 60, 0.03) 75%,
    rgba(255, 215, 0, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

.events::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 35%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 25%, rgba(34, 139, 34, 0.06) 0%, transparent 40%);
  pointer-events: none;
  animation: eventsBackgroundShift 25s ease-in-out infinite;
}

@keyframes eventsBackgroundShift {
  0%, 100% { opacity: 0.4; filter: hue-rotate(0deg); }
  25% { opacity: 0.6; filter: hue-rotate(20deg); }
  50% { opacity: 0.5; filter: hue-rotate(40deg); }
  75% { opacity: 0.7; filter: hue-rotate(-15deg); }
}

.event-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.1),
    0 8px 25px rgba(255, 107, 53, 0.15),
    0 4px 15px rgba(139, 92, 246, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
  position: relative;
  height: 100%;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
  border-radius: 25px;
  z-index: -1;
  pointer-events: none;
}

.event-card:hover {
  transform: translateY(-12px) scale(1.03) rotateX(2deg);
  border: 2px solid rgba(255, 107, 53, 0.3);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.15),
    0 15px 40px rgba(255, 107, 53, 0.25),
    0 8px 30px rgba(139, 92, 246, 0.2),
    0 4px 20px rgba(34, 139, 34, 0.15);
}

.event-card:nth-child(odd) {
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.1),
    0 8px 25px rgba(34, 139, 34, 0.15),
    0 4px 15px rgba(255, 215, 0, 0.1);
}

.event-card:nth-child(odd):hover {
  border-color: rgba(34, 139, 34, 0.3);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.15),
    0 15px 40px rgba(34, 139, 34, 0.25),
    0 8px 30px rgba(255, 215, 0, 0.2),
    0 4px 20px rgba(255, 107, 53, 0.15);
}

.event-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.event-card:hover .event-image img {
  transform: scale(1.08) rotate(1deg);
}

.event-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--devotional-yellow) 50%, var(--deep-saffron) 100%);
  border-radius: 15px;
  padding: 12px;
  text-align: center;
  box-shadow: 
    0 8px 25px rgba(255, 153, 51, 0.4),
    0 4px 15px rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  min-width: 70px;
  transition: all 0.3s ease;
}

.event-card:hover .event-date {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 
    0 12px 35px rgba(255, 153, 51, 0.5),
    0 6px 20px rgba(255, 215, 0, 0.4);
}

.event-date .day {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.event-date .month {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  margin-top: 2px;
}

.event-content {
  padding: 25px;
  position: relative;
  z-index: 2;
}

.event-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(120deg, var(--primary-orange), var(--sacred-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.event-card:hover .event-content h3 {
  transform: translateX(5px);
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.event-meta i {
  color: var(--primary-orange);
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

.event-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

/* Enhanced section title for events */
.events .section-title h2 {
  background: linear-gradient(45deg, 
    var(--saffron) 0%, var(--krishna-blue) 25%, var(--sacred-green) 50%, var(--royal-purple) 75%, var(--deep-saffron) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 300% 100%;
  animation: eventsTitleFlow 5s ease-in-out infinite;
}

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

.events .section-title h2 i {
  color: var(--devotional-yellow);
  margin-right: 15px;
  font-size: 0.9em;
  text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* CTA Section Enhancements */
.cta-section {
  background: linear-gradient(135deg, var(--saffron), var(--sacred-red), var(--deep-saffron));
  padding: 60px 40px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 
    0 20px 50px rgba(255, 153, 51, 0.3),
    0 10px 30px rgba(220, 20, 60, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  animation: ultraGlow 4s ease-in-out infinite;
  margin-top: 3rem;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s linear infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes ultraGlow {
  0%, 100% { filter: brightness(1) saturate(1.2); }
  50% { filter: brightness(1.1) saturate(1.4); }
}

.cta-section h3 {
  color: white;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  margin-bottom: 30px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--krishna-blue), var(--royal-purple), var(--bright-magenta));
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 
    0 12px 35px rgba(30, 58, 138, 0.4),
    0 6px 20px rgba(139, 92, 246, 0.3);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 18px 45px rgba(30, 58, 138, 0.5),
    0 10px 25px rgba(139, 92, 246, 0.4);
  background: linear-gradient(135deg, var(--electric-blue), var(--royal-purple), var(--bright-magenta));
  color: white;
}

.btn-cta i {
  font-size: 1.3rem;
  animation: heartBeat 2s ease-in-out infinite;
}

@keyframes heartBeat {
  0%, 14%, 28%, 42%, 70% { transform: scale(1); }
  7%, 21%, 35% { transform: scale(1.1); }
}

/* Responsive Design for Events */
@media (max-width: 768px) {
  .event-card {
    margin-bottom: 2rem;
  }
  
  .event-content h3 {
    font-size: 1.2rem;
  }
  
  .event-content {
    padding: 20px;
  }
  
  .event-image {
    height: 200px;
  }
  
  .event-card:hover {
    transform: translateY(-8px) scale(1.02);
  }
  
  .cta-section {
    padding: 40px 25px;
  }
  
  .cta-section h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .event-meta {
    gap: 6px;
  }
  
  .event-meta span {
    font-size: 0.85rem;
  }
  
  .event-date {
    padding: 10px;
    min-width: 60px;
  }
  
  .event-date .day {
    font-size: 1.5rem;
  }
  
  .event-date .month {
    font-size: 0.8rem;
  }
}

/*--------------------------------------------------------------
# Members Section - Ultra Vibrant Enhancement
--------------------------------------------------------------*/
.members {
  background: linear-gradient(135deg, 
    rgba(255, 153, 51, 0.03) 0%, 
    rgba(139, 92, 246, 0.03) 25%,
    rgba(34, 139, 34, 0.03) 50%,
    rgba(220, 20, 60, 0.03) 75%,
    rgba(255, 215, 0, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

.members::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 35%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 25%, rgba(34, 139, 34, 0.06) 0%, transparent 40%);
  pointer-events: none;
  animation: membersBackgroundShift 25s ease-in-out infinite;
}

@keyframes membersBackgroundShift {
  0%, 100% { opacity: 0.4; filter: hue-rotate(0deg); }
  25% { opacity: 0.6; filter: hue-rotate(20deg); }
  50% { opacity: 0.5; filter: hue-rotate(40deg); }
  75% { opacity: 0.7; filter: hue-rotate(-15deg); }
}

.member-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.1),
    0 8px 25px rgba(255, 107, 53, 0.15),
    0 4px 15px rgba(139, 92, 246, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
  position: relative;
  height: 100%;
  text-align: center;
}

.member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
  border-radius: 25px;
  z-index: -1;
  pointer-events: none;
}

.member-card:hover {
  transform: translateY(-12px) scale(1.03) rotateX(2deg);
  border: 2px solid rgba(255, 107, 53, 0.3);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.15),
    0 15px 40px rgba(255, 107, 53, 0.25),
    0 8px 30px rgba(139, 92, 246, 0.2),
    0 4px 20px rgba(34, 139, 34, 0.15);
}

.member-card:nth-child(odd) {
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.1),
    0 8px 25px rgba(34, 139, 34, 0.15),
    0 4px 15px rgba(255, 215, 0, 0.1);
}

.member-card:nth-child(odd):hover {
  border-color: rgba(34, 139, 34, 0.3);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.15),
    0 15px 40px rgba(34, 139, 34, 0.25),
    0 8px 30px rgba(255, 215, 0, 0.2),
    0 4px 20px rgba(255, 107, 53, 0.15);
}

.member-image {
  position: relative;
  padding: 30px 30px 0 30px;
  margin-bottom: 15px;
}

.member-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.9);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.2),
    0 8px 20px rgba(255, 107, 53, 0.15),
    0 4px 15px rgba(139, 92, 246, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 2;
}

.member-card:hover .member-image img {
  transform: scale(1.05);
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 
    0 20px 45px rgba(0, 0, 0, 0.25),
    0 12px 25px rgba(255, 107, 53, 0.25),
    0 6px 20px rgba(139, 92, 246, 0.15);
}

.member-overlay {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 15px;
  border-radius: 50%;
  background: linear-gradient(45deg, 
    rgba(255, 107, 53, 0.1) 0%, 
    rgba(139, 92, 246, 0.1) 50%, 
    rgba(34, 139, 34, 0.1) 100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.member-card:hover .member-overlay {
  opacity: 1;
  visibility: visible;
}

.member-social {
  display: flex;
  gap: 15px;
}

.member-social a {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--devotional-yellow) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
  text-decoration: none;
}

.member-social a:hover {
  transform: translateY(-3px) scale(1.1);
  background: linear-gradient(135deg, var(--deep-saffron) 0%, var(--sacred-red) 100%);
  box-shadow: 0 8px 25px rgba(255, 153, 51, 0.4);
  color: white;
}

.member-content {
  padding: 0 25px 25px 25px;
  position: relative;
  z-index: 2;
}

.member-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
  background: linear-gradient(120deg, var(--primary-orange), var(--sacred-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.member-card:hover .member-content h3 {
  transform: translateY(-2px);
}

.member-designation {
  margin-bottom: 15px;
}

.member-designation span {
  background: linear-gradient(135deg, var(--krishna-blue) 0%, var(--royal-purple) 100%);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.member-card:hover .member-designation span {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.member-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

/* Enhanced section title for members */
.members .section-title h2 {
  background: linear-gradient(45deg, 
    var(--saffron) 0%, var(--krishna-blue) 25%, var(--sacred-green) 50%, var(--royal-purple) 75%, var(--deep-saffron) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 300% 100%;
  animation: membersTitleFlow 5s ease-in-out infinite;
}

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

/* Responsive Design for Members */
@media (max-width: 768px) {
  .member-card {
    margin-bottom: 2rem;
  }
  
  .member-image img {
    width: 150px;
    height: 150px;
  }
  
  .member-content h3 {
    font-size: 1.3rem;
  }
  
  .member-content {
    padding: 0 20px 20px 20px;
  }
  
  .member-image {
    padding: 25px 25px 0 25px;
  }
  
  .member-card:hover {
    transform: translateY(-8px) scale(1.02);
  }
}

@media (max-width: 576px) {
  .member-image img {
    width: 130px;
    height: 130px;
  }
  
  .member-content h3 {
    font-size: 1.2rem;
  }
  
  .member-designation span {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
  
  .member-content p {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Simplified Members Section Styling
--------------------------------------------------------------*/
.member-simple {
  text-align: center;
  transition: all 0.3s ease;
}

.member-simple:hover {
  transform: translateY(-5px);
}

.member-circle-image {
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.member-circle-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.2),
    0 6px 20px rgba(255, 107, 53, 0.15),
    0 3px 15px rgba(139, 92, 246, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: linear-gradient(45deg,
    #FF9933 0%,
    #FF4500 25%,
    #8A2BE2 50%,
    #FF1493 75%,
    #FFD700 100%);
  padding: 3px;
}

.member-simple:hover .member-circle-image img {
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(255, 107, 53, 0.6);
  box-shadow: 
    0 18px 40px rgba(0, 0, 0, 0.25),
    0 10px 25px rgba(255, 107, 53, 0.25),
    0 5px 20px rgba(139, 92, 246, 0.2);
}

.member-simple h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  color: var(--heading-color);
  background: linear-gradient(45deg,
    #FF9933 0%,
    #FF4500 30%,
    #8A2BE2 60%,
    #FF1493 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(255, 153, 51, 0.2);
  transition: all 0.3s ease;
  line-height: 1.3;
}

.member-simple:hover h4 {
  transform: scale(1.05);
  text-shadow: 0 4px 8px rgba(255, 153, 51, 0.3);
}

/* Enhanced background animation for members section */
.members .container {
  position: relative;
  z-index: 2;
}

/* Responsive adjustments for simplified members */
@media (max-width: 768px) {
  .member-circle-image img {
    width: 120px;
    height: 120px;
  }
  
  .member-simple h4 {
    font-size: 1.1rem;
  }
  
  .member-simple {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .member-simple:hover {
    transform: translateY(-5px) scale(1.02);
  }
}

@media (max-width: 576px) {
  .member-circle-image img {
    width: 100px;
    height: 100px;
  }
  
  .member-simple h4 {
    font-size: 1rem;
  }
  
  .member-circle-image {
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
