
/* Base Styles and Variables */
:root {
    /* Common variables */
    --primary-color: #4169ff;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    
    /* Dark mode colors (default) */
    --background-color: #14141d;
    --card-bg-color: #000000;
    --text-color: #ffffff;
    --text-secondary: #a0a0a0;
    --cards-bg: #ffffff0d;
}

/* Light mode colors */
:root.light-mode {
    --background-color: #f5f5f7;
    --card-bg-color: #ffffff;
    --text-color: #333333;
    --text-secondary: #666666;
    --cards-bg: #f0f0f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.grid-loader {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 5px;
    width: 100px;
    height: 100px;
}

.grid-box {
    background-color: var(--primary-color);
    border-radius: 4px;
    animation: pulse 1.5s infinite;
}

.grid-box:nth-child(1) { animation-delay: 0s; }
.grid-box:nth-child(2) { animation-delay: 0.1s; }
.grid-box:nth-child(3) { animation-delay: 0.2s; }
.grid-box:nth-child(4) { animation-delay: 0.3s; }
.grid-box:nth-child(5) { animation-delay: 0.4s; }
.grid-box:nth-child(6) { animation-delay: 0.5s; }
.grid-box:nth-child(7) { animation-delay: 0.6s; }
.grid-box:nth-child(8) { animation-delay: 0.7s; }
.grid-box:nth-child(9) { animation-delay: 0.8s; }

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

.loader-text {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-in-out;
}

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

/* Prevent body scrolling when menu is open */
body.menu-open {
    overflow: hidden;
}

body {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.main-container {
    max-width: 1400px;
    padding: 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 15px;
}

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

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

.highlight {
    font-weight: 600;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Header and Navigation */
.header {
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    background-color: var(--card-bg-color);
    position: relative;
    z-index: 1000;
}

.logo h2 {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.bento-icon {
    margin-right: 5px;
    font-size: 30px;
    color: var(--primary-color);
}

/* Navigation Container */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
}

.main-nav {
    display: flex;
    justify-content: center;
    width: 80%;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 20px;
    transition: var(--transition);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.nav-links li.active {
    background-color: rgba(65, 105, 255, 0.1);
    color: var(--primary-color);
}

.nav-links li:hover {
    color: var(--primary-color);
}

.nav-links li i {
    margin-right: 10px;
}

.actions {
    display: flex;
    align-items: center;
}

.theme-toggle {
    display: inline-block;
    margin-right: 15px;
    cursor: pointer;
    font-size: 18px;
    color: #ffc107;
}

.lets-talk-btn {
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 14px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--text-color);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

/* Theme Toggle Switch Styles */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin-right: 10px;
}

.switch #themeInput {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2196f3;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 0;
  overflow: hidden;
}

.sun-moon {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: yellow;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#themeInput:checked + .slider {
  background-color: var(--background);
}

#themeInput:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

#themeInput:checked + .slider .sun-moon {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
  background-color: white;
  -webkit-animation: rotate-center 0.6s ease-in-out both;
  animation: rotate-center 0.6s ease-in-out both;
}

.moon-dot {
  opacity: 0;
  transition: 0.4s;
  fill: gray;
}

#themeInput:checked + .slider .sun-moon .moon-dot {
  opacity: 1;
}

.slider.round {
  border-radius: 34px;
}

.slider.round .sun-moon {
  border-radius: 50%;
}

#moon-dot-1 {
  left: 10px;
  top: 3px;
  position: absolute;
  width: 6px;
  height: 6px;
  z-index: 4;
}

#moon-dot-2 {
  left: 2px;
  top: 10px;
  position: absolute;
  width: 10px;
  height: 10px;
  z-index: 4;
}

#moon-dot-3 {
  left: 16px;
  top: 18px;
  position: absolute;
  width: 3px;
  height: 3px;
  z-index: 4;
}

#light-ray-1 {
  left: -8px;
  top: -8px;
  position: absolute;
  width: 43px;
  height: 43px;
  z-index: -1;
  fill: white;
  opacity: 10%;
}

#light-ray-2 {
  left: -50%;
  top: -50%;
  position: absolute;
  width: 55px;
  height: 55px;
  z-index: -1;
  fill: white;
  opacity: 10%;
}

#light-ray-3 {
  left: -18px;
  top: -18px;
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: -1;
  fill: white;
  opacity: 10%;
}

.cloud-light {
  position: absolute;
  fill: #eee;
  animation-name: cloud-move;
  animation-duration: 6s;
  animation-iteration-count: infinite;
}

.cloud-dark {
  position: absolute;
  fill: #ccc;
  animation-name: cloud-move;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-delay: 1s;
}

#cloud-1 {
  left: 30px;
  top: 15px;
  width: 40px;
}

#cloud-2 {
  left: 44px;
  top: 10px;
  width: 20px;
}

#cloud-3 {
  left: 18px;
  top: 24px;
  width: 30px;
}

#cloud-4 {
  left: 36px;
  top: 18px;
  width: 40px;
}

#cloud-5 {
  left: 48px;
  top: 14px;
  width: 20px;
}

#cloud-6 {
  left: 22px;
  top: 26px;
  width: 30px;
}

@keyframes cloud-move {
  0% {
    transform: translateX(0px);
  }

  40% {
    transform: translateX(4px);
  }

  80% {
    transform: translateX(-4px);
  }

  100% {
    transform: translateX(0px);
  }
}

.stars {
  transform: translateY(-32px);
  opacity: 0;
  transition: 0.4s;
}

.star {
  fill: white;
  position: absolute;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  animation-name: star-twinkle;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

#themeInput:checked + .slider .stars {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

#star-1 {
  width: 20px;
  top: 2px;
  left: 3px;
  animation-delay: 0.3s;
}

#star-2 {
  width: 6px;
  top: 16px;
  left: 3px;
}

#star-3 {
  width: 12px;
  top: 20px;
  left: 10px;
  animation-delay: 0.6s;
}

#star-4 {
  width: 18px;
  top: 0px;
  left: 18px;
  animation-delay: 1.3s;
}

@keyframes star-twinkle {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.2);
  }

  80% {
    transform: scale(0.8);
  }

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

@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: translateX(26px) rotate(0);
    transform: translateX(26px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(26px) rotate(360deg);
    transform: translateX(26px) rotate(360deg);
  }
}

@keyframes rotate-center {
  0% {
    -webkit-transform: translateX(26px) rotate(0);
    transform: translateX(26px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(26px) rotate(360deg);
    transform: translateX(26px) rotate(360deg);
  }
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

/* Hamburger Animation */
.hamburger.open span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger.open span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

/* Bento Card Styling */
.bento-card {
    background-color: var(--card-bg-color);
    border-radius: var(--border-radius);
    padding: 25px;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.bento-card-2{
    background-color: var(--card-bg-color);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}
.card-header {
    margin-bottom: 20px;
}

.card-header h3 {
    font-size: 22px;
    margin-bottom: 0;
}

/* Profile Card */
.profile-card {
    text-align: center;
}

.profile-card-container{
    height: 100%;
}

.profile-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 30px;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.profile-name {
    font-size: 24px;
    margin-bottom: 10px;
}

.wave {
    display: inline-block;
    animation: wave 1.5s infinite;
}

@keyframes wave {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
    60% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

.profile-title {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.profile-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--cards-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Experience Card */
.experience-marquee-container {
    height: 220px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.experience-marquee {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    animation: marquee 15s linear infinite;
    transition: transform 0.3s ease, animation-play-state 0.3s ease;
}

.experience-marquee-container:hover .experience-marquee {
    animation-play-state: paused;
}

.experience-marquee-container::before,
.experience-marquee-container::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 30px;
    z-index: 2;
    pointer-events: none;
}

.experience-marquee-container::before {
    top: 0;
    background: linear-gradient(to bottom, var(--card-bg-color) 0%, transparent 100%);
}

.experience-marquee-container::after {
    bottom: 0;
    background: linear-gradient(to top, var(--card-bg-color) 0%, transparent 100%);
}

@keyframes marquee {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); } /* Move up by half the height (3 items) */
}

.experience-card .experience-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border-radius: 8px;
    cursor: pointer;
}

.experience-card .experience-item:hover {
    background-color: rgba(65, 105, 255, 0.1);
    transform: translateX(5px);
}

.experience-card .experience-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 10px;
}

.experience-item .year {
    font-size: 14px;
    color: var(--text-secondary);
    margin-right: 15px;
    min-width: 80px;
}

.company-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.adobe-logo {
    background-color: #FF0000;
}

.google-logo {
    background-color: #FFFFFF;
}

.meta-logo {
    background-color: #0668E1;
}

.company-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.company-info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Projects Card */
.projects-card .all-projects {
    font-size: 14px;
    color: var(--primary-color);
}

.projects-container {
    display: flex;
    gap: 15px;
    flex-direction: column;
    height: 100%;
}

.project-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-item:hover img {
    transform: scale(1.05);
}

.project-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

/* Expert Area Card */
.expert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.expert-item {
    background-color: var(--cards-bg);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: var(--transition);
}

.expert-item:hover {
    background-color: rgba(65, 105, 255, 0.1);
}

.expert-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.expert-item p {
    margin: 0;
    font-size: 14px;
}

/* Services Card */
.services-card .all-services {
    font-size: 14px;
    color: var(--primary-color);
}

.services-grid {
    display: flex;
    gap: 15px;
    height: 100%;
}

.service-item {
    background-color: var(--cards-bg);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: var(--transition);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-item .fas{
    font-size: 30px;
}

.service-item:hover {
    background-color: rgba(65, 105, 255, 0.1);
}

.service-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 10px;
    background-color: rgba(65, 105, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
}

.service-item p {
    margin: 0;
    font-size: 20px;
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, rgba(22, 32, 65, 0.9), rgba(0, 0, 0, 0.322)), url('../assets/images/bg-dark.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}


.cta-status {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 10px;
    color: white;

}

.cta-text {
    color: white;
    margin-bottom: 10px;
}

.cta-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
}

/* About Page */
.about-content-card {
    padding: 30px;
    max-height: 80vh;
    overflow-y: auto;
}

/* Custom scrollbar for about content */
.about-content-card::-webkit-scrollbar {
    width: 8px;
}

.about-content-card::-webkit-scrollbar-track {
    background: var(--cards-bg);
    border-radius: 10px;
}

.about-content-card::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.about-content-card::-webkit-scrollbar-thumb:hover {
    background: #3458cc;
}

.about-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.about-description {
    margin-bottom: 30px;
    line-height: 1.6;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.stat-item h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 5px;
}

.brands-section, .testimonials-section, .skills-section{
    margin-bottom: 60px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.brand-item {
    height: 60px;
    background-color: var(--cards-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: var(--transition);
}

.brand-item:hover {
    background-color: rgba(65, 105, 255, 0.1);
    transform: translateY(-5px);
}

.brand-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.5);
    transition: var(--transition);
}

.brand-item:hover img {
    filter: grayscale(0%);
}

/* Awards Section Styles */
.awards-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.award-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--cards-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    transition: var(--transition);
    flex-wrap: wrap;
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.award-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cards-bg);
    border-radius: 8px;
    overflow: hidden;
}

.award-logo img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.award-info {
    flex: 1;
    padding: 0 20px;
}

.award-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.award-year {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.award-badge {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
}

.award-badge i {
    margin-right: 5px;
}

.view-project-btn {
    background-color: #000;
    color: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.view-project-btn:hover {
    background-color: var(--text-color);
}

.view-project-btn i {
    font-size: 12px;
}

/* Skills Section Styles */
.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.skill-name {
    width: 120px;
    font-weight: 500;
}

.skill-bar {
    flex: 1;
    height: 8px;
    background-color: var(--cards-bg);
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 4px;
}

.skill-percentage {
    width: 40px;
    text-align: right;
    font-size: 14px;
    color: var(--primary-color);
}

/* Testimonial Slider Styles */
.testimonial-item {
    background-color: var(--cards-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 10px;
    position: relative;
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 10px;
    display: inline-block;
}

.testimonial-source {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-color);
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-secondary);
}

.author-name {
    font-weight: bold;
    color: var(--text-color);
}

/* Splide Slider Custom Styles */
.splide__arrow {
    background: var(--primary-color) !important;
    opacity: 1 !important;
    width: 40px !important;
    height: 40px !important;
}

.splide__arrow svg {
    display: none;
}

.splide__arrow i {
    color: white;
    font-size: 14px;
}

.splide__pagination__page {
    background: var(--text-color) !important;
}

.splide__pagination__page.is-active {
    background: var(--primary-color) !important;
}

.testimonials-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.testimonial-controls {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.testimonial-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--cards-bg);
    border: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-controls button:hover {
    background-color: var(--primary-color);
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

#about .row {
    height: 100%;
}

#about .col-md-4 {
    position: sticky;
    top: 20px;
    height: fit-content;
}
/* Custom scrollbar for About right column */
#about .col-md-8::-webkit-scrollbar {
    width: 8px;
}

#about .col-md-8::-webkit-scrollbar-track {
    background: var(--cards-bg);
    border-radius: 10px;
}

#about .col-md-8::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

#about .col-md-8::-webkit-scrollbar-thumb:hover {
    background: #3458cc;
}

/* Services Tab Styles */
/* Services Header */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.services-header h2 {
    font-size: 2rem;
    margin-bottom: 0;
}

.available-badge {
    background-color: rgba(65, 105, 255, 0.1);
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.available-badge .dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.services-intro {
    margin-bottom: 40px;
}

.services-intro p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.services-intro .highlight {
    color:var(--text-color);
    font-weight: 600;
}

/* Services Content Card */
.services-content-card {
    max-height: 80vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
}

/* Custom scrollbar for services content */
.services-content-card::-webkit-scrollbar {
    width: 8px;
}

.services-content-card::-webkit-scrollbar-track {
    background: var(--cards-bg);
    border-radius: 10px;
}

.services-content-card::-webkit-scrollbar-thumb {
    background:var(--primary-color);
    border-radius: 10px;
}

.services-content-card::-webkit-scrollbar-thumb:hover {
    background: #3458cc;
}

/* Service Items Grid */
.service-item {
    background-color: var(--cards-bg);
    border-radius: var(--border-radius);
    padding: 25px 15px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-item:hover {
    transform: translateY(-5px);
    background-color: rgba(65, 105, 255, 0.05);
}

.service-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.service-item h3 {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 500;
}

/* Process Section */
.process-section {
    background-color: var(--cards-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-top: 40px;
}

/* FAQ Section */
.faq-section, .portfolio-details {
    margin-top: 60px;
}
.portfolio-content-card {
    border-radius: var(--border-radius);
    padding: 30px;
    max-height: 80vh;
    overflow-y: auto;
}

.portfolio-content-card::-webkit-scrollbar {
    width: 8px;
}

.portfolio-content-card::-webkit-scrollbar-track {
    background: var(--cards-bg);
    border-radius: 4px;
}

.portfolio-content-card::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 4px;
}

.portfolio-content-card::-webkit-scrollbar-thumb:hover {
    background-color: #3458cc;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.portfolio-header h2 {
    font-size: 2rem;
    margin: 0;
}

.portfolio-filter {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    background-color: rgba(65, 105, 255, 0.1);
    color: var(--text-color);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.filter-btn:hover:not(.active) {
    background-color: rgba(65, 105, 255, 0.2);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.portfolio-overlay h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.portfolio-overlay .category {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.portfolio-details h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.portfolio-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-details-image {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.portfolio-details-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.portfolio-details-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.portfolio-details-info h3 {
    font-size: 1.5rem;
    margin: 0 0 10px 0;
}

.portfolio-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.meta-value {
    font-weight: 600;
    color: var(--text-color);
}

.portfolio-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* .portfolio-actions .btn {
    padding: 10px 20px;
    border-radius: 30px;
    width: 100%;
} */

.btn-call{
    color: white;
    background: var(--primary-color);
    width: 100%;
    border-radius: 50px;
}

.btn-call:hover{
    background: transparent;
    color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid var(--primary-color);
}

.btn-copy{
    color: var(--text-color);
    border: 1px solid var(--primary-color);
    width: 100%;
    border-radius: 50px;

}

.btn-copy:hover{
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}
   

/* Contact Section */
.contact-content-card {
    border-radius: var(--border-radius);
    padding: 30px;
    max-height: 80vh;
    overflow-y: auto;
}

.contact-content-card::-webkit-scrollbar {
    width: 8px;
}

.contact-content-card::-webkit-scrollbar-track {
    background: var(--cards-bg);
    border-radius: 4px;
}

.contact-content-card::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 4px;
}

.contact-content-card::-webkit-scrollbar-thumb:hover {
    background-color: #3458cc;
}

.contact-header {
    margin-bottom: 25px;
}

.contact-header h2 {
    font-size: 2rem;
    margin: 0 0 10px 0;
}

.contact-intro {
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

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

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

.form-control {
    width: 100%;
    padding: 15px;
    background-color: var(--cards-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(65, 105, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.budget-select {
    position: relative;
}

.budget-select select {
    appearance: none;
    padding-right: 30px;
    cursor: pointer;
}

.budget-select::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    pointer-events: none;
}

.send-message-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
}

.send-message-btn:hover {
    background-color: #3458cc;
    transform: translateY(-2px);
}

.send-message-btn i {
    transition: transform 0.3s ease;
}

.send-message-btn:hover i {
    transform: translateX(5px);
}

/* Map Section */
.map-section {
    margin-top: 30px;
    border-radius: var(--border-radius);
}

.map-container {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: var(--border-radius);
}

.map-info {
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 15px;
}

.map-info h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

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

.contact-info-icon {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.contact-info-content {
    flex: 1;
}

.contact-info-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-info-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.4;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.accordion-item {
    background-color: var(--cards-bg);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    border: none;
}

.accordion-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: rgba(65, 105, 255, 0.05);
}

.accordion-header h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--primary-color);
}

.accordion-header .toggle-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(65, 105, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 16px;
    transition: var(--transition);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 20px 20px;
    max-height: 1000px;
    color: var(--text-color);
}

.accordion-item.active .toggle-btn {
    transform: rotate(45deg);
}

.process-timeline {
    position: relative;
    padding-left: 30px;
}

.process-timeline:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(to bottom, var(--primary-color) 0%, rgba(65, 105, 255, 0.1) 100%);
}

.process-step {
    position: relative;
    margin-bottom: 30px;
    padding-left: 20px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    position: absolute;
    left: -30px;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.process-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.process-content p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Make the profile card sticky and match height */
#services .profile-card, #portfolio .profile-card, #contact .profile-card, #about .profile-card {
    position: sticky;
    top: 20px;
    height: fit-content;
    max-height: 90vh;
}


#services .row {
    height: 100%;
}

#services .col-md-4 {
    position: sticky;
    top: 20px;
    height: fit-content;
}

/* Footer Styles */
.footer {
    padding: 20px 0;
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright p {
    margin-bottom: 0;
    color: var(--text-color);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}


/* Responsive Styles */
@media (max-width: 1150px) {
    .expert-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 998px) {
    .nav-links {
        gap: 10px;
    }
    
    .nav-links li {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Responsive Navbar */
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--card-bg-color);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-container.open {
        right: 0;
    }
    
    .main-nav {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-links li {
        width: 100%;
        padding: 12px 15px;
        border-radius: 8px;
    }
    
    .actions {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .theme-toggle {
        margin-bottom: 15px;
    }
    
    .lets-talk-btn {
        width: 100%;
        text-align: center;
    }
    
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .cta-content {
        max-width: 100%;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content-card{
        max-height: 85vh;
    }
    
    .profile-image{
        height: 100%;
    }
    
    .experience-item .year{
        min-width: 50px;
    }
    
    .profile-actions{
        flex-direction: column;
    }
    
    .portfolio-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        margin: 15px 0;
        width: 100%;
        overflow-x: auto;
    }
    
    .nav-links {
        width: 100%;
        justify-content: flex-start;
    }
    
    .projects-container {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .services-grid{
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .profile-actions {
        flex-direction: column;
    }
    
    .expert-grid, .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-filter{
        flex-direction: column;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-filter {
        flex-wrap: wrap;
    }
    
    .about-header, .services-header, .portfolio-header{
        flex-direction: column;
        align-items: flex-start;
    }

    .copyright{
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .portfolio-actions{
        flex-direction: column;
    }
}

