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

:root {
  --color-primary: #191d2b; /* Main background color */
  --color-secondary: #6b12fa; /* Accent color */
  --color-secondary-rgb: 107, 18, 250; /* RGB values for secondary color */
  --color-white: #FFFFFF; /* White color */
  --color-black: #000; /* Black color */
  --color-grey0: #f8f8f8; /* Lightest grey */
  --color-grey-1: #dbe1e8; /* Lighter grey */
  --color-grey-2: #b2becd; /* Light grey */
  --color-grey-3: #6c7983; /* Medium grey */
  --color-grey-4: #454e56; /* Dark grey */
  --color-grey-5: #2a2e35; /* Darker grey */
  --color-grey-6: #12181b; /* Darkest grey */
  --br-sm-2: 14px; /* Small border radius */
  --box-shadow-1: 0 3px 15px rgba(0,0,0,.3); /* Box shadow */
}


.light-mode {
  --color-primary: #FFFFFF; /* Main background color for light mode */
  --color-secondary: #ad66f5; /* Accent color for light mode */
  --color-white: #454e56; /* Redefining white to a dark grey for contrast */
  --color-black: #000; /* Black color (unchanged) */
  --color-grey0: #f8f8f8; /* Lightest grey (unchanged) */
  --color-grey-1: #6c7983; /* Medium grey for light mode */
  --color-grey-2: #6c7983; /* Medium grey for light mode */
  --color-grey-3: #6c7983; /* Medium grey for light mode */
  --color-grey-4: #454e56; /* Dark grey (unchanged) */
  --color-grey-5: #f8f8f8; /* Lightest grey for light mode */
  --color-grey-6: #12181b; /* Darkest grey (unchanged) */
}

body {
  background-color: var(--color-primary);
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  overflow-x: hidden;
  color: var(--color-white);
  transition: all 0.4s ease-in-out;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-family: inherit;
}

header {
  min-height: 100vh;
  color: var(--color-white);
  overflow: hidden;
  padding: 0 !important;
}

section {
  min-height: 100vh;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 3rem 18rem;
}

.container {
  display: none;
  transform: translateY(-100%) scale(0);
  transition: all 0.4s ease-in-out;
  background-color: var(--color-primary);
}

.active {
  display: block;
  animation: appear 1s ease-in-out;
  transform: translateY(0) scaleY(1);
}
@keyframes appear {
  0% {
    transform: translateY(-100%) scaleY(0);
  }
  100% {
    transform: translateY(0) scaleY(1);
  }
}

.controls {
    position: fixed;
    z-index: 10;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0.8rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.controls::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: linear-gradient(
        45deg,
        rgba(var(--color-secondary-rgb), 0.5),
        transparent,
        rgba(var(--color-secondary-rgb), 0.5)
    );
    opacity: 0.3;
    z-index: -1;
    animation: borderFlow 4s linear infinite;
}

@keyframes borderFlow {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

.controls .control {
    padding: 0.8rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    width: 45px;
    height: 45px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.controls .control i {
    font-size: 1.2rem;
    color: var(--color-grey-2);
    transition: all 0.3s ease-in-out;
}

.controls .control::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background: var(--color-secondary);
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.controls .control:hover {
    transform: translateY(-5px);
}

.controls .control:hover i {
    color: var(--color-white);
    transform: scale(1.1);
}

.controls .control:hover::before {
    opacity: 0.2;
}

.controls .active-btn {
    background: var(--color-secondary);
    transform: translateY(-5px);
}

.controls .active-btn i {
    color: var(--color-white);
}

.controls .control[data-id="home"]::after { content: 'Home'; }
.controls .control[data-id="about"]::after { content: 'About'; }
.controls .control[data-id="books"]::after { content: 'Gallery'; }
.controls .control[data-id="contact"]::after { content: 'Contact'; }
.controls .control:last-child::after { content: 'Blog'; }

.controls .control::after {
    content: attr(data-id);
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--color-secondary);
    padding: 0.5rem 0.8rem;
    border-radius: 10px;
    font-size: 0.8rem;
    color: var(--color-white);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}

.controls .control:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media screen and (max-width: 768px) {
    .controls {
        bottom: 1rem;
        padding: 0.6rem;
        gap: 0.8rem;
        border-radius: 15px;
    }

    .controls .control {
        width: 40px;
        height: 40px;
        padding: 0.6rem;
        border-radius: 12px;
    }

    .controls .control::after {
        display: none;
    }

    .controls .control i {
        font-size: 1rem;
    }
}

.theme-btn {
  top: 5%;
  right: 3%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--color-grey-4);
  cursor: pointer;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.1s ease-in-out;
}
.theme-btn:active {
  transform: translateY(-3px);
}
.theme-btn i {
  font-size: 1.4rem;
  color: var(--color-grey-2);
  pointer-events: none;
}

/*Header-content*/
.header-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 100vh;
}
.header-content .left-header {
  display: flex;
  align-items: center;
  position: relative;
}
.header-content .left-header .h-shape {
    transition: all 0.4s ease-in-out;
    width: 65%;
    height: 100%;
    background: linear-gradient(135deg, #000428, #004e92);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    overflow: hidden;
}

.header-content .left-header .h-shape::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, transparent 49.5%, rgba(0, 255, 255, 0.15) 50%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(0, 255, 255, 0.15) 50%, transparent 50.5%);
    background-size: 30px 30px;
    opacity: 0;
    animation: matrixFade 3s linear infinite;
}

.header-content .left-header .h-shape::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, transparent 49.5%, rgba(0, 255, 255, 0.1) 50%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(0, 255, 255, 0.1) 50%, transparent 50.5%);
    background-size: 60px 60px;
    opacity: 0;
    animation: matrixFade 3s linear infinite 1.5s;
}

@keyframes matrixFade {
    0%, 100% {
        opacity: 0;
        transform: translateY(0);
    }
    25%, 75% {
        opacity: 1;
    }
    50% {
        transform: translateY(30px);
    }
}

.header-content .left-header .image {
  border-radius: 15px;
  height: 90%;
  width: 68%;
  margin-left: 4rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(142, 45, 226, 0.3);
  box-shadow: 
      0 8px 32px rgba(142, 45, 226, 0.2),
      0 0 0 1px rgba(142, 45, 226, 0.1);
  transition: all 0.4s ease-in-out;
}
.header-content .left-header .image::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 15px;
  padding: 1px;
  background: linear-gradient(
      135deg,
      rgba(142, 45, 226, 0.5),
      rgba(74, 0, 224, 0.5)
  );
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.7;
  animation: borderGlow 4s ease-in-out infinite;
}
@keyframes borderGlow {
  0%, 100% {
      opacity: 0.5;
  }
  50% {
      opacity: 0.8;
  }
}
.header-content .left-header .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
  filter: grayscale(100%);
}
.header-content .left-header .image img:hover {
  filter: grayscale(0);
}
.header-content .right-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 18rem;
}
.header-content .right-header .name {
  font-size: 3rem;
}
.header-content .right-header .name span {
  color: var(--color-secondary);
}
.header-content .right-header .name small {
  font-size: 1rem;
  display: block;
  margin-top: 0.5rem;
  color: var(--color-grey-2);
}
.header-content .right-header p {
  margin: 1.5rem 0;
  line-height: 2rem;
}

/*About*/
.about-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 3.5rem;
  padding-bottom: 5rem;
}
.about-container .right-about {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
}
.about-container .right-about .about-item {
  border: 1px solid var(--color-grey-5);
  border-radius: 5px;
  transition: all 0.4s ease-in-out;
  box-shadow: 1px 2px 15px rgba(0, 0, 0, 0.1);
}
.about-container .right-about .about-item:hover {
  cursor: default;
  transform: translateY(-5px);
  border: 1px solid var(--color-secondary);
  box-shadow: 1px 4px 15px rgba(0, 0, 0, 0.32);
}
.about-container .right-about .about-item .abt-text {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.about-container .right-about .about-item .abt-text .large-text {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-secondary);
}
.about-container .right-about .about-item .abt-text .small-text {
  padding-left: 3rem;
  position: relative;
  text-transform: uppercase;
  font-size: 1.2rem;
  color: var(--color-grey-1);
  letter-spacing: 2px;
}
.about-container .right-about .about-item .abt-text .small-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 2rem;
  height: 2px;
  background-color: var(--color-grey-5);
}
.about-container .left-about {
  padding-right: 5rem;
}
.about-container .left-about p {
  line-height: 2rem;
  padding: 1rem;
  color: var(--color-grey-1);
}
.about-container .left-about h4 {
  font-size: 2rem;
  text-transform: uppercase;
}

.about-stats {
  padding-bottom: 4rem;
}
.about-stats .progress-bars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
}
.about-stats .progress-bars .progress-bar {
  display: flex;
  flex-direction: column;
}
.about-stats .progress-bars .progress-bar .prog-title {
  text-transform: uppercase;
  font-weight: 500;
}
.about-stats .progress-bars .progress-bar .progress-con {
  display: flex;
  align-items: center;
}
.about-stats .progress-bars .progress-bar .progress-con .prog-text {
  color: var(--color-grey-2);
}
.about-stats .progress-bars .progress-bar .progress-con .progress {
  width: 100%;
  height: 0.45rem;
  background-color: var(--color-grey-4);
  margin-left: 1rem;
  position: relative;
}
.about-stats .progress-bars .progress-bar .progress-con .progress span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--color-secondary);
  transition: all 0.4s ease-in-out;
  width: 60%;
}
.about-stats .progress-bars .progress-bar .progress-con .progress .html {
  width: 80%;
}
.about-stats .progress-bars .progress-bar .progress-con .progress .css {
  width: 95%;
}
.about-stats .progress-bars .progress-bar .progress-con .progress .js {
  width: 75%;
}
.about-stats .progress-bars .progress-bar .progress-con .progress .react {
  width: 60%;
}
.about-stats .progress-bars .progress-bar .progress-con .progress .node {
  width: 87%;
}
.about-stats .progress-bars .progress-con .progress .python {
  width: 70%;
}

.stat-title {
  text-transform: uppercase;
  font-size: 1.4rem;
  text-align: center;
  padding: 3.5rem 0;
  position: relative;
}
.stat-title::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 40%;
  height: 1px;
  background-color: var(--color-grey-5);
  transform: translateX(-50%);
}

/*Timeline*/
.timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
  padding-bottom: 3rem;
}
.timeline .timeline-item {
  position: relative;
  padding-left: 3rem;
  border-left: 1px solid var(--color-grey-5);
}
.timeline .timeline-item .tl-icon {
  position: absolute;
  left: -27px;
  top: 0;
  background-color: var(--color-secondary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline .timeline-item .tl-icon i {
  font-size: 1.3rem;
}
.timeline .timeline-item .tl-duration {
  padding: 0.2rem 0.6rem;
  background-color: var(--color-grey-5);
  border-radius: 15px;
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
}
.timeline .timeline-item h5 {
  padding: 1rem 0;
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 600;
}
.timeline .timeline-item h5 span {
  color: var(--color-grey-2);
  font-weight: 500;
  font-size: 1.2rem;
}
.timeline .timeline-item p {
  color: var(--color-grey-2);
}

.port-text {
  padding: 2rem 0;
  text-align: center;
}

.portfolios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  margin-top: 3rem;
}
.portfolios .portfolio-item {
  position: relative;
  border-radius: 15px;
}
.portfolios .portfolio-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
}
.portfolios .portfolio-item .hover-items {
  width: 100%;
  height: 100%;
  background-color: var(--color-secondary);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}
.portfolios .portfolio-item .hover-items h3 {
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}
.portfolios .portfolio-item .hover-items .icons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.portfolios .portfolio-item .hover-items .icons .icon {
  background-color: var(--color-primary);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1rem;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.portfolios .portfolio-item .hover-items .icons .icon i {
  font-size: 1.5rem;
  color: var(--color-white);
  margin: 0 1rem;
}
.portfolios .portfolio-item .hover-items .icons .icon:hover {
  background-color: var(--color-white);
}
.portfolios .portfolio-item .hover-items .icons .icon:hover i {
  color: var(--color-primary);
}

.portfolio-item:hover .hover-items {
  opacity: 1;
  transform: scale(1);
}

.books {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  margin-top: 3rem;
}
.books .book {
  position: relative;
  background-color: var(--color-grey-5);
  border-radius: 5px;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-in-out;
}
.books .book:hover {
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
  transition: all 0.4s ease-in-out;
}
.books .book:hover img {
  filter: grayscale(0);
  transform: scale(1.1);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8);
}
.books .book img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  filter: grayscale(100%);
  transition: all 0.4s ease-in-out;
}
.books .book .book-text {
  margin-top: -7px;
  padding: 1.1rem;
  border-top: 8px solid var(--color-secondary);
}
.books .book .book-text h4 {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.books .book .book-text h4:hover {
  color: var(--color-secondary);
}
.books .book .book-text p {
  color: var(--color-grey-2);
  line-height: 2rem;
  padding-bottom: 1rem;
}

.contact-content-con {
  display: flex;
  padding-top: 3.5rem;
}
.contact-content-con .left-contact {
  flex: 2;
}
.contact-content-con .left-contact h4 {
  margin-top: 1rem;
  font-size: 2rem;
  text-transform: uppercase;
}
.contact-content-con .left-contact p {
  margin: 1rem 0;
  line-height: 2rem;
}
.contact-content-con .left-contact .contact-info .contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-content-con .left-contact .contact-info .contact-item p {
  margin: 0.3rem 0 !important;
  padding: 0 !important;
}
.contact-content-con .left-contact .contact-info .contact-item .icon {
  display: grid;
  grid-template-columns: 40px 1fr;
}
.contact-content-con .left-contact .contact-info .contact-item .icon i {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
}
.contact-content-con .left-contact .contact-icon {
  display: flex;
  margin-top: 2rem;
}
.contact-content-con .left-contact .contact-icon a {
  display: flex;
  align-items: center;
  color: var(--color-white);
  background-color: var(--color-grey-5);
  cursor: pointer;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 0.4rem;
  transition: all 0.4s ease-in-out;
}
.contact-content-con .left-contact .contact-icon a:hover {
  background-color: var(--color-secondary);
}
.contact-content-con .left-contact .contact-icon a:hover i {
  color: var(--color-primary);
}
.contact-content-con .left-contact .contact-icon a i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.contact-content-con .right-contact {
  flex: 3;
  margin-left: 3rem;
}
.contact-content-con .right-contact .input-control {
  margin: 1.5rem 0;
}
.contact-content-con .right-contact .input-control input, .contact-content-con .right-contact .input-control textarea {
  border-radius: 30px;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  padding: 0.8rem 1.1rem;
  outline: none;
  border: none;
  background-color: var(--color-grey-5);
  width: 100%;
  color: var(--color-white);
  resize: none;
}
.contact-content-con .right-contact .i-c-2 {
  display: flex;
}
.contact-content-con .right-contact .i-c-2 :last-child {
  margin-left: 1.5rem;
}
.contact-content-con .right-contact .submit-btn {
  display: flex;
  justify-content: flex-start;
}

/*Independed components*/
.btn-con {
  display: flex;
  align-self: flex-start;
}

.main-btn {
  border-radius: 30px;
  color: inherit;
  font-weight: 600;
  position: relative;
  border: 1px solid var(--color-secondary);
  display: flex;
  align-self: flex-start;
  align-items: center;
  overflow: hidden;
}
.main-btn .btn-text {
  padding: 0 2rem;
}
.main-btn .btn-icon {
  background-color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 1rem;
}
.main-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: all 0.4s ease-out;
  z-index: -1;
}
.main-btn:hover {
  transition: all 0.4s ease-out;
}
.main-btn:hover::before {
  width: 100%;
  height: 100%;
  background-color: var(--color-secondary);
  transform: translateX(0);
  transition: all 0.4s ease-out;
}

.main-title {
  text-align: center;
}
.main-title h2 {
  position: relative;
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 700;
}
.main-title h2 span {
  color: var(--color-secondary);
}
.main-title h2 .bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--color-grey-5);
  transition: all 0.4s ease-in-out;
  z-index: -1;
  transform: translate(-50%, -50%);
  font-weight: 800;
  font-size: 6.3rem;
}

.about-container .left-about p {
  padding-left: 0;
}

@media screen and (max-width: 600px) {
  header {
    padding: 0 !important;
  }

  .theme-btn {
    width: 50px;
    height: 50px;
  }

  .header-content {
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 6rem;
  }

  .left-header .h-shape {
    display: none;
  }

  .right-header {
    grid-row: 1;
    padding-right: 0rem !important;
    width: 90%;
    margin: 0 auto;
  }
  .right-header .name {
    font-size: 2.5rem !important;
    text-align: center;
    padding-top: 3rem;
  }

  .header-content .left-header .image {
    margin: 0 auto;
    width: 90%;
  }

  .controls {
    top: auto;
    bottom: 0;
    flex-direction: row;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background-color: var(--color-grey-5);
  }
  .controls .control {
    margin: 1rem 0.3rem;
  }

  .about-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .about-container .right-about {
    grid-template-columns: repeat(1, 1fr);
    padding-top: 2.5rem;
  }
  .about-container .left-about {
    padding-right: 0;
  }
  .about-container .left-about p {
    padding-left: 0;
  }

  .timeline {
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 6rem;
  }

  .container {
    padding: 2rem 2.5rem !important;
  }

  .about-stats .progress-bars {
    grid-template-columns: repeat(1, 1fr);
  }

  .portfolios {
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 6rem;
    margin-top: 1rem;
  }

  .books {
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 6rem;
  }

  .contact-content-con {
    flex-direction: column;
  }
  .contact-content-con .right-contact {
    margin-left: 0;
    margin-top: 2.5rem;
  }

  .contact-content-con .right-contact .i-c-2 {
    flex-direction: column;
  }

  .contact-content-con .right-contact .i-c-2 :last-child {
    margin-left: 0;
    margin-top: 1.5rem;
  }

  .contact-content-con .right-contact {
    margin-bottom: 6rem;
  }

  .contact-item {
    flex-direction: column;
    margin: 1rem 0;
  }
  .contact-item p {
    font-size: 15px;
    color: var(--color-grey-2);
  }
  .contact-item span {
    font-size: 15px;
  }
  .contact-item .icon {
    grid-template-columns: 25px 1fr;
  }

  .main-title h2 {
    font-size: 2rem;
  }
  .main-title h2 span {
    font-size: 2.3rem;
  }
  .main-title h2 .bg-text {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 1432px) {
  .container {
    padding: 7rem 11rem;
  }

  .contact-content-con {
    flex-direction: column;
  }
  .contact-content-con .right-contact {
    margin-left: 0;
    margin-top: 2.5rem;
  }

  .contact-content-con .right-contact .i-c-2 {
    flex-direction: column;
  }

  .contact-content-con .right-contact .i-c-2 :last-child {
    margin-left: 0;
    margin-top: 1.5rem;
  }

  .contact-content-con .right-contact {
    margin-bottom: 6rem;
  }

  .main-title h2 .bg-text {
    font-size: 5.5rem;
  }
}
@media screen and (max-width: 1250px) {
  .books {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 6rem;
  }

  .portfolios {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-content .right-header {
    padding-right: 9rem;
  }
}
@media screen and (max-width: 660px) {
  .books {
    grid-template-columns: repeat(1, 1fr);
  }

  .portfolios {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 1070px) {
  .about-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .about-container .right-about {
    padding-top: 2.5rem;
  }

  .main-title h2 {
    font-size: 4rem;
  }
  .main-title h2 span {
    font-size: 4rem;
  }
  .main-title h2 .bg-text {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 970px) {
  .container {
    padding: 7rem 6rem;
  }

  .about-container .left-about {
    padding-right: 0rem;
  }

  .header-content {
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 6rem;
  }

  .left-header .h-shape {
    display: none;
  }
  .left-header .image {
    width: 90% !important;
    margin: 0 auto !important;
  }

  .right-header {
    grid-row: 1;
    padding-right: 0rem !important;
    width: 90%;
    margin: 0 auto;
  }
  .right-header .name {
    font-size: 2.5rem !important;
    text-align: center;
    padding-top: 3rem;
  }
}
@media screen and (max-width: 700px) {
  .container {
    padding: 7rem 3rem;
  }

  .about-stats .progress-bars {
    grid-template-columns: repeat(1, 1fr);
  }

  .about-container .right-about {
    grid-template-columns: repeat(1, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(1, 1fr);
  }

  .main-title h2 {
    font-size: 3rem;
  }
  .main-title h2 span {
    font-size: 3rem;
  }
  .main-title h2 .bg-text {
    font-size: 4rem;
  }
}


.main-title {
  text-align: center;
  margin-bottom: 20px;
}

.main-title h2 {
  font-size: 2.5rem;
  margin: 0;
}

.main-title h2 span {
  display: block;
  font-size: 1.2rem;
  color: #a1a1aa;
}

.main-title h2 .bg-text {
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
  font-size: 5rem;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Gallery container */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1400px;
  margin: auto;
}

/* Gallery images */
.gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: cover;
}

/* Hover effect */
.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Fullscreen modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Fullscreen image */
.modal img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 10px;
  animation: fadeIn 0.5s ease;
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
}

.close:hover {
  color: red;
}

/* Navigation arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  padding: 20px;
  user-select: none;
  transition: 0.3s ease;
}

.next {
  right: 10px;
}

.prev {
  left: 10px;
}

.prev:hover, .next:hover {
  color: #00ffff;
}

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

/* Fade-in animation */
@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

/* Responsive Design */
@media screen and (max-width: 900px) {
  .gallery {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media screen and (max-width: 600px) {
  .gallery {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .prev, .next {
      font-size: 30px;
      padding: 15px;
  }

  .close {
      font-size: 30px;
      top: 10px;
      right: 15px;
  }
}

.highlight {
    color: #263bfa;
    text-decoration: underline;
}

/* Facebook-style Blog Card */
.blog-post.fb-style {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: var(--color-white);
    transition: transform 0.3s ease;
}

.blog-post.fb-style:hover {
    transform: translateY(-5px);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--color-grey-4);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.post-meta h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--color-secondary);
}

.post-date {
    font-size: 0.8rem;
    color: var(--color-grey-2);
}

.share-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-grey-2);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.share-btn:hover {
    color: var(--color-secondary);
}

.read-btn {
    background: #1877f2;
    color: white;
    border: none;
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.read-btn:hover {
    background: #1664d9;
}

/* Modal Styles */
.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 2rem auto;
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    max-height: 90vh;
    overflow-y: auto;
}

/* Blog Modal Content Styles */
.blog-modal .modal-content {
    color: var(--color-primary);
    padding: 2rem;
    line-height: 1.6;
}

.blog-modal h2 {
    color: var(--color-secondary);
    margin: 1.5rem 0 1rem;
    font-size: 1.8rem;
}

.blog-modal h3 {
    color: var(--color-secondary);
    margin: 1.2rem 0 0.8rem;
    font-size: 1.4rem;
}

.blog-modal p {
    margin-bottom: 1rem;
}

.blog-modal ul, .blog-modal ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.blog-modal li {
    margin-bottom: 0.5rem;
}

.blog-modal .references {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-grey-2);
    font-size: 0.9rem;
}

/* Blog Preview Styles */
.blog-preview {
    margin: 1rem 0;
    line-height: 1.6;
}

.blog-preview p {
    color: var(--color-grey-3);
    font-size: 0.95rem;
}

/* Blog Container Styles */
.container.blog {
    display: block;
    transform: translateY(0) scale(1);
    background-color: var(--color-primary);
}

.blogs-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

/* Ensure blog posts are visible */
.blog-post {
    background: var(--color-grey-5);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
}

/* Blog content visibility */
.blog-content {
    padding: 1.5rem;
    color: var(--color-white);
}

/* Blog Title Theme Colors */
.blog-post.fb-style .blog-content h3 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.light-mode .blog-post.fb-style .blog-content h3 {
    color: var(--color-black);
}

/* Update blog content text colors */
.blog-post.fb-style .blog-content {
    color: var(--color-white);
}

.light-mode .blog-post.fb-style .blog-content {
    color: var(--color-black);
}

/* Custom title color for specific blog post */
.blog-post.fb-style .blog-content h3[title="leveraging-ai"] {
    color: var(--color-secondary);
}

/* Blog image size modification */
.blog-post .blog-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 8px 8px 0 0;
}

.blog-post.fb-style .blog-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    margin: 0;
    border-radius: 0;
}

/* Blog Modal Styles */
.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 2rem auto;
    background: var(--color-white);
    padding: 0;
    border-radius: 12px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.modal-header .modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-modal .modal-content {
    padding: 0;
}

.blog-modal .modal-content > *:not(.modal-header) {
    padding: 1rem 2rem;
}

.blog-modal h2:first-of-type {
    margin-top: 1rem;
}

/* Enhanced Blog Modal Styles */
.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.blog-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.blog-modal .modal-content {
    background: var(--color-primary);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-modal.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.blog-modal .modal-header {
    width: 100%;
    height: 300px;
    position: relative;
}

.blog-modal .modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 1px; /* Reduced from default spacing */
}

.blog-modal .modal-body {
    padding: 1rem 2rem; /* Reduced top padding */
    overflow-y: auto;
    max-height: calc(90vh - 300px);
}

.blog-modal .modal-body h2:first-of-type {
    margin-top: 0; /* Remove top margin from first heading */
}

.blog-modal .scrollable-content {
    overflow-y: auto;
    max-height: calc(90vh - 80px);
    display: flex;
    flex-direction: column;
    gap: 1px; /* Minimal gap between image and content */
}

.blog-modal .close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 1001;
}

.blog-modal .close-btn:hover {
    background: var(--color-secondary);
    transform: rotate(90deg);
}

/* Scrollbar Styling */
.blog-modal .modal-body::-webkit-scrollbar {
    width: 8px;
}

.blog-modal .modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.blog-modal .modal-body::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    border-radius: 4px;
}

@media screen and (max-width: 768px) {
    .blog-modal .modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .blog-modal .modal-header {
        height: 200px;
    }

    .blog-modal .modal-body {
        max-height: calc(95vh - 200px);
        padding: 1.5rem;
    }
}

/* Enhanced Blog Modal Styles */
.blog-modal .modal-content {
    background: var(--color-grey-5);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.blog-modal .blog-header {
    padding: 1rem;
    background: var(--color-grey-5);
    border-bottom: 1px solid var(--color-grey-4);
}

.blog-modal .close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 1001;
}

.blog-modal .close-btn:hover {
    color: var(--color-secondary);
    transform: rotate(90deg);
}

/* Update modal body colors */
.blog-modal .modal-body {
    background: var(--color-grey-5);
    color: var(--color-white);
    padding: 2rem;
}

/* Enhanced Blog Modal Styles */
.blog-modal .modal-content {
    background: var(--color-grey-5);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.blog-modal .modal-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 2rem;  /* Changed from 1rem to 2rem */
    z-index: 1001;
}

.blog-modal .close-btn{
  color: white;
  border: none;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  background: none;

}
.blog-modal .modal-share-btn {
    color: white;
    border: none;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: none;
}

.blog-modal .blog-header {
    padding: 1rem;
    border-bottom: 1px solid var(--color-grey-4);
}

.blog-modal .scrollable-content {
    overflow-y: auto;
    max-height: calc(90vh - 80px); /* 80px for header */
}

/* Hide individual scroll areas */
.blog-modal .modal-body {
    overflow: visible;
}

/* Clean up any duplicate styles */
.blog-modal .close-btn:hover,
.blog-modal .modal-share-btn:hover {
    color: var(--color-secondary);
    transform: scale(1.1);
}

/* Enhanced Blog Modal Styles */
.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    overflow: hidden;
}

.blog-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-modal .modal-content {
    width: 90%;
    max-width: 800px;
    height: 90vh;
    background: var(--color-grey-5);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
}

.blog-modal .blog-header {
    padding: 1rem;
    border-bottom: 1px solid var(--color-grey-4);
    position: relative;
}

.blog-modal .modal-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.blog-modal .scrollable-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Hide scrollbar on parent body when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Social Media Links */
.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.social-icons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(45px, 1fr));
    gap: 1.2rem;
    margin-top: 1rem;
}

.social-icon {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-grey-5);
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-white);
}

.social-icon i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--color-secondary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon:hover i {
    transform: scale(1.1);
}

.social-icon .tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
    font-size: 0.8rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.social-icon .tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px 5px 0 5px;
    border-style: solid;
    border-color: var(--color-secondary) transparent transparent transparent;
}

.social-icon:hover .tooltip {
    opacity: 1;
    visibility: visible;
    top: -45px;
}

@media screen and (max-width: 768px) {
    .social-icons {
        grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
        gap: 1rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon i {
        font-size: 1.1rem;
    }
}

/* Album Styles */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.album {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: var(--color-grey-5);
    transition: all 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
}

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

.album-cover {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.album:hover .album-cover img {
    transform: scale(1.1);
}

.album-info {
    padding: 1.5rem;
    background: var(--color-grey-5);
    color: var(--color-white);
    border-top: 2px solid var(--color-secondary);
}

.album-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.album-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--color-grey-2);
}

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

.hashtags span {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    background: rgba(var(--color-secondary-rgb), 0.2);
    border-radius: 20px;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.hashtags span:hover {
    background: rgba(var(--color-secondary-rgb), 0.4);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 1rem;
    }

    .album-cover {
        height: 250px;
    }

    .album-info {
        padding: 1.2rem;
    }

    .album-info h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .album-info p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .hashtags span {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Light mode adjustments */
.light-mode .album {
    background: var(--color-grey-1);
}

.light-mode .album-info {
    background: var(--color-grey-1);
}

.light-mode .album-info h3 {
    color: var(--color-black);
}

.light-mode .album-info p {
    color: var(--color-grey-4);
}

.light-mode .hashtags span {
    background: rgba(var(--color-secondary-rgb), 0.1);
    color: var(--color-black);
}

.light-mode .hashtags span:hover {
    background: rgba(var(--color-secondary-rgb), 0.2);
}

/* Media Highlights Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.video-card {
    background: var(--color-grey-5);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(var(--color-secondary-rgb), 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.play-button i {
    color: white;
    font-size: 24px;
    margin-left: 4px;
}

.video-card:hover .play-button {
    opacity: 1;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--color-white);
}

.video-info p {
    font-size: 0.9rem;
    color: var(--color-grey-2);
    margin-bottom: 1rem;
}

.platform-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.platform-tag.youtube {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

.platform-tag.facebook {
    background: rgba(66, 103, 178, 0.1);
    color: #4267B2;
}

.platform-tag.reel {
    background: linear-gradient(45deg, rgba(252, 175, 69, 0.1), rgba(245, 96, 64, 0.1));
    color: #fcaf45;
}

/* Light mode adjustments */
.light-mode .video-card {
    background: var(--color-grey-1);
}

.light-mode .video-info h3 {
    color: var(--color-black);
}

.light-mode .video-info p {
    color: var(--color-grey-4);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 1rem;
    }

    .video-thumbnail {
        height: 180px;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

    .play-button i {
        font-size: 20px;
    }
}
