/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  overflow-x: hidden;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  line-height: 1.6;
  color: #333;
  /* background: linear-gradient(135deg, #6dd5ed, #2193b0); */
  font-size: 1.8rem;
  overflow-x: hidden;
  min-height: 100vh; /* Ensures body covers full viewport height */
  min-width: 100vw; /* Prevents horizontal overflow */

}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.logo img {
  height: 80px;
  border-radius: 50%;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 2.2rem;
  background: transparent;
  padding: 1.5rem 3rem;
  border-radius: 3rem;
}

.nav-links a:hover {
  background-color: #2193b0;
  color: #ff914d;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vw;
  min-height: 100vh; /* Allows dynamic height */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
    padding-top: 500px; /* Height of the navbar */
  overflow: hidden;
background: #020024;
background: linear-gradient(135deg, rgb(4, 1, 54) 0%, rgb(7, 7, 130) 55%, rgb(5, 5, 91) 97%);
overflow: hidden;
}



.background-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ff914d;
  border-radius: 50%;
  animation: float 10s infinite ease-in-out;
}

.particle-1 {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.particle-2 {
  top: 40%;
  left: 70%;
  animation-delay: 2s;
}

.particle-3 {
  top: 80%;
  left: 50%;
  animation-delay: 4s;
}

.particle-4 {
  top: 60%;
  left: 30%;
  animation-delay: 6s;
}
.particle-5 {
  top: 20%;
  left: 80%;
  animation-delay: 8s;
}

.particle-6 {
  top: 70%;
  left: 10%;
  animation-delay: 10s;
}
.particle-7 {
  top: 30%;
  left: 90%;
  animation-delay: 12s;
}


@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(20px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

.hero-container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 1rem 2rem;
  position: relative;
  z-index: 1; 
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.tagline {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 2rem;
  line-height:1.8 ;
padding-bottom: 2rem;
}

/* highlight the roles  */

.highlight {
  color: #ff914d;
  font-weight: 700;
}

.name{
  color: #00ffff;
  font-weight: 700;
  font-size: 5rem;
  padding: 2rem;
}
/* Dynamic Text Animation */
.dynamic-text {
  display: inline-block;
  position: relative;
  min-width: 50ch; /* Adjust to fit your longest text */
  height: 5rem;
  vertical-align: bottom;
  overflow: hidden; /* Ensures only one line of text is visible at a time */
  font-size: 3rem;
}

.dynamic-text span {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0; /* Start invisible */
  border-right: 1px solid #ff914d; /* Optional cursor effect */
  padding-right: 1rem; /* Space for cursor */
  animation: fadeInOut 12s infinite; /* Total duration of one cycle */
}

.dynamic-text .text-1 {
  animation-delay: 0s; /* Starts immediately */
}
.dynamic-text .text-2 {
  animation-delay: 4s; /* Starts after text-1 finishes */
}
.dynamic-text .text-3 {
  animation-delay: 8s; /* Starts after text-2 finishes */
}

@keyframes fadeInOut {
  0% {
    opacity: 0; /* Fully invisible */
  }
  10% {
    opacity: 1; /* Fully visible */
  }
  40% {
    opacity: 1; /* Stays visible */
  }
  50% {
    opacity: 0; /* Fades out */
  }
  100% {
    opacity: 0; /* Remains invisible until next cycle */
  }
}

/* Right Side: Image */
.hero-image {
  flex: 1; /* Takes up 40% of the width */
  max-width: 600px; /* Ensures the image doesn’t get too large*/
} 

.hero-image img {
  max-width: 450px; /* Ensures the image is responsive */
  height: auto; /* Maintains aspect ratio */
  border-radius:3rem;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}


.subheadline {
  font-size: 2.2rem;
  color: #e0f7fa;
  margin-bottom: 2rem;
  line-height: 1.8;
}


.fun-fact {
  font-size: 1.6rem;
  color: #e0f7fa;
  margin-bottom: 2rem;
  font-style: italic;
}

.cta-buttons {
  display: flex;
  gap: 3rem;
  justify-content: center;
}

.btn {
  text-decoration: none;
  padding: 1.5rem 2rem;
  border-radius: 2rem;
  font-size: 2rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.primary-btn {
  background: #fff;
  color: #2193b0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.secondary-btn {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.primary-btn:hover {
  background: #ff914d;
  color: #fff;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.secondary-btn:hover {
  background: #fff;
  color: #2193b0;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

/* === TYPOGRAPHY === */
.heading-primary {
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 3.2rem;
  color: #333333;
}

.heading-secondary {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2193b0;
  position: relative;
}

.heading-secondary::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #2193b0;
  margin: 0.5rem auto;
}

.heading-tertiary {
  font-size: 3.6rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
  text-transform: capitalize;
}




/* Small Screens (Mobile) */
@media (max-width: 768px) {
  /* Navbar */
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    /* padding: 1rem; */
    background: rgba(255, 255, 255, 0.95); /* Slightly darker for better contrast */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for separation */
  }

  .logo img {
    height: 50px; /* Smaller logo for mobile */
    margin-bottom: 0.8rem; /* Add spacing below the logo */
  }

  .nav-links {
    flex-direction: row;
    gap: 0.1rem;
    max-width: 100%;
    flex-wrap: wrap;
  }

  .nav-links a {
    font-size: 1.6rem;
    text-align: center; /* Center-align links for better readability */
    padding: 0.5rem 0.8rem; /* Add padding for touch-friendly buttons */
    border-radius: 0.5rem; /* Rounded corners for a modern look */
    background: #f9f9f9; /* Light background for visibility */
    transition: background 0.3s ease;
  }

  .nav-links a:hover {
    background: #ff914d; /* Highlight on hover */
    color: #fff;
  }


  /* Hero Section */
  .hero {
    height: auto; /* Remove fixed height to allow dynamic adjustment */
    padding-top: 200px; /* Add padding to account for the taller navbar */
  }

  .hero-container {
    grid-template-columns: 1fr; /* Stack content vertically */
    text-align: center;
    gap: 2rem; /* Reduce gap between elements */

  }

  .tagline {
    font-size: 2rem; /* Reduce font size for better fit */
    line-height: 1.4; /* Improve readability */
  }

  .dynamic-text {
    font-size: 1.8rem; /* Reduce font size for better fit */
    min-width: 0; /* Allow text to wrap if necessary */
  }

  .hero-image img {
    max-width: 80%; /* Scale down the image */
    margin: 0 auto; /* Center the image */
    border-radius: 1.5rem; /* Slightly rounded corners */
  }

  .subheadline {
    font-size: 1.6rem; /* Reduce font size for better fit */
  }

  .fun-fact {
    font-size: 1.4rem; /* Reduce font size for better fit */
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1.5rem; /* Stack buttons vertically */
  }
  /* Skills Section */
  .heading-secondary {
    font-size: 2rem;
  }

  .skill-card h3 {
    font-size: 1.8rem;
  }

  .skill-card p {
    font-size: 1.4rem;
  }
}

/* Medium Screens (Tablet) */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Navbar */
  .nav-links a {
    font-size: 1.8rem;
  }

  /* Hero Section */
  .tagline {
    font-size: 2.2rem;
  }

  .dynamic-text {
    font-size: 2rem;
  }

  .hero-image img {
    max-width: 70%; /* Slightly smaller image */
  }

  .subheadline {
    font-size: 1.8rem;
  }

  .fun-fact {
    font-size: 1.6rem;
  }

  /* Skills Section */
  .heading-secondary {
    font-size: 2.2rem;
  }

  .skill-card h3 {
    font-size: 2rem;
  }

  .skill-card p {
    font-size: 1.6rem;
  }
}

/* Large Screens (Desktop) */
@media (min-width: 1025px) {
  /* Ensure proper layout and spacing for wide screens */
  .navbar {
    padding: 1.5rem 4rem; /* Increase padding for better spacing on large screens */
  }

  .logo img {
    height: 70px; /* Slightly larger logo for desktops */
  }

  .nav-links a {
    font-size: 2rem; /* Larger font size for better readability */
    padding: 1rem 1.5rem;
  }

  .hero {
    padding-top: 500px;
    grid-template-columns: 1fr 1fr; /* Maintain two-column layout */
    gap: 6rem; /* Increase gap between text and image */
    padding: 8rem 6rem; /* Add generous padding for large screens */
  }

  .tagline {
    font-size: 3.5rem; /* Larger tagline for impact */
  }

  .dynamic-text {
    font-size: 2.8rem; /* Slightly larger dynamic text */
  }

  

  .subheadline {
    font-size: 2rem; /* Slightly larger subheadline */
  }

  .fun-fact {
    font-size: 1.8rem; /* Larger fun fact text */
  }

  .cta-buttons {
    gap: 2rem; /* Increase spacing between buttons */
  }

  .cta-buttons .btn {
    font-size: 2rem; /* Larger button text */
    padding: 1.2rem 2.5rem; /* More padding for buttons */
  }

  /* Skills Section */
  .heading-secondary {
    font-size: 3rem; /* Larger heading for skills section */
  }

  .skill-card h3 {
    font-size: 2.2rem; /* Larger skill card headings */
  }

  .skill-card p {
    font-size: 1.8rem; /* Larger skill card descriptions */
  }

  /* Projects Section */
  .projects-grid {
    grid-template-columns: repeat(3, minmax(300px, 1fr)); /* Display three projects per row */
    gap: 4rem; /* Increase spacing between project cards */
  }

  .project-card {
    padding: 2rem; /* Add more padding for better spacing */
  }

  /* Contact Section */
  .contact-form input,
  .contact-form textarea {
    font-size: 1.8rem; /* Larger input fields for better usability */
    padding: 1rem;
  }

  .contact-form button {
    font-size: 2rem; /* Larger submit button */
    padding: 1rem 2.5rem;
  }
}

/* About Section */
.about {
  padding: 9rem 2rem;
  color: #666;
  text-align: left;
}

.about .heading-secondary{
  text-align: center;
}
.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 6rem;
}

.about-text {
  flex: 1.5; /* Takes up 60% of the width */
  margin-right: 2rem;
    margin-bottom: 1.5rem;

}

.about-text p {
  font-size: 2rem;
  line-height: 2;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* .intro {
  font-size: 2.2rem;
  font-weight: 700;
} */


.about-image {
  flex: 1;/*  Takes up 40% of the width */
  max-width: 500px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.25);
  margin-right: 2rem;
}

.about .primary-btn{
  outline: solid 2px #ff914d;
}

.about .primary-btn:hover{
  outline: transparent;
}

.education {
  margin: 3rem;
}


.education-item {
  margin-bottom: 2rem;
}

.degree {
  font-size: 2rem;
  color: #2193b0; /* Accent color */
  margin-bottom: 0.5rem;
}

.institution {
  font-size: 1.8rem;
  color: #555;
  margin-bottom: 0.3rem;
}

.duration {
  font-size: 1.6rem;
  color: #777;
  margin-bottom: 1rem;
}

.details, .note, .achievements {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.6;
}



/* Small Screens (Mobile - Max Width: 768px) */
@media (max-width: 768px) {
  /* About Container */
  .about-container {
    display: grid; /* Override any flexbox layout */
    grid-template-columns: 1fr; /* Stack elements vertically */
    gap: 2rem;
    text-align: center;
  }

  /* About Text */
  .about-text {
    margin-right: 0; /* Remove horizontal margin */
    margin-bottom: 2rem; /* Add vertical spacing before the image */
  }

  .intro {
    font-size: 1.8rem; /* Reduce font size for better fit */
    line-height: 1.6; /* Improve readability */
  }

  .highlight {
    font-size: 1.8rem; /* Slightly reduce highlight size */
  }

  /* About Image */
  .about-image img {
    max-width: 80%; /* Scale down the image */
    margin: 0 auto; /* Center the image */
    border-radius: 1.5rem; /* Slightly rounded corners */
  }

  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    gap: 1.5rem; /* Stack buttons vertically */
  }

  .btn {
    width: 100%; /* Full-width buttons for better touch targets */
    padding: 1rem 2rem; /* Adjust padding for smaller screens */
    font-size: 1.6rem; /* Reduce font size for better fit */
  }
}

/* Medium Screens (Tablet - 769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  /* About Container */
  .about-container {
    grid-template-columns:  1fr; 
    gap: 3rem; /* Slightly reduce gap between text and image */
  }

  /* About Text */
  .intro {
    font-size: 2rem; /* Slightly reduce font size */
  }

  /* About Image */
  .about-image img {
    max-width: 70%; /* Slightly scale down the image */
  }

  /* Buttons */
  .btn {
    font-size: 1.8rem; /* Adjust button font size */
  }
}

/* Large Screens (Desktop - Min Width: 1025px) */
@media (min-width: 1025px) {
  /* No changes needed as the base styles are already optimized */
}


/* Media Queries for Responsiveness */

/* Large Desktop Screens (≥1200px) */
@media (min-width: 1200px) {
  .education {
    margin: 4rem;
  }

  .degree {
    font-size: 2.2rem;
  }

  .institution {
    font-size: 2rem;
  }

  .duration {
    font-size: 1.8rem;
  }

  .details,
  .note,
  .achievements {
    font-size: 1.6rem;
  }
}

/* Desktop Screens (992px–1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .education {
    margin: 3.5rem;
  }

  .degree {
    font-size: 2rem;
  }

  .institution {
    font-size: 1.8rem;
  }

  .duration {
    font-size: 1.6rem;
  }

  .details,
  .note,
  .achievements {
    font-size: 1.4rem;
  }
}

/* Tablet Landscape (768px–991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .education {
    margin: 3rem;
  }

  .degree {
    font-size: 1.8rem;
  }

  .institution {
    font-size: 1.6rem;
  }

  .duration {
    font-size: 1.4rem;
  }

  .details,
  .note,
  .achievements {
    font-size: 1.3rem;
  }
}

/* Tablet Portrait (576px–767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .education {
    margin: 2.5rem;
  }

  .degree {
    font-size: 1.6rem;
  }

  .institution {
    font-size: 1.4rem;
  }

  .duration {
    font-size: 1.2rem;
  }

  .details,
  .note,
  .achievements {
    font-size: 1.2rem;
  }
}

/* Mobile Screens (≤575px) */
@media (max-width: 575px) {
  .education {
    margin: 2rem;
  }

  .degree {
    font-size: 1.4rem;
  }

  .institution {
    font-size: 1.2rem;
  }

  .duration {
    font-size: 1rem;
  }

  .details,
  .note,
  .achievements {
    font-size: 1rem;
    line-height: 1.4;
  }
}
/* SKILL SECTION */

/* General Styles */
.skills {
  padding: 9rem 2rem;
border-top: 1px solid #ff914d;
  text-align: center;
}

.skills h2.heading-secondary {
  margin-bottom: 1.5rem;
  color: #2193b0;
}

.skills-intro {
  font-size: 2rem;
  color: #666;
  margin-bottom: 4rem;
  line-height: 1.6;
}

.skills-category {
  margin-bottom: 4rem;
  display:flex ;
  flex-direction: column;
}


/* Programming Languages */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.skill-item {
  text-align: left;
}

.skill-item label {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  display: block;
}

.progress-bar {
  position: relative;
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.progress {
  height: 100%;
  border-radius: 5px;
  transition: width 0.5s ease;
}

.percentage {
  font-size: 2rem;
  color: #2193b0;
  position: absolute;
  right: -3rem;
  top: -1rem;
}

/* Tools I Use */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.tool-item {
  text-align: center;
}

.tool-icon {
  font-size: 3rem;
  color: #2193b0;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, color 0.3s ease;
  background: rgba(255, 255, 255, 0.15); /* Subtle background for better visibility */}

.tool-item p {
  font-size: 1.8rem;
  color: #333;
}

.tool-item:hover .tool-icon {
  transform: scale(1.2);
  color: #ff914d;
}

/* Soft Skills */
.skills-category h3 {
  font-size: 3rem;
 
}

.soft-skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
  gap: 2rem;
  justify-content: center;
}

.soft-skill-card {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.soft-skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.soft-skill-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.soft-skill-icon.problem-solving {
  color: #2193b0; /* Blue */
}

.soft-skill-icon.collaboration {
  color: #1dbf73; /* Green */
}

.soft-skill-icon.creativity {
  color: #fbb03b; /* Orange */
}

.soft-skill-icon.time-management {
  color: #8e44ad; /* Purple */
}

.soft-skill-icon.adaptability {
  color: #e74c3c; /* Red */
}

.soft-skill-icon.communication {
  color: #3498db; /* Sky Blue */
}

.soft-skill-icon.leadership {
  color: #9b59b6; /* Violet */
}

.soft-skill-icon.attention-to-detail {
  color: #1abc9c; /* Turquoise */
}

.soft-skill-card p strong {
  font-size: 1.8rem;
  color: #333;
}

.soft-skill-card p.description {
  font-size: 1.6rem;
  color: #444;
  margin-top: 0.5rem;
}

/* Media Queries for Responsiveness */

@media (max-width: 1200px) {
  .skills h2.heading-secondary {
    font-size: 2.5rem;
  }

  .skills-intro {
    font-size: 1.8rem;
  }

  .skill-item label {
    font-size: 1.8rem;
  }

  .percentage {
    font-size: 1.6rem;
  }

  .soft-skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 992px) {
  .skills {
    padding: 6rem 2rem;
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

  .soft-skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .soft-skill-card p strong {
    font-size: 1.6rem;
  }

  .soft-skill-card p.description {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .skills h2.heading-secondary {
    font-size: 2rem;
  }

  .skills-intro {
    font-size: 1.6rem;
  }

  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  }

  .tool-item p {
    font-size: 1.4rem;
  }

  .tool-icon {
    font-size: 2.5rem;
  }

  .soft-skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .soft-skill-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .skills {
    padding: 4rem 1rem;
  }

  .skills h2.heading-secondary {
    font-size: 1.8rem;
  }

  .skills-intro {
    font-size: 1.4rem;
  }

  .skill-item label {
    font-size: 1.6rem;
  }

  .progress-bar {
    height: 6px;
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  }

  .tool-icon {
    font-size: 2rem;
  }

  .tool-item p {
    font-size: 1.2rem;
  }

  .soft-skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .soft-skill-icon {
    font-size: 2rem;
  }

  .soft-skill-card p strong {
    font-size: 1.4rem;
  }

  .soft-skill-card p.description {
    font-size: 1.2rem;
  }
}


/* PROJECTS SECTION */
/* General Styles */
.projects {
  padding: 8rem 2rem;
  background: #e0e0e0;
  text-align: center;
}

.projects h2.heading-secondary {
  margin-bottom: 2rem;
  color: #2193b0;
}

.projects-intro {
  font-size: 2rem;
  color: #666;
  margin-bottom: 4rem;
  line-height: 1.6;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.project-card {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 3px 6px #2193b0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 8px 16px #ff914d;
}

.project-thumbnail img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}

.project-details {
  padding: 1.5rem;
  text-align: left;
}

.project-details h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.project-details p {
  font-size: 1.6rem;
  color: #666;
  margin-bottom: 1rem;
}

.project-tags {
  margin-bottom: 1rem;
}

.tag {
  font-size: 1.4rem;
  color: #2193b0;
  background: #e0f7fa;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  margin-right: 0.5rem;
  display: inline-block;
}

.tag i {
  margin-right: 0.5rem;
}

.project-actions {
  display: flex;
  gap: 1rem;
}

.project-actions a {
  text-decoration: none;
  padding: 1.5rem 2.5rem;
  border:1px solid #ff914d ;
  border-radius: 2rem;
  font-size: 1.6rem;
  color: #fff;
  background: #2193b0;
  transition: background 0.3s ease, transform 0.3s ease;
}


.project-actions a:hover {
  background: #fff;
  color: #2193b0;
  transform: translateY(-2px);
}
/* Scroll Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.project-card:nth-child(1) {
  animation-delay: 0.2s;
}

.project-card:nth-child(2) {
  animation-delay: 0.4s;
}

.project-card:nth-child(3) {
  animation-delay: 0.6s;
}

/* Media Queries for Responsiveness */

/* Large Desktop (≥1200px) */
@media (min-width: 1200px) {
  .skills h2.heading-secondary {
    font-size: 3rem;
  }

  .skills-intro {
    font-size: 2rem;
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .soft-skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Desktop (992px–1199px) */
@media (max-width: 1199px) {
  .skills h2.heading-secondary {
    font-size: 2.5rem;
  }

  .skills-intro {
    font-size: 1.8rem;
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

  .soft-skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* Tablet Landscape (768px–991px) */
@media (max-width: 991px) {
  .skills {
    padding: 6rem 2rem;
  }

  .skills h2.heading-secondary {
    font-size: 2rem;
  }

  .skills-intro {
    font-size: 1.6rem;
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  }

  .tool-icon {
    font-size: 2.5rem;
  }

  .tool-item p {
    font-size: 1.4rem;
  }

  .soft-skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .soft-skill-icon {
    font-size: 2.5rem;
  }

  .soft-skill-card p strong {
    font-size: 1.6rem;
  }

  .soft-skill-card p.description {
    font-size: 1.4rem;
  }
}

/* Tablet Portrait (576px–767px) */
@media (max-width: 767px) {
  .skills {
    padding: 4rem 2rem;
  }

  .skills h2.heading-secondary {
    font-size: 1.8rem;
  }

  .skills-intro {
    font-size: 1.4rem;
  }

  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  }

  .tool-icon {
    font-size: 2rem;
  }

  .tool-item p {
    font-size: 1.2rem;
  }

  .soft-skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .soft-skill-icon {
    font-size: 2rem;
  }

  .soft-skill-card p strong {
    font-size: 1.4rem;
  }

  .soft-skill-card p.description {
    font-size: 1.2rem;
  }
}

/* Mobile (≤575px) */
@media (max-width: 575px) {
  .skills {
    padding: 3rem 1rem;
  }

  .skills h2.heading-secondary {
    font-size: 1.6rem;
  }

  .skills-intro {
    font-size: 1.2rem;
  }

  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .progress-bar {
    height: 6px;
  }

  .percentage {
    font-size: 1.2rem;
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  }

  .tool-icon {
    font-size: 1.8rem;
  }

  .tool-item p {
    font-size: 1rem;
  }

  .soft-skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .soft-skill-icon {
    font-size: 1.8rem;
  }

  .soft-skill-card p strong {
    font-size: 1.2rem;
  }

  .soft-skill-card p.description {
    font-size: 1rem;
  }
}


/* Blog Section Styling */
.blogs {
  /* margin-top: 3rem; */
  padding: 4rem 2rem;
  text-align: center;
}

.blogs-intro {
  font-size:2rem;
  color: #666;
  margin-bottom: 2rem;
}

/* Blog Grid Layout */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-content: center;
}

/* Individual Blog Card Styling */
.blog-card {
    border: 1px solid aqua;
  background: #078b9587;
  border-radius: 2rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 2rem;
}

.blog-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

/* Blog Thumbnail Styling */
.blog-thumbnail {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-thumbnail {
  transform: scale(1.1);
}

/* Blog Content Styling */
.blog-card h3 {
  font-size:2.4rem;
  margin: 1rem 0 0.5rem;
  color: #232323;
  transition: color 0.3s ease;
  font-weight: 600;
}

.blog-card p {
  font-size: 1.8rem;
  color: #1d2242;
  padding:  1rem 1rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.blog-card:hover  {
  box-shadow: 0 8px 16px #ff914d;
}

/* Download Button Styling */
.blog-actions {
  text-align: center;
  margin-bottom: 1rem;
}



/* Animations for Blog Cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-card {
  animation: fadeInUp 0.6s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-card h3 {
    font-size: 1.6rem;
  }

  .blog-card p {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card h3 {
    font-size: 1.4rem;
  }

  .blog-card p {
    font-size: 1.2rem;
  }
}

/* General Styles */
/* General Styles */
.graphic-design {
  padding: 8rem 2rem;
  text-align: center;
}

.section-intro {
  font-size: 1.8rem;
  color: #666;
  margin-bottom: 2rem;
}

/* Design Grid Layout */
.design-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  justify-content: center;
}

/* Individual Design Card Styling */
.design-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 600px;
}

.design-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Design Thumbnail Styling */
.design-thumbnail {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  transition: transform 0.3s ease;
}

.design-card:hover .design-thumbnail {
  transform: scale(1.1);
}

/* Design Content Styling */
.design-card h3 {
  font-size: 1.8rem;
  margin: 1rem 0 0.5rem;
  color: #333;
  transition: color 0.3s ease;
}

.design-card p {
  font-size: 1.6rem;
  color: #666;
  padding: 0 1rem 1rem;
}




/* Media Queries for Blog and Design Sections */

/* Large Desktop (≥1200px) */
@media (min-width: 1200px) {
  

  .blog-card h3,
  .design-card h3 {
    font-size: 2rem;
  }

  .blog-card p,
  .design-card p {
    font-size: 1.6rem;
  }

 
}

/* Desktop (992px–1199px) */
@media (max-width: 1199px) {
  .blog-grid,
  .design-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-card h3,
  .design-card h3 {
    font-size: 1.8rem;
  }

  .blog-card p,
  .design-card p {
    font-size: 1.4rem;
  }

  
}

/* Tablet Landscape (768px–991px) */
@media (max-width: 991px) {
  .blog-grid,
  .design-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-card h3,
  .design-card h3 {
    font-size: 1.6rem;
  }

  .blog-card p,
  .design-card p {
    font-size: 1.2rem;
  }
}

/* Tablet Portrait (576px–767px) */
@media (max-width: 767px) {
  .blog-grid,
  .design-grid {
    grid-template-columns: 1fr;
  }

  .blog-card h3,
  .design-card h3 {
    font-size: 1.4rem;
  }

  .blog-card p,
  .design-card p {
    font-size: 1.2rem;
  }

  
}

/* Mobile (≤575px) */
@media (max-width: 575px) {
  .blog-grid,
  .design-grid {
    grid-template-columns: 1fr;
  }

  .blog-card h3,
  .design-card h3 {
    font-size: 1.2rem;
  }

  .blog-card p,
  .design-card p {
    font-size: 1rem;
  }

  
}

/* Contact Section */

/* General Styles */
.contact {
  padding: 8rem 2rem;
  background: #f9f9f9;
  text-align: center;
}



.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Contact Form */
.contact-form {
  max-width: 750px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 2rem;
  font-size: 1.8rem;
  border: 1px solid #2193b0;
  border-radius: 1.5rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff914d;
  outline: none;
}

.contact-form button {
  padding: 2.5rem;
  font-size: 1.8rem;
  color: #fff;
  background: #2193b0;
  border: none;
  border-radius: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
  max-width: 50%;
  
}

.contact-form button:hover {
  background: #ff914d;
}

/* Contact Info */
.contact-info {
  font-size: 1.8rem;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items:flex-start;
  gap: 2.5rem;
font-size: 2.4rem;
font-weight: 700;}

.contact-info p {
  margin: 0.5rem 0;
}

.contact-info i {
    font-size: 3rem;
  margin-right: 0.5rem;
  color: #2193b0;
}

.contact-info i:hover{
  color: #ff914d;
}
.contact-info h3{
  font-size: 2rem;
  color: #444;
  margin-bottom: 1rem;
  font-weight: 600;
}
/* Social Links */
.social-links {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

/* Media Queries for Responsiveness */

/* Large Desktop (≥1200px) */
@media (min-width: 1200px) {
  .contact-form {
    max-width: 600px;
  }

  .contact-info {
    font-size: 2rem;
  }

  .social-links a {
    font-size: 2.2rem;
  }
}

/* Desktop (992px–1199px) */
@media (max-width: 1199px) {
  .contact h2.heading-secondary {
    font-size: 2.5rem;
  }

  .contact-form {
    max-width: 500px;
  }

  .contact-info {
    font-size: 1.8rem;
  }

  .social-links a {
    font-size: 2rem;
  }
}

/* Tablet Landscape (768px–991px) */
@media (max-width: 991px) {
  .contact {
    padding: 4rem 2rem;
  }

  .contact h2.heading-secondary {
    font-size: 2rem;
  }

  .contact-form {
    max-width: 400px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1.4rem;
    padding: 0.8rem;
  }

  .contact-form button {
    font-size: 1.4rem;
    padding: 0.8rem;
  }

  .contact-info {
    font-size: 1.6rem;
  }

  .social-links a {
    font-size: 1.8rem;
  }
}

/* Tablet Portrait (576px–767px) */
@media (max-width: 767px) {
  .contact {
    padding: 3rem 1.5rem;
  }

  .contact h2.heading-secondary {
    font-size: 1.8rem;
  }

  .contact-form {
    max-width: 300px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1.2rem;
    padding: 0.6rem;
  }

  .contact-form button {
    font-size: 1.2rem;
    padding: 0.6rem;
  }

  .contact-info {
    font-size: 1.4rem;
  }

  .social-links a {
    font-size: 1.6rem;
  }
}

/* Mobile (≤575px) */
@media (max-width: 575px) {
  .contact {
    padding: 2rem 1rem;
  }

  .contact h2.heading-secondary {
    font-size: 1.6rem;
  }

  .contact-form {
    max-width: 100%;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
    padding: 0.5rem;
  }

  .contact-form button {
    font-size: 1rem;
    padding: 0.5rem;
  }

  .contact-info {
    font-size: 1.2rem;
  }

  .social-links a {
    font-size: 1.4rem;
  }
}

/* FOOTER SECTION */
/* General Footer Styles */
.footer {
  background: #343434;
  color: #fff;
  padding: 8rem 2rem;
  text-align: center;
    font-size: 2rem;

}
.footer-section{
  font-size: 2rem;
}
.footer-content {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

/* Logo Section */
.footer-logo-img {
  max-width: 150px;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 50%;
}

/* Social Media Links */
.footer-social {
  margin-bottom: 2rem;
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

.social-links li a {
  font-size: 3rem;
  color: #fff;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-links li a:hover {
  color: #ff914d;
}

/* Quick Links */
.footer-section h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #ff914d;
}

.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.quick-links li a {
  font-size: 1.6rem;
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.quick-links li a:hover {
  color: #ff914d;
}

/* Copyright Notice */
.footer-copyright p {
  font-size: 1.8rem;
  color: #e0e0e0;
  margin: 0.5rem 0;
}

/* Media Queries for Responsiveness */

/* Large Desktop (≥1200px) */
@media (min-width: 1200px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-logo {
    order: 1;
  }

  .footer-social {
    order: 2;
  }

  .footer-section {
    order: 3;
  }

  .footer-copyright {
    order: 4;
  }

  .footer-logo-img {
    max-width: 200px;
  }

  .social-links li a {
    font-size: 2.2rem;
  }

  .quick-links li a {
    font-size: 1.8rem;
  }

  .footer-copyright p {
    font-size: 1.6rem;
  }
}

/* Desktop (992px–1199px) */
@media (max-width: 1199px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-logo-img {
    max-width: 180px;
  }

  .social-links li a {
    font-size: 2rem;
  }

  .quick-links li a {
    font-size: 1.6rem;
  }

  .footer-copyright p {
    font-size: 1.4rem;
  }
}

/* Tablet Landscape (768px–991px) */
@media (max-width: 991px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .footer-logo-img {
    max-width: 150px;
  }

  .social-links li a {
    font-size: 1.8rem;
  }

  .quick-links li a {
    font-size: 1.4rem;
  }

  .footer-copyright p {
    font-size: 1.2rem;
  }
}

/* Tablet Portrait (576px–767px) */
@media (max-width: 767px) {
  .footer {
    padding: 3rem 1.5rem;
  }

  .footer-logo-img {
    max-width: 120px;
  }

  .social-links li a {
    font-size: 1.6rem;
  }

  .quick-links li a {
    font-size: 1.2rem;
  }

  .footer-copyright p {
    font-size: 1rem;
  }
}

/* Mobile (≤575px) */
@media (max-width: 575px) {
  .footer {
    padding: 2rem 1rem;
  }

  .footer-logo-img {
    max-width: 100px;
  }

  .social-links {
    flex-direction: column;
    gap: 1rem;
  }

  .social-links li a {
    font-size: 1.4rem;
  }

  .quick-links li a {
    font-size: 1rem;
  }

  .footer-copyright p {
    font-size: 0.9rem;
  }
}
