* {
  cursor: none !important;
}

.cursor {
  pointer-events: none;
}

.cursor__ball {
  position: fixed;
  top: 0;
  left: 0;
  mix-blend-mode: difference;
  z-index: 1000;
}

.cursor__ball circle {
  fill: #f7f8fa;
}

/* For touch devices */
@media (hover: none) and (pointer: coarse) {
  .cursor {
    display: none;
  }
  * {
    cursor: auto !important;
  }
}

/* Loading Screen Styles */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000010;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-text {
  display: flex;
  gap: 10px;
}

.loader-text span {
  --fill-duration: 1s;
  font-family: 'Montserrat', sans-serif;
  font-size: 150px;
  font-weight: 900;
  text-transform: uppercase;
  color: transparent;
  position: relative;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
}

.loader-text span::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  color: #ffffff;
  -webkit-text-stroke: 0;
  overflow: hidden;
  animation: none;
}

.loader-text span.filling::before {
  animation: fillLetter var(--fill-duration) cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

@keyframes fillLetter {
  0% {
    width: 0;
    filter: brightness(1);
    text-shadow: none;
  }
  50% {
    filter: brightness(2);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  }
  100% {
    width: 100%;
    filter: brightness(1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }
}

/* Loading Screen Responsive Styles */
@media screen and (max-width: 768px) {
  .loader-text {
    gap: 5px;
  }

  .loader-text span {
    font-size: 80px;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.2);
  }
}

@media screen and (max-width: 480px) {
  .loader-text {
    gap: 3px;
  }

  .loader-text span {
    font-size: 50px;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  }
}

*{
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;  
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* particleground demo */

* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

body {
  background: #000010;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
}

#particles {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-top: 80px;
  min-height: 100vh;
  position: relative;
}

#intro {
  position: absolute;
  left: 0;
  top: 60%;
  padding: 0 10px;
  width: 100%;
  text-align: center;
}
h2 {
  text-transform: uppercase;
  font-size: 50px;
  font-weight: 120;
  color: #ffffff;
  letter-spacing: 0.05em;
}
h1::after {
  content: '';
  width: 80px;
  display: block;
  background: #fff;
  height: 10px;
  margin: 30px auto;
  line-height: 1.1;
}
p {
  margin: 0 0 30px 0;
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
}

@media only screen and (max-width: 1000px) {
  h1 {
    font-size: 15px;
  }
}

@media only screen and (max-width: 100px) {
  h1 {
    font-size: 15px;
  }
  h1::after {
    height: 8px;
  }
}

@media only screen and (max-width: 100px) {
  #intro {
    padding: 0 10px;
  }
  h1 {
    font-size: 15px;
  }
  h1::after {
    height: 6px;
  }
  p {
    font-size: 18px;
  }
  .btn {
    font-size: 16px;
  }
}

@media only screen and (max-width: 100px) {
  h1 {
    font-size: 15px;
  }
  h1::after {
    height: 4px;
  }
}

/* Navigation Bar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 16, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #00ff00;
}

/* Section Styles */
.section {
  min-height: 100vh;
  padding: 100px 20px;
  background: #000010;
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffffff;
}

/* Patents Section Styles */
.patents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
  padding: 0 20px;
  margin-top: 0.5rem;
  align-items: stretch;
}

.patent-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  height: 600px;
  display: flex;
  flex-direction: column;
}

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

.patent-link {
  text-decoration: none;
  color: inherit;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.patent-image {
  width: 100%;
  height: 400px;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
}

.patent-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.patent-info {
  flex: 1;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  min-height: 200px;
}

.patent-info h3 {
  font-size: 1.4rem;
  color: #ffffff;
  text-align: center;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
  max-width: 90%;
}

.patent-info p {
  font-size: 1rem;
  line-height: 1.4;
  color: #cccccc;
  margin: 0;
  text-align: center;
  max-width: 90%;
}

.patent-date {
  color: #00ff00;
  font-size: 0.9rem;
  text-align: center;
  margin: 0;
  font-weight: 500;
}

/* Add styles for the look at my patents text */
.look-at-patents,
.look-at-projects,
.look-at-skills,
.look-at-achievements,
.look-at-gallery,
.look-at-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0;
  gap: 1rem;
  padding: 0 10px;
  background: #000010;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  text-align: center;
  width: 100%;
  min-height: 80px;
}

.look-at-patents span,
.look-at-projects span,
.look-at-skills span,
.look-at-achievements span,
.look-at-gallery span,
.look-at-contact span {
  font-size: 3rem;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
  padding: 0 10px;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  width: auto;
  min-width: fit-content;
  display: inline-block;
  vertical-align: middle;
}

/* Special styling for My Skills section */
.look-at-skills {
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.look-at-skills::before {
  content: '';
  width: 100px;
  height: 4px;
  background-color: #007bff;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0.5rem;
}

.look-at-skills::after {
  content: '';
  width: 100px;
  height: 4px;
  background-color: #007bff;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  margin-top: 0.5rem;
}

.look-at-skills span {
  margin: 0.5rem 0;
}

/* Other section headers */
.look-at-patents::before,
.look-at-patents::after,
.look-at-projects::before,
.look-at-projects::after,
.look-at-achievements::before,
.look-at-achievements::after,
.look-at-gallery::before,
.look-at-gallery::after,
.look-at-contact::before,
.look-at-contact::after {
  content: '';
  width: 100px;
  height: 4px;
  background-color: #007bff;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

/* Mobile Responsive Adjustments */
@media screen and (max-width: 768px) {
  .look-at-patents,
  .look-at-projects,
  .look-at-skills,
  .look-at-achievements,
  .look-at-gallery,
  .look-at-contact {
    min-height: 60px;
  }

  .look-at-patents span,
  .look-at-projects span,
  .look-at-skills span,
  .look-at-achievements span,
  .look-at-gallery span,
  .look-at-contact span {
    font-size: 2rem;
    padding: 0 5px;
    width: auto;
  }

  .look-at-patents::before,
  .look-at-patents::after,
  .look-at-projects::before,
  .look-at-projects::after,
  .look-at-skills::before,
  .look-at-skills::after,
  .look-at-achievements::before,
  .look-at-achievements::after,
  .look-at-gallery::before,
  .look-at-gallery::after,
  .look-at-contact::before,
  .look-at-contact::after {
    width: 50px;
    height: 3px;
  }

  .look-at-skills::before,
  .look-at-skills::after {
    width: 50px;
    height: 3px;
  }
}

@media screen and (max-width: 480px) {
  .look-at-patents,
  .look-at-projects,
  .look-at-skills,
  .look-at-achievements,
  .look-at-gallery,
  .look-at-contact {
    min-height: 50px;
  }

  .look-at-patents span,
  .look-at-projects span,
  .look-at-skills span,
  .look-at-achievements span,
  .look-at-gallery span,
  .look-at-contact span {
    font-size: 1.8rem;
    padding: 0 5px;
    width: auto;
  }

  .look-at-patents::before,
  .look-at-patents::after,
  .look-at-projects::before,
  .look-at-projects::after,
  .look-at-skills::before,
  .look-at-skills::after,
  .look-at-achievements::before,
  .look-at-achievements::after,
  .look-at-gallery::before,
  .look-at-gallery::after,
  .look-at-contact::before,
  .look-at-contact::after {
    width: 30px;
    height: 2px;
  }

  .look-at-skills::before,
  .look-at-skills::after {
    width: 30px;
    height: 2px;
  }
}

/* Projects Section Styles */
.projects-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 100%;
  max-width: 1400px;
  padding: 0 20px;
  margin: 0.5rem auto;
}

.project-category {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
  margin-top: 2rem;
}

.project-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.project-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.project-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.project-info {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
}

.project-info h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}

.project-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 0.5rem;
  text-align: center;
}

.project-tech {
  color: #00ff00;
  font-size: 0.9rem;
  text-align: center;
}

.project-date {
  color: #007bff;
  font-size: 0.9rem;
  text-align: center;
}

/* Skills Section Styles */
.skills-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  margin-top: 0.5rem;
  width: 100%;
}

.skill-category {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.skill-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  width: 100%;
  padding: 0 20px;
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.skill-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.skill-item i {
  font-size: 1.5rem;
  color: #007bff;
}

.skill-item span {
  font-size: 1.1rem;
  color: #ffffff;
}

/* Achievements Section Styles */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
  padding: 0 20px;
  margin-top: 0.5rem;
}

.achievement-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.achievement-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.achievement-card i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 1rem;
}

.achievement-card h4 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.achievement-card p {
  font-size: 1rem;
  color: #cccccc;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  /* Navigation */
  .navbar {
    padding: 0.8rem 1rem;
  }

  .nav-brand {
    gap: 0.5rem;
  }

  .nav-logo {
    width: 32px;
    height: 32px;
  }

  .nav-name {
    font-size: 1.2rem;
  }

  .nav-links {
    display: none; /* Hide on mobile */
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 16, 0.95);
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  /* Intro Section */
  #intro {
    top: 50%;
    padding: 0 20px;
  }

  h2 {
    font-size: 36px;
  }

  p {
    font-size: 18px;
  }

  /* Section Headers */
  .look-at-patents span,
  .look-at-projects span,
  .look-at-skills span,
  .look-at-achievements span,
  .look-at-gallery span,
  .look-at-contact span {
    font-size: 2.5rem;
  }

  .look-at-patents::before,
  .look-at-patents::after,
  .look-at-projects::before,
  .look-at-projects::after,
  .look-at-skills::before,
  .look-at-skills::after,
  .look-at-achievements::before,
  .look-at-achievements::after,
  .look-at-gallery::before,
  .look-at-gallery::after,
  .look-at-contact::before,
  .look-at-contact::after {
    width: 100px;
  }

  /* Patents Section */
  .patents-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .patent-card {
    height: 500px;
  }

  .patent-image {
    height: 300px;
  }

  /* Projects Section */
  .project-cards {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .project-image {
    height: 180px;
  }

  /* Skills Section */
  .skill-list {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  /* Achievements Section */
  .achievements-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  /* Gallery Section */
  .gallery-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .gallery-item {
    height: 250px;
  }

  /* Contact Section */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem;
  }

  .contact-item,
  .social-item {
    height: 80px;
    padding: 1rem;
  }

  .contact-item i,
  .social-item i {
    font-size: 1.8rem;
  }

  .contact-text h4 {
    font-size: 1.2rem;
  }

  .contact-text p,
  .social-item span {
    font-size: 1rem;
  }

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

  .footer .copyright {
    font-size: 12px;
  }

  .footer .made-with-love {
    font-size: 14px;
  }
}

/* Small Mobile Screens */
@media screen and (max-width: 480px) {
  h2 {
    font-size: 28px;
  }

  p {
    font-size: 16px;
  }

  .section {
    padding: 60px 10px;
  }

  .category-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .patent-card {
    height: 450px;
  }

  .patent-image {
    height: 250px;
  }

  .gallery-item {
    height: 200px;
  }
}

/* Add Mobile Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

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

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

.category-title {
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 4rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  padding: 0 20px;
  white-space: normal;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .category-title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .category-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}

/* Certificate Link Styles */
.certificate-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 123, 255, 0.2);
  color: #007bff;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: 1px solid #007bff;
}

.certificate-link:hover {
  background: #007bff;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Top Button Styles */
.top-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(0, 123, 255, 0.2);
  border: 1px solid #007bff;
  border-radius: 50%;
  color: #007bff;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1000;
}

.top-button:hover {
  background: #007bff;
  color: #ffffff;
  transform: translateY(-3px);
}

.top-button i {
  font-size: 1.5rem;
}

/* Show top button when scrolling down */
.top-button.visible {
  display: flex;
}

/* Add styles for the look at contact text */
.look-at-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0;
  gap: 2rem;
  padding: 0 20px;
  background: #000010;
  position: relative;
  z-index: 1;
}

.look-at-contact::before,
.look-at-contact::after {
  content: '';
  height: 4px;
  width: 200px;
  background-color: #007bff;
}

.look-at-contact span {
  font-size: 3rem;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
  padding: 0 10px;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  width: auto;
  min-width: fit-content;
  display: inline-block;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .look-at-contact span {
    font-size: 2rem;
    padding: 0 5px;
    width: auto;
  }
}

@media screen and (max-width: 480px) {
  .look-at-contact span {
    font-size: 1.8rem;
    padding: 0 5px;
    width: auto;
  }
}

/* Contact Section Styles */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.contact-info, .social-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: transform 0.3s ease;
  height: 100px;
  width: 100%;
}

.contact-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.contact-item i {
  font-size: 2rem;
  color: #007bff;
  min-width: 40px;
  text-align: center;
}

.contact-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.contact-text h4 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-text p {
  font-size: 1rem;
  color: #cccccc;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
  height: 100px;
  width: 100%;
}

.social-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  color: #007bff;
}

.social-item i {
  font-size: 1.8rem;
  min-width: 40px;
  text-align: center;
}

.social-item span {
  font-size: 1.1rem;
}

/* Contact Section Responsive Styles */
@media screen and (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem;
  }

  .contact-item, .social-item {
    height: 80px;
    padding: 1rem;
  }

  .contact-item i, .social-item i {
    font-size: 1.5rem;
  }

  .contact-text h4 {
    font-size: 1.1rem;
  }

  .contact-text p, .social-item span {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .contact-grid {
    padding: 0.5rem;
  }

  .contact-item, .social-item {
    height: 70px;
    padding: 0.8rem;
  }

  .contact-item i, .social-item i {
    font-size: 1.3rem;
  }

  .contact-text h4 {
    font-size: 1rem;
  }

  .contact-text p, .social-item span {
    font-size: 0.8rem;
  }
}

/* Add styles for the look at gallery text */
.look-at-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0;
  gap: 2rem;
  padding: 0 20px;
  background: #000010;
  position: relative;
  z-index: 1;
}

.look-at-gallery::before,
.look-at-gallery::after {
  content: '';
  height: 4px;
  width: 200px;
  background-color: #007bff;
}

.look-at-gallery span {
  font-size: 3rem;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
  padding: 0 10px;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  width: auto;
  min-width: fit-content;
  display: inline-block;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .look-at-gallery span {
    font-size: 2rem;
    padding: 0 5px;
    width: auto;
  }
}

@media screen and (max-width: 480px) {
  .look-at-gallery span {
    font-size: 1.8rem;
    padding: 0 5px;
    width: auto;
  }
}

/* Gallery Section Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 20px;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.5);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 1.2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin: 0 0 0.5rem 0;
  text-align: center;
}

.gallery-overlay p {
  color: #cccccc;
  font-size: 0.9rem;
  margin: 0;
  text-align: center;
  line-height: 1.4;
}

@media screen and (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item {
    height: 250px;
  }
}

.footer {
  background-color: rgba(0, 0, 16, 0.9);
  padding: 30px 0;
  text-align: center;
  margin-top: 50px;
  border-top: 1px solid #007bff;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer p {
  margin: 8px 0;
  color: #cccccc;
  font-size: 14px;
}

.footer .copyright {
  font-weight: 500;
  color: #ffffff;
}

.footer .made-with-love {
  color: #ffffff;
  font-size: 18px;
  margin: 15px 0;
}

.footer .website a {
  color: #007bff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer .website a:hover {
  color: #00ff00;
  text-decoration: none;
  transform: translateY(-2px);
}

