/* 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: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #272829; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #050d18; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #149ddd; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* 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: #a8a9b4;  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #040b14; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #040b14; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #a8a9b4; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffffff; /* 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: #f4fafd;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #040b14;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #151f2b;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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-color: var(--background-color);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 0 15px;
  width: 300px;
  transition: all ease-in-out 0.3s;
  overflow-y: auto;
  z-index: 997;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .profile-img img {
  margin: 15px auto;
  display: block;
  width: 120px;
  border: 8px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.header .logo {
  line-height: 1;
  margin-bottom: 15px;
}

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

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .social-links {
  margin: 0 0 20px 0;
}

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

.header .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

@media (min-width: 1200px) {

  .header~main,
  .header~#footer {
    margin-left: 300px;
  }
}

@media (max-width: 1199px) {
  .header {
    left: -100%;
  }
}

.header.header-show {
  left: 0;
}

.header .header-toggle {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  transition: background-color 0.3s;
}

.header .header-toggle:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.mobile-nav-toggle {
  display: none;
}

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

.navmenu ul {
  list-style: none;
  padding: 0 0 20px 0;
  margin: 0;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  padding: 15px 10px;
  font-family: var(--nav-font);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: 0.3s;
  width: 100%;
}

.navmenu a .navicon,
.navmenu a:focus .navicon {
  font-size: 20px;
  margin-right: 10px;
}

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

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

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

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

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

.navmenu .dropdown {
  display: block;
}

.navmenu .dropdown a,
.navmenu .dropdown a:focus {
  color: --nav-dropdown-color;
}

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

.navmenu .dropdown ul {
  position: static;
  display: none;
  z-index: 99;
  padding: 5px 10px;
  margin: 5px 10px;
  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);
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.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 {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
:root {
            --primary-color: #bd5d38;
            --secondary-color: #2c3e50;
            --text-light: #f8f9fa;
            --text-dark: #333;
            --overlay-dark: rgba(0, 0, 0, 0.7);
            --overlay-light: rgba(255, 255, 255, 0.1);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

        .hero-section {
            width: 100%;
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-bg-image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero-overlay {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            max-width: 1200px;
            padding: 0 20px;
            color: var(--text-light);
        }

        .hero-name {
            font-size: 5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            background: linear-gradient(to right, #fff 0%, var(--primary-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 0.5s;
        }

        .hero-title-container {
            min-height: 80px;
            margin-bottom: 2rem;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 0.8s;
        }

        .hero-typed {
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--primary-color);
        }

        .hero-typed-cursor {
            font-size: 2.5rem;
            color: var(--primary-color);
            animation: blink 1s infinite;
        }

        .hero-description {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 2.5rem;
            line-height: 1.6;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 1.1s;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 2.5rem;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 1.4s;
        }

        .hero-btn {
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .hero-btn-primary {
            background: var(--primary-color);
            color: white;
            border: 2px solid var(--primary-color);
        }

        .hero-btn-primary:hover {
            background: transparent;
            color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(189, 93, 56, 0.3);
        }

        .hero-btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .hero-btn-outline:hover {
            background: white;
            color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
        }

        .hero-socials {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 1.7s;
        }

        .hero-social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--overlay-light);
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .hero-social-link:hover {
            background: var(--primary-color);
            transform: translateY(-5px);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 4;
            opacity: 0;
            animation: fadeIn 1s ease forwards 2s;
        }

        .scroll-down {
            width: 30px;
            height: 50px;
            border: 2px solid white;
            border-radius: 50px;
            position: relative;
            cursor: pointer;
            transition: var(--transition);
        }

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

        .scroll-down:before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            width: 6px;
            height: 6px;
            background: var(--primary-color);
            border-radius: 50%;
            transform: translateX(-50%);
            animation: scrollAnimation 2s infinite;
        }

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

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

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

        @keyframes scrollAnimation {
            0% {
                opacity: 1;
                top: 10px;
            }
            100% {
                opacity: 0;
                top: 30px;
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-name {
                font-size: 4rem;
            }
            
            .hero-title, .hero-typed {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .hero-name {
                font-size: 3rem;
            }
            
            .hero-title, .hero-typed {
                font-size: 1.7rem;
            }
            
            .hero-title-container {
                min-height: 70px;
            }
            
            .hero-description {
                font-size: 1.1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-btn {
                width: 200px;
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .hero-name {
                font-size: 2.5rem;
            }
            
            .hero-title, .hero-typed {
                font-size: 1.5rem;
            }
            
            .hero-title-container {
                min-height: 60px;
            }
            
            .hero-description {
                font-size: 1rem;
            }
        }

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
#abs-about {
  --abs-primary: #bd5d38;
  --abs-text: #333;
  --abs-bg: #f8f9fa;
  padding: 4rem 1rem;
  background: white;
  font-family: 'Segoe UI', system-ui;
}

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

#abs-about .abs-title {
  text-align: center;
  color: var(--abs-text);
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 1rem;
}

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

#abs-about .abs-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}

#abs-about .abs-profile-img {
  width: 100%;
  max-width: 400px;
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

#abs-about .abs-bio {
  margin-bottom: 2rem;
}

#abs-about .abs-bio p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1.5rem;
}

#abs-about .abs-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

#abs-about .abs-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

#abs-about .abs-detail-icon {
  color: var(--abs-primary);
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#abs-about .abs-detail-content strong {
  display: block;
  color: var(--abs-text);
  margin-bottom: 0.3rem;
}

#abs-about .abs-detail-content span {
  color: #666;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  #abs-about .abs-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  #abs-about .abs-details {
    grid-template-columns: 1fr;
  }
  
  #abs-about .abs-detail-item {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/       

        .custom-stats-section {
            width: 100%;
            max-width: 1200px;
            padding: 60px 20px;
            background: linear-gradient(135deg, #f9f9ff 0%, #f1f2ff 100%);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .custom-stats-container {
            width: 100%;
        }

        .custom-stats-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .custom-stats-item {
            flex: 1;
            min-width: 220px;
            max-width: 250px;
            background: var(--surface-color);
            border-radius: 16px;
            padding: 35px 25px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .custom-stats-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--accent-color);
            transition: height 0.4s ease;
            z-index: -1;
        }

        .custom-stats-item:nth-child(1)::before {
            background: var(--accent-color);
        }

        .custom-stats-item:nth-child(2)::before {
            background: var(--accent-color-2);
        }

        .custom-stats-item:nth-child(3)::before {
            background: var(--accent-color-3);
        }

        .custom-stats-item:nth-child(4)::before {
            background: var(--accent-color-4);
        }

        .custom-stats-item:hover::before {
            height: 100%;
        }

        .custom-stats-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .custom-stats-item:hover .custom-stats-icon {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border-color: transparent;
        }

        .custom-stats-item:hover .custom-counter {
            color: white;
        }

        .custom-stats-item:hover .custom-stats-text {
            color: rgba(255, 255, 255, 0.9);
        }

        .custom-stats-icon {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            border-radius: 50%;
            font-size: 28px;
            color: var(--accent-color);
            border: 2px solid #f0f0f0;
            transition: all 0.4s ease;
        }

        .custom-stats-item:nth-child(1) .custom-stats-icon {
            color: var(--accent-color);
            background: rgba(108, 99, 255, 0.1);
        }

        .custom-stats-item:nth-child(2) .custom-stats-icon {
            color: var(--accent-color-2);
            background: rgba(255, 107, 107, 0.1);
        }

        .custom-stats-item:nth-child(3) .custom-stats-icon {
            color: var(--accent-color-3);
            background: rgba(78, 205, 196, 0.1);
        }

        .custom-stats-item:nth-child(4) .custom-stats-icon {
            color: var(--accent-color-4);
            background: rgba(255, 209, 102, 0.1);
        }

        .custom-counter {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 8px;
            color: var(--heading-color);
            transition: color 0.4s ease;
            display: block;
        }

        .custom-stats-text {
            font-size: 16px;
            font-weight: 600;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            transition: color 0.4s ease;
        }

        .custom-stats-plus {
            font-size: 32px;
            font-weight: 700;
            color: var(--accent-color);
            margin-left: 2px;
        }

        .custom-stats-item:nth-child(1) .custom-stats-plus {
            color: var(--accent-color);
        }

        .custom-stats-item:nth-child(2) .custom-stats-plus {
            color: var(--accent-color-2);
        }

        .custom-stats-item:nth-child(3) .custom-stats-plus {
            color: var(--accent-color-3);
        }

        .custom-stats-item:nth-child(4) .custom-stats-plus {
            color: var(--accent-color-4);
        }

        @media (max-width: 992px) {
            .custom-stats-row {
                gap: 20px;
            }
            
            .custom-stats-item {
                min-width: 200px;
            }
        }

        @media (max-width: 768px) {
            .custom-stats-row {
                flex-direction: column;
                align-items: center;
            }
            
            .custom-stats-item {
                max-width: 100%;
                width: 100%;
            }
            
            .custom-stats-section {
                padding: 40px 15px;
            }
        }

        /* Animation for stats items */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .custom-stats-item {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .custom-stats-item:nth-child(1) { animation-delay: 0.1s; }
        .custom-stats-item:nth-child(2) { animation-delay: 0.2s; }
        .custom-stats-item:nth-child(3) { animation-delay: 0.3s; }
        .custom-stats-item:nth-child(4) { animation-delay: 0.4s; }

/* Experience Section Styling */
/*interests section starts here*/
.interests-section {
  padding: 4rem 2rem;
  background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
  color: #fff;
  border-radius: 20px;
  margin: 2rem auto;
  max-width: 1200px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #00ff88, #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.interest-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.interest-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.icon-gradient {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #00ff88, #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.interest-card h3 {
  color: #00ff88;
  margin: 1rem 0;
  font-weight: 600;
}

.interest-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Animation on Scroll */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.interest-card {
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
}

.interest-card:nth-child(2) { animation-delay: 0.2s; }
.interest-card:nth-child(3) { animation-delay: 0.4s; }
.interest-card:nth-child(4) { animation-delay: 0.6s; }
.interest-card:nth-child(5) { animation-delay: 0.8s; }
.interest-card:nth-child(6) { animation-delay: 1s; }
/*interests section ends here*/
 /* Scoped Education Section Styles */
 #edu-section {
  --edu-primary: #6c5ce7;
  --edu-secondary: #00b894;
  --edu-bg: #f8f9ff;
  padding: 6rem 1rem;
  background: var(--edu-bg);
  font-family: 'Segoe UI', system-ui;
  position: relative;
  overflow: hidden;
}

#edu-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: repeating-linear-gradient(
    180deg,
    transparent,
    transparent 20px,
    #ddd 20px,
    #ddd 40px
  );
}

#edu-section .edu-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

#edu-section .edu-title {
  text-align: center;
  color: #2d3436;
  margin-bottom: 5rem;
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#edu-section .edu-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  position: relative;
}

#edu-section .edu-card {
  padding: 2.5rem;
  border-radius: 20px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

#edu-section .edu-card:nth-child(odd) {
  margin-top: 4rem;
  border-left: 4px solid var(--edu-primary);
}

#edu-section .edu-card:nth-child(even) {
  margin-bottom: 4rem;
  border-right: 4px solid var(--edu-secondary);
}

#edu-section .edu-card:hover {
  transform: translateY(-10px) scale(1.02);
}

#edu-section .edu-degree {
  color: var(--edu-primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

#edu-section .edu-school {
  display: block;
  color: #636e72;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

#edu-section .edu-duration {
  background: rgba(108, 92, 231, 0.1);
  color: var(--edu-primary);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

#edu-section .edu-description {
  color: #636e72;
  line-height: 1.8;
  margin-bottom: 2rem;
}

#edu-section .edu-skills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

#edu-section .edu-skill {
  padding: 1rem;
  border-radius: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

#edu-section .edu-card:nth-child(odd) .edu-skill {
  background: rgba(108, 92, 231, 0.08);
  color: var(--edu-primary);
}

#edu-section .edu-card:nth-child(even) .edu-skill {
  background: rgba(0, 184, 148, 0.08);
  color: var(--edu-secondary);
}

#edu-section .edu-skill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: currentColor;
  opacity: 0.2;
}

@media (max-width: 992px) {
  #edu-section::before {
    display: none;
  }
  
  #edu-section .edu-track {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  #edu-section .edu-card {
    margin: 0 !important;
    border-left: 4px solid var(--edu-primary) !important;
  }
  
  #edu-section .edu-title {
    font-size: 2.5rem;
  }
}
/*education section ends here*/

/*testimonials page starts here*/
#unique-testimonials {
  padding: 4rem 2rem;
  background: #f9f9f9;
  border-radius: 20px;
  margin: 2rem auto;
  max-width: 1200px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #333;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-header p {
  color: #777;
  font-size: 1.1rem;
}

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

.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
  position: relative;
}

.quote-icon {
  font-size: 1.5rem;
  color: #00b4d8;
  opacity: 0.7;
}

.quote-icon.fa-quote-left {
  position: absolute;
  top: -10px;
  left: -10px;
}

.quote-icon.fa-quote-right {
  position: absolute;
  bottom: -10px;
  right: -10px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 1.5rem 0;
  text-align: center;
}

.testimonial-author {
  text-align: center;
  margin-top: 1.5rem;
}

.testimonial-author h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.testimonial-author p {
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
}

/* Animation on Scroll */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-card {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.testimonial-card:nth-child(1) { animation-delay: 0.2s; }
.testimonial-card:nth-child(2) { animation-delay: 0.4s; }
/*testimonials page ends here */
/*whatsapp button starts here*/
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background-color: #000;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  background-color: #25D366;
}

.whatsapp-icon {
  font-size: 32px;
  color: #fff;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-icon {
    font-size: 28px;
  }
}
/*whatsapp button ends here*/

#exp-section {
  --exp-primary: #bd5d38;
  --exp-text: #333;
  --exp-bg: #ffffff;
  padding: 4rem 1rem;
  background: var(--exp-bg);
  font-family: 'Segoe UI', system-ui;
}

#exp-section .exp-container {
  max-width: 1200px;
  margin: 0 auto;
}

#exp-section .exp-title {
  text-align: center;
  color: var(--exp-text);
  margin-bottom: 3rem;
  font-size: 2.5rem;
  font-weight: 600;
  position: relative;
}

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

#exp-section .exp-timeline {
  position: relative;
  padding-left: 30px;
}

#exp-section .exp-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 15px;
  height: calc(100% - 30px);
  width: 2px;
  background: #e0e0e0;
}

#exp-section .exp-item {
  position: relative;
  margin-bottom: 3rem;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

#exp-section .exp-item:hover {
  transform: translateY(-5px);
}

#exp-section .exp-item::before {
  content: '';
  position: absolute;
  left: -27px;
  top: 25px;
  width: 16px;
  height: 16px;
  border: 3px solid var(--exp-primary);
  border-radius: 50%;
  background: #fff;
  z-index: 1;
}

#exp-section .exp-role {
  color: var(--exp-primary);
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
}

#exp-section .exp-company {
  display: block;
  color: var(--exp-text);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

#exp-section .exp-duration {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#exp-section .exp-duration i {
  color: var(--exp-primary);
}

#exp-section .exp-description {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

#exp-section .exp-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

#exp-section .exp-skill {
  background: rgba(189, 93, 56, 0.1);
  color: var(--exp-primary);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  #exp-section .exp-timeline {
    padding-left: 0;
  }
  
  #exp-section .exp-timeline::before {
    display: none;
  }
  
  #exp-section .exp-item::before {
    display: none;
  }
}
/* Scoped Projects Section Styles */
#proj-section {
  --proj-primary: #bd5d38;
  --proj-secondary: #2c3e50;
  --proj-text: #333;
  padding: 6rem 1rem;
  background: #f9f9f9;
  font-family: 'Segoe UI', system-ui;
}

#proj-section .proj-container {
  max-width: 1200px;
  margin: 0 auto;
}

#proj-section .proj-title {
  text-align: center;
  color: var(--proj-secondary);
  margin-bottom: 4rem;
  font-size: 2.8rem;
  font-weight: 700;
  position: relative;
}

#proj-section .proj-title::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--proj-primary);
}

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

#proj-section .proj-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

#proj-section .proj-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

#proj-section .proj-image {
  height: 250px;
  background: #ddd;
  position: relative;
  overflow: hidden;
}

#proj-section .proj-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
}

#proj-section .proj-content {
  padding: 1.5rem;
}

#proj-section .proj-client {
  color: var(--proj-primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

#proj-section .proj-name {
  color: var(--proj-secondary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

#proj-section .proj-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

#proj-section .proj-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

#proj-section .proj-tech-item {
  background: rgba(189, 93, 56, 0.1);
  color: var(--proj-primary);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
}

#proj-section .proj-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--proj-secondary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

#proj-section .proj-link:hover {
  color: var(--proj-primary);
}

@media (max-width: 768px) {
  #proj-section .proj-title {
    font-size: 2.2rem;
  }
  
  #proj-section .proj-grid {
    grid-template-columns: 1fr;
  }
}

/* Skills Section Styling */
#skills {
  padding: 50px 20px;
  max-width: 1000px;
  margin: 0 auto;
  font-family: 'Arial', sans-serif;
}

h2 {
  text-align: center;
  color: #333;
  margin-bottom: 40px;
  font-size: 2.5em;
}

.skill-category {
  margin-bottom: 40px;
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.skill-category h3 {
  color: #bd5d38;
  margin-bottom: 25px;
  font-size: 1.5em;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.skill-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px 0;
}

.skill-icon {
  font-size: 1.4rem;
  color: #bd5d38;
  width: 40px;
}

.skill-name {
  width: 200px;
  font-weight: 600;
  color: #444;
}

.skill-bar-container {
  flex: 1;
  height: 12px;
  background: #e0e0e0;
  border-radius: 6px;
  margin: 0 20px;
  position: relative;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 6px;
  transition: width 1s ease-in-out;
}

.skill-percent {
  width: 60px;
  text-align: right;
  font-weight: 700;
  color: #666;
}

/*--------------------------------------------------------------



# Resume Section
--------------------------------------------------------------*/
#resume-section {
  --rs-primary: #bd5d38;
  --rs-whatsapp: #25D366;
  --rs-text: #333;
  --rs-bg: #f8f9fa;
  padding: 4rem 1rem;
  background: var(--rs-bg);
  font-family: 'Segoe UI', system-ui;
}

#resume-section .rs-container {
  max-width: 1200px;
  margin: 0 auto;
}

#resume-section .rs-title {
  text-align: center;
  color: var(--rs-text);
  margin-bottom: 3rem;
  font-size: 2.5rem;
  font-weight: 600;
}

#resume-section .rs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

#resume-section .rs-card {
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

#resume-section .rs-card:hover {
  transform: translateY(-3px);
}

#resume-section .rs-card-title {
  color: var(--rs-primary);
  margin: 0 0 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

#resume-section .rs-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--rs-primary);
  color: white !important;
  padding: 0.6rem 1.2rem;
  border-radius: 0.3rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

#resume-section .rs-download-btn:hover {
  background: #9d4d30;
}

#resume-section .rs-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: fit-content;
  margin: 2rem auto 0;
  background: var(--rs-whatsapp);
  color: white !important;
  padding: 1rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}
#resume-section .rs-card-desc {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

#resume-section .rs-whatsapp-btn:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  #resume-section .rs-grid {
      grid-template-columns: 1fr;
  }
  
  #resume-section .rs-title {
      font-size: 2rem;
  }
}



/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

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

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

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

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

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

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

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

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  position: relative;
}

.services .service-item .icon {
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  transition: 0.5s;
  border: 1px solid var(--accent-color);
  margin-right: 20px;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 24px;
  line-height: 0;
}

.services .service-item:hover .icon {
  background: var(--surface-color);
}

.services .service-item:hover .icon i {
  color: var(--accent-color);
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

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

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

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

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

.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;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background-color: var(--surface-color);
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid var(--surface-color);
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-section {
            max-width: 1200px;
            margin: 40px auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            background: var(--surface-color);
        }

        .contact-container {
            display: flex;
            flex-wrap: wrap;
        }

        .contact-info-side {
            flex: 1;
            min-width: 300px;
            background: linear-gradient(135deg, var(--accent-color), #8a85ff);
            color: white;
            padding: 50px 40px;
            position: relative;
            overflow: hidden;
        }

        .contact-info-side::before {
            content: '';
            position: absolute;
            top: -70px;
            right: -70px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }

        .contact-info-side::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }

        .contact-form-side {
            flex: 1.5;
            min-width: 350px;
            padding: 50px 40px;
            background: var(--surface-color);
        }

        .section-title {
            margin-bottom: 40px;
            position: relative;
        }

        .section-title h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
            color: inherit;
        }

        .section-title p {
            font-size: 16px;
            color: inherit;
            opacity: 0.8;
        }

        .contact-info-wrapper {
            position: relative;
            z-index: 2;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }

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

        .info-icon {
            font-size: 22px;
            color: white;
            background: rgba(255, 255, 255, 0.15);
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            margin-right: 15px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .contact-info-item:hover .info-icon {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.1);
        }

        .info-content h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .info-content p {
            font-size: 15px;
            opacity: 0.9;
        }

        .map-container {
            margin-top: 40px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            height: 200px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .contact-form-container {
            height: 100%;
        }

        .form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--default-color);
            font-size: 14px;
        }

        .form-control-custom {
            width: 100%;
            padding: 14px 16px;
            font-size: 15px;
            border: 1px solid #e1e1e1;
            border-radius: 10px;
            transition: all 0.3s ease;
            background: var(--surface-color);
            color: var(--default-color);
        }

        .form-control-custom:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
        }

        .form-control-custom::placeholder {
            color: #a0a0a0;
        }

        textarea.form-control-custom {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: var(--accent-color);
            color: white;
            border: none;
            padding: 14px 30px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
        }

        .submit-btn:hover {
            background: #5a52e0;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
        }

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

        .form-status {
            margin-top: 20px;
            padding: 12px 16px;
            border-radius: 8px;
            font-size: 14px;
            display: none;
        }

        .form-status.loading {
            display: block;
            background: #e9f5ff;
            color: #0066cc;
        }

        .form-status.error-message {
            display: block;
            background: #ffe6e6;
            color: #cc0000;
        }

        .form-status.sent-message {
            display: block;
            background: #e6f7ee;
            color: #00875a;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .contact-container {
                flex-direction: column;
            }
            
            .contact-info-side, .contact-form-side {
                padding: 30px 25px;
            }
            
            .section-title h2 {
                font-size: 26px;
            }
        }

        /* Animation for form elements */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .form-group {
            animation: fadeIn 0.5s ease forwards;
        }

        .form-group:nth-child(1) { animation-delay: 0.1s; }
        .form-group:nth-child(2) { animation-delay: 0.2s; }
        .form-group:nth-child(3) { animation-delay: 0.3s; }
        .form-group:nth-child(4) { animation-delay: 0.4s; }
        .form-group:nth-child(5) { animation-delay: 0.5s; }
/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.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: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.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;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

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

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
/* Outline Button Style */
        .outline-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 36px;
            background: transparent;
            color: #bd5d38;
            font-size: 1.1rem;
            font-weight: 600;
            border: 2px solid #bd5d38;
            border-radius: 12px;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .outline-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: #bd5d38;
            transition: all 0.3s ease;
            z-index: -1;
        }
        
        .outline-btn:hover::before {
            width: 100%;
        }
        
        .outline-btn:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(189, 93, 56, 0.3);
        }
        
        .outline-btn:active {
            transform: translateY(0);
        }
        
        .outline-btn:hover i {
            transform: translateX(5px);
        }
        
        .outline-btn i {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }
        
      
        
        /* Responsive Design */
        @media (max-width: 600px) {
            .button-container {
                flex-direction: column;
                align-items: center;
            }
            
        }
        

        
