@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h2 {
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  border-bottom: 2px solid #fff;
  display: inline-block;
}

p{
  text-align: justify;
}

body {
  font-family: "Poppins", sans-serif; /*font-family: 'Arial', sans-serif;*/
  background-color: #0c1a25;
  color: white;
  scroll-behavior: smooth; /*UPDATED*/
}

/*UPDATED*/
img {
  display: flex;
  width: 100%;
}

/*UPDATED*/
a {
  text-decoration: none;
}

nav.header {
  background-color: #09131c;
  padding: 20px 20px;
  position: fixed;
  width: 100%;
  top: 0; 
  left: 0;
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/*UPDATED*/
nav {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  padding: 10px 20px;
  /*background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);*/
}

/*UPDATED*/
header {
  display: flex;
   /* Distribute logo and nav links across/ justify-content: space-between;*/
  align-items: center;
  width: 100%; /* Ensure the header takes up the full width */
  padding: 20px;
}

/*UPDATED*/
.nav__logo a {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
}

/*UPDATED*/
.nav__menu__btn {
  font-size: 1.5rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  display: none; /* Hidden in desktop view */
  position: absolute; /* Position independently */
  right: 20px; /* Align to the right edge */
  top: 20px; /* Adjust vertical alignment */
  z-index: 11; /* Ensure it appears above other elements */
}

/*UPDATED*/
.nav__links {
  list-style: none;
  padding: 0;
  margin: 0; 
  display: flex;
  flex-direction: row;/*column*/
  align-items: center;
  margin-left: auto;
  /*padding: 1rem*/
}

.nav__links li {
  display: inline;
  margin-left: 15x;
  font-weight: 500;
}

/*UPDATED*/
.link a {
  color: white;
  text-decoration: none;
  padding: 10px;
  transition: color 0.3s;
}

/*UPDATED*/
.link a:hover {
  color: #00f0ff;
}

/*UPDATED*/
.nav__links.open {
  display: flex;
  flex-direction: column; /* Stack links vertically in mobile */
  align-items: flex-end; /* Align links to the right */
}

@media (max-width: 768px) {
  .nav__menu__btn {
    display: block; /* Show the menu button in mobile view */
  }

  .nav__links {
    display: none; /* Hide nav links by default */
  }

  .nav__links.open {
    display: flex; /* Show nav links when open */
    flex-direction: column; /* Stack vertically for mobile */
    align-items: center; /* Align links to the center */
    justify-content: center; /* Ensure they are fully centered */
    padding: 1rem;
    width: 100%;
  }

  .nav__links li {
    margin: 10px 0; /* Add some spacing between links */
  }

  .intro {
    flex-direction: column; /* Stack elements vertically on smaller screens */
    padding: 60px 40px !important;
  }

  .intro-text {
    order: 2;
    text-align: center; /* Center-align text for better mobile layout */
    margin: 0; /* Remove margin */
  }

  .intro-text h1 {
    font-weight: 501 !important;
    font-size: 23px !important; 
    color: #ffffff; 
  }

  .intro-text p {
    font-size: 15px !important;
  }

  .intro-image {
    margin-bottom: 60px;
    order: 1;
    border-radius: 50%;
    padding: 9px 12px !important;
    box-shadow: 0 0 30px 15px rgba(0, 240, 255, 0.4) !important;
  }

  .intro-image img {
    max-width: none; /* Remove max-width restriction */
    border: 8px solid #0c1a25 !important;
  }
  .intro-image try {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #7600ff, #00f0ff); 
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 0 30px 15px rgba(0, 240, 255, 0.4);
  }
  

  .about {
    padding: 50px 40px !important;
    flex-direction: column; /* Stack the text and image vertically */
  }

  .about-text {
    text-align: center; 
    margin-bottom: 20px; 
  }

  .about-text h2 {
    font-weight: 600 !important;
    font-size: 23px !important; 
  }
  
  .about-text h3 {
    font-weight: 500 !important;
    font-size: 17px !important;
  }

  .about-text p {
    font-size: 15px !important;
    text-align: justify !important;
  }

  .about-image {
    padding: 10px !important;
    margin-top: 20px;
    margin-bottom: 60px;
  }

  .about-image img {
    border: 7px solid #0c1a25 !important;
    width: 100px; 
  }

  .circular-skills {
    justify-content: center; 
  }
  
  .circle {
    width: 120px;
    height: 120px;
    margin-bottom: 50px;
  }

  .inner-circle {
    width: 70%;
    height: 70%;
  }

  .circle p {
    font-size: 14px;
    bottom: -35px;
  }
  

  .project-button {
    width: 47%;
    text-align: center;
    margin: 1px auto !important;
  }

  .project-button a {
    display: inline-block;
    width: 100%;
    padding: 1px;
    font-size: 13px !important;
  }


  .contact {
    padding: 60px 40px !important;
    padding: 50px 20px;
  }

  .contact a{
    font-size: 14px !important;
  }

  .contact p{
    font-size: 15px !important;
  }

  .contact-content { 
    width: 50%;
  }

  .contact-info,
  .contact-form {
    max-width: 1000%;
    width: 90%;
    min-width: auto;
    margin: 0;
  }

  .contact-form form {
    width: 90%;
  }

  .contact-info {
    text-align: center;
  }

  .contact-head{
    padding: 60px 40px !important;
    font-size: 40px !important;
  }

  .contact-info h2,
  .contact-info p {
    text-align: center;
  }

  .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 23px !important;
  }

  .social-links a {
    font-size: 18px; 
    margin-right: 18px;
  }

  .contact-form .btn {
    width: 100%; 
    margin: 10px auto; /* Center button */
  }

  .phone-button {
    width: 90%;
    text-align: center;
    margin: 5px 10px;
  }

  .phone-button a {
    display: inline-block;
    width: 90%;
    padding: 1px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form .btn {
    width: 100%;
    margin-bottom: 15px;
  }

  .services h2, .skills-head, .project-section h2, .contact-info h2{
    font-weight: 500 !important;
    font-size: 23px !important;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 50px;
    padding-bottom: 1px !important;
  }


}


/*Intro*/
.intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 80px;
  background-color: #0c1a25;
}

.intro-text {
  flex: 1; /* Allow text to take available space */
  max-width: 650px;
}

.intro-text h1 {
  font-weight: 600;
  font-size: 44px;
  line-height: 1.2;
  color: #ffffff;
}

.intro-text span {
  color: #00f0ff;
}

.intro-text p {
  margin: 20px 0;
  font-size: 22px;
  line-height: 1.6;
  color: #c4c4c4;
}

.social-links a {
  margin-right: 10px;
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s;
}

@media(max-width:768px){
  .social-links a{
    font-size: 16px !important;
    margin-right: 3px !important;
  }
  .btn{
    display: inline-block;
    margin-top: 20px !important;
    padding: 7px 10px !important;
    color: #09131c;
    font-size: 12px;
    font-weight: bold;
    border-radius: 10px;
  }
    
  .btn a{
    margin-top: 7px !important;
    padding: 5px 10px !important;
    text-decoration: none !important;
    font-weight: bold;
    border-radius: 10px !important;
  }
}

.social-links a:hover {
  color: #00f0ff;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #00f0ff;
  color: #09131c;
  text-decoration: none;
  font-weight: bold;
  border-radius: 10px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #00c4ff;
}

.intro-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #7600ff, #00f0ff);
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 0 30px 15px rgba(0, 240, 255, 0.4);
}

.intro-image img {
  max-width: 400px;
  width: 100%;
  height: auto; 
  border-radius: 50%;
  box-shadow: 0 0 30px 10px rgba(0, 240, 255, 0.7);
  border: 10px solid #0c1a25;
  background: linear-gradient(145deg, #00f0ff, #7600ff);
  padding: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-image img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 50px 20px rgba(0, 240, 255, 0.9);
}


/*About*/
.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 80px;
  background-color: #0c1a25;
}

.about-text {
  flex: 1; /* It allows text to take available space */
  max-width: 650px;
}

.about-text h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  color: #ffffff;
}

.about-text span {
  color: #00f0ff;
}

.about-text h3 {
  font-weight: 600;
  font-size: 24px;
  margin-top: 10px;
  color: #ffffff;
}

.about-text p {
  margin: 20px 0;
  font-size: 22px;
  line-height: 1.6;
  color: #c4c4c4;
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #7600ff, #00f0ff);
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 0 30px 15px rgba(0, 240, 255, 0.4);
}

.about-image img {
  max-width:400px; 
  width: 100%;
  height: auto; 
  border-radius: 50%;
  box-shadow: 0 0 30px 10px rgba(0, 240, 255, 0.7);
  border: 10px solid #0c1a25;
  background: linear-gradient(145deg, #00f0ff, #7600ff);
  padding: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 50px 20px rgba(0, 240, 255, 0.9);
}


/*Service*/
.services {
  padding: 100px 20px;
  background-color: #0c1a25;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.services h2 {
  font-size: 40px !important;
}

.services-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.services-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.service-box {
  border-radius: 40px !important;
  box-shadow: 0 0 15px 10px rgba(0, 240, 255, 0.1);
  width: 300px; /* Adjusted for better appearance */
  margin: 25px !important;
  padding: 20px;
  box-sizing: border-box;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #00f0ff;
  color: #0c1a25;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
}
.cus-btn{
  border-radius: 10px !important;
}

.btn:hover {
  background-color: #00ccdd;
}

/* Overlay Styles*/
.overlay {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
  z-index: 1000;
  justify-content: center;
  align-items: center;
  overflow-y: auto; /* Allow scrolling if content overflows */
}

.overlay-content {
  background: #0c1a25;
  border-radius: 20px;
  width: 90%;
  max-width: 800px;
  margin: 20px;
  padding: 20px;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.overlay-content img{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding-bottom: 30px;
  height: 400px;
  width: auto;
  max-width: 760px;
}

.overlay-details h2{
  font-size: 25px !important;
  text-align: center;
  text-transform: none;
}

.overlay-content{
  font-size: medium;
}

.sample img{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding-bottom: 25px;
  height: 300px;
  width: auto;
  max-width: 400px;
  display: inline;
  padding-top: 30px;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 34px;
  color: #00f0ff;
  cursor: pointer;
}

.close-btn:hover {
  color: #00ccdd;
}

.overlay-details {
  max-height: 60vh; /* Limit height for scrolling */
  overflow-y: auto; /* Enable vertical scrolling */
  padding-right: 10px; /* Space for scrollbar */
  color: #fff;
  text-align: left;
}

/* Custom scrollbar for overlay-details */
.overlay-details::-webkit-scrollbar {
  width: 8px;
}

.overlay-details::-webkit-scrollbar-track {
  background: #1a2b3c;
  border-radius: 10px;
}

.overlay-details::-webkit-scrollbar-thumb {
  background: #00f0ff;
  border-radius: 10px;
}

.overlay-details::-webkit-scrollbar-thumb:hover {
  background: #00ccdd;
}

.overlay-content h2 {
  color: #00f0ff;
  margin-bottom: 20px;
}

.overlay-content p, .overlay-content ul {
  color: #ccc;
  line-height: 1.6;
}

.overlay-content ul {
  padding-left: 20px;
}

/* Desktop styles */
@media (min-width: 769px) {
  .services {
    padding: 100px 150px; 
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .services {
    padding-top: 85px !important;
    padding-bottom: 5px !important;
  }
  .services-text h2{
    font-weight: 600 !important;
    font-size: 23px !important;
  }
  .services-content {
    padding-top: 200px !important;
    width: 90%;
    margin: 0 auto;
  }
  .service-box {
    border-radius: 20px !important;
    box-shadow: 0 0 15px 10px rgba(0, 240, 255, 0.1);
    width: 100px;
    margin: 30px  50px!important;
    height: 380px;
  }
  .service-icon {
    margin-bottom: 15px !important;
    color: #00f0ff;
    width: 70px !important;
  }
  .service-box h3 {
    font-size: 18px !important;
    margin-bottom: 15px;
  }

  .service-box p {
    font-size: 14px;
    color: #c4c4c4;
    margin-bottom: 20px;
  }


  .overlay-content img{
    height: 170px !important;
    width: auto !important;
  }
  .overlay-details p{
    padding-top: 0 !important;
    font-size: 12.5px !important;
  }
  .overlay-details h2{
    font-size: 24px !important;
  }
  .sample img{
    height: 130px !important;
  }
  .overlay-content{
    font-size: 12.5px !important;
  }
  .overlay-details::-webkit-scrollbar, .overlay-details::-webkit-scrollbar-thumb, .overlay-details::-webkit-scrollbar-track {
    visibility:hidden !important;
  }




  .skills-section {
    width: 70% !important;
    margin: auto;
  }
  .skills-section p {
    font-size: 14px !important;
  }
  .skills-section h2 {
    font-size: 24px !important;
    margin-bottom: 15px;
  }
  .skills-section h3 {
    font-size: 18px !important;
    margin-bottom: 15px;
  }
  .skills-head {
    font-weight: 600 !important;
    font-size: 48px;
    margin-top: 100px;
    margin-bottom: 100px;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.2;
    display: inline-block;
  }
  .skill-bar {
    margin: 2px 0;
  }
  
  .progress {
    border-radius: 20px;
    position: relative;
    margin: 5px 0;
    height: 10px !important;
    width: 100%;
  }
  .progress-done {
    background: linear-gradient(to left, #00f260, #0575e6);
    box-shadow: 0 3px 3px -5px #00f260, 0 2px 5px #0575e6;
    border-radius: 20px;
    color: #fff;
    height: 80% !important;
    width: 0;
    opacity: 0;
    transition: 1s ease 0.3s;
  }
  .circular-skills {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
  }
  .circle {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 200px !important;
    height: 200px !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .inner-circle {
    width: 80%;
    height: 80%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px !important;
  }
  .circle p {
    position: absolute;
    font-size: 16px !important;
    bottom: -50px;
    text-align: center;
    padding-bottom: 12px;
  }

  /*Project section*/
  .project-section h2 {
    font-weight: 600 !important;
    font-size: 23px !important;
    margin-bottom: 1px !important; 
    margin-top: 10px !important;
    line-height: 1.2;
  }

  /*Contact section*/
  .contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    max-width: auto !important;
    margin: 0 auto;
  }
  .contact-info {
    flex: 1;
    max-width: 45%;
    min-width: 300px;
  }
  .contact-info h2 {
    font-weight: 600 !important;
    font-size: 23px !important;
    color: #ffffff;
    margin-bottom: 20px;
  }
  .contact-info p {
    font-size: 16px !important;
    margin-bottom: 25px !important;
  }
  /* Phone Button */
  .button-container {
    position: relative;
    width: 100% !important;
    height: 100vh !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  /* Button styling */
  .phone-button {
    position: relative;
    display: inline-block;
    padding: auto auto !important;
    width: 250px;
    border-radius: 50px !important;
    font-weight: semi-bold;
    cursor: pointer;
    text-align: center !important;
  }
  .phone-button a {
    text-decoration: none;
    position: relative;
    z-index: 1;
    font-size: 12px !important;
  }
  /* Glow effect following the cursor */
  .phone-button::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    pointer-events: none;
  }

  /*contact section*/
  .contact-form {
    flex: 1;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .contact-form form {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .contact-form label {
    margin-bottom: 8px;
  }
  .contact-form input, .contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 10px;
    font-size: 16px;
  }
  .contact-form .btn {
    width: 40% !important; 
    padding: 10px !important;
    border-radius: 50px !important;
    font-size: 16px !important;
  }






  /*Footer section*/
  footer {
    backdrop-filter: blur(10px);
    padding: 15px 10px !important;
  }
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .copyrights {
    text-align: left;
  }
  .social-apps {
    text-align: left;
  }
  .icon-row {
    margin-top: 5px; /* Space between "Social Apps" text and icons */
    display: flex;
    gap: 2px !important; /* Space between icons */
  }
  .icon-row a {
    font-size: 16px !important;
    transition: color 0.3s ease;
  }
  .social-apps a {
    margin: 0 10px; /* Spacing between icons */
    font-size: 16px !important;
  }
  .footer-container p {
    font-size: 12px !important;
  }
  
  
}

.services h2 {
  flex: 1;
  font-weight: 600;
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 50px;
  line-height: 1.2;
}

.services h2 span {
  color: #00f0ff;
}

.services-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.service-box {
  background-color: #112233;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 15px 10px rgba(0, 240, 255, 0.1);
  width: 300px;
  margin: 20px;
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px 15px rgba(0, 240, 255, 0.3);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 25px !important;
  color: #00f0ff;
  width: 80px;
  margin: 0 auto;
}
.service-box h3 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 15px;
}
.service-box p {
  font-size: 16px;
  color: #c4c4c4;
  margin-bottom: 20px;
}

.service-box .btn {
  display: inline-block;
  padding: 10px 20px;
  color: #09131c;
  background-color: #00f0ff;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.service-box .btn:hover {
  background-color: #00cce7;
}



.skills-section {
  width: 80%;
  margin: auto;
  color: #fff;
}

.skills-section h3{
  font-size: 26px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.2;
  display: inline-block;
  border-bottom: 2px solid #fff;
}

.skills-head {
  background-color: #0c1a25;
  font-size: 40px;
  color: #ffffff;
  margin-top: 100px;
  margin-bottom: 70px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.2;
  display: inline-block;
  border-bottom: 2px solid #fff;
}

/*Not yet deployed anywhere "skills-head-2" */
.skills-head-2 {
  padding: 2px 7px;
  background-color: #0c1a25;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 50px;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 2px solid #fff;
  display: inline-block;
}

.skill-set span {
  color: #00f0ff;
}

.skill-bar {
  margin: 20px 0;
}

p {
  margin: 0;
}

.progress {
  background-color: #333;
  border-radius: 20px;
  position: relative;
  margin: 5px 0;
  height: 25px;
  width: 100%;
}

.progress-done {
  background: linear-gradient(to left, #00f260, #0575e6);
  box-shadow: 0 3px 3px -5px #00f260, 0 2px 5px #0575e6;
  border-radius: 20px;
  color: #fff;
  height: 100%;
  width: 0;
  opacity: 0;
  transition: 1s ease 0.3s;
}

.circular-skills {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.circle {
  margin-top: 30px;
  margin-bottom: 30px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: conic-gradient(#0575e6 calc(var(--percent) * 1%), #333 0);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.inner-circle {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background-color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.circle p {
  position: absolute;
  font-size: 20px;
  bottom: -50px;
  text-align: center;
}

/*Project Styling*/
.project-section {
  width: 80%;
  margin: auto;
  text-align: center;
  color: #fff;
  margin-top: 150px;
}

.project-section h2 {
  text-transform: uppercase;
  font-size: 40px;
  margin-bottom: 30px;
  margin-top: 100px;
  line-height: 1.2;
}

.project-section h2 span {
  color:#00c4ff; /* Highlighted color */
}

.project-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 100px;
  padding-bottom: 50px;
}

.project-card {
  width: 30%;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.project-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.project-card:hover {
  transform: scale(1.05);/*transform: scale(1.05);*/
}
.project-button {
  position: relative;
  display: inline-block;
  padding: 10px 25px;
  border: 2px solid #ffffff;
  border-radius: 50px;
  background-color: #000000;
  color: #ffffff;
  font-size: 16px;
  font-weight: semi-bold;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.project-button a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
/* Glow effect following the cursor */
.project-button::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.5), rgba(0, 240, 255, 0));
  border-radius: 50%;
  pointer-events: none;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease-out;
}
/* On hover: change background and show glow */
.project-button:hover {
  background-color: blue;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
  transform: scale(1.1); /* Pop-up effect */
}
.project-button:hover::before {
  opacity: 0;
}


/*Contact Section*/
.contact {
  padding: 100px 20px;
  width: 100%;
  background-color: #0c1a25;
  color: #ffffff;
}
.contact-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-info {
  flex: 1;
  max-width: 45%;
  min-width: 300px;
}
.contact-info h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.contact-info h2 span {
  color: #00f0ff;
}
.contact-info p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #c4c4c4;
}
.contact-info p strong {
  color: #ffffff;
}

/* Contact Button */
.button-container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #121212;
  overflow: hidden;
}
/* Button styling */
.phone-button {
  position: relative;
  display: inline-block;
  padding: 10px 25px;
  border: 2px solid #ffffff;
  border-radius: 50px;
  background-color: #000000;
  color: #ffffff;
  font-size: 16px;
  font-weight: semi-bold;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.phone-button a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
/* Glow effect following the cursor */
.phone-button::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.5), rgba(0, 240, 255, 0));
  border-radius: 50%;
  pointer-events: none;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease-out;
}
/* On hover: change background and show glow */
.phone-button:hover {
  background-color: blue;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
  transform: scale(1.1); /* Pop-up effect */
}
.phone-button:hover::before {
  opacity: 0;
}

.social-links {
  margin-top: 15px;
}
.social-links a {
  font-size: 24px;
  color: #00f0ff;
  margin-right: 15px;
  transition: color 0.3s ease;
}
.social-links a:hover {
  color: #00cce7;
}

.contact-form {
  flex: 1;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding-top: 1px !important;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/*Contact page head*/
.contact-head {
  font-size: 5rem;
  font-weight: 200;
  text-align: center;
  margin-top: 60px !important;
}

.contact-form label {
  margin-bottom: 8px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: none;
  background-color: #112233;
  color: #ffffff;
  font-size: 16px;
}

.contact-form textarea {
  height: 150px;
  resize: none;
}

.contact-form .btn {
  width: 100%; /* Make button take full width */
  padding: 15px;
  background-color: #00f0ff;
  color: indigo; /*color: #ffffff; */
  border: none;
  border-radius: 25px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
  background-color: #00cce7;
}


/* Footer Styling */
footer {
  background-color:#09131c;/* #112233 darkorchid #00c4ff*/
  color: #ffffff;
  backdrop-filter: blur(10px);
  padding: 20px 10px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.copyrights {
  text-align: left;
}

.social-apps {
  text-align: left;
}

.icon-row {
  margin-top: 5px; /* Space between "Social Apps" text and icons */
  display: flex;
  gap: 10px; /* Space between icons */
}

.icon-row a {
  font-size: 20px; /* Adjust icon size */
  color: #ffffff;
  transition: color 0.3s ease;
}

.icon-row a:hover {
  color: #00f0ff; /* Highlight color on hover */
}

.social-apps a {
  color: #ffffff; /* Icon color */
  margin: 0 10px; /* Spacing between icons */
  font-size: 18px; /* Icon size */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s ease; /* Smooth hover effect */
}

.social-apps a:hover {
  color: #00f0ff; /* Change color on hover */
}

/*rough*/
.pro-skills {
  background-color: blue;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
  transform: scale(1.1); /* Pop-up effect */
}



.btn-box{
  display: flex;
  justify-content: space-between;
  width: 320px;
  margin-top: 2rem;
  margin-bottom: 6rem;
}

.resume a{
  font-size: 19px;
}

.btn-box .btn{ 
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.btn-box .d-CV{
  background: var(--gradient-white-bg2);
  padding: 10px;
  border-radius: 5px;
  font-weight: 500;
  color: #000;
  box-shadow: rgba(60,64,67,0.3)0px 1px 2px 0,
                rgba(60,64,67,0.15)0px 2px 6px 2px;
  transition: all .3s ease;              
}

