@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  text-transform: capitalize;
  transition: all 0.2s linear;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  background: #f7f7f7;
  font-family: "Poppins", sans-serif;
}

*::selection {
  background: #2b3dda;
  color: #fff;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}
html::-webkit-scrollbar {
  width: 0.8rem;
}
html::-webkit-scrollbar-track {
  background: rgb(235, 202, 245);
}
html::-webkit-scrollbar-thumb {
  background: #420177;
}

/* pre loader start */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: #e6eff1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.loader-container.fade-out {
  top: -120%;
}
/* pre loader end */

/* navbar starts */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.7rem 10%;
  height: 6.5rem;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(146, 161, 176, 0.3);
}
section {
  min-height: 100vh;
  padding: 2rem 9%;
}
.heading {
  font-size: 3.5rem;
  color: rgb(32, 32, 32);
  font-weight: 800;
  text-align: center;
}
.heading span {
  color: rgb(115, 3, 167);
}
header .logo {
  font-size: 1.9rem;
  font-weight: 800;
  text-decoration: none;
  color: #0e2431;
}
header .logo i {
  font-size: 2.2rem;
}
header .logo:hover {
  color: #fc8c05;
}
header .navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .navbar li {
  margin-left: 2.5rem;
}
header .navbar ul li a {
  font-size: 1.57rem;
  color: #0e2431;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04rem;
  transition: 0.2s;
}
header .navbar ul li a.active,
header .navbar ul li a:hover {
  color: #011aff;
  border-bottom: 0.2rem solid #011aff;
  padding: 0.5rem 0;
}
/* navbar ends */

/* hamburger icon starts*/
#menu {
  font-size: 3rem;
  cursor: pointer;
  color: rgb(24, 2, 63);
  display: none;
}
@media (max-width: 768px) {
  #menu {
    display: block;
  }
  header .navbar {
    position: fixed;
    top: 6.5rem;
    right: -120%;
    width: 75%;
    height: 100%;
    text-align: left;
    align-items: flex-start;
    background-color: #0e0f31;
  }
  header .navbar ul {
    flex-flow: column;
    padding: 1rem;
  }
  header .navbar ul li {
    text-align: center;
    width: 100%;
    margin: 1rem 0;
    border-radius: 0.5rem;
    width: 26rem;
  }
  header .navbar ul li a {
    display: block;
    padding: 1rem;
    text-align: left;
    color: #fff;
    font-size: 2rem;
  }
  header .navbar ul li a.active,
  header .navbar ul li a:hover {
    padding: 1rem;
    color: #fff;
    border-radius: 0.5rem;
    border-bottom: 0.5rem solid #011aff;
  }
  .fa-times {
    transform: rotate(180deg);
  }
  header .navbar.nav-toggle {
    right: 0;
  }
}
/* hamburger icon ends */

/* hero section starts*/
.home {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  min-height: 100vh;
  align-items: center;
}

.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.home .content {
  flex: 1 1 40rem;
  padding-top: 1rem;
  z-index: 1;
}
/* Laptop Illustration Component */
.banner-right {
  flex: 1 1 40rem;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.laptop-illustration {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.laptop-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(139, 92, 246, 0.3));
}

/* Laptop Animations */
.base-platform {
  animation: platformFloat 4s ease-in-out infinite;
}

.laptop-base {
  animation: laptopFloat 3s ease-in-out infinite;
}

.laptop-screen {
  animation: screenTilt 4s ease-in-out infinite;
}

.screen-content {
  animation: screenPulse 2s ease-in-out infinite alternate;
}



/* Data Analytics Dashboard Animations */
.bar-1 { animation: barGrow1 3s ease-in-out infinite; }
.bar-2 { animation: barGrow2 3.5s ease-in-out infinite; }
.bar-3 { animation: barGrow3 2.8s ease-in-out infinite; }
.bar-4 { animation: barGrow4 4s ease-in-out infinite; }
.bar-5 { animation: barGrow5 3.2s ease-in-out infinite; }
.bar-6 { animation: barGrow6 2.5s ease-in-out infinite; }

.trend-line {
  animation: lineGrow 4s ease-in-out infinite;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
}

.data-point-1 { animation: pointPulse1 2s ease-in-out infinite; }
.data-point-2 { animation: pointPulse2 2.2s ease-in-out infinite; }
.data-point-3 { animation: pointPulse3 2.4s ease-in-out infinite; }
.data-point-4 { animation: pointPulse4 2.6s ease-in-out infinite; }
.data-point-5 { animation: pointPulse5 2.8s ease-in-out infinite; }
.data-point-6 { animation: pointPulse6 3s ease-in-out infinite; }

.pie-segment-1 { animation: pieRotate1 6s linear infinite; }
.pie-segment-2 { animation: pieRotate2 6s linear infinite; }
.pie-segment-3 { animation: pieRotate3 6s linear infinite; }

.kpi-metrics rect { animation: kpiPulse 3s ease-in-out infinite; }
.kpi-metrics text { animation: kpiTextGlow 2s ease-in-out infinite alternate; }

/* Floating Data Charts */
.floating-chart-1 { animation: chartFloat1 3s ease-in-out infinite; }
.floating-chart-2 { animation: chartFloat2 4s ease-in-out infinite; }
.floating-chart-3 { animation: chartFloat3 2.5s ease-in-out infinite; }
.floating-chart-4 { animation: chartFloat4 3.5s ease-in-out infinite; }
.floating-chart-5 { animation: chartFloat5 4.5s ease-in-out infinite; }
.floating-chart-6 { animation: chartFloat6 2.8s ease-in-out infinite; }

/* Keyframe Animations */
@keyframes platformFloat {
  0%, 100% { transform: translateY(0px) scaleX(1); }
  50% { transform: translateY(-8px) scaleX(1.05); }
}

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

@keyframes screenTilt {
  0%, 100% { transform: perspective(500px) rotateX(0deg); }
  50% { transform: perspective(500px) rotateX(-2deg); }
}

@keyframes screenPulse {
  0% { filter: url(#screenGlow) brightness(1); }
  100% { filter: url(#screenGlow) brightness(1.2); }
}



/* Data Analytics Keyframes */
@keyframes barGrow1 {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.2); }
}

@keyframes barGrow2 {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.8); }
}

@keyframes barGrow3 {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.3); }
}

@keyframes barGrow4 {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.9); }
}

@keyframes barGrow5 {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.1); }
}

@keyframes barGrow6 {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.4); }
}

@keyframes lineGrow {
  0% { stroke-dashoffset: 30; }
  100% { stroke-dashoffset: 0; }
}

@keyframes pointPulse1 {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.7; }
}

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

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

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

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

@keyframes pointPulse6 {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.7); opacity: 0.4; }
}

@keyframes pieRotate1 {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pieRotate2 {
  0% { transform: rotate(120deg); }
  100% { transform: rotate(480deg); }
}

@keyframes pieRotate3 {
  0% { transform: rotate(240deg); }
  100% { transform: rotate(600deg); }
}

@keyframes kpiPulse {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.05); opacity: 0.4; }
}

@keyframes kpiTextGlow {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.3); }
}

/* Floating Chart Animations */
@keyframes chartFloat1 {
  0%, 100% { transform: translate(80px, 100px) rotate(0deg); }
  33% { transform: translate(75px, 95px) rotate(5deg); }
  66% { transform: translate(85px, 105px) rotate(-3deg); }
}

@keyframes chartFloat2 {
  0%, 100% { transform: translate(400px, 120px) scale(1); }
  25% { transform: translate(405px, 115px) scale(1.1); }
  75% { transform: translate(395px, 125px) scale(0.9); }
}

@keyframes chartFloat3 {
  0%, 100% { transform: translate(70px, 300px) rotate(0deg); }
  50% { transform: translate(65px, 295px) rotate(10deg); }
}

@keyframes chartFloat4 {
  0%, 100% { transform: translate(420px, 280px) scale(1); }
  40% { transform: translate(415px, 275px) scale(1.2); }
  80% { transform: translate(425px, 285px) scale(0.8); }
}

@keyframes chartFloat5 {
  0%, 100% { transform: translate(50px, 180px) rotate(0deg); }
  50% { transform: translate(55px, 175px) rotate(-8deg); }
}

@keyframes chartFloat6 {
  0%, 100% { transform: translate(450px, 200px) scale(1); }
  30% { transform: translate(445px, 195px) scale(1.1); }
  70% { transform: translate(455px, 205px) scale(0.9); }
}

.analytics-dashboard {
  background: #1e1e1e;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 500px;
  font-family: 'Courier New', monospace;
  overflow: hidden;
  border: 1px solid #333;
}

.dashboard-header {
  background: #2d2d2d;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #333;
}

.dashboard-controls {
  display: flex;
  gap: 6px;
}

.control-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control-dot.red { background: #ff5f57; }
.control-dot.yellow { background: #ffbd2e; }
.control-dot.green { background: #28ca42; }

.dashboard-title {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.dashboard-content {
  padding: 20px;
  background: #1e1e1e;
  color: #fff;
  max-height: 400px;
  overflow-y: auto;
}

.dashboard-content h4 {
  color: #4CAF50;
  margin: 0 0 15px 0;
  font-size: 14px;
  font-weight: 600;
}

/* Skills Chart Section */
.chart-section {
  margin-bottom: 25px;
}

.skill-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.skill-name {
  min-width: 80px;
  font-size: 12px;
  color: #ccc;
}

.bar-container {
  flex: 1;
  height: 8px;
  background: #333;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 2s ease-in-out;
  animation: fillBar 2s ease-in-out forwards;
}

.bar-fill.python { background: linear-gradient(90deg, #3776ab, #4CAF50); }
.bar-fill.sql { background: linear-gradient(90deg, #00758f, #2196F3); }
.bar-fill.powerbi { background: linear-gradient(90deg, #f2c811, #FF9800); }
.bar-fill.tableau { background: linear-gradient(90deg, #e97627, #FF5722); }
.bar-fill.excel { background: linear-gradient(90deg, #217346, #4CAF50); }

.percentage {
  font-size: 11px;
  color: #4CAF50;
  min-width: 35px;
}

@keyframes fillBar {
  from { width: 0; }
}

/* Timeline Section */
.timeline-section {
  margin-bottom: 25px;
}

.mini-timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.timeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #555;
  border: 2px solid #333;
  transition: all 0.3s ease;
}

.timeline-dot.active {
  background: #4CAF50;
  border-color: #4CAF50;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.year {
  font-size: 11px;
  color: #4CAF50;
  font-weight: 600;
}

.role {
  font-size: 11px;
  color: #ccc;
}

/* Metrics Section */
.metrics-section {
  margin-bottom: 25px;
}

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

.metric-card {
  background: #2d2d2d;
  padding: 12px 8px;
  border-radius: 6px;
  text-align: center;
  border: 1px solid #333;
  transition: transform 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-2px);
  border-color: #4CAF50;
}

.metric-value {
  font-size: 18px;
  font-weight: bold;
  color: #4CAF50;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 10px;
  color: #999;
  line-height: 1.2;
}

/* Illustration Section */
.illustration-section {
  margin-bottom: 15px;
}

.isometric-container {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #333;
  overflow: hidden;
  position: relative;
}

.isometric-svg {
  width: 100%;
  height: 250px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Floating Animations */
.floating-base {
  animation: floatBase 4s ease-in-out infinite;
}

.floating-icon-1 {
  animation: floatUp 3s ease-in-out infinite;
  transform-origin: center;
}

.floating-icon-2 {
  animation: floatRight 4s ease-in-out infinite;
  transform-origin: center;
}

.floating-icon-3 {
  animation: floatDiagonal 3.5s ease-in-out infinite;
  transform-origin: center;
}

.floating-icon-4 {
  animation: rotateFloat 5s linear infinite;
  transform-origin: center;
}

.floating-cube-1 {
  animation: cubeFloat1 4s ease-in-out infinite;
  transform-origin: center;
}

.floating-cube-2 {
  animation: cubeFloat2 3.5s ease-in-out infinite;
  transform-origin: center;
}

.person-1 {
  animation: personWalk1 6s ease-in-out infinite;
  transform-origin: center;
}

.person-2 {
  animation: personWalk2 5s ease-in-out infinite;
  transform-origin: center;
}

.chart-bar-1 {
  animation: chartGrow1 2s ease-in-out infinite alternate;
  transform-origin: bottom;
}

.chart-bar-2 {
  animation: chartGrow2 2.5s ease-in-out infinite alternate;
  transform-origin: bottom;
}

.chart-bar-3 {
  animation: chartGrow3 3s ease-in-out infinite alternate;
  transform-origin: bottom;
}

.pie-chart {
  animation: pieRotate 8s linear infinite;
  transform-origin: center;
}

.percentage-text {
  animation: textPulse 2s ease-in-out infinite;
}

.connection-line-1 {
  animation: lineFlow1 4s ease-in-out infinite;
  stroke-dasharray: 5 5;
}

.connection-line-2 {
  animation: lineFlow2 3s ease-in-out infinite;
  stroke-dasharray: 3 3;
}

.screen-content {
  animation: screenGlow 3s ease-in-out infinite alternate;
}

/* Keyframe Animations */
@keyframes floatBase {
  0%, 100% { transform: translateY(0px) scaleX(1); }
  50% { transform: translateY(-5px) scaleX(1.02); }
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

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

@keyframes floatDiagonal {
  0%, 100% { transform: translate(0px, 0px) rotate(0deg); }
  50% { transform: translate(8px, -12px) rotate(-3deg); }
}

@keyframes rotateFloat {
  0% { transform: rotate(0deg) translateY(0px); }
  25% { transform: rotate(90deg) translateY(-5px); }
  50% { transform: rotate(180deg) translateY(0px); }
  75% { transform: rotate(270deg) translateY(-5px); }
  100% { transform: rotate(360deg) translateY(0px); }
}

@keyframes cubeFloat1 {
  0%, 100% { transform: translateY(0px) rotateX(0deg); }
  50% { transform: translateY(-12px) rotateX(10deg); }
}

@keyframes cubeFloat2 {
  0%, 100% { transform: translateY(0px) rotateY(0deg); }
  50% { transform: translateY(-10px) rotateY(15deg); }
}

@keyframes personWalk1 {
  0%, 100% { transform: translateX(0px); }
  25% { transform: translateX(3px); }
  50% { transform: translateX(0px); }
  75% { transform: translateX(-3px); }
}

@keyframes personWalk2 {
  0%, 100% { transform: translateX(0px) scaleX(1); }
  50% { transform: translateX(-5px) scaleX(-1); }
}

@keyframes chartGrow1 {
  0% { transform: scaleY(0.8); }
  100% { transform: scaleY(1.1); }
}

@keyframes chartGrow2 {
  0% { transform: scaleY(0.9); }
  100% { transform: scaleY(1.05); }
}

@keyframes chartGrow3 {
  0% { transform: scaleY(0.85); }
  100% { transform: scaleY(1.15); }
}

@keyframes pieRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

@keyframes lineFlow1 {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 20; }
}

@keyframes lineFlow2 {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -15; }
}

@keyframes screenGlow {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.1); }
}

/* Scrollbar Styling */
.dashboard-content::-webkit-scrollbar {
  width: 6px;
}

.dashboard-content::-webkit-scrollbar-track {
  background: #2d2d2d;
}

.dashboard-content::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 3px;
}

.dashboard-content::-webkit-scrollbar-thumb:hover {
  background: #777;
}
.home .content h2 {
  font-size: 5rem;
  font-weight: 800;
  color: #002057;
}
.home .content h2 span {
  font-size: 5rem;
  font-weight: 800;
  color: #ff7b00;
}
.home .content p {
  font-size: 2.5rem;
  color: #000;
  font-weight: 600;
  padding: 1rem 0;
}
.home .content p span {
  font-size: 2.5rem;
  color: rgb(148, 8, 8);
  font-weight: 600;
  padding: 1rem 0;
}
.home .btn {
  margin-top: 1rem;
  position: absolute;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 4em;
  transition: 0.5s;
  color: #fff;
  background: #2506ad;
  box-shadow: 0px 5px 18px rgba(48, 68, 247, 0.6);
  font-family: "Nunito", sans-serif;
}
.home .btn span {
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
}
.home .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.home .btn:hover {
  background: #1a047e;
}
.home .btn:hover i {
  transform: translateX(5px);
}
/* social icons start */
.socials {
  position: relative;
  margin-top: 9rem;
}
.socials .social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.socials .social-icons li {
  display: inline-block;
  margin-bottom: 14px;
}
.social-icons a {
  font-size: 2rem;
  display: inline-block;
  line-height: 44px;
  color: #00d9ff;
  background-color: #09011b;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #0685da;
}
.social-icons a.github:hover {
  background-color: #0e0e0e;
}
.social-icons a.twitter:hover {
  background-color: #00aced;
}
.social-icons a.linkedin:hover {
  background-color: #007bb6;
}
.social-icons a.dev:hover {
  background-color: #070707;
}
.social-icons a.instagram:hover {
  background-color: #ee00da;
}
/* social icons end */

/* hero media queries starts*/
@media (max-width: 450px) {
  .home .btn {
    margin: 4rem 0;
  }
  .socials {
    margin-top: 12rem;
  }
  .home .content p {
    font-size: 2.2rem;
  }
  .home .content p span {
    font-size: 2.2rem;
  }
  
  /* Analytics Dashboard Mobile */
  .banner-right {
    padding: 1rem;
    margin-top: 2rem;
  }
  
  .analytics-dashboard {
    max-width: 100%;
    font-size: 12px;
  }
  
  .dashboard-content {
    padding: 15px;
    max-height: 300px;
  }
  
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .metric-card {
    padding: 8px;
  }
  
  .metric-value {
    font-size: 16px;
  }
  
  .skill-name {
    min-width: 60px;
    font-size: 11px;
  }
  
  .chart-svg {
    height: 100px;
  }
}
/* hero media queries ends*/
/* hero section end */

/* about section starts */
.about {
  background: rgb(255, 255, 255);
}
.about .row {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 4rem;
}
.about .row .image {
  text-align: center;
  flex: 1 1 35rem;
}
.about .row .image img {
  margin: 4rem;
  width: 30rem;
  height: auto;
  border-radius: 5%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.6);
  mix-blend-mode: luminosity;
  transition: 0.3s;
  cursor: pointer;
}
.about .row .image img:hover {
  mix-blend-mode: normal;
}
.about .row .content {
  flex: 1 1 45rem;
  padding: 3rem;
}
.about .row .content h3 {
  color: rgb(27, 27, 27);
  font-size: 2.5rem;
}
.about .row .content .tag {
  font-size: 1.4rem;
  color: #020133;
  font-weight: 600;
  margin-top: 1rem;
}
.about .row .content p {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  font-family: "Nunito";
  font-weight: 600;
  text-transform: none;
}
.about .row .content .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: "Nunito";
  font-weight: 600;
}
.about .row .content .box-container .box p {
  text-transform: none;
}
.about .row .content .box-container .box p span {
  color: #011aff;
}
.resumebtn {
  margin-top: 6rem;
}
.resumebtn .btn {
  padding: 1.7rem 3rem;
  border-radius: 0.5em;
  transition: 0.3s;
  color: #fff;
  background: #2506ad;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, 0.6);
  font-family: "Nunito", sans-serif;
}
.resumebtn .btn span {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
}
.resumebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.2rem;
  transition: 0.3s;
}
.resumebtn .btn:hover {
  background: #1a047e;
}
.resumebtn .btn:hover i {
  transform: translateX(5px);
}
/* about media queries starts*/
@media screen and (max-width: 600px) {
  .about .row .image {
    margin-top: 2rem;
  }
  .about .row .image img {
    margin: 0 auto;
    width: 80%;
    mix-blend-mode: normal;
  }
  .about .row {
    padding: 0.5rem;
    margin-bottom: 7rem;
  }
  .about .row .content {
    padding: 1rem;
  }
  .about .row .content .box-container {
    gap: 0;
  }
}
/* about media queries ends*/
/* about section ends */

/* skills section starts */
.skills {
  min-height: 50vh;
  background: linear-gradient(to bottom, #57059e, #4a00e0);
  overflow: hidden;
}
.skills h2 {
  color: #fff;
  margin-bottom: 5rem;
}
.skills .heading span {
  color: rgb(255, 230, 0);
}

/* Carousel Container */
.skills-carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
}

/* Carousel Track */
.skills-carousel {
  display: flex;
  gap: 2rem;
  animation: infiniteScroll 30s linear infinite;
  width: max-content;
}

/* Carousel Animation */
@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.skills-carousel:hover {
  animation-play-state: paused;
}

/* Individual Skill Card */
.skills-carousel .skill-card {
  min-width: 200px;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  background: rgba(0, 0, 22, 0.9);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.skills-carousel .skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 2, 68, 0.8);
  background: rgba(0, 0, 0, 0.95);
  border: 2px solid #ffd900;
}

.skills-carousel .skill-card img {
  width: 48px;
  height: 48px;
  transition: all 0.3s ease;
}

.skills-carousel .skill-card:hover img {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px rgba(255, 217, 0, 0.7));
}

.skills-carousel .skill-card span {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  transition: color 0.3s ease;
}

.skills-carousel .skill-card:hover span {
  color: #ffd900;
}
/* skills media queries starts*/
@media screen and (max-width: 600px) {
  .skills-carousel .skill-card {
    min-width: 150px;
    padding: 1.5rem 1rem;
  }
  
  .skills-carousel .skill-card span {
    font-size: 1.4rem;
  }
  
  .skills-carousel .skill-card img {
    width: 40px;
    height: 40px;
  }
  
  .skills-carousel {
    animation: infiniteScroll 25s linear infinite;
  }
}
/* skills media queries ends*/
/* skills section ends */

/* education section starts */
.education {
  background: #e5ecfb;
  min-height: 80vh;
}
.education .qoute {
  font-size: 1.5rem;
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  margin-top: 0.5rem;
}
.education .box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.education .box-container .box {
  display: flex;
  flex-direction: row;
  width: 80%;
  border-radius: 0.5rem;
  box-shadow: 0.2rem 0.5rem 1rem rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
  transition: 0.3s;
  background: rgb(252, 252, 252);
}
.education .box-container .box:hover {
  transform: scale(1.03);
  box-shadow: 1rem 0.5rem 1.2rem rgba(0, 0, 0, 0.3);
}
.education .box-container .box .image {
  flex: 1 1 20rem;
  width: 100%;
}
.education .box-container .box img {
  object-fit: contain;
  position: relative;
  width: 100%;
  height: 100%;
}
.education .box-container .box .content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  flex-wrap: wrap;
  flex: 1 1 70rem;
}
.education .box-container .box .content h3 {
  font-size: 2.5rem;
  color: #012970;
  padding: 0.5rem 0;
  font-weight: 600;
  text-align: left;
  margin-left: 1rem;
}
.education .box-container .box .content p {
  font-size: 1.5rem;
  margin-left: 1rem;
  text-align: left;
}
.education h4 {
  font-size: 2rem;
  color: rgb(34, 109, 0);
  text-align: left;
  margin: 1rem;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
}

.education .box .content .description {
  font-size: 1.4rem;
  color: #666;
  text-align: left;
  margin: 1rem;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-style: italic;
}

/* education media queries starts*/
@media screen and (max-width: 600px) {
  .education .box-container .box {
    flex-direction: column;
    width: 100%;
  }
  .education .box-container .box .image {
    width: 100%;
    height: 25rem;
  }
  .education .box-container .box img {
    width: 100%;
  }
  .education .box-container .box .content {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    flex-wrap: wrap;
    flex: 0;
  }
  .education .btns {
    margin-top: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    flex-wrap: wrap;
  }
}
/* education media queries ends*/
/* education section ends */

/* work section starts */
.work {
  /* background: #010124; */
  background: linear-gradient(to bottom, #000031, #00002c);
}
.work h2 {
  color: #fff;
  padding: 1rem;
}
.work .heading span {
  color: rgb(255, 230, 0);
}
.work .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem;
}
.work .box-container .box {
  flex: 1 1 30rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  height: 30rem;
}
.work .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.work .box-container .box .content {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 85%;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
}
.work .box-container .box .content .tag {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
  width: 100%;
  padding-left: 1rem;
  background: #ffd900;
}
.work .box-container .box .content .tag h3 {
  font-size: 2rem;
}
.work .box-container .box:hover .content {
  top: 25%;
}
.work .desc {
  margin: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.work .desc p {
  font-size: 1.5rem;
}
.work .desc .btns {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 2rem;
}
.work .desc .btns .btn {
  line-height: 0;
  display: inline;
  padding: 1.5rem 2.5rem;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  color: #fff;
  background: rgb(12, 12, 12);
  margin-right: 2rem;
}
.work .desc .btns .btn:hover {
  background: #310ae0f5;
}
.work .viewall {
  display: flex;
  justify-content: center;
}
.work .viewall .btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 0.5em;
  transition: 0.5s;
  color: rgb(255, 255, 255);
  font-weight: 700;
  border: 2px solid #fff;
  box-shadow: 0px 5px 10px rgba(65, 84, 241, 0.4);
  text-align: center;
}
.work .viewall .btn span {
  font-weight: 600;
  font-size: 1.7rem;
  font-family: "Nunito", sans-serif;
}
.work .viewall .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.work .viewall .btn:hover {
  background: #fff;
  color: #000;
}
.work .viewall .btn:hover i {
  transform: translateX(5px);
}
/* work section ends */

/* experience section starts */
.experience .timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.experience .timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background: #020133;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  z-index: -2;
}
.experience .container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}
/*circles on timeline*/
.experience .container::after {
  content: "\f0b1";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: rgb(255, 255, 255);
  border: 4px solid #ff9f55;
  top: 15px;
  border-radius: 50%;
  z-index: 100;
  font-size: 1.89rem;
  text-align: center;
  font-weight: 600;
  color: #02094b;
  font-family: "Font Awesome\ 5 Free";
}
.experience .left {
  left: 0;
}
.experience .right {
  left: 50%;
}
/* arrows pointing right */
.experience .left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #f68c09;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #f68c09;
}
/* arrows pointing left  */
.experience .right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #f68c09;
  border-width: 10px 10px 10px 0;
  border-color: transparent #f68c09 transparent transparent;
}
.experience .right::after {
  left: -16px;
}
.experience .content {
  background-color: #f68c09;
  position: relative;
  border-radius: 6px;
}
.experience .content .tag {
  font-size: 1.3rem;
  padding-top: 1.5rem;
  padding-left: 1.5rem;
}
.experience .content .desc {
  margin-left: 1.5rem;
  padding-bottom: 1rem;
}
.experience .content .desc h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
.experience .content .desc p {
  font-size: 1.2rem;
}

.experience .content .desc .experience-description {
  font-size: 1.1rem;
  color: #333;
  margin-top: 0.8rem;
  line-height: 1.5;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  text-align: left;
}
/* view all button */
.morebtn {
  display: flex;
  justify-content: center;
}
.morebtn .btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 0.5em;
  transition: 0.5s;
  color: #fff;
  background: #2506ad;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, 0.6);
  text-align: center;
}
.morebtn .btn span {
  font-weight: 600;
  font-size: 1.7rem;
  font-family: "Nunito", sans-serif;
}
.morebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.morebtn .btn:hover {
  background: #1a047e;
}
.morebtn .btn:hover i {
  transform: translateX(5px);
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  .experience {
    min-height: 80vh;
  }
  .experience .timeline {
    margin-top: 2rem;
  }
  .experience .timeline::after {
    left: 31px;
  }
  .experience .container {
    width: 100%;
    padding-left: 8rem;
    padding-right: 2rem;
  }
  .experience .container::after {
    font-size: 2.2rem;
  }
  .experience .container::before {
    left: 61px;
    border: medium solid #f68c09;
    border-width: 10px 10px 10px 0;
    border-color: transparent #f68c09 transparent transparent;
  }
  .experience .left::after {
    left: 15px;
  }
  .experience .right::after {
    left: 15px;
  }
  .experience .right {
    left: 0%;
  }
  .morebtn {
    margin-top: 3rem;
  }
}
/* experience media queries ends */
/* experience section ends */

/* certificate section starts */
.certificate {
  background: #f7f7f7;
  min-height: 80vh;
  padding: 4rem 0;
}

.certificate .heading {
  color: #333;
  margin-bottom: 4rem;
}

.certificate .heading span {
  color: rgb(115, 3, 167);
}

.certificates-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.certificates-carousel-wrapper {
  overflow: hidden;
  border-radius: 1rem;
  position: relative;
}

.certificates-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 2rem;
  padding: 2rem 0;
}

.certificate-card {
  flex: 0 0 calc(33.333% - 1.33rem);
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.certificate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.certificate-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cert-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.certificate-card:hover .cert-image {
  transform: scale(1.05);
}

.cert-info h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.cert-issuer {
  color: #667eea;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.cert-date {
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.cert-description {
  color: #555;
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cert-badge {
  display: inline-block;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.cert-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #667eea;
  font-size: 1.3rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cert-link:hover {
  color: #764ba2;
}

.cert-link i {
  font-size: 1.2rem;
}

/* Navigation buttons */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: #333;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-nav-btn:hover {
  background: #667eea;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: -2rem;
}

.next-btn {
  right: -2rem;
}

/* Pagination dots */
.carousel-pagination {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-dot.active {
  background: #667eea;
  transform: scale(1.2);
}

.pagination-dot:hover {
  background: #764ba2;
}

/* Responsive design */
@media (max-width: 1024px) {
  .certificate-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .certificate-card {
    flex: 0 0 100%;
  }
  
  .certificates-carousel {
    gap: 1rem;
  }
  
  .carousel-nav-btn {
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
  }
  
  .prev-btn {
    left: -1rem;
  }
  
  .next-btn {
    right: -1rem;
  }
  
  .certificates-carousel-container {
    padding: 0 1rem;
  }
}

@media (max-width: 450px) {
  .certificate-card {
    padding: 1.5rem;
  }
  
  .cert-image {
    height: 150px;
  }
  
  .cert-info h3 {
    font-size: 1.6rem;
  }
  
  .carousel-nav-btn {
    display: none;
  }
}
/* certificate section ends */

/* contact section starts */
.contact {
  background: #e5ecfb;
  min-height: 60vh;
}
.contact .container {
  max-width: 1050px;
  width: 100%;
  background: #fff;
  border-radius: 1.5rem;
  margin: 2rem 5rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
.contact .container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 2rem;
}
.contact .content .image-box {
  max-width: 60%;
  margin-left: 4rem;
}
.contact .content .image-box img {
  width: 100%;
  height: 40rem;
  position: relative;
}
.contact .content form {
  width: 45%;
  margin-right: 3.5rem;
}
form .form-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-group .field {
  height: 50px;
  display: flex;
  position: relative;
  margin: 1rem;
  width: 100%;
}
form i {
  position: absolute;
  top: 50%;
  left: 18px;
  color: rgb(51, 51, 51);
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}
form .field input,
form .message textarea {
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 16px 0 48px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  border-radius: 5px;
  border: 1px solid rgb(51, 51, 51);
  background: #e5ecfb;
}
.field input::placeholder,
.message textarea::placeholder {
  color: rgb(51, 51, 51);
}
.field input:focus,
.message textarea:focus {
  padding-left: 47px;
  border: 2px solid rgb(115, 3, 167);
}
.field input:focus ~ i,
.message textarea:focus ~ i {
  color: rgb(115, 3, 167);
}
form .message {
  position: relative;
  margin: 1rem;
  width: 100%;
}
form .message i {
  top: 25px;
  font-size: 20px;
  left: 15px;
}
form .message textarea {
  min-height: 130px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 12px 20px 0 48px;
}
form .message textarea::-webkit-scrollbar {
  width: 0px;
}
form .button-area {
  display: flex;
  float: right;
  flex-direction: row-reverse;
}
.button-area button {
  color: #fff;
  border: none;
  outline: none;
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  background: #2506ad;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, 0.6);
  transition: 0.3s ease;
  font-family: "Nunito", sans-serif;
}
.button-area button:hover {
  background: #421cecf5;
}
.button-area span {
  font-size: 17px;
  padding: 1rem;
  display: none;
}
.button-area button i {
  position: relative;
  top: 6px;
  left: 2px;
  font-size: 1.5rem;
  transition: 0.3s;
  color: #fff;
}
.button-area button:hover i {
  left: 8px;
}
/* contact section media queries starts */
@media (max-width: 900px) {
  .contact {
    min-height: 70vh;
  }
  .contact .container {
    margin: 3rem 0 2rem 0;
  }
  .contact .container .content {
    padding: 18px 12px;
  }
  .contact .content .image-box {
    display: none;
  }
  .contact .content form {
    width: 100%;
    margin-right: 2rem;
  }
}
/* contact section media queries ends */
/* contact section ends */

/* footer section starts */
.footer {
  min-height: auto;
  padding-top: 0;
  background: rgb(0, 1, 43);
}
.footer .box-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer .box-container .box {
  flex: 1 1 25rem;
  margin: 2.5rem;
}
.footer .box-container .box h3 {
  font-size: 2.5rem;
  color: #fff;
  padding-bottom: 1rem;
  font-weight: normal;
}
.footer .box-container .box p {
  font-size: 1.5rem;
  color: #ccc;
  padding: 0.7rem 0;
  text-transform: none;
}
.footer .box-container .box p i {
  padding-right: 1rem;
  color: #ffae00;
}
.footer .box-container .box a {
  font-size: 1.5rem;
  color: rgb(238, 238, 238);
  padding: 0.3rem 0;
  display: block;
}
.footer .box-container .box a:hover {
  color: #ffae00;
}
.footer .box-container .box .share {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
}
.footer .box-container .box .share a {
  height: 4rem;
  width: 4rem;
  padding: 1rem;
  text-align: center;
  border-radius: 5rem;
  font-size: 1.7rem;
  margin-right: 1rem;
  transition: 0.2s;
  background: rgb(230, 230, 230);
  color: #02094b;
  border: none;
}
.footer .box-container .box .share a:hover {
  background: transparent;
  transform: scale(0.98);
  border: 0.1rem solid rgb(180, 178, 178);
  color: #ffae00;
}
.footer .credit {
  padding: 1rem 0 0 0;
  text-align: center;
  font-size: 1.5rem;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  color: #fff;
  border-top: 0.1rem solid #fff3;
}
.footer .credit a {
  color: #ffae00;
}
.footer .fa {
  color: #e90606;
  margin: 0 0.3rem;
  font-size: 1.5rem;
  animation: pound 0.35s infinite alternate;
}
@-webkit-keyframes pound {
  to {
    transform: scale(1.1);
  }
}
@keyframes pound {
  to {
    transform: scale(1.1);
  }
}
@media (max-width: 450px) {
  .footer .box-container .box {
    margin: 1.5rem;
  }
  .footer .box-container .box p {
    padding: 0.7rem;
  }
  .footer .box-container .box .share a {
    padding: 1.2rem;
  }
}
/* footer section ends */

/* common media queries starts*/
@media (max-width: 450px) {
  html {
    font-size: 55%;
  }
  body {
    padding-right: 0;
  }
  section {
    padding: 2rem;
  }
}
/* common media queries ends*/

/* scroll top starts */
#scroll-top {
  position: fixed;
  top: -140%;
  right: 2rem;
  padding: 1rem 1.5rem;
  font-size: 2rem;
  background: #ffae00;
  color: rgb(13, 0, 44);
  border-radius: 50%;
  transition: 1s linear;
  z-index: 1000;
}
#scroll-top.active {
  top: calc(100% - 12rem);
}
/* scroll top ends */

/* Project Cards Styling */
.work .box-container {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.project-card {
  /* background: var(--bg-color); */
  background-color: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 3rem rgba(var(--yellow), 0.2);
}

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

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(var(--yellow), 0.9), rgba(var(--yellow), 0.7));
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-category {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bg-color);
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.project-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.action-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.action-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.project-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.8rem;
}

.project-description {
  color: var(--light-color);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.project-tech {
  background: rgba(var(--yellow), 0.1);
  color: rgba(var(--yellow), 1);
  padding: 0.3rem 0.8rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.project-status {
  font-size: 0.9rem;
  font-weight: 500;
}

.text-success {
  color: #10b981;
}

.text-warning {
  color: #f59e0b;
}

/* Project Modal Styling */
.project-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.project-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background: #fff;
  border-radius: 2rem;
  max-width: 95vw;
  max-height: 85vh;
  width: 1200px;
  overflow: hidden;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: all 0.3s ease;
  margin: auto;
}

.project-modal.active .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
}

.modal-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.modal-close {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #f3f4f6;
  border: none;
  color: #374151;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: #fef3c7;
  color: #f59e0b;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  max-height: 60vh;
  overflow-y: auto;
}

.modal-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Media Carousel */
.media-carousel {
  width: 100%;
}

.carousel-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: #1f2937;
  height: 350px;
}

.carousel-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: #374151;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: #f59e0b;
  border-color: #f59e0b;
}

.carousel-indicator:hover {
  border-color: #f59e0b;
}

.modal-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal-info h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-info .project-description p,
#modalDescription {
  color: #6b7280;
  line-height: 1.7;
  font-size: 1.1rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  background: #fef3c7;
  color: #d97706;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid #fbbf24;
}

.project-features ul {
  list-style: none;
  padding: 0;
}

.project-features li {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 2rem;
  font-size: 1rem;
}

.project-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.modal-footer {
  padding: 2rem;
  border-top: 1px solid #e5e7eb;
  background: #fff;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-primary {
  background: #f59e0b !important;
  color: #fff !important;
  border: 2px solid #f59e0b;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.btn-primary:hover {
  background: transparent !important;
  color: #f59e0b !important;
}

.btn-secondary {
  background: transparent !important;
  color: #374151 !important;
  border: 2px solid #d1d5db;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.btn-secondary:hover {
  background: #f3f4f6 !important;
  border-color: #f59e0b;
  color: #f59e0b !important;
}

/* Full Image Modal */
.full-image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.full-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.full-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 1rem;
}

.full-image-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.full-image-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .work .box-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1rem;
  }
  
  .project-card {
    margin: 0;
  }
  
  .modal-content {
    max-width: 95vw;
    max-height: 95vh;
    margin: 1rem;
  }
  
  .modal-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .modal-header,
  .modal-footer {
    padding: 1.5rem;
  }
  
  .modal-title {
    font-size: 1.5rem;
  }
  
  .modal-actions {
    flex-direction: column;
  }
  
  .project-actions {
    gap: 0.5rem;
  }
  
  .action-btn {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
}
