
/* Beginning of Page Animation*/
/* AOS Animation Base Styles */
[data-aos] {
  transition: opacity 0.8s ease, transform 0.8s ease;
  opacity: 0;
}

/* Default fade-up movement */
[data-aos="fade-up"] {
  transform: translateY(30px);
}
[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Fade-right movement */
[data-aos="fade-right"] {
  transform: translateX(-50px);
}
[data-aos="fade-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

/* Fade-left movement */
[data-aos="fade-left"] {
  transform: translateX(50px);
}
[data-aos="fade-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

/* Fade-down movement (optional) */
[data-aos="fade-down"] {
  transform: translateY(-30px);
}
[data-aos="fade-down"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/*Ending of Page Animation*/

/*Beginning of Keyframes*/
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }
}

@keyframes zoomFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

@keyframes floatImage {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/*Ending of Keyframes*/

/** Variables **/

:root {
  --color-background: #e7e7e7;
  --color-background-alt: #888888;
  --color-border-active: #c71585;
  --color-border-default: #d1d1d1;
  --color-highlight: #fdcf4c;
  --color-primary: #c71585;
  --color-primary-active: #a0126e;
  --color-text-default: #262626;
  --color-text-muted: #4f4f4f;

  --font-family-body: "Figtree", system-ui, sans-serif;
  --font-family-display: "Poppins", system-ui, sans-serif;
}

html {
  overflow-x: hidden;
  overflow-y: auto;
  max-width: 100%;
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-padding-top: 110px;
}

*, *::before, *::after {
  box-sizing: inherit;
}

/* Beginning of Lazy Loading - Blur-in effect */
img[loading="lazy"] {
  filter: blur(8px);
  opacity: 0.85;
  transition: filter 0.5s ease, opacity 0.5s ease;
}

img[loading="lazy"].loaded {
  filter: blur(0);
  opacity: 1;
}

/* Ending of Lazy Loading */

/* Beginning of Body Section */
body {
    margin: 0;
    background-color: white;
    color: #111;
    transition: background-color 0.3s, color 0.3s;
    overflow-x: hidden;
    overflow-y: visible;
    max-width: 100%;
    height: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-top: 50px;
}
/* Ending of Body Section*/


/* Beginning of Navigation Section */
/* --- Navigation Styling --- */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 15px 40px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px); 
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  border-radius: 12px;
  position: -webkit-sticky; 
  position: fixed;
  top: 0;
  z-index: 999;
  margin: 0 auto;
  width: calc(100% - 20px);
  max-width: 100vw;
  box-sizing: border-box;
  gap: 15px;
  margin-bottom: 50px
}

.logo {
  flex-shrink: 0;
  min-width: fit-content;
}

.logo h2 {
  color: #c71585;
  font-size: 1.5rem;
  margin: 0;
  white-space: nowrap;
}

.logo h2 a {
  text-decoration: none;
  cursor: pointer;
  color: #c71585 !important;
  transition: opacity 0.3s ease;
}

.logo h2 a:visited,
.logo h2 a:active,
.logo h2 a:focus {
  color: #c71585 !important;
}

.logo h2 a:hover {
  color: #c71585 !important;
  opacity: 0.8;
}

.nav-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: all 0.4s ease-in-out;
  flex-wrap: nowrap;
  align-items: center;
}

.nav-menu li {
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-menu li a {
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 20px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link {
  position: relative;
  color: #c71585;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #c71585;
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover {
  color: #c71585;
}

.nav-link:hover::after {
  width: calc(100% - 40px);
  left: 20px;
}

/* Hamburger Section */
.hamburger {
  display: none; /* Hidden by default on large screens */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 24px;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  transition: transform 0.3s ease;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #c71585;
  border-radius: 3px;
  transition: all 0.35s ease-in-out;
  transform-origin: center;
  left: 0;
}

/* Hamburger Animation */
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }

.hamburger.active {
  transform: scale(1.1);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg); 
  top: 10px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.social-menu {
  display: flex;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-menu img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.social-menu img:hover {
  transform: scale(1.2);
}

.social-menu li {
  margin: 0;
  padding: 0;
}

.social-menu a {
  color: transparent;
  text-decoration: none;
}

/* Reduce spacing for social icons in navigation */
.nav-menu .social-icons {
  margin: 0;
  padding: 0;
  margin-left: 5px;
}

.nav-menu .social-icons .social-menu {
  gap: 1px; 
  margin-left: 0;
}

/* --- Extra Small Phones --- */
@media screen and (max-width: 320px) {
  body { 
    padding: 20px;
    box-sizing: border-box;
  }

  .nav-bar {
    padding: 10px 15px;
    border-radius: 10px;
    margin: 0 5px;
    position: sticky;
    top: 0;
    gap: 8px;
    width: calc(100% - 10px);
  }

  .logo h2 { 
    font-size: 1.1rem; 
  }

  .hamburger span {
    width: 25px;
    height: 3px;
  }

  .nav-menu {
    display: none; 
  }

  .nav-menu.active {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    right: 8px;
    left: 8px;
    background: white;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% - 16px);
    max-width: 250px;
    margin-left: auto;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: all 0.4s ease;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    padding: 15px;
    gap: 0;
    z-index: 1000;
  }

  .nav-menu li {
    width: 100%;
    list-style: square;
    margin: 3px 0;
  }

  .nav-menu li a {
    display: block;
    width: 100%;
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .nav-link::after {
    display: none; 
  }

  .social-menu img { width: 18px; height: 18px; }
}

/* --- Medium Phones & Small Tablets --- */
@media (max-width: 768px) {
  .nav-bar {
    position: sticky;
    top: 0;
    padding: 12px 15px;
    gap: 10px;
    width: calc(100% - 10px);
    margin: 0 5px;
  }

  .logo h2 {
    font-size: 1.15rem;
  }

  .hamburger {
    display: flex; /* Show hamburger only on <=768px */
  }

  .nav-menu {
    display: none; /* Hide nav menu by default on mobile */
  }

  .nav-menu.active {
    display: flex; /* Show when hamburger is clicked */
    position: absolute;
    top: calc(100% + 10px);
    right: 10px;
    left: 10px;
    background: white;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% - 20px);
    max-width: 300px;
    margin-left: auto;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: all 0.4s ease;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 15px;
    gap: 0;
  }

  .social-menu { 
    display: none; 
  }

  .nav-menu li a {
    display: block;
    width: 100%;
    padding: 8px 16px;
    font-size: 0.95rem;
  }

  .nav-link::after {
    display: none; /* Disable underline on mobile */
  }
}

/* Hamburger link animation */
.nav-menu.active a {
  opacity: 1;
  animation: fadeSlide 0.4s ease forwards;
}


/* Keyframes */
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  0% { transform: translateY(-15px); opacity: 0; }
  80% { transform: translateY(3px); opacity: 1; }
  100% { transform: translateY(0); }
}

.nav-menu.active {
  animation: slideDown 0.45s ease forwards;
}

/* End of Navigation Section*/

/*Beginning of First Section*/
.first-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Enables responsiveness */
    padding: 120px 50px 50px 50px;
    gap: 40px;
    background-color: #fff;
    margin-top: 50px;
}

.first-section a {
    text-decoration: none;
    background-color: #c71585;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.first-section a:hover {
  box-shadow: 0 6px 12px rgba(199, 21, 133, 0.4);
}

.first-section-writeup {
    flex: 1 1 300px;
    max-width: 600px;
}

.first-section-writeup h1 {
    margin-bottom: 15px;
    color: #222;
}

.first-section-writeup p {
    font-size: 1.1rem;
    color: gray;
    margin-bottom: 25px;
    line-height: 1.6;
}

.first-section-image {
    flex: 1 1 300px;
    text-align: center;
}

.first-section-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    height: auto;
    object-fit: cover;
    animation: zoomLoop 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

/*Beginning of What I do Section (index.html)*/
.whatido {
    background-color: #fce4ec; 
    padding: 50px;
}

.whatido h1 {
    color: #c71585;
    text-align: center;
    margin: 50px;
    font-size: 2.5rem;
}

.whatido-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    padding-bottom: 50px;
}

.whatido-writeup h3 {
    font-size: 1.1rem;
    margin: 15px 0;
    color: #444;
    margin-bottom: 25px;
}

.whatido-image {
    flex: 1 1 200px;
    max-width: 200px;
    background-color: white;
    border: 1px solid lightpink;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 lightpink;
    transition: transform 0.3s ease;
    padding-bottom: 30px;
    border-radius: 8px;
}

.whatido-image:hover {
    transform: translateY(-5px);
}

.whatido-section img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid pink;
}

.whatido-writeup {
    padding: 0 10px;
}

.whatido-section a {
    padding: 10px 20px;
    background-color: #c71585;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.whatido-section a:hover {
    background-color: red;
}

@media (max-width: 600px) {
    .whatido-writeup h3 {
        font-size: 1rem;
    }

    .whatido-section button {
        font-size: 0.9rem;
        padding: 8px 16px;
        margin-top: 50px;
    }
}
/*Ending of What I do Section (index.html)*/

/*Beginnng of Article (index.html)*/
.article-section {
    padding: 50px;
    background-color: #fff;
}

.article-section h1 {
    text-align: center;
    color: #c71585;
    margin-top: 50px;
    margin-bottom: 50px;
}

.article {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin: 0 auto;
}

.article-image {
    flex: 1 1 300px;
    text-align: center;
}

.article-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    animation: zoomLoop 4s ease-in-out infinite;
    transition: transform 0.3s ease;animation: zoomLoop 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.article-writeup {
    flex: 1 1 400px;
    color: #333;
}

.article-writeup h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.article-writeup p {
    color: #555;
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 20px;
}

.article-writeup a {
    text-decoration: none;
    padding: 10px 20px;
    background-color: #c71585;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.article-writeup a:hover {
    background-color: red;
}
/*Ending of Article Section (index.html)*/

/*Beginning of Testimonial Section (index.html)*/
.testimonials-section {
    background-color: #fff0f5; 
    padding: 50px 20px;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 50px;
    margin-top: 50px;
    color: #c71585;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding-bottom: 50px;
}

.testimonial-card {
    background-color: white;
    border: 1px solid #ffc0cb;
    box-shadow: 0 4px 8px rgba(255, 192, 203, 0.3);
    padding: 20px;
    width: 300px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
}

.testimonial-author {
    font-weight: bold;
    color: #c71585;
}


/* Animation */
@keyframes scroll-left {
  0%   
  { 
    transform: translateX(0); 
  }
  100% { 
    transform: translateX(-100%); 
  }
}
/*Ending of Testimonial Section (index.html)*/

/*Beginning of Responsive Screens from 320px to 1280px*/

/* Screens >1280px (ultra-large desktops) */
@media (min-width: 1281px) {
    .first-section {
        padding: 60px 80px;
        gap: 50px;
    }

    .first-section-writeup h1 {
        font-size: 3rem;
    }

    .first-section-writeup p {
        font-size: 1.2rem;
    }

    .first-section a {
        font-size: 1.1rem;
        padding: 14px 28px;
    }

    .first-section-image img {
        max-width: 450px;
    }

    .whatido {
        padding: 60px;
    }

    .whatido h1 {
        font-size: 2.5rem;
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .whatido-image {
        max-width: 220px;
        padding-bottom: 30px;
    }

    .whatido-writeup h3 {
        font-size: 1.2rem;
    }

    .whatido-section a {
        font-size: 1.1rem;
        padding: 12px 24px;
    }

    .article-section {
        padding: 60px 60px;
    }

    .article-section h1 {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }

    .article-writeup h3 {
        font-size: 2rem;
    }

    .article-writeup p {
        font-size: 1.1rem;
        line-height: 2.2;
    }

    .article-writeup a {
        font-size: 1.1rem;
        padding: 12px 24px;
    }

    .article-image img {
        max-width: 450px;
    }

    .testimonials-section {
        padding: 60px 60px;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }

    .testimonial-card {
        width: 320px;
        padding: 25px;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .testimonial-author {
        font-size: 1.2rem;
    }
}

/* Screens ≤1280px */
@media (max-width: 1280px) {
    .first-section {
        padding: 50px 40px;
        gap: 38px;
    }

    .first-section-writeup h1 {
        font-size: 2.4rem;
    }

    .first-section-writeup p {
        font-size: 1.08rem;
    }

    .first-section-image img {
        max-width: 390px;
    }

    .whatido h1 {
        font-size: 2.2rem;
    }

    .article-section h1 {
        font-size: 2.2rem;
    }

    .article-writeup h3 {
        font-size: 1.7rem;
    }

    .article-image img {
        max-width: 390px;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

/* Screens ≤1024px */
@media (max-width: 1024px) {
    .first-section {
        padding: 45px 35px;
        gap: 35px;
    }

    .first-section-writeup h1 {
        font-size: 2.2rem;
    }

    .first-section-writeup p {
        font-size: 1.05rem;
    }

    .first-section-image img {
        max-width: 380px;
    }

    .whatido h1 {
        font-size: 2rem;
    }

    .article-section h1 {
        font-size: 2rem;
    }

    .article-writeup h3 {
        font-size: 1.6rem;
    }

    .article-writeup p {
        line-height: 1.9;
    }

    .article-image img {
        max-width: 380px;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Screens ≤768px */
@media (max-width: 768px) {
    .first-section {
        padding: 40px 30px;
        gap: 30px;
        flex-direction: column;
        align-items: flex-start;
    }

    .first-section-writeup h1 {
        font-size: 2rem;
    }

    .first-section-writeup p {
        font-size: 1rem;
    }

    .first-section-image img {
        max-width: 350px;
    }

    .whatido h1 {
        font-size: 1.8rem;
    }

    .whatido-image {
        max-width: 190px;
    }

    .whatido-writeup h3 {
        font-size: 1.05rem;
    }

    .article-section h1 {
        font-size: 1.8rem;
    }

    .article-writeup h3 {
        font-size: 1.5rem;
    }

    .article-writeup p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .article-image img {
        max-width: 350px;
    }

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

    .testimonial-card {
        width: 280px;
    }
}

/* Screens ≤420px */
@media (max-width: 420px) {
    .first-section {
        padding: 30px 20px;
        gap: 25px;
    }

    .first-section-writeup h1 {
        font-size: 1.8rem;
    }

    .first-section-writeup p {
        font-size: 0.9rem;
    }

    .first-section-image img {
        max-width: 300px;
    }

    .whatido h1 {
        font-size: 1.5rem;
    }

    .whatido-image {
        max-width: 180px;
    }

    .whatido-writeup h3 {
        font-size: 1rem;
    }

    .article-section h1 {
        font-size: 1.5rem;
    }

    .article-writeup h3 {
        font-size: 1.3rem;
    }

    .article-writeup p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .article-image img {
        max-width: 300px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

/* Screens ≤320px */
@media (max-width: 320px) {
    .first-section {
        padding: 20px;
        gap: 20px;
    }

    .first-section-writeup h1 {
        font-size: 1.5rem;
    }

    .first-section-writeup p {
        font-size: 0.75rem;
    }

    .first-section-image img {
        max-width: 250px;
    }

    .whatido h1 {
        font-size: 1.3rem;
    }

    .whatido-image {
        max-width: 160px;
    }

    .whatido-writeup h3 {
        font-size: 0.9rem;
    }

    .article-section h1 {
        font-size: 1.3rem;
    }

    .article-writeup h3 {
        font-size: 1.1rem;
    }

    .article-writeup p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .article-image img {
        max-width: 250px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .testimonial-card {
        width: 250px;
        padding: 15px;
    }
}
/*Ending of Responsive Screens from 320px to 1280px*/
/* End of First Section */



/*Beginning of About Me Page*/
/*Beginning of First Section (about.html)*/
.aboutus-first-section {
    padding: 80px 50px 60px 50px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.aboutus-first-section-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
}

.aboutus-first-section-image {
    width: 100%;
    max-width: 400px;
}

.aboutus-first-section-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    animation: floatImage 3s ease-in-out infinite;
    will-change: transform;
}

.aboutus-first-section-text {
    max-width: 600px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 80px;
}

.aboutus-first-section-text h1 {
    color: #c71585;
    margin-bottom: 20px;
    text-align: center;
}

.aboutus-first-section-text p {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 20px;
    color: #555;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.download-cv-btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #c71585;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.download-cv-btn:hover {
  background-color: red;
}
/*Ending of First Section (about.html)*/

/*Beginning of My Skills (about.html)*/
.myskills {
  text-align: center;
  margin: 40px 0;
  background-color: #fce4ec;
  padding: 40px 50px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.myskills h1 {
    color: #c71585;
    text-align: center;
    margin: 50px 0;
}

.myskills-writeup h3 {
    font-size: 18px;
    margin: 15px 0;
    color: #444;
}

.skills-image {
  display: flex;
  justify-content: center;  
  align-items: center;
  flex-wrap: wrap;           
  gap: 90px;                
  margin-top: 20px;
  margin-bottom: 50px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.skills {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.skills img {
  width: 80px;   
  height: 80px;
  object-fit: contain; 
  transition: transform 0.3s ease;
  animation: zoomLoop 4s ease-in-out infinite;
  will-change: transform;
}

.skills img:hover {
  transform: scale(1.1); 
}

.skills p {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
}
/*Ending of My Skills (about.html)*/

/*Beginning of My Certificates Section (about.html)*/
.certificates-section {
  padding: 60px 50px;
  text-align: center;
  background: #fff;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.certificates-section h1 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #c71585;
}

.certificates-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.certificate-card {
  background: #fce4ec;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  max-width: 300px;
  flex: 1;
  transition: transform 0.3s ease;
}

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

.certificate-card h3 {
  margin-bottom: 10px;
  color: #333;
}

.certificate-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.view-btn {
  text-decoration: none;
  color: white;
  background-color: #c71585;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: inline-block;
  transition: background 0.3s ease;
}

.view-btn:hover {
  background-color: #a0126e;
}
/*Ending of My Certificates Sections (about.html)*/

/*Beginning of About Page Responsive Code for All Screens */

/* Screens >1280px (ultra-large desktops) */
@media (min-width: 1281px) {
    .about-section {
        padding: 60px 80px;
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
        align-items: center;
        justify-content: space-between;
    }

    .about-title {
        font-size: 3rem;
        margin-bottom: 40px;
        color: #c71585;
    }

    .about-content {
        flex: 1 1 500px;
        font-size: 1.2rem;
        line-height: 2.2;
        color: #333;
    }

    .about-image {
        flex: 1 1 450px;
        max-width: 450px;
    }

    .about-image img {
        width: 100%;
        border-radius: 10px;
        object-fit: cover;
    }

    .about-card {
        width: 320px;
        padding: 25px;
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

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

    .about-card h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .about-card p {
        font-size: 1.1rem;
        line-height: 1.8;
    }
}

/* Screens ≤1280px */
@media (max-width: 1280px) {
    .about-section {
        padding: 50px 40px;
        gap: 38px;
    }

    .about-title {
        font-size: 2.4rem;
    }

    .about-content {
        font-size: 1.08rem;
    }

    .about-image {
        max-width: 390px;
    }

    .about-card {
        width: 300px;
        padding: 20px;
    }
}

/* Screens ≤1024px */
@media (max-width: 1024px) {
    .about-section {
        padding: 45px 35px;
        gap: 35px;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-content {
        font-size: 1rem;
    }

    .about-image {
        max-width: 380px;
    }

    .about-card {
        width: 280px;
        padding: 18px;
    }
}

/* Screens ≤768px */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        gap: 30px;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-content {
        font-size: 0.95rem;
    }

    .about-image {
        max-width: 350px;
    }

    .about-card {
        width: 260px;
        padding: 16px;
    }
}

/* Screens ≤420px */
@media (max-width: 420px) {
    .about-section {
        padding: 30px 20px;
        gap: 25px;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .about-content {
        font-size: 0.9rem;
    }

    .about-image {
        max-width: 300px;
    }

    .about-card {
        width: 240px;
        padding: 15px;
    }
}

/* Screens ≤320px */
@media (max-width: 320px) {
    .about-section {
        padding: 20px;
        gap: 20px;
    }

    .about-title {
        font-size: 1.3rem;
    }

    .about-content {
        font-size: 0.8rem;
    }

    .about-image {
        max-width: 250px;
    }

    .about-card {
        width: 220px;
        padding: 12px;
    }
}
/*Ending of About Page Responsive Code for All Screens*/
/*Ending of About Page*/

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES FOR ALL PAGES
   ============================================ */

/* About Page - First Section Responsive */
@media (max-width: 768px) {
  .aboutus-first-section {
    padding: 80px 20px 60px 20px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .aboutus-first-section-content {
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .aboutus-first-section-image {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .aboutus-first-section-image img {
    width: 100%;
    max-width: 100%;
  }

  .aboutus-first-section-text {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .aboutus-first-section-text h1 {
    font-size: 1.8rem;
  }

  .aboutus-first-section-text p {
    font-size: 1rem;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .aboutus-first-section {
    padding: 30px 15px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .aboutus-first-section-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .aboutus-first-section-image {
    width: 100%;
    max-width: 100%;
  }

  .aboutus-first-section-text {
    width: 100%;
    max-width: 100%;
    padding: 0 5px;
  }

  .aboutus-first-section-text h1 {
    font-size: 1.5rem;
  }

  .aboutus-first-section-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .download-cv-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Skills Section Responsive */
@media (max-width: 768px) {
  .myskills {
    padding: 30px 20px;
  }

  .myskills h1 {
    font-size: 1.8rem;
    margin: 30px 0;
  }

  .skills-image {
    gap: 40px;
  }

  .skills img {
    width: 60px;
    height: 60px;
  }

  .skills p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .myskills {
    padding: 20px 15px;
  }

  .myskills h1 {
    font-size: 1.5rem;
    margin: 20px 0;
  }

  .skills-image {
    gap: 25px;
  }

  .skills img {
    width: 50px;
    height: 50px;
  }

  .skills p {
    font-size: 12px;
  }
}

/* Certificates Section Responsive */
@media (max-width: 768px) {
  .certificates-section {
    padding: 40px 20px;
  }

  .certificates-section h1 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .certificates-container {
    flex-direction: column;
    align-items: center;
  }

  .certificate-card {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .certificates-section {
    padding: 30px 15px;
  }

  .certificates-section h1 {
    font-size: 1.5rem;
  }

  .certificate-card {
    padding: 15px;
  }

  .certificate-card h3 {
    font-size: 1.1rem;
  }

  .certificate-card p {
    font-size: 0.85rem;
  }

  .view-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* Contact Page Responsive */
@media (max-width: 768px) {
  .contact-card-section {
    padding: 40px 20px;
  }

  .contact-card {
    flex-direction: column;
  }

  .contact-card-left {
    padding: 30px 20px;
  }

  .contact-card-right {
    padding: 30px 20px;
  }

  .contact-card-right h2 {
    font-size: 1.5rem;
  }

  .profile-pic {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .contact-card-section {
    padding: 20px 15px;
  }

  .contact-card-left {
    padding: 25px 15px;
  }

  .contact-card-right {
    padding: 25px 15px;
  }

  .contact-card-right h2 {
    font-size: 1.3rem;
  }

  .profile-pic {
    width: 80px;
    height: 80px;
  }

  .contact-card-left p {
    font-size: 0.85rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.9rem;
    padding: 10px;
  }


  .social-media {
    gap: 10px;
  }

  .social-media img {
    width: 20px;
    height: 20px;
  }
}

/* Navigation Bar - Additional Responsive Improvements */
@media (max-width: 1024px) {
  .nav-bar {
    padding: 12px 20px;
    position: sticky;
    top: 0;
    gap: 10px;
  }

  .nav-menu {
    gap: 10px;
  }

  .nav-menu li a {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .logo h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 900px) {
  .nav-bar {
    padding: 12px 15px;
    gap: 8px;
  }

  .nav-menu {
    gap: 8px;
  }

  .nav-menu li a {
    padding: 8px 10px;
    font-size: 0.85rem;
  }

  .logo h2 {
    font-size: 1.2rem;
  }

  .social-menu img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .nav-bar {
    padding: 10px 15px;
    margin: 0 5px;
    position: sticky;
    top: 0;
    gap: 8px;
    width: calc(100% - 10px);
  }

  .logo h2 {
    font-size: 1.1rem;
  }

  .nav-menu {
    display: none; /* Hide nav menu by default on mobile */
  }

  .nav-menu.active {
    display: flex; /* Show when hamburger is clicked */
  }
}

/* General Image Responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Ensure all containers are responsive */
.container,
section,
article {
  max-width: 100%;
  box-sizing: border-box;
}

/* Text Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem !important;
  }

  h2 {
    font-size: 1.5rem !important;
  }

  h3 {
    font-size: 1.2rem !important;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem !important;
  }

  h2 {
    font-size: 1.3rem !important;
  }

  h3 {
    font-size: 1.1rem !important;
  }
}

/* Form Elements Responsive */
@media (max-width: 480px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    width: 100%;
    box-sizing: border-box;
  }
}

/* Button Responsive */
@media (max-width: 480px) {
  .btn,
  button,
  a.btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: auto;
    display: inline-block;
  }
}

/* Modal Responsive */
@media (max-width: 768px) {
  .modal-content {
    max-width: 95%;
    max-height: 85vh;
  }

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

@media (max-width: 480px) {
  .modal-content {
    max-width: 98%;
    max-height: 90vh;
  }

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

/* Image Gallery Responsive */
@media (max-width: 768px) {
  .image-gallery {
    gap: 15px;
  }

  .image-gallery img {
    max-width: calc(50% - 7.5px);
  }
}

@media (max-width: 480px) {
  .image-gallery {
    gap: 10px;
    flex-direction: column;
  }

  .image-gallery img {
    max-width: 100%;
  }
}


/* Beginning of Projects Section (projects.html)*/
.projects-container {
  justify-content: space-between;
  padding: 60px 50px 60px 50px;
}

.projects-container h1 {
    text-align: center;
    margin-bottom: 50px;
    color: #c71585;
    font-size: 2rem;
}

.projects-btn {
  display: inline-block;
  background-color: #c71585;
  color: white;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.projects-btn:hover {
background-color: red;
}

.projects-button-section {
    text-align: center;
    justify-content: space-between;
}

.projects-button-section button {
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    margin: 20px;
}

.projects-button-section button a {
    text-decoration: none;
    color: white;
}

.cards-btn {
  display: inline-block;
  background-color: #c71585;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.cards-btn:hover {
background-color:red;
}

.projects-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0 10px;
  margin-top: 50px;
  box-sizing: border-box;
}

.projects-cards h3 {
font-size: 1.1rem;
margin: 15px 0;
color: #444;
}

.projects-cards-image {
  margin-bottom: 0;
  margin-top: 0;
  width: 200px;
  height: auto;
  flex: 0 1 200px;
  max-width: 200px;
  background-color: white;
  border: 1px solid lightpink;
  text-align: center;
  overflow: visible;
  box-shadow: 0 4px 8px 0 lightpink;
  transition: transform 0.3s ease;
  padding-bottom: 20px;
  border-radius: 8px;
}

.projects-cards-image:hover {
    transform: translateY(-5px);
}

.projects-cards-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
}

.projects-cards-image button {
  padding: 10px 20px;
  background-color: #c71585;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.projects-cards-image button a {
  text-decoration: none;
  color: white;
}

.projects-cards-image button:hover {
    background-color: red;
}

/* Projects Page Responsive */
/* Screens >1280px (Large desktops) */
@media (min-width: 1281px) {
  .projects-cards {
    gap: 25px;
    padding: 0 20px;
    margin-top: 50px;
  }

  .projects-cards-image {
    flex: 0 1 200px;
    max-width: 200px;
    width: 200px;
  }

  .projects-cards-image img {
    height: auto;
  }
}

/* Screens ≤1280px */
@media (max-width: 1280px) {
  .projects-cards {
    gap: 20px;
    padding: 0 15px;
    margin-top: 50px;
  }

  .projects-cards-image {
    flex: 0 1 200px;
    max-width: 200px;
    width: 200px;
  }

  .projects-cards-image img {
    height: auto;
  }
}

@media (max-width: 768px) {
  .projects-container {
    padding: 80px 40px 60px 40px;
  }

  .projects-container h1 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .projects-button-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .projects-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    margin: 5px;
  }

  .projects-cards {
    gap: 18px;
    padding: 0 15px;
    margin-top: 50px;
  }

  .projects-cards-image {
    flex: 0 1 calc(50% - 9px);
    max-width: calc(50% - 9px);
    width: calc(50% - 9px);
  }

  .projects-cards-image img {
    height: auto;
  }

  .projects-cards h3 {
    font-size: 1rem;
    margin: 12px 0;
  }

  .projects-cards-image button {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* Screens ≤1024px */
@media (max-width: 1024px) {
  .projects-container {
    padding: 80px 40px 60px 40px;
  }

  .projects-container h1 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .projects-button-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .projects-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    margin: 5px;
  }

  .projects-cards {
    gap: 18px;
    padding: 0 15px;
    margin-top: 50px;
  }

  .projects-cards-image {
    flex: 0 1 calc(50% - 9px);
    max-width: calc(50% - 9px);
    width: calc(50% - 9px);
  }

  .projects-cards-image img {
    height: auto;
  }
}

/* Screens ≤768px */
@media (max-width: 768px) {
  .projects-cards {
    gap: 18px;
    padding: 0 15px;
    margin-top: 50px;
  }

  .projects-cards-image {
    flex: 0 1 calc(50% - 9px);
    max-width: calc(50% - 9px);
    width: calc(50% - 9px);
  }

  .projects-cards-image img {
    height: auto;
  }

  .projects-cards h3 {
    font-size: 0.95rem;
    margin: 10px 0;
  }

  .projects-cards-image button {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

/* Screens ≤480px */
@media (max-width: 480px) {
  .projects-container {
    padding: 80px 20px 60px 20px;
  }

  .projects-container h1 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .projects-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
    margin: 3px;
  }

  .projects-cards {
    gap: 15px;
    padding: 0 10px;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }

  .projects-cards-image {
    flex: 0 1 auto;
    max-width: 100%;
    width: 100%;
    max-width: 280px;
  }

  .projects-cards-image img {
    height: auto;
    width: 100%;
  }

  .projects-cards h3 {
    font-size: 1rem;
    margin: 12px 0;
  }

  .projects-cards-image button {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* Screens ≤420px */
@media (max-width: 420px) {
  .projects-container {
    padding: 80px 15px 60px 15px;
  }

  .projects-container h1 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .projects-cards {
    gap: 15px;
    padding: 0 5px;
    margin-top: 0;
  }

  .projects-cards-image {
    max-width: 100%;
    width: 100%;
  }

  .projects-cards-image img {
    height: auto;
  }

  .projects-cards h3 {
    font-size: 0.95rem;
    margin: 10px 0;
  }

  .projects-cards-image button {
    padding: 7px 14px;
    font-size: 0.85rem;
  }
}

/* Screens ≤320px */
@media (max-width: 320px) {
  .projects-container {
    padding: 80px 10px 60px 10px;
  }

  .projects-container h1 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .projects-cards {
    gap: 12px;
    padding: 0;
    margin-top: 0;
  }

  .projects-cards-image {
    max-width: 100%;
    width: 100%;
  }

  .projects-cards-image img {
    height: auto;
  }

  .projects-cards h3 {
    font-size: 0.9rem;
    margin: 8px 0;
  }

  .projects-cards-image button {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

/* Ending of Projects Section (projects-html)*/

/*Beginning of Contact Us (contact.html)*/
.contact-card-section {
  padding: 80px 50px 60px 50px;
  background: #f9f9f9;
  display: flex;
  justify-content: center;
}

.contact-card {
  display: flex;
  flex-wrap: wrap;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1000px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  width: 100%;
}

.contact-card-left {
  background: #c71585;
  color: white;
  flex: 1;
  text-align: center;
  padding: 40px 20px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center; 

}

.profile-pic {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid white;
  margin-bottom: 20px;
}

.contact-card-left h3 {
  margin: 10px 0 5px;
}

.contact-card-left p {
  font-size: 0.95rem;
  margin: 5px 0;
  text-decoration: none;
  color: white;
}

.contact-card-right {
  flex: 2;
  padding: 40px;
  min-width: 300px;
}

.contact-card-right h2 {
  color: #c71585;
  margin-bottom: 20px;
  font-size: 1.8rem;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c71585;
  outline: none;
}

.contact-form button {
  background: #c71585;
  color: white;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #a2146c;
}

.email-btn {
  margin-top: 10px;
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffffff;
  color: #c71585;
  border: 2px solid #c71585;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
  width: fit-content;
  max-width: 100%;
  align-self: center;
}

/* Hover effect */
.email-btn:hover {
  background-color: red;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-card {
    flex-direction: column;
  }

  .contact-card-right {
    padding: 30px 20px;
  }
}

.social-media {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin-top: 20px;
  justify-content: center;
}

.social-media img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.social-media img:hover {
  transform: scale(1.2);
}

/*Ending of Contact Me Page (contact.html*/

/*Beginning of Project Ui/Ux Section (projectuiux.html)*/
.projects-uiux-container {
    justify-content: space-between;
    padding: 80px 50px 60px 50px;
}

.projects-uiux-container h1 {
    text-align: center;
    margin-bottom: 50px;
    color: #c71585;
    font-size: 2rem;
}

.projects-uiux-btn {
  display: inline-block;
  background-color: #c71585;
  color: white;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.projects-uiux-btn:hover {
  background-color: red;
}

.projects-uiux-button-section {
    text-align: center;
    justify-content: space-between;
}

.projects-uiux-button-section button {
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    margin: 20px;
}

.projects-uiux-button-section button a {
    text-decoration: none;
    color: white;
}

.cards-btn {
  display: inline-block;
  background-color: #c71585;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.cards-btn:hover {
  background-color: red;
}

.projects-uiux-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0 10px;
    box-sizing: border-box;
}

.projects-uiux-cards-image {
    margin-bottom: 0;
    margin-top: 0;
    width: 200px;
    height: auto;
    flex: 0 1 200px;
    max-width: 200px;
    background-color: white;
    border: 1px solid lightpink;
    text-align: center;
    overflow: visible;
    box-shadow: 0 4px 8px 0 lightpink;
    transition: transform 0.3s ease;
    padding-bottom: 20px;
    border-radius: 8px;
}

.projects-uiux-cards-image:hover {
    transform: translateY(-5px);
}

.projects-uiux-cards-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
}

.projects-uiux-cards-writeup {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    min-height: 80px;
}

.projects-uiux-cards-writeup h3 {
    font-size: 1.1rem;
    margin: 15px 0;
    color: #444;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.projects-uiux-cards h3 {
  font-size: 1.1rem;
  margin: 15px 0;
  color: #444;
}

/* Project Ui/Ux Responsive Styles */
/* Screens >1280px (Large desktops) */
@media (min-width: 1281px) {
  .projects-uiux-cards {
    gap: 25px;
    padding: 0 20px;
  }

  .projects-uiux-cards-image {
    flex: 0 1 200px;
    max-width: 200px;
    width: 200px;
  }

  .projects-uiux-cards-image img {
    height: auto;
  }
}

/* Screens ≤1280px */
@media (max-width: 1280px) {
  .projects-uiux-cards {
    gap: 20px;
    padding: 0 15px;
  }

  .projects-uiux-cards-image {
    flex: 0 1 200px;
    max-width: 200px;
    width: 200px;
  }

  .projects-uiux-cards-image img {
    height: auto;
  }
}

/* Screens ≤1024px */
@media (max-width: 1024px) {
  .projects-uiux-container {
    padding: 80px 40px 60px 40px;
  }

  .projects-uiux-container h1 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .projects-uiux-button-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .projects-uiux-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    margin: 5px;
  }

  .projects-uiux-cards {
    gap: 18px;
    padding: 0 15px;
    margin-top: 40px;
  }

  .projects-uiux-cards-image {
    flex: 0 1 calc(50% - 9px);
    max-width: calc(50% - 9px);
    width: calc(50% - 9px);
  }

  .projects-uiux-cards-image img {
    height: auto;
  }

  .projects-uiux-cards-writeup h3 {
    font-size: 1rem;
    margin: 12px 0;
  }

  .projects-uiux-cards-writeup .cards-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* Screens ≤768px */
@media (max-width: 768px) {
  .projects-uiux-container {
    padding: 80px 40px 60px 40px;
  }

  .projects-uiux-container h1 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .projects-uiux-button-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .projects-uiux-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    margin: 5px;
  }

  .projects-uiux-cards {
    gap: 18px;
    padding: 0 15px;
    margin-top: 40px;
  }

  .projects-uiux-cards-image {
    flex: 0 1 calc(50% - 9px);
    max-width: calc(50% - 9px);
    width: calc(50% - 9px);
  }

  .projects-uiux-cards-image img {
    height: auto;
  }

  .projects-uiux-cards-writeup h3 {
    font-size: 0.95rem;
    margin: 10px 0;
  }

  .projects-uiux-cards-writeup .cards-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

/* Screens ≤480px */
@media (max-width: 480px) {
  .projects-uiux-container {
    padding: 80px 20px 60px 20px;
  }

  .projects-uiux-container h1 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .projects-uiux-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
    margin: 3px;
  }

  .projects-uiux-cards {
    gap: 15px;
    padding: 0 10px;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }

  .projects-uiux-cards-image {
    flex: 0 1 auto;
    max-width: 100%;
    width: 100%;
    max-width: 280px;
  }

  .projects-uiux-cards-image img {
    height: auto;
    width: 100%;
  }

  .projects-uiux-cards-writeup h3 {
    font-size: 1rem;
    margin: 12px 0;
  }

  .projects-uiux-cards-writeup .cards-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* Screens ≤420px */
@media (max-width: 420px) {
  .projects-uiux-container {
    padding: 80px 15px 60px 15px;
  }

  .projects-uiux-container h1 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .projects-uiux-cards {
    gap: 15px;
    padding: 0 5px;
    margin-top: 0;
  }

  .projects-uiux-cards-image {
    max-width: 100%;
    width: 100%;
  }

  .projects-uiux-cards-image img {
    height: auto;
  }

  .projects-uiux-cards-writeup h3 {
    font-size: 0.95rem;
    margin: 10px 0;
  }

  .projects-uiux-cards-writeup .cards-btn {
    padding: 7px 14px;
    font-size: 0.85rem;
  }
}

/* Screens ≤320px */
@media (max-width: 320px) {
  .projects-uiux-container {
    padding: 80px 10px 60px 10px;
  }

  .projects-uiux-container h1 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .projects-uiux-cards {
    gap: 12px;
    padding: 0;
    margin-top: 0;
  }

  .projects-uiux-cards-image {
    max-width: 100%;
    width: 100%;
  }

  .projects-uiux-cards-image img {
    height: auto;
  }

  .projects-uiux-cards-writeup h3 {
    font-size: 0.9rem;
    margin: 8px 0;
  }

  .projects-uiux-cards-writeup .cards-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}
/*Ending of Project Ui/Ux (projectsuiux.html)*/


/*Beginning of LS Logo Page (lslogo.html)*/
.about-ls-logo {
  background-color: #fff;
  padding: 50px 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-ls-logo h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.ls-logo-writeup h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  color: #c71585;
}

.ls-logo-writeup p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 15px 0;
  color: #444;
}

.ls-logo-writeup ul {
  padding-left: 20px;
  margin-top: 10px;
}

.ls-logo-writeup ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  color: #555;
}

.ls-section h1 {
  text-align: center;
  color: #c71585;
  margin: 50px;
  font-size: 2.5rem;
}

.image-gallery-lslogo {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
}

.image-gallery-lslogo img {
  max-width: 200px;
  width: auto;
  height: auto;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: contain;
}

.image-gallery-lslogo img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* Modal Style */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: none;
  backdrop-filter: blur(5px);
}

/* Modal image */
.modal-content {
  display: block;
  max-width: 90%;
  max-height: 80vh;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  animation: zoomIn 0.4s ease;
  object-fit: contain;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1000;
}

.close:hover,
.close:focus {
  color: #ff4d4d;
  transform: scale(1.2);
}

/* Navigation arrows for image modal */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  padding: 16px;
  -webkit-user-select: none;
  user-select: none;
  z-index: 1001;
  transition: 0.3s;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-arrow:hover {
  background-color: rgba(0, 0, 0, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.nav-arrow.prev {
  left: 20px;
}

.nav-arrow.next {
  right: 20px;
}

/* Ensure modal displays as flex for proper centering */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: none;
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
}

.modal[style*="flex"] {
  display: flex !important;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Beginning of Responsive Screens for ls Logo Page */

/*Beginning of Small Phones (320px)*/
@media (max-width: 320px) {
  .about-ls-logo {
    padding: 25px 15px;
  }

  .about-ls-logo h1 {
    font-size: 1.5rem;
  }

  .ls-logo-writeup h3 {
    font-size: 1.1rem;
  }

  .ls-logo-writeup p,
  .ls-logo-writeup ul li {
    font-size: 0.9rem;
  }

  .image-gallery-lslogo {
    gap: 10px;
  }

  .image-gallery-lslogo img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}
/*Ending of Small Phones (320px)*/

/* Beginning of Big Phones (480px)*/
@media (max-width: 480px) {
  .about-ls-logo {
    padding: 30px 20px;
  }

  .about-ls-logo h1 {
    font-size: 1.8rem;
  }

  .ls-logo-writeup h3 {
    font-size: 1.2rem;
  }

  .image-gallery-lslogo {
    gap: 12px;
  }

  .image-gallery-lslogo img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}
/* Ending of Big Phones (480px)*/

/* Beginning of Tablet Screens (768px) */
@media (max-width: 768px) {
  .about-ls-logo {
    padding: 40px 30px;
  }

  .about-ls-logo h1 {
    font-size: 2rem;
  }

  .image-gallery-lslogo {
    gap: 15px;
  }

  .image-gallery-lslogo img {
    max-width: 45%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}
/* Ending of Tablet Screens (768px) */

/* Beginning of Small Laptop Screens (1024px)*/
@media (max-width: 1024px) {
  .about-ls-logo {
    padding: 50px 40px;
  }

  .image-gallery-lslogo img {
    max-width: 30%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}
/* Ending of Small Laptop Screens (1024px)*/

/* Beginning of Large Laptop Screens (1280px)*/
@media (max-width: 1280px) {
  .about-ls-logo {
    padding: 60px 50px;
  }

  .image-gallery-lslogo img {
    max-width: 25%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}
/* Ending of Large Laptop Screens (1280px)*/

/* Beginning of Extra Large Screens */
@media (min-width: 1281px) {
  .about-ls-logo {
    max-width: 1200px;
    margin: 0 auto;
  }

  .image-gallery-lslogo img {
    max-width: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}
/* Ending of Extra Large Screens (1440px)*/
/* Ending of Responsive Screens for ls Logo Page */
/* Ending of LS Logo Page */

/*Beginning of HR Logo Page (hrlogo.html)*/
.about-hr-logo {
  background-color: #fff;
  padding: 50px 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-hr-logo h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.hr-logo-writeup h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  color: #c71585;
}

.hr-logo-writeup p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 15px 0;
  color: #444;
}

.hr-logo-writeup ul {
  padding-left: 20px;
  margin-top: 10px;
}

.hr-logo-writeup ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  color: #555;
} 

.hr-logo-section h1 {
    text-align: center;
    color: #c71585;
    margin: 50px;
    font-size: 2.5rem;
}

.image-gallery-hr-logo {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
}

.image-gallery-hr-logo img {
  max-width: 200px;
  width: auto;
  height: auto;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: contain;
}

.image-gallery-hr-logo img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* Modal Style */
/* Beginning of Modal Section */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur();
  backdrop-filter: blur(5px);
}

/* Modal image */
.modal-content {
  display: block;
  max-width: 90%;
  max-height: 80vh;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  animation: zoomIn 0.4s ease;
  object-fit: contain;
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1000;
}

.close:hover,
.close:focus {
  color: #ff4d4d;
  transform: scale(1.2);
}

/* Optional animation */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Beginning of Responsive Code for all screens*/
/* Beginning of Small Phone (320px)*/
@media (max-width: 320px) {
  .about-hr-logo {
    padding: 25px 15px;
  }

  .about-hr-logo h1 {
    font-size: 1.5rem;
  }

  .hr-logo-writeup h3 {
    font-size: 1.1rem;
  }

  .hr-logo-writeup p,
  .hr-logo-writeup ul li {
    font-size: 0.9rem;
  }

  .image-gallery-hr-logo {
    gap: 10px;
  }

  .image-gallery-hr-logo img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}
/*Ending of Small Phone (320px)*/

/* Beginning of Big Phones (480px)*/
@media (max-width: 480px) {
  .about-hr-logo {
    padding: 30px 20px;
  }

  .about-hr-logo h1 {
    font-size: 1.8rem;
  }

  .hr-logo-writeup h3 {
    font-size: 1.2rem;
  }

  .image-gallery-hr-logo {
    gap: 12px;
  }

  .image-gallery-hr-logo img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}
/* Ending of Big Phones (480px)*/

/* Beginning of Tablets Screens (768px)*/
@media (max-width: 768px) {
  .about-hr-logo {
    padding: 40px 30px;
  }

  .about-hr-logo h1 {
    font-size: 2rem;
  }

  .image-gallery-hr-logo {
    gap: 15px;
  }

  .image-gallery-hr-logo img {
    max-width: 45%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}
/* Ending of Tablets Screens (768px)*/

/* Beginning of Small Laptop Screens (1024px)*/
@media (max-width: 1024px) {
  .about-hr-logo {
    padding: 50px 40px;
  }

  .image-gallery-hr-logo img {
    max-width: 30%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}
/* Ending of Small Laptop Screens */

/* Beginning of Large Laptop Screen*/
@media (max-width: 1280px) {
  .about-hr-logo {
    padding: 60px 50px;
  }

  .image-gallery-hr-logo img {
    max-width: 25%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}
/* Ending of Large Laptop Screen*/

/* Beginning of Extra Large Laptop Screens */
@media (min-width: 1281px) {
  .about-hr-logo {
    max-width: 1200px;
    margin: 0 auto;
  }

  .image-gallery-hr-logo img {
    max-width: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}
/* Ending of Extra Large Laptop Screens */
/* Ending of Responsive Code for all screens*/
/*Ending of HR Logo Page (hrlogo.html)*/

/*Beginning of Mima's Fast Food Logo (mimasfastfood.html)*/
.about-mimasfastfood-logo {
  background-color: #fff;
  padding: 50px 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-mimasfastfood-logo h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.mimasfastfood-logo-writeup h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  color: #c71585;
}

.mimasfastfood-logo-writeup p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 15px 0;
  color: #444;
}

.mimasfastfood-logo-writeup ul {
  padding-left: 20px;
  margin-top: 10px;
}

.mimasfastfood-logo-writeup ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  color: #555;
} 

.mimasfastfood-logo-section h1 {
    text-align: center;
    color: #c71585;
    margin: 50px;
    font-size: 2.5rem;
}

.image-gallery-mimasfastfood-logo {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
}

.image-gallery-mimasfastfood-logo img {
  max-width: 200px;
  width: auto;
  height: auto;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: contain;
}

.image-gallery-mimasfastfood-logo img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.mimasfastfood-logo-testimonial-container {
  margin-bottom: 50px;
}

.mimasfastfood-logo-testimonial-container h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.mimasfastfood-logo-testimonial-section {
    display: flex;
    justify-content: center;  
    align-items: center;      
    padding: 20px;
}

.mimasfastfood-logo-testimonial-card {
    background-color: white;
    border: 1px solid #ffc0cb;
    box-shadow: 0 4px 8px rgba(255, 192, 203, 0.3);
    padding: 20px;
    width: 300px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    text-align: center;
} 

.mimasfastfood-logo-testimonial-card:hover {
    transform: translateY(-5px);
}
/* Modal Style */
/* Beginning of Modal Section */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur();
  backdrop-filter: blur(5px);
}

/* Modal image */
.modal-content {
  display: block;
  max-width: 90%;
  max-height: 80vh;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  animation: zoomIn 0.4s ease;
  object-fit: contain;
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1000;
}

.close:hover,
.close:focus {
  color: #ff4d4d;
  transform: scale(1.2);
}

/* Optional animation */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Beginning of Responsive Code for all screens */
/* Beginning of Small Phone (320px)*/
@media (max-width: 320px) {
  .about-mimasfastfood-logo {
    padding: 25px 15px;
  }

  .about-mimasfastfood-logo h1 {
    font-size: 1.5rem;
  }

  .mimasfastfood-logo-writeup h3 {
    font-size: 1.1rem;
  }

  .mimasfastfood-logo-writeup p, 
  .mimasfastfood-logo-writeup ul li {
    font-size: 0.9rem;
  }

  .image-gallery-mimasfastfood-logo {
    gap: 10px;
  }

  .image-gallery-mimasfastfood-logo img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .mimasfastfood-logo-testimonial-card {
    width: 90%;
  }
}
/* Ending of Small Phone (320px) */

/* Beginning of Big Phone (480px) */
@media (max-width: 480px) {
  .about-mimasfastfood-logo {
    padding: 30px 20px;
  }

  .about-mimasfastfood-logo h1 {
    font-size: 1.8rem;
  }

  .mimasfastfood-logo-writeup h3 {
    font-size: 1.2rem;
  }

  .image-gallery-mimasfastfood-logo {
    gap: 12px;
  }

  .image-gallery-mimasfastfood-logo img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .mimasfastfood-logo-testimonial-section {
    flex-direction: column;
    gap: 20px;
  }

  .mimasfastfood-logo-testimonial-card {
    width: 90%;
  }
}
/* Ending of Big Phones (480px)*/

/* Beginning of Tablet Screens (768px)*/
@media (max-width: 768px) {
  .about-mimasfastfood-logo {
    padding: 40px 30px;
  }

  .about-mimasfastfood-logo h1 {
    font-size: 2rem;
  }

  .image-gallery-mimasfastfood-logo {
    gap: 15px;
  }

  .image-gallery-mimasfastfood-logo img {
    max-width: 45%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .mimasfastfood-logo-testimonial-section {
    flex-wrap: wrap;
    gap: 30px;
  }

  .mimasfastfood-logo-testimonial-card {
    width: 80%;
  }
}
/* Ending of Tablet Screens (768px)*/

/* Beginning of Small Laptop Screens (1024px) */
@media (max-width: 1024px) {
  .about-mimasfastfood-logo {
    padding: 50px 40px;
  }

  .image-gallery-mimasfastfood-logo img {
    max-width: 30%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .mimasfastfood-logo-testimonial-card {
    width: 350px;
  }
}
/* Ending of Small Laptop Screens */

/* Beginning of Large Laptop Screens (1280px)*/
@media (max-width: 1280px) {
  .about-mimasfastfood-logo {
    padding: 60px 50px;
  }

  .image-gallery-mimasfastfood-logo img {
    max-width: 25%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .mimasfastfood-logo-testimonial-card {
    width: 320px;
  }
}
/* Ending of Large Laptop Screens (1280px)*/

/* Beginnig of Extra Large Laptop Screens */
@media (min-width: 1281px) {
  .about-mimasfastfood-logo {
    max-width: 1200px;
    margin: 0 auto;
  }

  .image-gallery-mimasfastfood-logo img {
    max-width: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .mimasfastfood-logo-testimonial-card {
    width: 320px;
  }
}
/* Ending of Extra Large Laptop Screens (1440px)*/
/* Ending of Responsive Code for all screens */
/*Ending of Mima's Fast Food Logo (mimasfastfoodlogo.html)*/

/*Beginning of Emmanic Gadgets Flyer (emmanicgadgets.html)*/
.about-emmanic {
  background-color: #fff;
  padding: 50px 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-emmanic h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.emmanic-writeup h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  color: #c71585;
}

.emmanic-writeup p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 15px 0;
  color: #444;
}

.emmanic-writeup ul {
  padding-left: 20px;
  margin-top: 10px;
}

.emmanic-writeup ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  color: #555;
} 

.emmanic-section h1 {
    text-align: center;
    color: #c71585;
    margin: 50px;
    font-size: 2.5rem;
}

.image-gallery-emmanic {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
  margin-bottom: 50px;
}

.image-gallery-emmanic img {
  max-width: 300px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.image-gallery-emmanic img:hover {
  transform: scale(1.05);
}

.emmanic-testimonial-container {
  margin-bottom: 50px;
}

.emmanic-testimonial-container h1{
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.emmanic-testimonial-card {
    background-color: white;
    border: 1px solid #ffc0cb;
    box-shadow: 0 4px 8px rgba(255, 192, 203, 0.3);
    padding: 20px;
    width: 300px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    text-align: center;
} 

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

.emmanic-testimonial-section {
    display: flex;
    justify-content: center;  
    align-items: center;      
    padding: 20px;
}

/* Modal Style */
/* Beginning of Modal Section */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur();
  backdrop-filter: blur(5px);
}

/* Modal image */
.modal-content {
  display: block;
  max-width: 90%;
  max-height: 80vh;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  animation: zoomIn 0.4s ease;
  object-fit: contain;
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1000;
}

.close:hover,
.close:focus {
  color: #ff4d4d;
  transform: scale(1.2);
}

/* Optional animation */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/*Ending of Emmanic Gadgets Flyer(emmanicgadgets.html)*/

/*Beginning of Royent Logo Section (royentlogo.html)*/
.about-royent-logo {
  background-color: #fff;
  padding: 50px 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-royent-logo h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.royent-logo-writeup h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  color: #c71585;
}

.royent-logo-writeup p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 15px 0;
  color: #444;
}

.royent-logo-writeup ul {
  padding-left: 20px;
  margin-top: 10px;
}

.royent-logo-writeup ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  color: #555;
} 

.royent-logo-section h1 {
    text-align: center;
    color: #c71585;
    margin: 50px;
    font-size: 2.5rem;
}

.image-gallery-royent-logo {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
}

.image-gallery-royent-logo img {
  max-width: 200px;
  width: auto;
  height: auto;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: contain;
}

.image-gallery-royent-logo img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.royent-logo-testimonial-container {
  margin-bottom: 50px;
}

.royent-logo-testimonial-container h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.royent-logo-testimonial-section {
    display: flex;
    justify-content: center;  
    align-items: center;      
    padding: 20px;
}

.royent-logo-testimonial-card {
    background-color: white;
    border: 1px solid #ffc0cb;
    box-shadow: 0 4px 8px rgba(255, 192, 203, 0.3);
    padding: 20px;
    width: 300px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    text-align: center;
} 

.royent-logo-testimonial-card:hover {
    transform: translateY(-5px);
}

/* Modal Style */
/* Beginning of Modal Section */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur();
  backdrop-filter: blur(5px);
}

/* Modal image */
.modal-content {
  display: block;
  max-width: 90%;
  max-height: 80vh;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  animation: zoomIn 0.4s ease;
  object-fit: contain;
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1000;
}

.close:hover,
.close:focus {
  color: #ff4d4d;
  transform: scale(1.2);
}

/* Optional animation */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Beginning of Responsive Code of all screens */
/* Beginning of Small Phone (320px) */
@media (max-width: 320px) {
  .about-royent-logo {
    padding: 25px 15px;
  }

  .about-royent-logo h1 {
    font-size: 1.5rem;
  }

  .royent-logo-writeup h3 {
    font-size: 1.1rem;
  }

  .royent-logo-writeup p,
  .royent-logo-writeup ul li {
    font-size: 0.9rem;
  }

  .image-gallery-royent-logo {
    gap: 10px;
  }

  .image-gallery-royent-logo img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .royent-logo-testimonial-card {
    width: 90%;
  }
}
/* Ending of Small Phone (320px)*/

/* Beginning of Big Phone (480px) */
@media (max-width: 480px) {
  .about-royent-logo {
    padding: 30px 20px;
  }

  .about-royent-logo h1 {
    font-size: 1.8rem;
  }

  .royent-logo-writeup h3 {
    font-size: 1.2rem;
  }

  .image-gallery-royent-logo {
    gap: 12px;
  }

  .image-gallery-royent-logo img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .royent-logo-testimonial-section {
    flex-direction: column;
    gap: 20px;
  }

  .royent-logo-testimonial-card {
    width: 90%;
  }
}
/* Ending of Big Phone (480px)*/

/* Beginning of Tablet Screens (768px)*/
@media (max-width: 768px) {
  .about-royent-logo {
    padding: 40px 30px;
  }

  .about-royent-logo h1 {
    font-size: 2rem;
  }

  .image-gallery-royent-logo {
    gap: 15px;
  }

  .image-gallery-royent-logo img {
    max-width: 45%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .royent-logo-testimonial-section {
    flex-wrap: wrap;
    gap: 30px;
  }

  .royent-logo-testimonial-card {
    width: 80%;
  }
}
/* Ending of Tablet Screens (768px)*/

/* Beginning of Small Laptop Screens (1024px)*/
@media (max-width: 1024px) {
  .about-royent-logo {
    padding: 50px 40px;
  }

  .image-gallery-royent-logo img {
    max-width: 30%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .royent-logo-testimonial-card {
    width: 350px;
  }
}
/* Ending of Small Laptop Screens (1024px) */

/* Beginning of Large Laptop Screens (1280px) */
@media (max-width: 1280px) {
  .about-royent-logo {
    padding: 60px 50px;
  }

  .image-gallery-royent-logo img {
    max-width: 25%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .royent-logo-testimonial-card {
    width: 320px;
  }
}
/* Ending of Large Laptop Screens (1280px)*/

/* Beginning of Extra Large Laptop Screens */
@media (min-width: 1281px) {
  .about-royent-logo {
    max-width: 1200px;
    margin: 0 auto;
  }

  .image-gallery-royent-logo img {
    max-width: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .royent-logo-testimonial-card {
    width: 320px;
  }
}
/* Ending of Extra Large Laptop Screens (1440px)*/
/* End of Responsive Code of all screens */ 
/*Ending of Royent Logo Section (royentlogo.html)*/



/*Beginning of Frontend Section (projectsfrontend.html)*/
.projects-frontend-container {
    justify-content: space-between;
    padding: 80px 50px 60px 50px;
}

.projects-frontend-container h1 {
    text-align: center;
    margin-bottom: 50px;
    color: #c71585;
    font-size: 2rem;
}

.projects-frontend-btn {
  display: inline-block;
  background-color: #c71585;
  color: white;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.projects-frontend-btn:hover {
  background-color: red;
}

.projects-frontend-button-section {
    text-align: center;
    justify-content: space-between;
}

.projects-frontend-button-section button {
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    margin: 20px;
}

.projects-frontend-button-section button a {
    text-decoration: none;
    color: white;
}

.frontend-container {
    justify-content: space-between;
    padding: 60px 50px;
}

.frontend-container h1 {
    text-align: center;
    margin-bottom: 50px;
    color: #c71585;
}

.frontend-btn {
  display: inline-block;
  background-color: #c71585;
  color: white;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.frontend-btn:hover {
  background-color: red;
}


.frontend-button-section {
    text-align: center;
    justify-content: space-between;
}

.frontend-button-section button {
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    margin: 20px;
}

.frontend-button-section button a {
    text-decoration: none;
    color: white;
}

.cards-btn {
  display: inline-block;
  background-color: #c71585;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.cards-btn:hover {
  background-color: red;
}

.frontend-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0 10px;
    box-sizing: border-box;
}

.frontend-cards-image {
    margin-bottom: 0;
    margin-top: 0;
    width: 200px;
    height: auto;
    flex: 0 1 200px;
    max-width: 200px;
    background-color: white;
    border: 1px solid lightpink;
    text-align: center;
    overflow: visible;
    box-shadow: 0 4px 8px 0 lightpink;
    transition: transform 0.3s ease;
    padding-bottom: 20px;
    border-radius: 8px;
}

.frontend-cards-image:hover {
    transform: translateY(-5px);
}

.frontend-cards-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
}

.frontend-cards-writeup {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    min-height: 80px;
}

.frontend-cards-writeup h3 {
    font-size: 1.1rem;
    margin: 15px 0;
    color: #444;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.frontend-cards h3 {
  font-size: 1.1rem;
  margin: 15px 0;
  color: #444;
}

/* Frontend Section Responsive Styles */
/* Screens >1280px (Large desktops) */
@media (min-width: 1281px) {
  .frontend-cards {
    gap: 25px;
    padding: 0 20px;
  }

  .frontend-cards-image {
    flex: 0 1 200px;
    max-width: 200px;
    width: 200px;
  }

  .frontend-cards-image img {
    height: auto;
  }
}

/* Screens ≤1280px */
@media (max-width: 1280px) {
  .frontend-cards {
    gap: 20px;
    padding: 0 15px;
  }

  .frontend-cards-image {
    flex: 0 1 200px;
    max-width: 200px;
    width: 200px;
  }

  .frontend-cards-image img {
    height: auto;
  }
}

/* Screens ≤1024px */
@media (max-width: 1024px) {
  .projects-frontend-container {
    padding: 80px 40px 60px 40px;
  }

  .projects-frontend-container h1 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .projects-frontend-button-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .frontend-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    margin: 5px;
  }

  .frontend-cards {
    gap: 18px;
    padding: 0 15px;
    margin-top: 40px;
  }

  .frontend-cards-image {
    flex: 0 1 calc(50% - 9px);
    max-width: calc(50% - 9px);
    width: calc(50% - 9px);
  }

  .frontend-cards-image img {
    height: auto;
  }

  .frontend-cards-writeup h3 {
    font-size: 1rem;
    margin: 12px 0;
  }

  .frontend-cards-writeup .cards-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* Screens ≤768px */
@media (max-width: 768px) {
  .projects-frontend-container {
    padding: 80px 40px 60px 40px;
  }

  .projects-frontend-container h1 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .projects-frontend-button-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .frontend-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    margin: 5px;
  }

  .frontend-cards {
    gap: 18px;
    padding: 0 15px;
    margin-top: 40px;
  }

  .frontend-cards-image {
    flex: 0 1 calc(50% - 9px);
    max-width: calc(50% - 9px);
    width: calc(50% - 9px);
  }

  .frontend-cards-image img {
    height: auto;
  }

  .frontend-cards-writeup h3 {
    font-size: 0.95rem;
    margin: 10px 0;
  }

  .frontend-cards-writeup .cards-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

/* Screens ≤480px */
@media (max-width: 480px) {
  .projects-frontend-container {
    padding: 80px 20px 60px 20px;
  }

  .projects-frontend-container h1 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .frontend-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
    margin: 3px;
  }

  .frontend-cards {
    gap: 15px;
    padding: 0 10px;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }

  .frontend-cards-image {
    flex: 0 1 auto;
    max-width: 100%;
    width: 100%;
    max-width: 280px;
  }

  .frontend-cards-image img {
    height: auto;
    width: 100%;
  }

  .frontend-cards-writeup h3 {
    font-size: 1rem;
    margin: 12px 0;
  }

  .frontend-cards-writeup .cards-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* Screens ≤420px */
@media (max-width: 420px) {
  .projects-frontend-container {
    padding: 80px 15px 60px 15px;
  }

  .projects-frontend-container h1 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .frontend-cards {
    gap: 15px;
    padding: 0 5px;
    margin-top: 0;
  }

  .frontend-cards-image {
    max-width: 100%;
    width: 100%;
  }

  .frontend-cards-image img {
    height: auto;
  }

  .frontend-cards-writeup h3 {
    font-size: 0.95rem;
    margin: 10px 0;
  }

  .frontend-cards-writeup .cards-btn {
    padding: 7px 14px;
    font-size: 0.85rem;
  }
}

/* Screens ≤320px */
@media (max-width: 320px) {
  .projects-frontend-container {
    padding: 80px 10px 60px 10px;
  }

  .projects-frontend-container h1 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .frontend-cards {
    gap: 12px;
    padding: 0;
    margin-top: 0;
  }

  .frontend-cards-image {
    max-width: 100%;
    width: 100%;
  }

  .frontend-cards-image img {
    height: auto;
  }

  .frontend-cards-writeup h3 {
    font-size: 0.9rem;
    margin: 8px 0;
  }

  .frontend-cards-writeup .cards-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}
/*Ending of Frontend Section (projectsfrontend.html)*/

/*Beginning of Auspis Prime Section (auspisprime.html)*/
.about-auspisprime {
  background-color: #fff;
  padding: 50px 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-auspisprime h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.auspisprime-writeup h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  color: #c71585;
}

.auspisprime-writeup p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 15px 0;
  color: #444;
}

.auspisprime-writeup ul {
  padding-left: 20px;
  margin-top: 10px;
}

.auspisprime-writeup ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  color: #555;
} 

.auspisprime-section h1 {
    text-align: center;
    color: #c71585;
    margin: 50px;
    font-size: 2.5rem;
}

.image-gallery-auspisprime {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
  margin-bottom: 50px;
}

.image-gallery-auspisprime img {
  max-width: 200px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px lightpink;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-gallery-auspisprime img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px lightpink;
}

.auspisprime-video {
    justify-content: center;
    padding: 30px 50px;
    text-align: center;
    margin-bottom: 50px;
}

.auspisprime-video video {
    width: 100%;
    height: auto;
    border-bottom: 2px solid pink;
}

.auspisprime-testimonial-container {
  margin-bottom: 50px;
}

.auspisprime-testimonial-container h1{
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.auspisprime-testimonial-card {
    background-color: white;
    border: 1px solid #ffc0cb;
    box-shadow: 0 4px 8px rgba(255, 192, 203, 0.3);
    padding: 20px;
    width: 300px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    text-align: center;
} 

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

.auspisprime-testimonial-section {
    display: flex;
    justify-content: center;  
    align-items: center;      
    padding: 20px;
}

/* Beginning of Responsive Code for all Screen*/
/* ============================= */
/* RESPONSIVE DESIGN BREAKPOINTS */
/* ============================= */

/* Small phones (≤320px) */
@media (max-width: 320px) {
  .about-auspisprime {
    padding: 25px 15px;
  }

  .about-auspisprime h1 {
    font-size: 1.5rem;
  }

  .auspisprime-writeup h3 {
    font-size: 1.1rem;
  }

  .auspisprime-writeup p,
  .auspisprime-writeup ul li {
    font-size: 0.9rem;
  }

  .image-gallery-auspisprime {
    gap: 10px;
  }

  .image-gallery-auspisprime img {
    max-width: 100%;
  }

  .auspisprime-video {
    padding: 20px 10px;
  }

  .auspisprime-video video {
    max-width: 100%;
  }

  .auspisprime-testimonial-card {
    width: 90%;
  }
}

/* Phones (≤480px) */
@media (max-width: 480px) {
  .about-auspisprime {
    padding: 30px 20px;
  }

  .about-auspisprime h1 {
    font-size: 1.8rem;
  }

  .auspisprime-writeup h3 {
    font-size: 1.2rem;
  }

  .image-gallery-auspisprime {
    gap: 12px;
  }

  .image-gallery-auspisprime img {
    max-width: 100%;
  }

  .auspisprime-video {
    padding: 20px 15px;
  }

  .auspisprime-video video {
    max-width: 100%;
  }

  .auspisprime-testimonial-section {
    flex-direction: column;
    gap: 20px;
  }

  .auspisprime-testimonial-card {
    width: 90%;
  }
}

/* Tablets (≤768px) */
@media (max-width: 768px) {
  .about-auspisprime {
    padding: 40px 30px;
  }

  .about-auspisprime h1 {
    font-size: 2rem;
  }

  .image-gallery-auspisprime {
    gap: 15px;
  }

  .image-gallery-auspisprime img {
    max-width: 45%;
  }

  .auspisprime-video {
    padding: 20px 25px;
  }

  .auspisprime-video video {
    max-width: 80%;
  }

  .auspisprime-testimonial-section {
    flex-wrap: wrap;
    gap: 30px;
  }

  .auspisprime-testimonial-card {
    width: 80%;
  }
}

/* Small laptops (≤1024px) */
@media (max-width: 1024px) {
  .about-auspisprime {
    padding: 50px 40px;
  }

  .image-gallery-auspisprime img {
    max-width: 30%;
  }

  .auspisprime-video video {
    max-width: 70%;
  }

  .auspisprime-testimonial-card {
    width: 350px;
  }
}

/* Large screens (≤1280px) */
@media (max-width: 1280px) {
  .about-auspisprime {
    padding: 60px 50px;
  }

  .image-gallery-auspisprime img {
    max-width: 25%;
  }

  .auspisprime-video video {
    max-width: 60%;
  }

  .auspisprime-testimonial-card {
    width: 320px;
  }
}

/* Extra large screens (>1280px) */
@media (min-width: 1281px) {
  .about-auspisprime {
    max-width: 1200px;
    margin: 0 auto;
  }

  .image-gallery-auspisprime img {
    max-width: 220px;
  }

  .auspisprime-video video {
    max-width: 500px;
  }

  .auspisprime-testimonial-card {
    width: 320px;
  }
}

/* Ending of Responsive Code for all Screen*/
/*Ending of Auspisprime Flyers Section (auspisprime.html)*/

/*Beginning of Mima's Online Store Flyers Section (mimasonlinestoreflyers.html)*/
.about-mimasonlinestore-flyer {
  background-color: #fff;
  padding: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-mimasonlinestore-flyer h1 {
  color: #c71585;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.mimasonlinestore-flyer-writeup h3 {
  margin-top: 30px;
  color: #c71585;
}

.mimasonlinestore-flyer-writeup p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 15px 0;
  color: #444;
}

.mimasonlinestore-flyer-writeup ul {
  padding-left: 20px;
  margin-top: 10px;
}

.mimasonlinestore-flyer-writeup ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  color: #555;
} 

.mimasonlinestore-flyer-section h1 {
    text-align: center;
    color: #c71585;
    margin: 50px;
    font-size: 2.5rem;
}

.image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
}

.image-gallery img {
  max-width: 300px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px lightpink;
  transition: transform 0.3s ease;
}

.image-gallery-mimasonlinestore-flyers {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
  margin-bottom: 50px;
}

.image-gallery-mimasonlinestore-flyers img {
  max-width: 200px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px lightpink;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-gallery-mimasonlinestore-flyers img:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px lightpink;
}

 .mimasonlinestore-video {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.mimasonlinestore-video h1 {
  font-size: 2rem;
  margin-bottom: 50px;
  font-weight: 700;
}

.image-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px lightpink;
}

.mimasonlinestore-flyers-testimonial-container {
  margin-bottom: 50px;
}

.mimasonlinestore-flyers-testimonial-container h1{
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.mimasonlinestore-flyers-testimonial-card {
    background-color: white;
    border: 1px solid #ffc0cb;
    box-shadow: 0 4px 8px rgba(255, 192, 203, 0.3);
    padding: 20px;
    width: 300px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    text-align: center;
} 

.mimasonlinestore-flyers-testimonial-card:hover {
    transform: translateY(-5px);
}

.mimasonlinestore-flyers-testimonial-section {
    display: flex;
    justify-content: center;  
    align-items: center;      
    padding: 20px;
}

/* Modal Style */
/* Beginning of Modal Section */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur();
  backdrop-filter: blur(5px);
}

/* Modal image */
.modal-content {
  display: block;
  max-width: 90%;
  max-height: 80vh;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  animation: zoomIn 0.4s ease;
  object-fit: contain;
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1000;
}

.close:hover,
.close:focus {
  color: #ff4d4d;
  transform: scale(1.2);
}

/* Optional animation */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* Responsive CSS for Mima's Online Store Flyers */
/* ≤ 320px (Extra small phones) */
@media (max-width: 320px) {
  .image-gallery-mimasonlinestore-flyers img {
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}

/* ≤ 480px (Small phones) */
@media (max-width: 480px) {
  .image-gallery-mimasonlinestore-flyers img {
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}

/* ≤ 768px (Tablets and larger phones) */
@media (max-width: 768px) {
  .image-gallery-mimasonlinestore-flyers img {
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}

/*Ending of Mima's Online Store Flyer Section (mimasonlnestoreflyers.html)*/

/*Beginning of Royent Flyers Section (royentflyer.html)*/
.about-royent-flyer {
  background-color: #fff;
  padding: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-royent-flyer h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.royent-flyer-writeup h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  color: #c71585;
}

.royent-flyer-writeup p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 15px 0;
  color: #444;
}

.royent-flyer-writeup ul {
  padding-left: 20px;
  margin-top: 10px;
}

.royent-flyer-writeup ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  color: #555;
} 

.royent-flyer-section h1 {
    text-align: center;
    color: #c71585;
    margin: 50px;
    font-size: 2.5rem;
}

.image-gallery-royent-flyers {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
  margin-bottom: 50px;
}

.image-gallery-royent-flyers img {
  max-width: 200px;
  width: auto;
  height: auto;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba (0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: contain;
}

.image-gallery-royent-flyers img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.royent-testimonial-container {
  margin-bottom: 50px;
}

.royent-testimonial-container h1{
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.royent-logo-testimonial-card {
  background-color: white;
  border: 1px solid #ffc0cb;
  box-shadow: 0 4px 8px rgba(255, 192, 203, 0.3);
  padding: 20px;
  width: 300px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  text-align: center;
}

.royent-logo-testimonial-card:hover {
  transform: translateY(-5px);
}

.royent-logo-testimonial-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Modal default hidden */
.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0, 0, 0, 0.8); 
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur();
  backdrop-filter: blur(5px);
}

/* Modal content */
.modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  animation: zoom 0.3s ease-in-out;
}

/* Zoom animation */
@keyframes zoom {
  from {transform: scale(0.7);}
  to {transform: scale(1);}
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1000;
}

.close:hover, 
.close:focus {
  color: #ff5a5a;
  transform: scale(1.2);
}

/* Optional animation */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/*Responsive CSS for Royent Flyers*/
/* ≤ 320px (Extra small phones) */
@media (max-width: 320px) {
  .about-royent-flyer {
    padding: 25px 15px;
  }

  .royent-flyer-section h1 {
    font-size: 1.5rem;
  }

  .royent-flyer-section h3 {
    font-size: 1.1rem;
  }

  .royent-flyer-writeup p,
  .royent-flyer-writeup ul li {
    font-size: 0.9rem;
  }

  .image-gallery-royent-flyers {
    gap: 10px;
  }

  .image-gallery-royent-flyers img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .royent-logo-testimonial-card {
    width: 90%;
  }
}

/* ≤ 480px (Small phones) */
@media (max-width: 480px) {
   .about-royent-flyer {
    padding: 30px 20px;
   }

   .about-royent-flyer h1 {
    font-size: 1.8rem;
   }

   .royent-flyer-writeup h3 {
    font-size: 1.2rem;
   }

  /* .royent-flyer-section h1 {
    font-size: 1.8rem;
  } */

  .image-gallery-royent-flyers {
    gap: 12px;
  }

  .image-gallery-royent-flyers img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .royent-testimonial-section {
    flex-direction: column;
    gap: 20px;
  }

  .royent-testimonial-card {
    width: 90%;
  }
}

/* ≤ 768px (Tablets and larger phones) */
@media (max-width: 768px) {
  .about-royent-flyer {
    padding: 40px 30px;
  }

  .about-royent-flyer h1 {
    font-size: 2rem;
  }

  .image-gallery-royent-flyers {
    gap: 15px;
  }

  .image-gallery-royent-flyers img {
    max-width: 45%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .royent-testimonial-section {
    flex-wrap: wrap;
    gap: 30px;
  }

  .royent-testimonial-card {
    width: 80%;
  }
}

/* Small Laptops (1024px) */
@media (max-width: 1024px) {
  .about-royent-flyer {
    padding: 50px 40px;
  }

  .image-gallery-royent-flyers img {
    max-width: 30%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .royent-testimonial-card {
    width: 350px;
  }
}

/* Large screens (1280px) */
@media (max-width: 1280px) {
  .about-royent-flyer {
    padding: 60px 50px;
  }

  .image-gallery-royent-flyers img {
    max-width: 25%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .royent-testimonial-card {
    width: 320px;
  }
}

/* Extra Large Screens (1280px) */
@media (min-width: 1281px) {
  .about-royent-flyer {
    max-width: 1200px;
    margin: 0 auto;
  }

  .image-gallery-royent-flyers img {
    max-width: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .royent-testimonial-card {
    width: 320px;
  }
}

/*Ending of Royent Flyer Section (royentflyer.html)*/

/*Beginning of Asta Beauty Corner Flyer Section (astabeautycorner.html)*/
.about-asta {
  background-color: #fff;
  padding: 50px;
}

.about-asta h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.asta-writeup h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  color: #c71585;
}

.asta-writeup p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 15px 0;
  color: #444;
}

.asta-writeup ul {
  padding-left: 20px;
  margin-top: 10px;
}

.asta-writeup ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  color: #555;
} 

.asta-section h1 {
    text-align: center;
    color: #c71585;
    margin: 50px;
    font-size: 2.5rem;
}

.image-gallery-asta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
  margin-bottom: 50px;
}

.image-gallery-asta img {
  max-width: 200px;
  width: auto;
  height: auto;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px lightpink;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.image-gallery-asta img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px lightpink;
}

.asta-testimonial-container {
  margin-bottom: 50px;
}

.asta-testimonial-container h1{
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.asta-testimonial-card {
    background-color: white;
    border: 1px solid #ffc0cb;
    box-shadow: 0 4px 8px lightpink;
    padding: 20px;
    width: 300px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    text-align: center;
} 

.asta-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px lightpink;
}

.asta-testimonial-section {
    display: flex;
    justify-content: center;  
    align-items: center;      
    padding: 20px;
}

/*Beginning of Responsive Code for all screens*/
/* ============================= */
/* RESPONSIVE DESIGN BREAKPOINTS */
/* ============================= */

/* Small phones (≤320px) */
@media (max-width: 320px) {
  .about-asta {
    padding: 25px 15px;
  }

  .about-asta h1 {
    font-size: 1.3rem;
  }

  .asta-writeup h3 {
    font-size: 1.1rem;
  }

  .asta-writeup p,
  .asta-writeup ul li {
    font-size: 0.9rem;
  }

  .image-gallery-asta {
    gap: 10px;
  }

  .image-gallery-asta img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .asta-testimonial-card {
    width: 90%;
  }
}

/* Phones (≤480px) */
@media (max-width: 480px) {
  .about-asta {
    padding: 30px 20px;
  }

  .about-asta h1 {
    font-size: 1.5rem;
  }

  .asta-writeup h3 {
    font-size: 1.2rem;
  }

  .image-gallery-asta {
    gap: 12px;
  }

  .image-gallery-asta img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .asta-testimonial-section {
    flex-direction: column;
    gap: 20px;
  }

  .asta-testimonial-card {
    width: 90%;
  }
}

/* Tablets (≤768px) */
@media (max-width: 768px) {
  .about-asta {
    padding: 40px 30px;
  }

  .about-asta h1 {
    font-size: 2rem;
  }

  .image-gallery-asta {
    gap: 15px;
  }

  .image-gallery-asta img {
    max-width: 45%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .asta-testimonial-section {
    flex-wrap: wrap;
    gap: 30px;
  }

  .asta-testimonial-card {
    width: 80%;
  }
}

/* Small laptops (≤1024px) */
@media (max-width: 1024px) {
  .about-asta {
    padding: 50px 40px;
  }

  .image-gallery-asta img {
    max-width: 30%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .asta-testimonial-card {
    width: 350px;
  }
}

/* Large screens (≤1280px) */
@media (max-width: 1280px) {
  .about-asta {
    padding: 60px 50px;
  }

  .image-gallery-asta img {
    max-width: 25%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .asta-testimonial-card {
    width: 320px;
  }
}

/* Extra large screens (>1280px) */
@media (min-width: 1281px) {
  .about-asta {
    max-width: 1200px;
    margin: 0 auto;
  }

  .image-gallery-asta img {
    max-width: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .asta-testimonial-card {
    width: 320px;
  }
}

/*Ending of Responsive Code for all screens*/

/*Ending of Asta Beauty Corner Flyer Section (astabeautycorner.html)*/

/*Beginning of Zamami Fabrics Flyer Section (zamamifabrics.html)*/
.about-zamamifabricsflyers {
  background-color: #fff;
  padding: 50px 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-zamamifabricsflyers h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.zamamifabricsflyers-writeup h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  color: #c71585;
}

.zamamifabricsflyers-writeup p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 15px 0;
  color: #444;
}

.zamamifabricsflyers-writeup ul {
  padding-left: 20px;
  margin-top: 10px;
}

.zamamifabricsflyers-writeup ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  color: #555;
} 

.zamamifabricsflyers-section h1 {
    text-align: center;
    color: #c71585;
    margin: 50px;
    font-size: 2.5rem;
}

.image-gallery-zamamifabricsflyers {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
  margin-bottom: 50px;
}

.image-gallery-zamamifabricsflyers img {
  max-width: 200px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.image-gallery-zamamifabricsflyers img:hover {
  transform: scale(1.05);
}

.zamamifabricsflyers-testimonial-container {
  margin-bottom: 50px;
}

.zamamifabricsflyers-testimonial-container h1{
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.zamamifabricsflyers-testimonial-card {
    background-color: white;
    border: 1px solid #ffc0cb;
    box-shadow: 0 4px 8px rgba(255, 192, 203, 0.3);
    padding: 20px;
    width: 300px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    text-align: center;
} 

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

.zamamifabricsflyers-testimonial-section {
    display: flex;
    justify-content: center;  
    align-items: center;      
    padding: 20px;
}
/*Ending of Zamami Fabrics Flyer Section (zamamifabrics.html)*/

/*Beginning of Send Us Logistics Flyer Section (senduslogistics.html)*/
.about-senduslogistics {
  background-color: #fff;
  padding: 50px 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-senduslogistics h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.senduslogistics-writeup h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  color: #c71585;
}

.senduslogistics-writeup p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 15px 0;
  color: #444;
}

.senduslogistics-writeup ul {
  padding-left: 20px;
  margin-top: 10px;
}

.senduslogistics-writeup ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  color: #555;
} 

.senduslogistics-section h1 {
    text-align: center;
    color: #c71585;
    margin: 50px;
    font-size: 2.5rem;
}

.image-gallery-senduslogistics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
  margin-bottom: 50px;
}

.image-gallery-senduslogistics img {
  max-width: 200px;
  width: auto;
  height: auto;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3 ease;
  object-fit: contain;
}

.image-gallery-senduslogistics img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.senduslogistics-testimonial-container {
  margin-bottom: 50px;
}

.senduslogistics-testimonial-container h1{
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.senduslogistics-testimonial-card {
    background-color: white;
    border: 1px solid #ffc0cb;
    box-shadow: 0 4px 8px rgba(255, 192, 203, 0.3);
    padding: 20px;
    width: 300px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    text-align: center;
} 

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

.senduslogistics-testimonial-section {
    display: flex;
    justify-content: center;  
    align-items: center;      
    padding: 20px;
}


/* Responsive styles for senduslogistics image gallery */
@media (max-width: 768px) {
  .image-gallery-senduslogistics img {
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .image-gallery-senduslogistics {
    gap: 15px;
    padding: 15px 0;
  }

  .image-gallery-senduslogistics img {
    max-width: 150px;
  }
}

@media (max-width: 420px) {
  .image-gallery-senduslogistics img {
    max-width: 130px;
  }
}

@media (max-width: 320px) {
  .image-gallery-senduslogistics img {
    max-width: 120px;
  }
}
/*Ending of Send Us Logistics Flyer Section (senduslogistics.html)*/

/*Beginning of Git Hub Page (github.html)*/
.about-github {
  max-width: 1000px;
  margin: 40px auto;
  padding: 50px 50px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: #444;
  line-height: 1.7;
}

.about-github h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #c71585;
}

.github-image {
  text-align: center;
  margin-bottom: 20px;
}

.github-image img {
  width: 80px;
  transition: transform 0.3s ease;
}

.github-image img:hover {
  transform: scale(1.1);
}

.viewprofile-button {
  text-align: center;
  margin: 20px 0 40px;
}

.viewprofile-button .cards-btn {
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  background: #c71585;
  color: #fff;
  transition: 0.3s ease;
}

.viewprofile-button .cards-btn:hover {
  background: red;
  transform: scale(1.05);
}

.github-writeup h3 {
  font-size: 1.3rem;
  margin: 25px 0 15px;
  display: inline-block;
  padding-bottom: 4px;
}

.github-writeup ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.github-writeup li {
  background: #f7f7f7;
  padding: 18px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.github-writeup li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.github-writeup li strong {
  font-size: 1.1rem;
}

.github-writeup li p {
  margin: 8px 0;
  color: #444;
}

.github-writeup li a {
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.github-writeup li a:hover {
  color: red;
}

.github-writeup ul:last-of-type {
  margin-top: 20px;
}

.github-writeup ul li {
  margin-bottom: 10px;
}
/*Ending of Git Hub Page (github.html)*/

/*Beginning of Mima's Fast Food Ui/Ux Page (mimasfastfooduiux.html)*/ 
.mimasfastfood-section {
  padding-top: 90px;
}

.mimasfastfooduiux-section { 
  padding: 50px;
} 

.mimasfastfood-section h1 { 
  text-align: center; 
  color: #c71585; 
  margin: 50px; 
  font-size: 2.5rem; 
  margin-top: 50px;
}

.mimasfastfooduiux-section h1 {
  font-size: 2.5rem;
} 

.mimasfastfooduiux-prototype h1 {
  text-align: center;
  color: #c71585;
  margin: 50px;
  font-size: 2.5rem;
  margin-top: 50px;
}

.mimasfastfooduiux-prototype-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.mimasfastfooduiux-prototype-gallery img {
  max-width: 700px;
  width: auto;
  height: auto;
  border-radius: 12px;
  cursor: pointer;
  object-fit: contain;
}

.mimasfastfood-hero-gallery { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 20px; 
  justify-content: center; 
  padding: 20px; 
  max-width: 600px; 
  margin: 0 auto; 
} 

.mimasfastfood-hero-gallery img { 
  max-width: 700px; 
  width: auto; 
  height: auto; 
  border-radius: 12px; 
  cursor: pointer; 
  object-fit: contain; 
} 

.about-mimasfastfooduiux { 
  background-color: #fff; 
  padding: 50px 50px; 
  max-width: 1000px; 
  margin: 0 auto; 
} 

.about-mimasfastfooduiux h1 { 
  font-size: 2.5rem; 
  text-align: center; 
  margin-bottom: 40px; 
  color: #c71585; 
}

/* Responsive styles for about section */
@media (max-width: 768px) {
  .about-mimasfastfooduiux {
    padding: 30px 20px;
  }

  .about-mimasfastfooduiux h1 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .mimasfastfooduiux-writeup h3 {
    font-size: 1.3rem;
  }

  .mimasfastfooduiux-writeup p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .about-mimasfastfooduiux {
    padding: 25px 15px;
  }

  .about-mimasfastfooduiux h1 {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .mimasfastfooduiux-writeup h3 {
    font-size: 1.2rem;
    margin-top: 20px;
  }

  .mimasfastfooduiux-writeup p {
    font-size: 0.9rem;
    margin: 12px 0;
  }

  .mimasfastfooduiux-writeup ul {
    padding-left: 15px;
  }

  .mimasfastfooduiux-writeup ul li {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
}

@media (max-width: 320px) {
  .about-mimasfastfooduiux {
    padding: 20px 10px;
  }

  .about-mimasfastfooduiux h1 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .mimasfastfooduiux-writeup h3 {
    font-size: 1.1rem;
    margin-top: 15px;
  }

  .mimasfastfooduiux-writeup p {
    font-size: 0.85rem;
    margin: 10px 0;
  }

  .mimasfastfooduiux-writeup ul li {
    font-size: 0.85rem;
    margin-bottom: 5px;
  }
} 

.mimasfastfooduiux-writeup h3 { 
  font-size: 1.5rem; 
  margin-top: 30px; 
  color: #c71585; 
} 

.mimasfastfooduiux-writeup p { 
  font-size: 1rem; 
  line-height: 1.8; 
  margin: 15px 0;
  color: #444; 
} 

.mimasfastfooduiux-writeup ul { 
  padding-left: 20px; 
  margin-top: 10px; 
} 

.mimasfastfooduiux-writeup ul li { 
  list-style-type: disc; 
  margin-bottom: 8px; 
  color: #555; 
} 

.mimasfastfooduiux-section h1 { 
  color: #c71585; 
  text-align: center; 
  margin: 50px; 
  font-size: 2.5rem; 
} 

.image-gallery-mimasfastfooduiux { 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 20px; 
  padding: 20px; 
  margin-top: 50px; 
  padding-bottom: 50px; 
} 

.image-gallery-mimasfastfooduiux p { 
  font-size: 1.1rem; 
  margin: 15px 0; 
  color: #444; 
  margin-bottom: 25px; 
  font-weight: bold; 
  text-align: center; 
} 

.mimasfastfooduiux-image-card { 
  flex: 1 1 200px; 
  max-width: 200px; 
  min-width: 0;
  background-color: white; 
  border: 1px solid lightpink; 
  text-align: center; 
  overflow: hidden; 
  box-shadow: 0 4px 8px 0 lightpink; 
  transition: transform 0.3s ease; 
  padding-bottom: 30px; 
  border-radius: 8px; 
} 

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

.mimasfastfooduiux-section img { 
  width: 100%; 
  height: auto; 
  border-bottom: 2px solid pink; 
  display: block;
} 

.mimasonlinestoreuiux-video { 
  padding: 50px; 
} 

.mimasonlinestoreuiux-video h1 { 
  color: #c71585; 
  text-align: center; 
  margin-top: 50px; 
  margin-bottom: 50px; 
} 

.video-grid { 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 20px; 
  padding: 20px;
  padding-bottom: 50px; 
} 

.video-card p { 
  font-size: 1.1rem; 
  margin: 15px 0; 
  color: #444; 
  margin-bottom: 25px; 
  font-weight: bold; 
  text-align: center;
} 

.video-card { 
  flex: 1 1 200px; 
  max-width: 200px; 
  min-width: 0;
  background-color: white; 
  border: 1px solid lightpink; 
  text-align: center; 
  overflow: hidden; 
  box-shadow: 0 4px 8px 0 lightpink; 
  transition: transform 0.3s ease; 
  padding-bottom: 30px; 
  border-radius: 8px; 
} 

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

.video-grid video { 
  width: 100%; 
  height: auto; 
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-bottom: 2px solid pink;
  display: block;
} 

/* Modal Style */ 
/* Beginning of Modal Section */ 
.modal { 
  display: none; 
  position: fixed; 
  z-index: 999; 
  padding-top: 60px; 
  left: 0; 
  top: 0; 
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background: rgba(0, 0, 0, 0.8); 
  -webkit-backdrop-filter: blur(); 
  backdrop-filter: blur(5px); 
} 

/* Modal image */ 
.modal-content { 
  display: block; 
  max-width: 90%; 
  max-height: 80vh; 
  margin: auto; 
  border-radius: 10px; 
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6); 
  animation: zoomIn 0.4s ease; 
  object-fit: contain; 
} 

/* Close button */ 
.close { 
  position: absolute; 
  top: 20px; 
  right: 35px; 
  color: white; 
  font-size: 35px; 
  font-weight: bold; 
  cursor: pointer; 
  transition: 0.3s; 
  z-index: 1000; 
} 

.close:hover, 
.close:focus { 
  color: #ff4d4d; 
  transform: scale(1.2); 
} 

/* Optional animation */ 
@keyframes zoomIn { 
  from { 
    transform: scale(0.8); 
    opacity: 0; 
  } 
  
  to { 
    transform: scale(1); 
    opacity: 1; 
  } 
} 

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

/* Modal content */ 
.modal-content { 
  max-width: 90%; 
  max-height: 90%; 
  border-radius: 12px; 
  box-shadow: 0 6px 20px rgba(0,0,0,0.5); 
  animation: zoom 0.3s ease-in-out; 
} 

/* Zoom animation */ 
@keyframes zoom { 
  from { 
    transform: scale(0.7); 
  } 
  
  to { 
    transform: scale(1); 
  } 
} 

/* Close button */ 
.close { 
  position: absolute; 
  top: 20px; 
  right: 35px; 
  color: #fff; 
  font-size: 40px; 
  font-weight: bold; 
  cursor: pointer; 
  transition: 0.3s; 
} 

.close:hover { 
  color: #ff5a5a; 
} 

/* Responsive CSS for Mima's Fast Food UI/UX - First Image and Headings */ 
/* ≤ 320px (Extra small phones) */ 
@media (max-width: 320px) { 
  .mimasfastfood-section h1,
  .mimasfastfooduiux-section h1,
  .mimasonlinestoreuiux-video h1,
  .mimasfastfooduiux-prototype h1 {
    font-size: 1.5rem;
    margin: 30px 15px;
  }

  .mimasfastfood-hero-gallery, 
  .mimasfastfooduiux-prototype-gallery { 
    padding: 15px 10px; 
    max-width: 100%;
  } 
  
  .mimasfastfood-hero-gallery img { 
    max-width: 100%; 
    width: 100%; 
  } 
} 

/* ≤ 480px (Small phones) */ 
@media (max-width: 480px) { 
  .mimasfastfood-section h1,
  .mimasfastfooduiux-section h1,
  .mimasonlinestoreuiux-video h1,
  .mimasfastfooduiux-prototype h1{
    font-size: 1.8rem;
    margin: 35px 20px;
  }

  .mimasfastfood-hero-gallery, 
  .mimasfastfooduiux-prototype-gallery { 
    padding: 20px 15px; 
    max-width: 100%;
  } 
  
  .mimasfastfood-hero-gallery img, 
  .mimasfastfooduiux-prototype-gallery img { 
    max-width: 100%; 
    width: 100%; 
  } 
} 

/* ≤ 768px (Tablets and larger phones) */ 
@media (max-width: 768px) { 
  .mimasfastfood-section h1,
  .mimasfastfooduiux-section h1,
  .mimasonlinestoreuiux-video h1,
  .mimasfastfooduiux-prototype h1 {
    font-size: 2rem;
    margin: 40px 25px;
  }

  .mimasfastfood-hero-gallery,
  .mimasfastfooduiux-prototype-gallery { 
    padding: 20px 20px; 
    max-width: 100%;
  } 
  
  .mimasfastfood-hero-gallery img, 
  .mimasfastfooduiux-prototype-gallery img { 
    max-width: 100%; 
    width: 100%; 
  } 
}

/* ≤ 1024px (Small desktops) */
@media (max-width: 1024px) and (min-width: 769px) {
  .mimasfastfood-section h1,
  .mimasfastfooduiux-section h1,
  .mimasonlinestoreuiux-video h1,
  .mimasfastfooduiux-prototype h1 {
    font-size: 2.2rem;
  }
} 

/* Responsive CSS for Mima's Fast Food UI/UX Section Images */ 
/* ≤ 320px (Extra small phones) */ 
@media (max-width: 320px) { 
  .mimasfastfood-section {
    padding-top: 60px;
  }

  .mimasfastfooduiux-section {
    padding: 20px 10px;
  }

  .image-gallery-mimasfastfooduiux { 
    padding: 15px 10px; 
    gap: 10px; 
    margin-top: 30px;
    padding-bottom: 30px; 
  } 
  
  .image-gallery-mimasfastfooduiux p {
    font-size: 0.7rem;
    margin-bottom: 15px;
  }
  
  .mimasfastfooduiux-image-card { 
    flex: 1 1 calc(50% - 5px);
    max-width: calc(50% - 5px);
    min-width: 0;
    padding: 5px;
    padding-bottom: 20px;
  } 
  
  .mimasfastfooduiux-image-card p { 
    font-size: 0.7rem; 
    margin: 10px 0;
    margin-bottom: 15px;
  }

  .mimasonlinestoreuiux-video {
    padding: 20px 10px;
  }

  .mimasonlinestoreuiux-video h1 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .video-grid {
    padding: 15px 10px;
    gap: 10px;
    padding-bottom: 30px;
  }

  .video-card {
    flex: 1 1 calc(50% - 5px);
    max-width: calc(50% - 5px);
    min-width: 0;
    padding: 5px;
    padding-bottom: 20px;
  }

  .video-card p {
    font-size: 0.7rem;
    margin: 10px 0;
    margin-bottom: 15px;
  }
} 

/* ≤ 480px (Small phones) */ 
@media (max-width: 480px) { 
  .mimasfastfood-section {
    padding-top: 70px;
  }

  .mimasfastfooduiux-section {
    padding: 30px 15px;
  }

  .image-gallery-mimasfastfooduiux { 
    padding: 20px 15px; 
    gap: 12px; 
    margin-top: 40px;
  } 
  
  .image-gallery-mimasfastfooduiux p {
    font-size: 0.85rem;
  }
  
  .mimasfastfooduiux-image-card { 
    flex: 1 1 calc(33.33% - 8px);
    max-width: calc(33.33% - 8px);
    min-width: 0;
    padding: 8px;
    padding-bottom: 25px;
  } 
  
  .mimasfastfooduiux-image-card p { 
    font-size: 0.8rem; 
    margin: 12px 0;
    margin-bottom: 20px;
  }

  .mimasonlinestoreuiux-video {
    padding: 30px 15px;
  }

  .mimasonlinestoreuiux-video h1 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .video-grid {
    padding: 20px 15px;
    gap: 12px;
  }

  .video-card {
    flex: 1 1 calc(33.33% - 8px);
    max-width: calc(33.33% - 8px);
    min-width: 0;
    padding: 8px;
    padding-bottom: 25px;
  }

  .video-card p {
    font-size: 0.8rem;
    margin: 12px 0;
    margin-bottom: 20px;
  }
} 

/* ≤ 640px (Medium phones) */
@media (max-width: 640px) and (min-width: 481px) {
  .mimasfastfooduiux-section {
    padding: 40px 20px;
  }

  .image-gallery-mimasfastfooduiux {
    gap: 15px;
  }

  .mimasfastfooduiux-image-card {
    flex: 1 1 calc(33.33% - 10px);
    max-width: calc(33.33% - 10px);
  }

  .mimasonlinestoreuiux-video {
    padding: 40px 20px;
  }

  .video-grid {
    gap: 15px;
  }

  .video-card {
    flex: 1 1 calc(33.33% - 10px);
    max-width: calc(33.33% - 10px);
  }
}

/* ≤ 768px (Tablets and larger phones) */ 
@media (max-width: 768px) and (min-width: 641px) { 
  .mimasfastfooduiux-section {
    padding: 45px 25px;
  }

  .image-gallery-mimasfastfooduiux { 
    padding: 20px 20px; 
    gap: 15px; 
  } 
  
  .image-gallery-mimasfastfooduiux p {
    font-size: 1rem;
  }
  
  .mimasfastfooduiux-image-card { 
    flex: 1 1 calc(25% - 12px);
    max-width: calc(25% - 12px);
    min-width: 0;
    padding: 10px;
  } 
  
  .mimasfastfooduiux-image-card p { 
    font-size: 0.9rem; 
  }

  .mimasonlinestoreuiux-video {
    padding: 45px 25px;
  }

  .video-grid {
    padding: 20px 20px;
    gap: 15px;
  }

  .video-card {
    flex: 1 1 calc(25% - 12px);
    max-width: calc(25% - 12px);
    min-width: 0;
    padding: 10px;
  }

  .video-card p {
    font-size: 0.9rem;
  }
}

/* ≤ 1024px (Small desktops) */
@media (max-width: 1024px) and (min-width: 769px) {
  .mimasfastfooduiux-section, 
  .mimasfastfooduiux-prototype {
    padding: 50px 30px;
  }

  .image-gallery-mimasfastfooduiux {
    gap: 18px;
  }

  .mimasfastfooduiux-image-card {
    flex: 1 1 calc(20% - 15px);
    max-width: calc(20% - 15px);
  }

  .mimasonlinestoreuiux-video {
    padding: 50px 30px;
  }

  .video-grid {
    gap: 18px;
  }

  .video-card {
    flex: 1 1 calc(20% - 15px);
    max-width: calc(20% - 15px);
  }
}

/* > 1024px (Large desktops) */
@media (min-width: 1025px) {
  .mimasfastfooduiux-image-card {
    flex: 1 1 calc(16.66% - 17px);
    max-width: calc(16.66% - 17px);
  }

  .video-card {
    flex: 1 1 calc(16.66% - 17px);
    max-width: calc(16.66% - 17px);
  }
}
/* Ending of Mima's Fast Food UI/IX Page (mimasfastfooduiux.html)*/

/*Beginning of Send Us Logistics Logo Page (senduslogisticslogo.html)*/
.about-senduslogistics-logo {
  background-color: #fff;
  padding: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-senduslogistics-logo h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.senduslogistics-logo-writeup h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  color: #c71585;
}

.senduslogistics-logo-writeup p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 15px 0;
  color: #444;
}

.senduslogistics-logo-writeup ul {
  padding-left: 20px;
  margin-top: 10px;
}

.senduslogistics-logo-writeup ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  color: #555;
} 

.senduslogistics-logo-section h1 {
    text-align: center;
    color: #c71585;
    margin: 50px;
    font-size: 2.5rem;
}

.image-gallery-senduslogistics-logo {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
}

.image-gallery-senduslogistics-logo img {
  max-width: 200px;
  width: auto;
  height: auto;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px lightpink;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: contain;
}

.image-gallery-senduslogistics-logo img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px lightpink;
}

.senduslogistics-logo-testimonial-container {
  margin-bottom: 50px;
}

.senduslogistics-logo-testimonial-container h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.senduslogistics-logo-testimonial-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.senduslogistics-testimonial-card {
  background-color: white;
  border: 1px solid #ffc0cb;
  box-shadow: 0 4px 8px rgba(255, 192, 203, 0.3);
  padding: 20px;
  width: 300px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  text-align: center;
}

.senduslogistics-testimonial-card:hover {
  transform: translate(-5px);
}
/* Modal Style */
/* Beginning of Modal Section */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur();
  backdrop-filter: blur(5px);
}

/* Modal image */
.modal-content {
  display: block;
  max-width: 90%;
  max-height: 80vh;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  animation: zoomIn 0.4s ease;
  object-fit: contain;
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1000;
}

.close:hover,
.close:focus {
  color: #ff4d4d;
  transform: scale(1.2);
}

/* Optional animation */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Beginning of Responsive Code for all screens*/
/* Beginning of Small phones (320px)*/
@media (max-width: 320px) {
  .about-senduslogistics-logo {
    padding: 25px 15px;
  }

  .about-senduslogistics-logo h1 {
    font-size: 1.5rem;
  }

  .about-senduslogistics-logo-writeup h3 {
    font-size: 1.1rem;
  }

  .about-senduslogistics-logo-writeup p,
  .about-senduslogistics-writeup ul li {
    font-size: 0.9rem;
  }

  .image-gallery-senduslogistics-logo {
    gap: 10px;
  }

  .image-gallery-senduslogistics-logo img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .senduslogistics-testimonial-card {
    width: 90%;
  }
}
/* Ending of Small Phones (320px)*/

/* Beginning of Big Phones (480px)*/
@media (max-width: 480px) {
  .about-senduslogistics-logo {
    padding: 30px 20px;
  }

  .about-senduslogistics-logo h1 {
    font-size: 1.8rem;
  }

  .about-senduslogistics-logo-writeup h3 {
    font-size: 1.2rem;
  }

  .image-gallery-senduslogistics-logo {
    gap: 12px;
  }

  .image-gallery-senduslogistics-logo img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .senduslogistics-testimonial-section {
    flex-direction: column;
    gap: 20px;
  }

  .senduslogistics-testimonial-card {
    width: 90%;
  }
}
/* Ending of Big Phones (480px)*/

/* Beginning of Tablets Screens (768px)*/
@media (max-width: 768px) {
  .about-senduslogistics-logo {
    padding: 40px 30px;
  }

  .about-senduslogistics-logo h1 {
    font-size: 2rem;
  }

  .image-gallery-senduslogistics-logo {
    gap: 15px;
  }

  .image-gallery-senduslogistics-logo img {
    max-width: 45%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .senduslogistics-testimonial-section {
    flex-wrap: wrap;
    gap: 30px;
  }

  .senduslogistics-testimonial-card {
    width: 80%;
  }
}
/* Ending of Tablets Screens (768px)*/

/* Beginning of Small Laptop Screens (1024px)*/
@media (max-width: 1024px) {
  .about-senduslogistics-logo {
    padding: 50px 40px;
  }

  .image-gallery-senduslogistics-logo img {
    max-width: 30%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .senduslogistics-testimonial-card {
    width: 350px;
  }
}
/* Ending of Small Laptop Screens (1024px)*/

/* Beginning of Large Laptop Screens (1280px) */
@media (max-width: 1280px) {
  .about-senduslogistics-logo {
    padding: 60px 50px;
  }

  .image-gallery-senduslogistics-logo img {
    max-width: 25%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .senduslogistics-testimonial-card {
    width: 320px;
  }
}
/* Ending of Large Laptop Screens (1280px) */

/* Beginning of Extra Large Laptop Screens (1440px) */
@media (min-width: 1281px) {
  .about-senduslogistics-logo {
    max-width: 1200px;
    margin: 0 auto;
  }

  .image-gallery-senduslogistics-logo img {
    max-width: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .senduslogistics-testimonial-card {
    width: 320px;
  }
}
/* Ending of Extra Large Laptop Screens (1440px)*/
/* Ending of Responsive Code for all screens*/
/*Ending of Send Us Logistics Logo Page (senduslogisticslogo.html)*/

/*Beginning of Zamami Fabrics Branding Page (zamamifabricsbranding.html*/
.about-zamamifabricsbranding {
  background-color: #fff;
  padding: 50px 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-zamamifabricsbranding h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.zamamifabricsbranding-writeup h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  color: #c71585;
}

.zamamifabricsbranding-writeup p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 15px 0;
  color: #444;
}

.zamamifabricsbranding-writeup ul {
  padding-left: 20px;
  margin-top: 10px;
}

.zamamifabricsbranding-writeup ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  color: #555;
} 

.zamamifabricsbranding-section h1 {
    text-align: center;
    color: #c71585;
    margin: 50px;
    font-size: 2.5rem;
}

.image-gallery-zamamifabricsbranding {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
  padding-bottom: 50px;
}

.image-gallery-zamamifabricsbranding img {
  max-width: 300px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

/* Modal Style */
/* Beginning of Modal Section */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur();
  backdrop-filter: blur(5px);
}

/* Modal image */
.modal-content {
  display: block;
  max-width: 90%;
  max-height: 80vh;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  animation: zoomIn 0.4s ease;
  object-fit: contain;
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1000;
}

.close:hover,
.close:focus {
  color: #ff4d4d;
  transform: scale(1.2);
}

/* Optional animation */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/*Ending of Zamami Fabrics Branding Page zamamifabricsbranding.html*/

/*Beginning of Mima's Online Store Logo Page (mimasonlinestore.html)*/
.about-mimasonlinestore-logo {
  background-color: #fff;
  padding: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-mimasonlinestore-logo h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.mimasonlinestore-logo-writeup h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  color: #c71585;
}

.mimasonlinestore-logo-writeup p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 15px 0;
  color: #444;
}

.mimasonlinestore-logo-writeup ul {
  padding-left: 20px;
  margin-top: 10px;
}

.mimasonlinestore-logo-writeup ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  color: #555;
} 

.mimasonlinestore-logo-section h1 {
    text-align: center;
    color: #c71585;
    margin: 50px;
    font-size: 2.5rem;
}

.image-gallery-mimasonlinestore-logo {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
}

.image-gallery-mimasonlinestore-logo img {
  max-width: 200px;
  width: auto;
  height: auto;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px lightpink;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: contain;
}

.image-gallery-mimasonlinestore-logo img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px lightpink;
}

/* Modal Style */
/* Beginning of Modal Section */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur();
  backdrop-filter: blur(5px);
}

/* Modal image */
.modal-content {
  display: block;
  max-width: 90%;
  max-height: 80vh;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  animation: zoomIn 0.4s ease;
  object-fit: contain;
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1000;
}

.close:hover,
.close:focus {
  color: #ff4d4d;
  transform: scale(1.2);
}

/* Optional animation */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Beginning of Responsive Code for all screens */
/* Beginning of Small Phone (320px)*/
@media (max-width: 320px) {
  .about-mimasonlinestore-logo {
    padding: 25px 15px;
  }

  .about-mimasonlinestore-logo h1 {
    font-size: 1.5rem;
  }

  .mimasonlinestore-logo-writeup h3 {
    font-size: 1.1rem;
  }

  .mimasonlinestore-logo-writeup p,
  .mimasonlinestore-logo-writeup ul li {
    font-size: 0.9rem;
  }

  .image-gallery-mimasonlinestore-logo {
    gap: 10px;
  }

  .image-gallery-mimasonlinestore-logo img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}
/* Ending of Small Phone (320px)*/

/*Beginning of Big Phone (480px)*/
@media (max-width: 480px) {
  .about-mimasonlinestore-logo {
    padding: 30px 20px;
  }

  .about-mimasonlinestore-logo h1 {
    font-size: 1.8rem;
  }

  .mimasonlinestore-logo-writeup h3 {
    font-size: 1.2rem;
  }

  .image-gallery-mimasonlinestore-logo {
    gap: 12px;
  }

  .image-gallery-mimasonlinestore-logo img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}
/* Ending of Big Phone (480px)*/

/* Beginning of Tablet Screens (768px)*/
@media (max-width: 768px) {
  .about-mimasonlinestore-logo {
    padding: 40px 30px;
  }

  .about-mimasonlinestore-logo h1 {
    font-size: 2rem;
  }

  .image-gallery-mimasonlinestore-logo {
    gap: 15px;
  }

  .image-gallery-mimasonlinestore-logo img {
    max-width: 45%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}
/* Ending of Tablet Screens (768px)*/

/* Beginning of Small Laptop Screens (1024px)*/
@media (max-width: 1024px) {
  .about-mimasonlinestore-logo {
    padding: 50px 40px;
  }

  .image-gallery-mimasonlinestore-logo img {
    max-width: 30%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}
/* Ending of Small Laptop Screens*/

/* Beginning of Large Laptop Screens (1280px)*/
@media (max-width: 1280px) {
  .about-mimasonlinestore-logo {
    padding: 60px 50px;
  }

  .image-gallery-mimasonlinestore-logo img {
    max-width: 25%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}
/* Ending of Large Laptop Screens*/

/* Beginning of Extra Large Laptop Screens (1440px) */
@media (min-width: 1281px) {
  .about-mimasonlinestore-logo {
    max-width: 1200px;
    margin: 0 auto;
  }

  .image-gallery-mimasonlinestore-logo img {
    max-width: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}
/* Ending of Extra Large Laptop Screens */
/* Ending of Responsive Code for all screens*/
/*Ending of Mima's Online Store Logo Page (mimasonlinestore.html)*/

/*Beginning of Soundmind Gadgets (soundmind.html)*/
.about-soundmind {
  background-color: #fff;
  padding: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-soundmind h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.soundmind-writeup h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  color: #c71585;
}

.soundmind-writeup p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 15px 0;
  color: #444;
}

.soundmind-writeup ul {
  padding-left: 20px;
  margin-top: 10px;
}

.soundmind-writeup ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  color: #555;
} 

.soundmind-section h1 {
    text-align: center;
    color: #c71585;
    margin: 50px;
    font-size: 2.5rem;
}

.image-gallery-soundmind {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
  margin-bottom: 50px;
}

.image-gallery-soundmind img {
  max-width: 200px;
  width: auto;
  height: auto;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px lightpink;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.image-gallery-soundmind img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px lightpink;
}

.soundmind-video {
    justify-content: center;
    padding: 30px 50px;
    text-align: center;
}

.soundmind-video video {
    width: 100%;
    height: auto;
}

.soundmind-testimonial-container {
  margin-bottom: 50px;
}

.soundmind-testimonial-container h1{
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.soundmind-testimonial-card {
    background-color: white;
    border: 1px solid #ffc0cb;
    box-shadow: 0 4px 8px lightpink;
    padding: 20px;
    width: 300px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    text-align: center;
} 

.soundmind-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px lightpink;
}

.soundmind-testimonial-section {
    display: flex;
    justify-content: center;  
    align-items: center;      
    padding: 20px;
}

.soundmind-testimonial-card {
    background-color: white;
    border: 1px solid #ffc0cb;
    box-shadow: 0 4px 8px rgba(255, 192, 203, 0.3);
    padding: 20px;
    width: 300px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    text-align: center;
} 

/* Responsive CSS for Soundmind Gadgets */
/* ≤ 320px (Extra small phones) */
@media (max-width: 320px) {
  .soundmind-section {
    padding: 0 20px;
  }

  .soundmind-section h1 {
    margin: 30px 20px;
    font-size: 1.3rem;
  }

  .image-gallery-soundmind {
    padding: 20px 0;
    gap: 20px;
    margin-bottom: 40px;
  }

  .image-gallery-soundmind img {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }

  .soundmind-video {
    padding: 20px 0;
  }
}

/* ≤ 480px (Small phones) */
@media (max-width: 480px) {
  .soundmind-section {
    padding: 0 25px;
  }

  .soundmind-section h1 {
    margin: 30px 25px;
    font-size: 1.8rem;
  }

  .image-gallery-soundmind {
    padding: 20px 0;
    gap: 20px;
    margin-bottom: 40px;
  }

  .image-gallery-soundmind img {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }

  .soundmind-video {
    padding: 20px 0;
  }
}

/* ≤ 768px (Tablets and larger phones) */
@media (max-width: 768px) {
  .soundmind-section {
    padding: 0 30px;
  }

  .soundmind-section h1 {
    margin: 40px 30px;
    font-size: 2rem;
  }

  .image-gallery-soundmind {
    padding: 20px 0;
    gap: 20px;
    margin-bottom: 40px;
  }

  .image-gallery-soundmind img {
    max-width: calc(50% - 10px);
  }

  .soundmind-video {
    padding: 20px 0;
  }
}

/* Modal Style */
/* Beginning of Modal Section */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur();
  backdrop-filter: blur(5px);
}

/* Modal image */
.modal-content {
  display: block;
  max-width: 90%;
  max-height: 80vh;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  animation: zoomIn 0.4s ease;
  object-fit: contain;
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1000;
}

.close:hover,
.close:focus {
  color: #ff4d4d;
  transform: scale(1.2);
}

/* Optional animation */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/*Ending of LS Logo Page*/

/*Beginning of Skin By Deasys Corner (sknbydc)*/
.about-sknbydc {
  background-color: #fff;
  padding: 50px 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-sknbydc h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.sknbydc-writeup h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  color: #c71585;
}

.sknbydc-writeup p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 15px 0;
  color: #444;
}

.sknbydc-writeup ul {
  padding-left: 20px;
  margin-top: 10px;
}

.sknbydc-writeup ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  color: #555;
} 

.sknbydc-section h1 {
    text-align: center;
    color: #c71585;
    margin: 50px;
    font-size: 2.5rem;
}

.image-gallery-sknbydc {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
  margin-bottom: 50px;
}

.image-gallery-sknbydc img {
  max-width: 200px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.image-gallery-sknbydc img:hover {
  transform: scale(1.05);
}

.sknbydc-testimonial-container {
  margin-bottom: 50px;
}

.sknbydc-testimonial-container h1{
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.sknbydc-testimonial-card {
    background-color: white;
    border: 1px solid #ffc0cb;
    box-shadow: 0 4px 8px rgba(255, 192, 203, 0.3);
    padding: 20px;
    width: 300px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    text-align: center;
} 

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

.sknbydc-testimonial-section {
    display: flex;
    justify-content: center;  
    align-items: center;      
    padding: 20px;
}
/*Ending of Skin By Deasys Corner Section (sknbydc.html)*/

/*Beginning of Styled By Neche*/
.about-styledbyneche {
  background-color: #fff;
  padding: 50px 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-styledbyneche h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.styledbyneche-writeup h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  color: #c71585;
}

.styledbyneche-writeup p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 15px 0;
  color: #444;
}

.styledbyneche-writeup ul {
  padding-left: 20px;
  margin-top: 10px;
}

.styledbyneche-writeup ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  color: #555;
} 

.styledbyneche-section h1 {
    text-align: center;
    color: #c71585;
    margin: 50px;
    font-size: 2.5rem;
}

.image-gallery-styledbyneche {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
  margin-bottom: 50px;
}

.image-gallery-styledbyneche img {
  max-width: 200px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.image-gallery-styledbyneche img:hover {
  transform: scale(1.05);
}

.styledbyneche-testimonial-container {
  margin-bottom: 50px;
}

.styledbyneche-testimonial-container h1{
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #c71585;
}

.styledbyneche-testimonial-card {
    background-color: white;
    border: 1px solid #ffc0cb;
    box-shadow: 0 4px 8px rgba(255, 192, 203, 0.3);
    padding: 20px;
    width: 300px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    text-align: center;
} 

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

.styledbyneche-testimonial-section {
    display: flex;
    justify-content: center;  
    align-items: center;      
    padding: 20px;
}
/*Ending of Skin By Deasys Corner Section (sknbydc.html)*/

/*Beginning of Project Branding Designs (projectsbranding.html)*/
.projectbranding-container {
    justify-content: space-between;
    padding: 80px 50px 60px 50px;
}

.projectbranding-container h1 {
    text-align: center;
    margin-bottom: 50px;
    color: #c71585;
    font-size: 2rem;
}

.projectbranding-btn {
  display: inline-block;
  background-color: #c71585;
  color: white;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.projectbranding-btn:hover {
  background-color: red;
}

.projectbranding-button-section {
    text-align: center;
    justify-content: space-between;
}

.projectbranding-button-section button {
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    margin: 20px;
}

.projectbranding-button-section button a {
    text-decoration: none;
    color: white;
}

.cards-btn {
  display: inline-block;
  background-color: #c71585;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.cards-btn:hover {
  background-color: red;
}

.projectbranding-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0 10px;
    box-sizing: border-box;
}

.projectbranding-cards-image {
    margin-bottom: 0;
    margin-top: 0;
    width: 200px;
    height: auto;
    flex: 0 1 200px;
    max-width: 200px;
    background-color: white;
    border: 1px solid lightpink;
    text-align: center;
    overflow: visible;
    box-shadow: 0 4px 8px 0 lightpink;
    transition: transform 0.3s ease;
    padding-bottom: 20px;
    border-radius: 8px;
}

.projectbranding-cards-image:hover {
    transform: translateY(-5px);
}

.projectbranding-cards-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
}

.projectbranding-cards-writeup {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    min-height: 80px;
}

.projectbranding-cards-writeup h3 {
    font-size: 1.1rem;
    margin: 15px 0;
    color: #444;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.projectbranding-cards h3 {
  font-size: 1.1rem;
  margin: 15px 0;
  color: #444;
}


/* Project Branding Designs Responsive Styles */
/* Screens >1280px (Large desktops) */
@media (min-width: 1281px) {
  .projectbranding-cards {
    gap: 25px;
    padding: 0 20px;
    margin-top: 50px;
  }

  .projectbranding-cards-image {
    flex: 0 1 200px;
    max-width: 200px;
    width: 200px;
  }

  .projectbranding-cards-image img {
    height: auto;
  }
}

/* Screens ≤1280px */
@media (max-width: 1280px) {
  .projectbranding-cards {
    gap: 20px;
    padding: 0 15px;
    margin-top: 50px;
  }

  .projectbranding-cards-image {
    flex: 0 1 200px;
    max-width: 200px;
    width: 200px;
  }

  .projectbranding-cards-image img {
    height: auto;
  }
}

/* Screens ≤1024px */
@media (max-width: 1024px) {
  .projectbranding-container {
    padding: 80px 40px 60px 40px;
  }

  .projectbranding-container h1 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .projectbranding-button-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .projectbranding-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    margin: 5px;
  }

  .projectbranding-cards {
    gap: 18px;
    padding: 0 15px;
    margin-top: 50px;
  }

  .projectbranding-cards-image {
    flex: 0 1 calc(50% - 9px);
    max-width: calc(50% - 9px);
    width: calc(50% - 9px);
  }

  .projectbranding-cards-image img {
    height: auto;
  }
}

/* Screens ≤768px */
@media (max-width: 768px) {
  .projectbranding-cards {
    gap: 18px;
    padding: 0 15px;
    margin-top: 50px;
  }

  .projectbranding-cards-image {
    flex: 0 1 calc(50% - 9px);
    max-width: calc(50% - 9px);
    width: calc(50% - 9px);
  }

  .projectbranding-cards-image img {
    height: auto;
  }

  .projectbranding-cards-writeup h3 {
    font-size: 0.95rem;
    margin: 10px 0;
  }

  .projectbranding-cards-writeup .cards-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

/* Screens ≤480px */
@media (max-width: 480px) {
  .projectbranding-container {
    padding: 80px 20px 60px 20px;
  }

  .projectbranding-container h1 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .projectbranding-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
    margin: 3px;
  }

  .projectbranding-cards {
    gap: 15px;
    padding: 0 10px;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }

  .projectbranding-cards-image {
    flex: 0 1 auto;
    max-width: 100%;
    width: 100%;
    max-width: 280px;
  }

  .projectbranding-cards-image img {
    height: auto;
    width: 100%;
  }

  .projectbranding-cards-writeup h3 {
    font-size: 1rem;
    margin: 12px 0;
  }

  .projectbranding-cards-writeup .cards-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* Screens ≤420px */
@media (max-width: 420px) {
  .projectbranding-container {
    padding: 80px 15px 60px 15px;
  }

  .projectbranding-container h1 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .projectbranding-cards {
    gap: 15px;
    padding: 0 5px;
    margin-top: 0;
  }

  .projectbranding-cards-image {
    max-width: 100%;
    width: 100%;
  }

  .projectbranding-cards-image img {
    height: auto;
  }

  .projectbranding-cards-writeup h3 {
    font-size: 0.95rem;
    margin: 10px 0;
  }

  .projectbranding-cards-writeup .cards-btn {
    padding: 7px 14px;
    font-size: 0.85rem;
  }
}

/* Screens ≤320px */
@media (max-width: 320px) {
  .projectbranding-container {
    padding: 80px 10px 60px 10px;
  }

  .projectbranding-container h1 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .projectbranding-cards {
    gap: 12px;
    padding: 0;
    margin-top: 0;
  }

  .projectbranding-cards-image {
    max-width: 100%;
    width: 100%;
  }

  .projectbranding-cards-image img {
    height: auto;
  }

  .projectbranding-cards-writeup h3 {
    font-size: 0.9rem;
    margin: 8px 0;
  }

  .projectbranding-cards-writeup .cards-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}
/*Ending of Project Branding Designs (projectsbranding.html)*/

/*Beginning of Footer Section*/
.footer {
  background: #f9f9f9;
  color: #333;
  padding: 40px 50px 10px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0;
}

.footer-brand h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #d63384;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 300px;
}

.footer-links h3 {
    color: #c71585;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.footer-social h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #c71585;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d63384;
}

.footer-social .social-icons a {
  margin-right: 12px;
  display: inline-block;
}

.footer-social h3 {
    color: #c71585;
}

.footer-social img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.2);
}

/*Ending of Footer Section*/

/*Beginning of Footer Bottom*/
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #777;
}

.footer-bottom p {
    color: #c71585;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 30px 15px 10px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .footer-social {
    width: 100%;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .footer-social .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 25px 10px 10px;
  }

  .footer-brand h2 {
    font-size: 1.3rem;
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  .footer-links h3,
  .footer-social h3 {
    font-size: 1rem;
  }

  .footer-links ul {
    flex-direction: column;
    gap: 10px;
  }

  .footer-social img {
    width: 20px;
    height: 20px;
  }

  .footer-bottom {
    font-size: 0.75rem;
    padding-top: 10px;
  }
}

/*End of Footer Bottom*/
