@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  text-transform: capitalize;
  transition: all 0.2s linear;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  /* background:#d4581b; */
  /* background:#914b29; */
  /* background:#a15834; */
  background:linear-gradient(0deg, #033539, #8cfff9, #033539);
  font-family: "Poppins", sans-serif;
}

/* Disable scrolling when popup is active */
.no-scroll {
  overflow: hidden;
  height: 100vh;
}



/* --- WELCOME POPUP (Glassmorphism) --- */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Dark overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

/* Popup Box (Glass Effect) */
.popup-content {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  border-radius: 12px;
  padding: 30px 35px;
  text-align: center;
  width: 360px;
  color: #ffffff;
  /* border: 2px solid rgba(155, 152, 152, 0.2); */
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
  
  /* Animation */
  animation: heartbeat 1.5s ease-in-out, fadeIn 0.6s ease-in-out;
}

/* Fade-In Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Heading */
.popup-content h2 {
  font-size: 1.27rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: #ffffff; /* Themed Color */
}

/* Description */
.popup-content p {
  font-size: 1.24rem;
  margin-bottom: 18px;
  font-weight: 400;
}
/* 
.highlight-text {
  font-size: 15px; 
  font-weight: 800;
  text-transform: uppercase;
  color: #5db1bb;
  letter-spacing: 1.5px;
  padding: 10px; 
} */

.highlight-text {
  font-size: 15px; 
  font-weight: 800;
  animation: colorCycle 4s infinite linear;
  background: linear-gradient(90deg, #ff4d4d, #23acbe, #cc3333, #23acbe, #cc33ff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes colorCycle {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}




/* Enter Button */
#close-popup {
  background: linear-gradient(135deg, #167974, #083033);
  color: white;
  border: none;
  padding: 10px 35px;
  font-size: 1.30rem;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}

#close-popup:hover {
  background: linear-gradient(135deg, #083033, #167974);
  transform: scale(1.05);
}
@keyframes heartbeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.1); }
  28% { transform: scale(1); }
  42% { transform: scale(1.1); }
  70% { transform: scale(1); }
}

.popup-content {
  animation: heartbeat 1.5s ease-in-out, fadeIn 0.6s ease-in-out;
}

/* Hide Preloader Initially */
#preloader {
  opacity: 0;
  visibility: hidden;
}

/* --- 📱 Mobile Responsive Adjustments --- */
@media (max-width: 600px) {
  .popup-content {
      width: 80%; /* Reduce width */
      max-width: 320px;
      padding: 25px; /* Reduce padding */
  }

  .popup-content h2 {
      font-size: 1.6rem; /* Smaller heading */
  }

  .popup-content p {
      font-size: 1.4rem; /* Smaller description */
  }

  #close-popup {
      font-size: 1.3rem; /* Smaller button text */
      padding: 8px 18px; /* Adjust button padding */
  }
}

/* neon cursor cursor */
/* body {
  cursor: none;
}

.cursor {
  position: absolute;
  width: 12px;
  height: 12px;
  background: rgba(202, 89, 23, 0.8);
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(255, 253, 253, 0.8), 0 0 20px rgba(255, 255, 255, 0.9);
  transition: none; /* ❌ No delay for instant movement */
  /* z-index: 9999;
} */

/* a:hover .cursor {
  transition: none;  /* ❌ No delay */
  /* transform: scale(1.5);  Example: Enlarges cursor instantly */ 
/* }  */

/* cursor ends */
/* 
 .home .content h3 {
  font-size: 4.2rem;
  font-weight: 602;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
  text-transform: capitalize;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
} */

.animated-gradient-text {
  font-size: 4rem;
  font-weight: 602;
  background: linear-gradient(90deg, #2a6f79, #ffffff,#2a6f79);
  background-size: 200% auto;
  font-family: "Poppins", sans-serif;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shimmerText 4s ease-in-out infinite;
  text-transform: capitalize;
  letter-spacing: 1px;
}

@keyframes shimmerText {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

.desktop-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;

  margin-top: 10px;
}


.home {
  /*background: linear-gradient(to bottom, rgba(0, 0, 0, 0.54),rgba(139, 77, 10, 0.54));; */
  /*background: linear-gradient(to bottom, rgba(0, 0, 0, 0.54),rgba(156, 87, 12, 0.54));; */
  /* background: linear-gradient(to bottom,rgba(0, 0, 0, 0.30), rgba(175, 104, 27, 0.54) ,rgba(0, 0, 0, 0.70));; */

  padding: 80px 5%;
/* height: 100vh;  Full-screen height */ 
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
 

#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background:linear-gradient(0deg, #1a575c,#1a575c, #640a0a);
  transition: opacity 5s ease-out; /* Ensure transition is defined in CSS too */
}

#loader {
position: absolute;
left: 50%;
top: 0;
transform: translate(-90%,0);
}

#splash .anim {
height: 100%;
position: absolute;
left: 51.8%;
width: 100px;
transform: translate(-50%,100%);
animation: loader 15s linear;
animation-fill-mode: forwards;
}



@keyframes loader {
0% { transform: translate(-50%,150%); }
30% { transform: translate(-50%,10%); }
100% { transform: translate(-50%,0%); }
}

@keyframes splash {
0% { opacity: 1; }
90% { opacity: 1; }
100% { opacity: 0; visibility: hidden; }
}


/* 📱 Mobile adjustments */
@media (max-width: 600px) {
  #loader {
    width: 30px; /* Slightly smaller on smaller screens */
  }
  #splash .anim {
    width: 80px; /* Adjust size for mobile */
  }
}

@media (min-width: 1024px) { /* Apply only on desktop screens */
  .rounding-sec {
    margin-right: 100px; /* Move slightly left */
    transform: translateX(-50px); /* Another option */
  }
}
@media (min-width: 1024px) { /* Apply only on desktop screens */
  .home .content{
    margin-left: 150px; /* Move slightly left */
    transform: translateX(-50px); /* Another option */
  }
}


/* .preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.loading-text {
  font-size: 4rem;
  color: rgb(0, 0, 0);
  font-weight: bold;
  letter-spacing: 2px;
  animation: fadeInOut 2s infinite, textBounce 1.5s ease-in-out infinite;
}
.loading-text span {
  color: #8c4624;
  display: inline-block;
  animation: wave 1.5s infinite;
}
@keyframes fadeInOut {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes textBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}
@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(360deg); }
}
 */
 .img-carousel {
  width: 350px;
  height: 570px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  width: 100%;
  height: 100%;
}

.carousel-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative; /* change absolute → relative */
  opacity: 1;         /* always visible */
  animation: none;    /* remove animation */
}

/* .carousel-track img:nth-child(1) {
  animation-delay: 0s;
}

.carousel-track img:nth-child(2) {
  animation-delay: 6s;
} */

@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  10% {
    opacity: 0;
    transform: scale(1);
  }
  40% {
    opacity: 1;
    transform: scale(1.09);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(3);
  }
}


* {
  box-sizing: border-box;
}

/* Prevent horizontal scrolling */
html, body {
  overflow-x: hidden;
  width: 100%;
}

/* Swipe Down Animation */
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mouse {
  width: 35px;
  height: 55px;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 25px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mouse span {
  width: 3px;
  height: 10px;
  background: rgb(255, 255, 255);
  border-radius: 3px;
  position: absolute;
  top: 10px;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% { top: 10px; opacity: 1; }
  100% { top: 30px; opacity: 0; }
}

.scroll-text {
  color: white;
  font-size: 12px;
  margin-top: 8px;
  opacity: 0.8;
}



.logo {
  display: flex;
  align-items: center;
  gap: -15px; /* Adjust spacing between image and text */
  font-size: 1.5rem;
  text-decoration: none;
  color: white;
}

.logo-img {
  width: 72px; /* Adjust logo size */
  height:46px;
}

.logos {
  display: flex;
  align-items: center;
  gap: -15px; /* Adjust spacing between image and text */
  font-size: 1rem;
  text-decoration: none;
  color: white;
}

.logos-img {
  width: 50px; /* Adjust logo size */
  height:35px;
}





.img {
  position: relative;
  display: inline-block;
}

.img img {
  width: 230px; /* Adjust size */
  height: 230px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  
}

/* .img::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 27%;
  width: 270px; 
  height: 270px;
  border-radius: 50%;
  background: linear-gradient(0deg, #000000, #944e2a, #fdfdfd);
  animation: neonGlow 4s linear infinite;
  z-index: 1;
  transform: translate(-50%, -50%);
  filter: blur(12px);
  
} */

@keyframes neonGlow {
  0% {
      transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
      transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* @media (max-width: 450px) {
  .img::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 230px; 
    height: 230px;
    border-radius: 50%;
    background: linear-gradient(0deg, #000000, #944e2a, #ffffff);
    animation: neonGlow 4s linear infinite;
    z-index: 1;
    transform: translate(-50%, -50%);
    filter: blur(12px); 
  }
  
} */

/* Animation Keyframes */
@keyframes neonGlow {
  0% {
      transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
      transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Width of the scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

/* Scrollbar track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
  border-radius: 10px; /* Optional: gives track some rounding */
}

/* Scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background: #383535;
  border-radius: 10px; /* This makes it curved */
}

/* Optional: Hover effect */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}




/* Modal Background (Fades in) */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Background fade effect */
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-in-out;
}

/* Modal Content (Zoom-in effect) */
.modal-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 95%;
  max-height: 95%;
  overflow: auto;
  position: relative;
  opacity: 0;
  transform: scale(0.8); /* Start smaller */
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Show animation */
.modal.show .modal-content {
  opacity: 1;
  transform: scale(1); /* Zoom to normal size */
}

/* Close button */
.close {
  position: absolute;
  top: -3px;
  right: 15px;
  font-size: 25px;
  cursor: pointer;
}

/* Resume Image */
.resume-image {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Resume Container (For Positioning the Icon) */
.resume-container {
  position: relative;
  display: inline-block;
}

/* Download Icon on Image */
.download-icon {
  position: absolute;
  top: 10px;
  right: -10px;
  background: #2d858d; /* Semi-transparent black */
  color: white;
  padding: 10px;
  border-radius: 40%;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.download-icon:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1); /* Slight zoom effect */
}

@media screen and (max-width: 768px) {
  .download-icon {
    top: 10px;
    right: -10px; /* Move it more to the right */
    padding: 6px; /* Reduce padding for a better fit */
    font-size: 12px; /* Adjust font size for smaller screens */
  }
}





/* .ripple-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #000000;
  color: white;
  padding: 12px 15px;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s;
}

.ripple-btn i {
  font-size: 10px;
}

.ripple {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  border-radius: 50%;
  animation: ripple-animation 0.6s linear;
} */

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}



/* Roundin sec */
.main {
  position: relative;
}
.big-circle {
  
  height: 100%;
  width: 100%;
  position: relative;
  border: 3px solid #bbbbbb;
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  animation: Rotate 20s linear infinite;
  -webkit-animation: Rotate 20s linear infinite;
}
.icon-block {
  width: 64px;
  height: 64px;
  position: absolute;
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background-color: #000000;;
  box-shadow: 0 0 15px #fff;
}
.icon-block img {
  margin: 0px auto;
  width: 60%;
  animation: Rotate-reverse 20s linear infinite;
  -webkit-animation: Rotate-reverse 20s linear infinite;
}
.icon-block:first-child {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.icon-block:nth-child(2) {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  -webkit-transform: translate(50%, -50%);
}
.icon-block:nth-child(3) {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
}
.icon-block:nth-child(4) {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.rounding-sec {
  position: relative;
  height: 400px;
  width: 400px;
}
.images {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
/* keyframe animation */

@keyframes Rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes Rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes Rotate-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@-webkit-keyframes Rotate-reverse {
  from {
    -webkit-transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
  }
}

/* Animation */
@keyframes leftSideAni {
  0% {
      transform: translateX(-100px);
      opacity: 0;
  }
  100% {
      transform: translateX(0);
      opacity: 1;
  }
}
@keyframes navani {
  0% {
      transform: translateY(100px);
      opacity: 0;
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}
@keyframes topSideAni {
  0% {
      transform: translateY(-100px);
      opacity: 0;
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}

@media screen and (max-width: 1024px) {
  .container {
      padding: 0 4.4rem;
  }
  .main h3 {
      color: #000;
      margin-top: 1rem;
  }
}
@media screen and (max-width: 990px) {
  .main {
      grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  }
  .rounding-sec {
      margin: auto;
  }
}

@media screen and (max-width: 768px) {
  .container {
      padding: 0 1.6rem;
  }
}

@media screen and (max-width: 600px) {
  body {
      height: auto;
  }

  header {
      height: auto;
      background-color: var(--primary-dark);
      position: relative;
  }

  
  #menu {
      display: block;
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--primary-color);
      cursor: pointer;
  }

  /* Show menu when the checkbox is checked */
  #click:checked ~ .navbar ul {
      display: flex;
  }

  .main {
      grid-template-columns: repeat(auto-fit, minmax(266px, 1fr));
      margin-top: 2rem;
      overflow-x: hidden;
  }

  .icon-block {
      width: 50px;
      height: 50px;
  }

  .rounding-sec {
      height: 300px;
      width: 300px;
  }

  .images {
      width: 100px;
  }
}


.avatar {
  position: relative;
  z-index: -1;
  width: 100px;
  background-size: 160%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border-radius: 50%;
}

@keyframes pulse {
  45% {
    opacity: 0.6;
  }
  80%,
  100% {
    opacity: 0;
    scale: 1.6;
  }
}



/* Add this to your CSS file or inside a <style> tag */
.img img {
  display: block;
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out; /* Smooth scaling */
  transform-origin: center;
  filter: none; /* Removes blur effect */
}

.img:hover img {
  transition: transform 0.4s ease-in-out; /* Smooth zoom-in effect */
  transform: scale(1.1);
  filter: none; /* Ensure no blur effect is applied */
}









/* Remove outline/focus styles that might be causing the effect */
.img img:focus, 
.img img:active {
  outline: none;
  box-shadow: none;
}



/* Keyframes for zooming in and out */
@keyframes zoomInOut {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1);
  }
}


*::selection {
  background: #da2b2b;
  color: #fff;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}
html::-webkit-scrollbar {
  width: 0.8rem;
}
html::-webkit-scrollbar-track {
  background: rgb(255, 255, 255);
}
html::-webkit-scrollbar-thumb {
  background:#8c4624;

}

/* pre loader start */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: #e6eff1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.loader-container.fade-out {
  top: -120%;
}
/* pre loader end */

/* navbar starts */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.7rem 10%;
  height: 6.5rem;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(146, 161, 176, 0.3);
}
section {
  min-height: 100vh;
  padding: 2rem 9%;
}
.heading {
  font-size: 1.7rem;
  color: rgb(255, 253, 253);
  font-weight: 600;
  text-align: center;
  margin: center;
  }
.about .heading span {
  color: #000000;
}
header .logo {
  font-size: 1.rem;
  font-weight: 550;
  text-decoration: none;
  color: #000000;
}
header .logo i {
  font-size: 2.0rem;
}
header .logo:hover {
  color: #eb0d0d;
}
header .navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}


header .navbar li {
  margin-left: 2.5rem;
  
}
header .navbar ul li a {
  font-size: 1.48rem;
  color: #585555;
  font-weight: 510;
  text-decoration: none;
  letter-spacing: 0.04rem;
  transition: 0.2s;
}
header .navbar ul li a.active,
header .navbar ul li a:hover {
  color: #000000;
  border-bottom: 0.2rem solid #940d19;
  padding: 0.5rem 0;
}
/* navbar ends */

/* hamburger icon starts*/
#menu {
  font-size: 3rem;
  cursor: pointer;
  color: rgb(27, 111, 122);
  display: none;
}




@media (max-width: 768px) {
  #menu {
    display: block;
    /* background: linear-gradient(45deg, #3fb7c0, #353434); */

  }
  header .navbar {
    position: fixed;
    top: 6.5rem;
    right: -120%;
    width: 75%;
    height: 100%;
    text-align: left;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    backdrop-filter: blur(8px); /* Glassmorphism effect */
    box-shadow: -5px 0px 15px rgba(0, 0, 0, 0.3);

    transition: right 0.5s ease-in-out; /* Prevents unwanted animations */
  }
  header .navbar ul {
    flex-flow: column;
    padding: 1rem;
  }
  header .navbar ul li {
    text-align: center;
    width: 100%;
    margin: 1rem 0;
    border-radius: 0.5rem;
    width: 26rem;
  }
  header .navbar ul li a {
    display: block;
    padding: .4rem;
    text-align: left;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
  }
  header .navbar ul li a.active,
  header .navbar ul li a:hover {
   padding-left:75px ;
    color: #fff;
    border-radius: 0.5rem;
    border-bottom: 0.5rem solid #1b777e;
  }
  .fa-times {
    transform: rotate(180deg);
  }
  header .navbar.nav-toggle {
    right: 0;
  }
}
/* hamburger icon ends */
  



/* hero section starts*/
.home {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  min-height: 110vh;
  /* padding: 80px 5%; */
  align-items: center;
}
.home #particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top:0;
  left: 0;
}
.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.home .content {
  flex: 1 1 40rem;
  padding-top: 1rem;
  z-index: 1;
}

.home .image {
    flex: 1 1 40rem;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
   
    
  }
  
  .home .image img {
    
    width: 80%;  
    height: 80%;
    max-width: 310px;
    max-height: 310px;
    border-radius: 50%;
    object-fit: cover;  
    position: relative;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
    cursor: pointer;
  }


  .home .image img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) { /* Applies only on screens wider than 768px (tablet & desktop) */
    .home .image img:hover {
        transform: scale(1.1); /* Zoom effect */
        box-shadow: 0 10px 20px rgba(255, 255, 255, 0.9);
    }
}

  /* Zoom effect only for mobile screens */
@media (max-width: 768px) {
  .home .image img {
      transform-origin: center center; /* Ensures zoom is centered */
      transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }

  .home .image img:hover {
    
      box-shadow: 0 10px 20px rgba(255, 255, 255, 0.5);
  }


}

/* Mobile adjustments */
@media (max-width: 600px) {
  .home .image img {
      width: 75%;
      height: 75%;
      transform: translateY(0); /* Removes the downward shift */
  }
}




.home .image {
    flex: 1 1 40rem;
    z-index: 1;
  }


  .home .image img {
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out; /* Smooth zoom effect */

    margin-top: -400px;
    margin-left: 5px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
    cursor: pointer;
  }
  .home .image img:hover {
    
    box-shadow: 0 10px 20px rgba(21, 176, 187, 0.3); /* Enhancing shadow */
  }

  .home .image img:active {
    transform: scale(1); /* Reset zoom when clicked */
  }
  






.home .content h2 {
  font-size: 3rem;
  font-weight: 600;
  color: #ffffff;
}

/* .home .content h3 {
  font-size: 4.2rem;
  font-weight: 602;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
  text-transform: capitalize;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
} */

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}


.home .content h2 span {
  font-size: 5rem;
  font-weight: 800;
  color: #8c4624;
}
.home .content p {
  font-size: 2.5rem;
  color: #000;
  font-weight: 600;
  padding: 1rem 0;
}
.home .content p span {
  font-size: 2.2rem;
  color: rgb(255, 255, 255);
  font-weight: 510;
  padding: 1rem 0;
}
.home .btn {
  margin-top: 1rem;
  position: absolute;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 4em;
  transition: 0.5s;
  color: #2a7d85;
  background: #000000;
  backdrop-filter: blur(3px);
  /*box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.6);*/
  font-family: "Nunito", sans-serif;
}
.home .btn span {
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
}
.home .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.home .btn:hover {
  color: #ffffff;
  background: #000000;
}
.home .btn:hover i {
  transform: translateX(5px);
}
/* social icons start */

/* socials hover tooltip starts */
a[data-tooltip] {
  position: relative;
  text-decoration: none;
}

a[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 12px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}

a[data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
}

/* socials hover tooltip ends */


.socials {
  position: relative;
  margin-top: 10rem;
 
}
.socials .social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.socials .social-icons li {
  display: inline-block;
  margin-bottom: 10px;
}
.social-icons a {
  font-size: 2rem;
  display: inline-block;
  line-height: 44px;
  color: #000000;
  backdrop-filter: blur(3px);
  background: rgba(0, 0, 0, 0.2);
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #ac621c;
}


.social-icons a.behance:hover {
  background: #114a80;
}

.social-icons a.dribbble:hover {
  background: #EA4C89
}

.social-icons a.medium:hover {
  background: #797c80;
}


.social-icons a.github:hover {
  background-color: #24292E;
}
.social-icons a.twitter:hover {
  background-color: #1991DA;
}
.social-icons a.linkedin:hover {
  background-color: #084e74;
}

.social-icons a.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* social icons end */

@media (max-width: 600px) {
    .socials {
        
        display: flex !important;
        justify-content: center;
        align-items: center;
        margin-top: 1rem; /* Adjust this value to move it further down */
        margin-left: -10px;
        width: 100%;
        flex-direction: column
    }
  
    .social-icons {
      display: flex;
      gap: .5rem;
      flex-wrap: wrap;
      justify-content: center;
      padding: 0;
      list-style: none;
    }
  
    .social-icons li {
      list-style: none;
    }
  
    .social-icons a {
      margin-left: -5px;
      font-size: 1.8rem; /* Increase size for better tap area */
      color: #000000; /* Adjust color */
      backdrop-filter: blur(3px);
      background: rgba(0, 0, 0, 0.2); /* Background for better visibility */
      padding: 12px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      transition: background 0.3s ease-in-out;
    }
  
    .social-icons a:hover {
      background: #555; /* Slight color change on hover */
    }
  
    .social-icons a i {
      display: block;
    }
  }

  @media (max-width: 600px) {
    .home .content {  
      margin-top: 5rem; /* Adjust the value as needed */
    }
  }
  



/* hero media queries starts*/
@media (max-width: 450px) {
    .home .btn {
      margin: 4rem 0;
    }
    .socials {
      margin-top: 12rem;
    }
    .home .image img {
        width: 230px; /* Adjust width for mobile */
        height: 230px; /* Adjust height for mobile */
        object-fit: cover; 
      transform: translateY(-30px); /* Moves image up */
      margin-top: -27rem; /* Reset margin-top to avoid conflicts */
      margin-left: -4px; /* Move image slightly to the left */
      
    }
    .home .content p {
      font-size: 2.2rem;
    }
    .home .content p span {
      font-size: 2.2rem;
    }
  }
/* hero media queries ends*/
/* hero section end */

/* about section starts */
.about {
  padding: 80px 5%;
  background:#FFF;

  /* background: rgb(255, 255, 255); */
}


.about .heading {
  font-family: 'Poppins', serif;  /* Elegant & professional font */
  font-size: 2rem;
  
}

/* Add an underline effect */
.about .heading::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: #198694; /* Neon blue accent */
  margin: 2px auto;
  border-radius: 2px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .about .heading {
    font-size: 2.2rem;
  }
}

/* @import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

.writing-heading {
  font-family: 'Manrope', sans-serif;
  font-size: rem;
  text-align: center;
  color: transparent;
 
  position: relative;
  display: inline-block;
  background: #252525;
  background-clip: text;
  -webkit-background-clip: text;
  animation: smoothWrite 3s linear forwards;
  font-weight: 600;
  
}


@keyframes smoothWrite {
  from {
    background-size: 0% 100%;
  }
  to {
    background-size: 100% 100%;
  }
}*/


@media screen and (max-width: 768px) {
  .heading {
      font-size: 1.8rem;  /* Adjust font size */
      text-align: center; /* Center align if needed */
      margin-top: 30px;   /* Add margin to push it down */
  }

  .writing-heading {
    /* Adjust font size */
      text-align: center; /* Center align if needed */
      margin-top: 30px;
      margin-left: 20px;   /* Add margin to push it down */
}
} */






.experience {
  min-height: 100vh;
  background: rgb(255, 255, 255);
}


.about .row {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 4rem;
}

@media screen and (min-width: 1024px) { /* Apply only on desktop screens */
  .about .row .img {
    margin-left: 150px; /* Adjust this value to move it further */
  }
}


@media (max-width: 7px) {
  .about {
    padding-top: 30px;
  }

  .about .heading {
    font-size: 2rem;
    align-items: center;
  }
}
.about .row {
    display: flex;
    align-items: center;
    gap: 30px; /* Reduce this value to bring them closer */
}


.about .row .img {
  
  text-align: center;
  flex: 1 1 35rem;
}
.about .row .img img {
 
  margin-top: -170px;
  width: 100%;
  height: 400px;
  border-radius: 5%; 
  transition: 0.3s;
  cursor: pointer;
}
.about .row .img img:hover {
  mix-blend-mode: normal;
}
.about .row .content {
  flex: 1 1 59rem;
  padding: 3rem;

  
}
@media (min-width: 768px) {
  .about .row .content {
    margin-top: -50px; /* or use transform: translateY(-30px); */
    margin-left:80px;
  }
}

.about .row .content h3 {
  color: rgb(27, 27, 27);
  font-size: 2.5rem;
}
.about .row .content .tag {
  font-size: 1.4rem;
  color: rgb(167, 3, 30);
  font-weight: 600;
  margin-top: 1rem;
}

.about .row .content p {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  font-family: "Nunito";
  font-weight: 600;
  text-transform: none;
}
.about .row .content .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: "Nunito";
  font-weight: 600;
}
.about .row .content .box-container .box p {
  text-transform: none;
}
.about .row .content .box-container .box p span {
  color:  rgb(167, 3, 30);
  font-size: 14px;
    font-weight: 610;

}




/* .resumebtn {
  margin-top: 6rem;
}
.resumebtn .btn {
  padding: 1.9rem 3rem;
  border-radius: 0.5em;
  transition: 0.3s;
  color: #fff;
  background: #000000;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.6);
  font-family: "Nunito", sans-serif;
}
.resumebtn .btn span {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
}
.resumebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.2rem;
  transition: 0.3s;
}
.resumebtn .btn:hover {
  background: #7a3e1f;
}
.resumebtn .btn:hover i {
  transform: translateX(5px);
} */



.resumebtn {
  margin-top: 3rem;
  /* margin-left:-220px; */
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .resumebtn {
    margin-left: -220px; /* adjust value as needed */
  }
}


.resumebtn .btn {
  border: none;
  padding: 1.1rem 1.1rem; 
  border-radius: 0.5em;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  background: rgb(16 90 96);
  color: #fff;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.6);
  font-family: "Nunito", sans-serif;

  /* Move button slightly to the left */
  margin-left: -120px; /* Adjust as needed */
  transform: translateX(-190px); /* Another option */
  
}





.resumebtn .btn:before,
.resumebtn .btn:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  transition: all 0.25s;
}

.resumebtn .btn:before {
  top: -6px;
  left: -6px;
  border-top: 3px solid rgb(0, 0, 0);
  border-left: 3px solid rgb(0, 0, 0);
}



.resumebtn .btn:after {
  bottom: -6px;
  right: -6px;
  border-bottom: 3px solid rgb(0, 0, 0);
  border-right: 3px solid rgb(0, 0, 0);
}

.resumebtn .btn:hover:before,
.resumebtn .btn:hover:after {
  height: 80px;
  width: 140px;
}

.resumebtn .btn:hover {
  background: #000000;
}


/* * 🔹 Move button right on smaller screens */ 
@media (max-width: 600px) {
  .resumebtn .btn {
    margin-left: 190px; 
    transform: translateX(-190px); 
  }
}


@media (max-width: 768px) {
  .resumebtn .btn {
    margin-left: 170px; /* Adjust as needed */
    transform: translateX(-190px); /* Another option */
  }
}

@media (max-width: 768px) {
  .resumebtn .btn:hover:before,
  .resumebtn .btn:hover:after {
    width: 130px;  /* Keeps same size */
    height: 70px;  /* Keeps same size */
  }
}







@media (max-width: 768px) {
  .about-section {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers content horizontally */
    justify-content: center; /* Centers content vertically */
    padding: 20px;
  }

  .about-section h2 { 
    align-items: center; /* Centers content horizontally */
    justify-content: center; /* Centers content vertically */
    text-align: center; /* Centers text */
    font-size: 2rem; /* Adjust font size */
  }

  .about-section p {
    max-width: 90%; /* Prevents text from stretching */
    font-size: 1.2rem;
  }
}







/* about media queries starts*/
@media screen and (max-width: 600px) {
  
  .about .row .img {
    margin-top: 2rem;
  }
  .about .row .img img {
    margin: 0 auto;
    width: 80%;
    mix-blend-mode: normal;
  }
  .about .row {
    padding: 0.5rem;
    margin-bottom: 1rem;
  }
  .about .row .content {
    padding: 1rem;
  }
  .about .row .content .box-container {
    gap: 0;
  }
}
/* about media queries ends*/
/* about section ends */

/* skills section starts */
.skills {
  padding: 80px 5%;
  /*background: linear-gradient(to bottom, #9e0505, #4712b1);*/
  /* background: linear-gradient(to bottom, #000000,#7940038a); */

  background:linear-gradient(0deg,#083033, #167974, #031e20 );
}
.skills h2 {
  font-family: "Nunito", sans-serif;
  font-size: 1.8rem;
  color: #fff;
}
.skills .heading span {
  color: rgb(255, 255, 255);
}
.skills .container {
  background: rgba(18, 18, 19, 0.4);
  color: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  width: 90%;
  margin: auto;
  margin-top: 2rem;
  
    margin-top: 50px; /* Adjust the value as needed */
  }
  

.skills .container .row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  flex-wrap: wrap;
  gap: 1.8rem;
}
.skills .container .bar {
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.7);
  transition: 0.2s;
}
.skills .container .bar:hover {
  box-shadow: 0 0 15px rgba(194, 194, 194, 0.8) !important;
  background-color: rgba(0, 0, 0, 0.9) !important;
}

.skills .container .bar .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.skills .container .bar .info i {
  font-size: 4rem;
}
.skills .container .bar .info span {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Poppins";
  margin-left: 0.5rem;
}
/* skills media queries starts*/
@media screen and (max-width: 600px) {
  .skills .container {
    padding: 0;
    margin: 0;
  }
  .skills .container .row {
    grid-template-columns: repeat(2, 1fr);
    margin: 1rem;
    padding: 2rem 0.2rem 2rem 0.2rem;
    gap: 1rem;
  }
  .skills .container {
    margin-top: 5px;
    width: 100%;
  }
}
/* skills media queries ends*/
/* skills section ends */



/* education section starts */
.education {
  background:linear-gradient(0deg, #031e20, #167974, #032325);
  /* background: linear-gradient(to bottom,#7940038a, #000000); */
  padding: 80px 5%;
  margin: auto;
  /* padding: 80px 0; */
}

.education .qoute {
  color:#FFF;
  font-size: 1.5rem;
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  margin-top: -1rem;
  margin-left: -0px;
}


.education .box-container {
  display: flex;
  flex-wrap: wrap;                                                                            
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* min-height: 100vh; */
  margin-top: 1px; /* Moves it up */
}

.education .box-container .box {
  display: flex;
  flex-direction: row;
  width: 60%;
  border-radius: 1rem;
  box-shadow: 0.2rem 0.5rem 1rem rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.3);
}
.education .box-container .box:hover {
  transform: scale(1.05);
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 
              0 0 30px rgba(255, 255, 255, 0.3), 
              0 0 45px rgba(255, 255, 255, 0.2);
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.education .box-container .box .image {
  flex: 1 1 20rem;
  width: 100%;
}


.education .box-container .box img {
  object-fit: cover;
  position: relative;
  width: 100%;
  height: 100%;
}
.education .box-container .box .content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  flex-wrap: wrap;
  flex: 1 1 70rem;
}
.education .box-container .box .content h3 {
  font-size: 2rem;
  color: #ffffff;
  padding: 0.5rem 0;
  font-weight: 600;
  text-align: left;
  margin-left: 1rem;
}
.education .box-container .box .content p {
  color:#dbd2d2;
  font-size: 1.5rem;
  margin-left: 1rem;
  text-align: left;
}
.education h4 {
  font-size: 2rem;
  color: rgb(255, 255, 255);
  text-align: left;
  margin: 1rem;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
}


/* Education Section */




/* Timeline */
/* General Education Section */

/* Education Title */
.education .content h3 {
  font-size: 2rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
}

.education .content p {
  font-size: 1.4rem;
  color: #d3d3d3;
  margin-bottom: 5px;
}


/* Timeline */
.timeline {
  position: relative;
  width: 80%;
  max-width: 1100px;
  margin: auto;
  padding: 30px 0;
}

/* Timeline Vertical Line */

/* Timeline Item */
.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0;
}

/* Alternate Layout for Timeline */
.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

/* Timeline Icon */
.timeline-icon {
  width: 60px;
  height: 60px;
  background: #000000;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 1;
  transition: transform 0.3s ease;
  box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.9);
}

.timeline-icon:hover {
  transform: scale(1.1);
}

/* Timeline Content Box */
.timeline-content {
  width: 70%;
  background: rgba(0, 0, 0, 0.4);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: scale(1.05);
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 
              0 0 30px rgba(255, 255, 255, 0.3), 
              0 0 45px rgba(255, 255, 255, 0.2);
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Timeline Content Heading */
.timeline-content h3 {
  font-weight: 600; 
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.timeline-content span {
  font-weight: 600; /* Semi-bold */
  font-size: 1.24rem;
  color: #00d2cd;
  margin-right: 5px; /* Adds a little space between label and text */
}


.timeline-content p span {
  font-weight: 600px;
}


/* Timeline Content Text */
.timeline-content p { 
  font-size: 1.3rem;
  color: #e0e0e0;
  opacity: 0.9;
}


/* Timeline Date */
.timeline-content span {
  
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .timeline {
    width: 95%;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-item:nth-child(odd) {
    flex-direction: column;
  }

  .timeline-icon {
    margin-left: 0px;
  }

  .timeline-content {
    width: 90%;
    text-align: left;
  }
}



/* Responsive */
@media (max-width: 768px) {
  .timeline {
    width: 100%;
  }
  
  .timeline::before {
    left: 10%;
  }

  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
  }

  .timeline-content {
    width: 90%;
    margin: 10px 5%;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    align-items: center;
  }
  .timeline-icon {
    margin-bottom: 10px;
  }
}


/* education media queries starts*/
@media screen and (max-width: 600px) {
  .education .box-container .box {
    flex-direction: column;
    width: 100%;
  }
  .education .box-container .box .image {
    width: 100%;
    height: 25rem;
  }
  .education .box-container .box img {
    width: 100%;
  }
  .education .box-container .box .content {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    flex-wrap: wrap;
    flex: 0;
  }
  .education .btns {
    margin-top: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    flex-wrap: wrap;
  }
}
/* education media queries ends*/
.skill-card strong {
  color: #139e9e !important;
}




@media (max-width: 768px) {
  .skill-card strong {
    color: #139e9e !important;
  }
}


@media (min-width: 1024px) {  
  .skills-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem; /* Space between boxes */
  }

  .skill-card p strong {
    display: block; /* Makes "Tools:" appear on a new line */
    margin-top: 15px; /* Adds space before "Tools:" */
    font-size: 1.43rem; /* Slightly increases font size */
    color: #ffffff; /* Darker shade for emphasis */
    font-weight: 600;
}



  .skill-card {
      width: 280px; /* Adjust width for desktop */
      height: 400px; /* Adjust height for desktop */
      padding: 20px;
      font-size: 1.1rem;
      transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }

  .skill-card:hover {
      transform: scale(1.05); /* Slight zoom on hover */
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .skill-card i {
      font-size: 2.5rem; /* Bigger icons */
  }

  .skill-card h3 {
      font-size: 1.4rem;
      margin-top: 10px;
      font-weight: 500;
  }
}

/* -------------------------------------- */

.what-i-can-do {
  text-align: center;
  padding: 80px 5%;
  background: #000000;
  color: white;
}

.what-i-can-do .heading {
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.skills-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.skill-card {
  background: #222;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  cursor: pointer;
}

.skill-card:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 15px #167974;
  border-color: #167974;
}

.skill-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}


/* Hover Effect for Desktop */
.skill-card:hover, .skill-card.selected {
  transform: scale(1.05);
  box-shadow: 0px 0px 15px #167974;
  border-color: #167974;
}

/* Ensures transition is smooth */
.skill-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}


.skill-card i {
  font-size: 2.5rem;
  color: #167974;
  margin-bottom: 15px;
}

.skill-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.skill-card p {
  font-size: 1.21rem;
  color: #bbb;
}


/* Work Section */
.work {
  position: relative;
  padding: 60px 10%;
  background: linear-gradient(0deg, #083033, #167974, #053033);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Filter Buttons */
.work .filter-buttons {
  margin-bottom: 20px;
}

/* Default Button - Glass Effect */
.work .filter-btn {
  padding: 10px 20px;
  margin: 5px;
  /* border: 1.5px solid rgba(255, 255, 255, 0.4);  */
  background: rgba(0, 0, 0, 0.30); /* Transparent background */
  backdrop-filter: blur(8px); /* Soft blur effect */
  color:#cbc2c2; /* Light Text */
  border-radius: 12px; /* Smooth corners */
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

/* Hover Effect - Soft Glow */
.work .filter-btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px); /* Slight lift effect */
}

/* Active/Selected State - Filled Button */
.work .filter-btn.active,
.work .filter-btn.selected {
  background: linear-gradient(145deg, #000000, #1a1a1a);
  color: #ffffff;
  border: 1.5px solid #000000;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  transform: scale(1.05); /* Slight scale-up */
}

/* Button Click Effect */
.work .filter-btn:active {
  transform: scale(0.9);
}

/* Project Cards */
.work .box-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.work .box {
  position: relative;
  background: rgba(7, 7, 7, 0.3);
  padding: 20px;
  border-radius: 15px;
  overflow: hidden;
  text-align: left;
  transition: 0.3s;
  margin: 15px;
  width: 310px;
  height: 410px;
  box-shadow: 0 6px 12px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}
/* Add perspective to the parent container */
.work .box-container {
  perspective: 1000px; /* Creates depth for 3D transformation */
}

.work .box {
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.work .box:hover {
  transform: scale(1.06); 

  transform: scale(1.05) rotateX(5deg) rotateY(5deg); /* 3D tilt & zoom */
  box-shadow: 0 15px 35px rgba(22, 121, 116, 0.7), 
              0 0 20px rgba(22, 121, 116, 0.5); /* Soft teal glow */
  background: rgba(7, 7, 7, 0.5); /* Slightly darker on hover */
}

.work .box {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.work .box:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0px 12px 20px rgba(255, 255, 255, 0.2);
}



/* Image inside the box */
.work .box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}


.work .box .tag h3 {
  font-size: 18px; /* Adjust to your preference */
  font-weight: 600; /* Optional: Reduce boldness */
  margin: 5px 0; /* Adjust spacing */
}

/* Tag & Tech Stack */
.work .tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tech-icons i {
  margin-right: 8px;
  font-size: 22px;
}

/* Buttons */
.work .btns {
  display: flex;
  justify-content: space-between;
}

.work .btn {
  flex: 1;
  text-align: center;
  padding: 10px;
  margin: 5px;
  background: #000000;
  color: white;
  border-radius: 8px;
  transition: 0.3s;
  font-size: 16px;
}

.work .btn:hover {
  background: #000000;
}

.details-btn {
  background: #167974;
  color: white;
  padding: 10px 15px;
  border-radius: 6px;
  transition: 0.3s;
  text-align: center;
}
.details-btn:hover {
  background: #0e5a57;
}

/* experience section starts */


.experience {
  /* background: linear-gradient(to bottom, #000000,#7940038a); */
  background:linear-gradient(0deg,#031e20, #125f5b, #083033);
  padding: 80px 5%;
}

.experience .timeline {
  top: 10px;
  min-height: 100vh;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.experience .timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 1000px;
  background: #000000;
  top: 10px;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  z-index: -2;
}
.experience .container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  
}
@keyframes neon-glow {
  0% {
    box-shadow: 0 0 5px #000000, 0 0 5px #000000, 0 0 5px #000000;
  }
  50% {
    box-shadow: 0 0 5px #ffffff, 0 0 5px #ffffff, 0 0 5px #ffffff;
  }
  100% {
    box-shadow: 0 0 5px #000000, 0 0 5px #000000, 0 0 5px #000000;
  }
}

/* Neon Glow Animation */
@keyframes neon-glow {
  0% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.8);
  }
}

/* Experience Container */
.experience .container::after {
  content: "\f0b1"; /* FontAwesome icon */
  position: absolute;
  width: 28px;
  height: 28px;
  right: -14px;
  background: rgba(0, 0, 0, 0.8); /* Dark background for neon contrast */
  top: 40px;
  border-radius: 50%;
  z-index: 100;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 700;
  color: #a39696;
  font-family: "Font Awesome 5 Free";
  display: flex;
  align-items: center;
  justify-content: center;
  animation: neon-glow 1.5s infinite alternate;
}

/* Positioning */
.experience .left {
  left: 0;
}
.experience .right {
  left: 50%;
}


/* Hover effect for desktop */
.container:hover .content {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Selection effect for mobile */
.container.selected .content {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1); /* Light transparent highlight */
  border: 2px solid #00d9ff; /* Neon blue selection border */
}

.experience .content {
  position: relative;
  margin-top: 10px;
  background: rgba(0, 0, 0, 0.300);
  border-radius: 6px;
  padding: 6px;
}

.experience .left .content::before {
  content: "";
  position: absolute;
  top: 25%; /* Center the arrow vertically */
  right: -10px; /* Move the arrow to the right */
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid  rgba(0, 0, 0, 0.300); /* Right-facing arrow */
}

/* On Mobile Screens: Arrow faces left */
@media (max-width: 768px) {
  .experience .left .content::before {
    left: -10px;
    right: auto; /* Reset right positioning */
    border-left: none;
    border-right: 10px solid  rgba(0, 0, 0, 0.300); /* Left-facing arrow */
  }
}

/* For right content box (arrow pointing left) */
.experience .right .content::before {
  content: "";
  position: absolute;
  top: 22%;
  left: -10px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid  rgba(0, 0, 0, 0.300); /* Left-facing arrow */
}

/* Hover effect: Arrow color matches content box */
.experience .content:hover::before {
  border-left-color: rgba(0, 0, 0, 0.7); /* Change arrow color for left content */
  border-right-color: rgba(0, 0, 0, 0.7); /* Change arrow color for right content */
}


/* Hover Effect */
.experience .content:hover {
  background: rgba(0, 0, 0, 0.7); /* Slightly brighter */
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2); /* Soft glow */
  transform: scale(1.05); /* Reduced zoom-in */
  transition: all 0.3s ease-in-out;
}


/* Adjust left arrow spacing */
.experience .right::after {
  left: -16px;
}


.experience .content .tag {
  color:#fff4f4;
  font-size: 1.3rem;
  padding-top: 1.5rem;
  padding-left: 1.5rem;
}

.experience .content .desc {
  margin-left: 1.5rem;
  padding-bottom: 1rem;
}
.experience .content .desc h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
.experience .content .desc p {
  color:#fff4f4;

  font-size: 1.2rem;
}
/* view all button */
.morebtn {
  display: flex;
  justify-content: center;
}
.morebtn .btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 0.5em;
  transition: 0.5s;
  color: #fff;
  background: #000000;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, 0.6);
  text-align: center;
}
.morebtn .btn span {
  font-weight: 600;
  font-size: 1.7rem;
  font-family: "Nunito", sans-serif;
}
.morebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.morebtn .btn:hover {
  background: #000000;
}
.morebtn .btn:hover i {
  transform: translateX(5px);
}

/* Media queries - Responsive timeline on screens less than 600px wide */


@media screen and (max-width: 600px) {
  .experience {
    min-height: 100vh;
  }
  .experience .timeline {
    margin-top: 2rem;
  }
  .experience .timeline::after {
    height: 1090px;
    left: 31px;
  }
  .experience .container {
    width: 100%;
    padding-left: 8rem;
    padding-right: 2rem;
  }
  .experience .container::after {
    font-size: 1.6rem;
  }
  .experience .container::before {
    left: 60px;

    border: medium solid #8c4624;
    border-width: 10px 10px 8px 0;
    border-color: transparent #fafafa1a transparent transparent;
  }
  .experience .left::after {
    left: 15px;
  }
  .experience .right::after {
    left: 15px;
  }
  .experience .right {
    left: 0%;
  }
  .morebtn {
    margin-top: 3rem;
  }
}
/* experience media queries ends */
/* experience section ends */

/* contact section starts */
/* .contact {
  background: #e5ecfb;
  min-height: 60vh;
}
.contact .container {
  max-width: 1050px;
  width: 100%;
  background: #fff;
  border-radius: 1.5rem;
  margin: 2rem 5rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
.contact .container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 2rem;
}
.contact .content .image-box {
  max-width: 60%;
  margin-left: 4rem;
}
.contact .content .image-box img {
  width: 100%;
  height: 40rem;
  position: relative;
}
.contact .content form {
  width: 45%;
  margin-right: 3.5rem;
}
form .form-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-group .field {
  height: 50px;
  display: flex;
  position: relative;
  margin: 1rem;
  width: 100%;
}
form i {
  position: absolute;
  top: 50%;
  left: 18px;
  color: rgb(51, 51, 51);
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}
form .field input,
form .message textarea {
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 16px 0 48px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  border-radius: 5px;
  border: 1px solid rgb(51, 51, 51);
  background: #e5ecfb;
}
.field input::placeholder,
.message textarea::placeholder {
  color: rgb(51, 51, 51);
}
.field input:focus,
.message textarea:focus {
  padding-left: 47px;
  border: 2px solid rgb(0, 0, 0);
}
.field input:focus ~ i,
.message textarea:focus ~ i {
  color: rgb(115, 3, 167);
}
form .message {
  position: relative;
  margin: 1rem;
  width: 100%;
}
form .message i {
  top: 25px;
  font-size: 20px;
  left: 15px;
}
form .message textarea {
  min-height: 130px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 12px 20px 0 48px;
}
form .message textarea::-webkit-scrollbar {
  width: 0px;
}
form .button-area {
  display: flex;
  float: right;
  flex-direction: row-reverse;
}
.button-area button {
  color: #fff;
  border: none;
  outline: none;
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  background: #000000;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.6);
  transition: 0.3s ease;
  font-family: "Nunito", sans-serif;
}
.button-area button:hover {
  background: #421cecf5;
}
.button-area span {
  font-size: 17px;
  padding: 1rem;
  display: none;
}
.button-area button i {
  position: relative;
  top: 6px;
  left: 2px;
  font-size: 1.5rem;
  transition: 0.3s;
  color: #fff;
}
.button-area button:hover i {
  left: 8px;
} */
/* contact section media queries starts */
@media (max-width: 900px) {
  .contact {
    min-height: 70vh;
  }
  .contact .container {
    margin: 3rem 0 2rem 0;
  }
  .contact .container .content {
    padding: 18px 12px;
  }
  .contact .content .image-box {
    display: none;
  }
  .contact .content form {
    width: 100%;
    margin-right: 2rem;
  }
}
/* contact section media queries ends */

/* Work Section */
.work {
  position: relative;
  animation: gradientBG 10s ease infinite;
  padding: 80px 5%;
  overflow: hidden;
}

/* Gradient Animation */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating Icons */
.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.work .icon {
  position: absolute;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
  opacity: 0.8;
  animation: float 6s infinite alternate ease-in-out;
}

.icon.code { top: 10%; left: 15%; animation-delay: 0s; }
.icon.brush { top: 80%; left: 70%; animation-delay: 0s; }
.icon.gear { top: 70%; left: 30%; animation-delay: 2s; }



.icon.cd { top: 70%; left: 65%; animation-delay: 0s; }
.icon.bh { top: 8%; left: 75%; animation-delay: 0s; }
.icon.gr { top: 10%; left: 90%; animation-delay: 2s; }




@keyframes float {
  0% { transform: translateY(0) scale(1); opacity: 0.7; }
  100% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

/* Particle Canvas */
#particles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}


/* contact section ends */

/* footer section starts */
.footer {
  min-height: auto;
  padding-top: 0;
  background: rgb(0, 0, 0);
}
.footer .box-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer .box-container .box {
  flex: 1 1 25rem;
  margin: 2.2rem;
}
.footer .box h3 {
    font-family: 'Poppins', sans-serif; /* Clean and modern font */
    font-size: 1.9rem; /* Adjust size as needed */
    font-weight: 600; /* Slightly bold */
    color: #167974; /* Your name in white */
}

.footer .box h3 span {
  font-size: 1.4rem;
    color: #8d8a8a; /* Grey color for the quote */
}

.footer .box-container .box p {
  display: flex; /* Ensures icon and text stay in one line */
  align-items: center; /* Aligns items vertically */
  font-size: 1.4rem;
  color: #ccc;
  padding: 0.7rem 0;
  text-transform: none;
  gap: 8px; /* Space between icon & text */
  white-space: nowrap; /* Prevents text from wrapping */
}

.footer .box-container .box p i {
  color: #6d2727; /* Icon color */
}

.fade-scale {
  opacity: 0;
  transform: scale(0.8);
  animation: fadeScale 1.2s ease-in-out forwards;
}




@keyframes fadeScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}



@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}



.footer .box-container .box a {
  font-size: 1.4rem;
  color: #ccc;
  padding: 0.4rem 0;
  display: block;
}
.footer .box-container .box a:hover {
  color: #167974;
}
.footer .box-container .box .share {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
}
.footer .box-container .box .share a {
  height: 4rem;
  width: 4rem;
  padding: 0.8rem;
  text-align: center;
  border-radius: 5rem;
  font-size: 1.7rem;
  margin-right: 1rem;
  transition: 0.2s;
  background: rgb(230, 230, 230);
  color: #000000;
  border: none;
}
.footer .box-container .box .share a:hover {
  background: transparent;
  transform: scale(0.98);

  color: #167974;
}
.footer .credit {
  padding: 1rem 0 0 0;
  text-align: center;
  font-size: 1.5rem;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  color: #fff;
  border-top: 0.1rem solid #fff3;
}
.footer .credit a {
  color: #167974;
}
.footer .fa {
  color: #e90606;
  margin: 0 0.3rem;
  font-size: 1.5rem;
  animation: pound 0.35s infinite alternate;
}

.work .box p {
  font-size: 12.5px; 
  display: flex; /* Ensures the icon and text stay in one line */
  align-items: center; /* Aligns them vertically */
  gap: 8px; /* Adds space between the icon and text */
  white-space: nowrap; /* Prevents text from breaking into a new line */
}

.work .box p i {
  font-size: 16px; /* Adjust icon size if needed */
}





@-webkit-keyframes pound {
  to {
    transform: scale(1.1);
  }
}
@keyframes pound {
  to {
    transform: scale(1.1);
  }
}
@media (max-width: 450px) {
  .footer .box-container .box {
    margin: 1.5rem;
  }
  .footer .box-container .box p {
    padding: 0.7rem;
  }
  .footer .box-container .box .share a {
    padding: 1rem;
  }
}
/* footer section ends */


@media (max-width: 600px) {
  .footer .box-container .box {
    margin: 1rem;
  }
  .footer .box-container .box p {
    padding: 0.4rem;
  }
  .footer .box-container .box .share a {
    padding: 1rem;
  }
}


@media (max-width: 600px) {  /* iPhone 15 screen width */
  .contact-container {
    display: flex;
    align-items: center;
    flex-wrap: nowrap; /* Prevents text from wrapping */
    justify-content: center;
    gap: 8px; /* Adjust spacing */
    white-space: nowrap; /* Ensures text stays on the same line */
  }

  .contact-container img {
    width: 22px; /* Adjust icon size */
    height: 22px;
  }

  .contact-container a {
    font-size: 14px; /* Adjust text size */
  }
}



/* common media queries starts*/
@media (max-width: 450px) {
  html {
    font-size: 55%;
  }
  body {
    padding-right: 0;
  }
  section {
    padding: 2rem;
  }
}
/* common media queries ends*/

/* scroll top starts */
#scroll-top {
  position: fixed;
  top: -140%;
  right: 2rem;
  padding: 1rem;
  font-size: 2.2rem; /* Bigger for visibility */
  background: rgb(0, 0, 0); /* Background color */
  color: rgb(255, 255, 255); /* Hand icon color */
  border-radius: 50%;
  transition: 1s linear;
  z-index: 1000;
  cursor: pointer;
  text-decoration: none;
  animation: bounce 2s infinite ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px; /* Fixed size for consistency */
  height: 50px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2); /* Soft glow effect */
}

/* Show hand when scrolling */
#scroll-top.active {
  top: calc(100% - 12rem);
}

/* Bounce Animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}


.credit {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;

}
.contact-container p{
color: #FFF;
}

.wpcontact-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: black;
  padding: 8px 12px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.wpcontact-container a {
  margin-top: -30px;
  text-decoration: none;
  color: #fafafa;
  font-size: 15px;
  font-weight: 350px;
  margin-right: 10px; /* Space between text and logo */
  animation: glowEffect 1.5s infinite alternate;

}


.wpcontact-container img {
  width: 28px;
  height: 28px;
  margin-bottom: -5px;
}

.principles h3 {
  font-size: 1.4rem;
  color: #ffffff; /* Bright white for emphasis */
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: 600; /* Slightly bold for importance */
  letter-spacing: 0.5px;
  transition: color 0.3s ease-in-out;
}

/* Glow effect on hover */
.design-philosophy h2 {
  /* font-family: 'Great Vibes'; */
  font-family: 'Poppins', sans-serif;
   font-size: 2.2rem; /* Adjust size as needed */
  font-weight: 600;
  color: #fff; /* Adjust color if needed */
  text-align: center;
}

/* Stylish underline effect */
/* .design-philosophy h2 .underline {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
  color: #00d9ff; 
} */



.design-philosophy {
  /* background: linear-gradient(to bottom,#7940038a, #000000);   */
  background-color: #000000;
  padding: 60px 20px;
  min-height: 70vh;
  margin: auto;
}


.underline {
  display: inline-block;
  position: relative;
}

.underline::after {
  content: "";
  width: 100%;
  height: 4px;
  background: #1b777e;
  position: absolute;
  left: 0;
  bottom: -5px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease-in-out;
}

.design-philosophy h2:hover .underline::after {
  transform: scaleX(1.1);
}





.fade-in {
  font-size:13px;
  opacity: 0;
  transform: translateY(0px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {

  opacity: 1;
  transform: translateY(0);
}

/* Principles Section */
.principles {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 20px;
}



.principle p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75); /* Soft white for readability */
  text-align: center;
  padding: 10px 15px;
  margin: 0;
  line-height: 1.5; /* Improves readability */
  transition: color 0.3s ease-in-out; /* Smooth color transition on hover */
}

/* Style for each principle box */
/* Default State */
.principle {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

/* Hover Effect for Desktop */
.principle:hover, 
.principle.active { /* Active state for mobile */
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5); /* Bright white glow */
}


.principle:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.6);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}



/* Adjust the text description inside the box */
.cognitive-description {
  font-size: 0.9rem; /* Smaller font size for the description */
  color: rgba(255, 255, 255, 0.8); /* Soft white color */
  text-align: center;
  margin-top: 10px; /* Space between heading and description */
  line-height: 1.5;
  padding: 0 10px; /* Padding for better text spacing */
}

/* Hover effect to make text slightly brighter */
.principle:hover p {
  color: rgba(255, 255, 255, 0.9); /* Brighter text on hover */
}

/* Hover effect to make text slightly brighter */
.principle:hover p {
  color: rgba(255, 255, 255, 0.9); /* Brighter text on hover */
}


/* Icon Styling */
.icon {
  margin-bottom: 15px;
}



/* Section Styling */
.design-philosophy {
  padding: 60px 20px;
  
  margin: auto;
}



.underline {
  display: inline-block;
  position: relative;
}

.underline::after {
  content: "";
  width: 100%;
  height: 4px;
  background: #167974;
  position: absolute;
  left: 0;
  bottom: -5px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease-in-out;
}

h2:hover .underline::after {
  transform: scaleX(1);
}



.highlight {
  /* background: linear-gradient(to right, #ff6b6b, #ffa07a);  */
  background: #167974;
  font-weight: 1000px;
  font-size: 15px;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: bold;
}

/* Fade-in effect */
.fade-in {
  color: #FFF;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Make the element visible when it comes into view */
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.principle .icon svg {
  stroke: #167974; /* Change to any color you prefer */
}



/* Default spacing for larger screens */
section {
  padding: 10px 5%;
}

/* Adjust spacing for mobile screens */
@media (max-width: 768px) {
  section {
      padding: 50px 5%; /* Reduce the space for smaller screens */
  }
}

@media (max-width: 480px) {
  section {
      padding: 10px 5%; /* Further reduce the space for very small screens */
  }
}

section .heading {
  position: relative;
  transform: translateY(-16px); /* Moves the heading upwards */
  transition: transform 0.3s ease; /* Smooth animation */
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
  section .heading {
      transform: translateY(-33px);
  }
}

@media (max-width: 480px) {
  section .heading {
      transform: translateY(-33px);
  }


  .education .qoute {
    color:#FFF;
    font-size: 1.5rem;
    text-align: center;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    margin-top: -3rem;
    margin-left: -0px;
  }
}

/* Contact Section */
.contact {
  padding: 80px 5%;
  background: linear-gradient(135deg, #031e20, #167974, #053033);
  text-align: center;
}

/* Contact Container */
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 90px;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  margin: auto;
  animation: fadeInUp 1s ease-in-out;
}

/* Contact Info */
.contact-info {
  flex: 1;
  text-align: left;
  color: white;
}

.contact-info h3 {
  font-size: 1.8rem;
  font-weight: 600;
  animation: fadeIn 1.5s ease-in-out;
}

.contact-info p {
  font-size: 1.35rem;
  margin: 10px 0;
  animation: fadeIn 1.5s ease-in-out;
}

/* Contact Form */
.contact-form {
  flex: 1;
  text-align: left;
  animation: fadeInUp 1.5s ease-in-out;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

/* Input Box */
.input-box {
  position: relative;
  margin-bottom: 30px;
}

/* Input & Textarea */
.input-box input,
.input-box textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #e8e9e9;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease-in-out;
}

/* Floating Labels */
.input-box label {
  position: absolute;
  top: 50%;
  left: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.3rem;
  transition: 0.3s ease-in-out;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Animated Border */
.input-box .border-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #30afaf;
  transition: width 0.5s ease-in-out;
}

/* Move Label & Animate Border */
.input-box input:focus ~ label,
.input-box input:valid ~ label,
.input-box textarea:focus ~ label,
.input-box textarea:valid ~ label {
  top: -10px;
  font-size: 1.39rem;
  color: #ffffff;
}

.input-box input:focus ~ .border-line,
.input-box input:valid ~ .border-line,
.input-box textarea:focus ~ .border-line,
.input-box textarea:valid ~ .border-line {
  width: 100%;
}

/* Submit Button */
.contact .btn {
  background: linear-gradient(90deg, #0e4c4c, #167974);
  color: white;
  padding: 14px;
  border-radius: 12px;
  font-size: 1.4rem;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  position: relative;
  overflow: hidden;
}

/* Button Hover Effect */
.contact .btn:hover {
  background: linear-gradient(90deg, #167974, #0e4c4c);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
  transform: scale(1.05);
}

/* Button Ripple Effect */
.contact .btn::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease-out, height 0.5s ease-out;
}

.contact .btn:hover::before {
  width: 400px;
  height: 400px;
}

/* Animations */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 30px;
  }

  .contact-info,
  .contact-form {
    width: 100%;
    text-align: center;
  }

  .input-box input,
  .input-box textarea {
    font-size: 16px;
    padding: 14px;
  }

  .contact .btn {
    font-size: 1.4rem;
    padding: 12px;
  }
}

