   :root {
       --primary-color: #0d6efd;
       --secondary-color: #2c3e50;
       --accent-color: #0dcaf0;
       --bg-light: #f8f9fa;
       --text-dark: #333;
   }

   body {
       font-family: 'Poppins', sans-serif;
       color: var(--text-dark);
       overflow-x: hidden;
   }

   /* Navbar Styling */
   .navbar {
       box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
       transition: all 0.3s ease;
   }

   .navbar-brand {
       font-weight: 700;
       font-size: 1.5rem;
       color: var(--primary-color) !important;
   }

   .nav-link {
       font-weight: 500;
       margin: 0 10px;
       position: relative;
   }

   .nav-link::after {
       content: '';
       position: absolute;
       width: 0;
       height: 2px;
       bottom: 0;
       left: 0;
       background-color: var(--primary-color);
       transition: width 0.3s;
   }

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

   /* Parallax & Carousel Styling */
   .parallax {
       background-attachment: fixed;
       background-position: center;
       background-repeat: no-repeat;
       background-size: cover;
   }

   .carousel-item {
       height: 85vh;
       min-height: 500px;
       background-attachment: fixed;
       background-position: center;
       background-repeat: no-repeat;
       background-size: cover;
       position: relative;
   }

   .carousel-overlay {
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       background: rgba(0, 0, 0, 0.8);
       display: flex;
       align-items: center;
       justify-content: center;
       text-align: center;
   }

   .carousel-caption-custom {
       color: white;
       padding: 20px;
       max-width: 900px;
       animation: fadeInUp 1s ease-out;
   }

   .carousel-caption-custom h1 {
       font-size: 4rem;
       font-weight: 700;
       margin-bottom: 25px;
       text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
       letter-spacing: -1px;
   }

   .carousel-caption-custom p {
       font-size: 1.4rem;
       font-weight: 300;
       line-height: 1.6;
   }

   /* Section Styling */
   section {
       padding: 100px 0;
   }

   .section-title {
       text-align: center;
       margin-bottom: 70px;
       position: relative;
       display: inline-block;
       left: 50%;
       transform: translateX(-50%);
   }

   .section-title h2 {
       font-weight: 700;
       color: var(--secondary-color);
       text-transform: uppercase;
       letter-spacing: 2px;
       margin-bottom: 15px;
   }

   .section-title::after {
       content: '';
       display: block;
       width: 80px;
       height: 4px;
       background: var(--primary-color);
       margin: 0 auto;
       border-radius: 2px;
   }

   /* Who I Am Section */
   .profile-img-container {
       position: relative;
       border-radius: 20px;
       overflow: hidden;
       box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
       transition: transform 0.3s;
   }

   .profile-img-container:hover {
       transform: scale(1.02);
   }

   .profile-img {
       width: 100%;
       height: auto;
       object-fit: cover;
   }

   .about-content {
       padding-left: 20px;
   }

   .role-badge {
       display: inline-block;
       background: var(--bg-light);
       padding: 10px 20px;
       margin: 5px 5px 5px 0;
       border-radius: 50px;
       font-weight: 600;
       color: var(--primary-color);
       border: 1px solid #dee2e6;
       font-size: 0.9rem;
       transition: all 0.3s;
       cursor: default;
   }

   .role-badge:hover {
       background: var(--primary-color);
       color: white;
       border-color: var(--primary-color);
       transform: translateY(-3px);
   }

   .company-list {
       margin-top: 25px;
       border-top: 1px solid #eee;
       padding-top: 25px;
   }

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

   .company-item:hover {
       transform: translateX(10px);
   }

   .company-item i {
       color: var(--primary-color);
       margin-top: 5px;
       margin-right: 15px;
   }

   /* Motivational Section (Parallax & Quotes) */
   #motivation {
      
       color: white;
       position: relative;
       text-align: center;
   }

   .motivation-overlay {
      /*  background: rgba(44, 62, 80, 0.85); */
       /* Secondary color overlay */
       padding: 100px 0;
       min-height: 400px;
       display: flex;
       flex-direction: column;
       justify-content: center;
   }

   .quote-icon {
       font-size: 3rem;
       color: var(--accent-color);
       margin-bottom: 30px;
       opacity: 0.8;
       animation: pulse 2s infinite;
   }

   .quote-container {
       position: relative;
       height: 150px;
       /* Fixed height to prevent layout jumps */
       overflow: hidden;
       max-width: 900px;
       margin: 0 auto;
   }

   .quote-slide {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       opacity: 0;
       transform: translateY(20px);
       transition: all 0.8s ease-in-out;
       pointer-events: none;
   }

   .quote-slide.active {
       opacity: 1;
       transform: translateY(0);
       pointer-events: auto;
   }

   .motivation-text {
       font-size: 1.8rem;
       font-weight: 300;
       font-style: italic;
       line-height: 1.5;
       margin-bottom: 20px;
   }

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

       50% {
           transform: scale(1.1);
           opacity: 1;
       }

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

   /* What I Do Section */
   .bg-light-custom {
       background-color: #f8f9fa;
   }

   .service-card {
       background: white;
       border-radius: 15px;
       padding: 40px 25px;
       height: 100%;
       transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
       /* Bouncy effect */
       border: none;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
       text-align: center;
       position: relative;
       overflow: hidden;
       z-index: 1;
   }

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

   .service-card:hover {
       transform: translateY(-15px);
       box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
   }

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

   .service-icon-box {
       width: 80px;
       height: 80px;
       background: rgba(13, 110, 253, 0.1);
       color: var(--primary-color);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 2rem;
       margin: 0 auto 25px;
       transition: all 0.5s;
   }

   .service-card:hover .service-icon-box {
       background: var(--primary-color);
       color: white;
       transform: rotateY(360deg);
       /* Full spin on hover */
   }

   .service-title {
       font-weight: 700;
       margin-bottom: 15px;
       color: var(--secondary-color);
   }

   /* Contact Section */
   .contact-card {
       background: white;
       padding: 40px;
       border-radius: 15px;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
       transition: transform 0.3s;
   }

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

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

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

   .contact-icon {
       width: 60px;
       height: 60px;
       background: var(--primary-color);
       color: white;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       margin-right: 20px;
       font-size: 1.5rem;
       transition: all 0.3s;
   }

   .contact-info-item:hover .contact-icon {
       transform: rotate(15deg) scale(1.1);
   }

   .form-control {
       padding: 15px 20px;
       border-radius: 8px;
       border: 1px solid #e0e0e0;
       margin-bottom: 20px;
       background-color: #fbfbfb;
       transition: all 0.3s;
   }

   .form-control:focus {
       box-shadow: 0 0 15px rgba(13, 110, 253, 0.1);
       border-color: var(--primary-color);
       background-color: white;
       transform: translateY(-2px);
   }

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

   .social-links a {
       display: inline-flex;
       width: 45px;
       height: 45px;
       background: rgba(255, 255, 255, 0.1);
       color: white;
       align-items: center;
       justify-content: center;
       border-radius: 50%;
       margin: 0 8px;
       transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
       text-decoration: none;
       font-size: 1.1rem;
   }

   .social-links a:hover {
       background: var(--primary-color);
       transform: translateY(-5px) scale(1.1);
   }

   /* Global Animations */
   .fade-in-up {
       opacity: 0;
       transform: translateY(30px);
       transition: opacity 0.8s ease-out, transform 0.8s ease-out;
   }

   .fade-in-up.visible {
       opacity: 1;
       transform: translateY(0);
   }

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

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

   /* Mobile Adjustments */
   @media (max-width: 768px) {
       .carousel-caption-custom h1 {
           font-size: 2.5rem;
       }

       .section-title h2 {
           font-size: 1.8rem;
       }

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

       .quote-container {
           height: 200px;
       }

       /* More space for text on mobile */
   }