@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
  }

  body {
    font-family: 'Segoe UI', sans-serif;
    background: url('assets/pexels-jmark-250591.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    scroll-behavior: smooth;
  }
  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5); /* semi-transparent dark overlay */
    z-index: -1;
   opacity: 0;
  animation: bodyFadeIn 1.2s ease-in forwards;
}


  /* -------------NAVBAR ----------------- */

.navbar {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding: 12px 24px;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.nav-logo .highlight {
  color: #00ffff;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #00ffff;
}

/* Hamburger menu */
.nav-toggle {
  display: none;
  cursor: pointer;
  color: #00ffff;
  font-size: 1.5rem;
}
  
  /*------------Hero--------------  */
  .hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }
  .glass-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
  }
  .glass-card:hover {
    transform: scale(1.03);
  }
  .profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00ffff;
    margin-bottom: 1rem;
  }
  .highlight {
    color: #00ffff;
  }
  .role {
    font-weight: 600;
  }
  
  .focus {
    font-style: italic;
    color: #00ffff;
  }
  
  .download-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.5rem;
    background-color: #00ffff;
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .download-btn:hover {
    background-color: #00cccc;
    transform: scale(1.05);
  }
  
  button {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 8px;
    background: #00ffff;
    color: #000;
    font-weight: bold;
    cursor: pointer;
  }
  .glass-section {
    padding: 4rem 2rem;
    margin: 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    text-align: center;
  }

  .about-centered {
    text-align: center;
    padding: 2rem;
  }
  
  .about-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    color: #ddd;
  }
  
  .about-card p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .highlight-box {
    background: rgba(0, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: left;
    color: #fff;
  }
  
  .highlight-box h3 {
    margin-bottom: 1rem;
    color: #00ffff;
    font-size: 1.3rem;
  }
  
  .highlight-box ul {
    padding-left: 1.5rem;
    margin: 0.5rem 0 1rem;
  }
  
  .highlight-box li {
    margin-bottom: 0.5rem;
  }
  
  
  .skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .skill-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: default;
  }
  
 
  .skill-card img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.2));
  }
  

  .skill-card i {
    margin-right: 10px;
    font-size: 1.5rem;
    vertical-align: middle;
  }
  
  
  .skill-card:hover {
    transform: scale(1.05);
    background: rgba(0, 255, 255, 0.2);
  }
  
  
  
  .certificate-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .certificate-desc {
    font-size: 0.85rem;
    color: #ccc;
    margin-top: 0.5rem;
  }
  
  .certificate-grid .glass-card {
    width: 220px;
    padding: 1rem;
  }
  .certificate-grid img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    object-fit: cover;
  }

  .badge-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .badge-desc {
    font-size: 0.85rem;
    color: #ccc;
    margin-top: 0.5rem;
  }
  
  .badge-grid .glass-card {
    width: 220px;
    padding: 1rem;
  }
  .badge-grid img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    object-fit: cover;
  }
/* ................QOUTE SLIDES.......... */
  .horizontal-quote-slider {
    overflow: hidden;
    position: relative;
    padding: 3rem 0;
  }
  
  .quote-track {
    display: flex;
    width: max-content;
    transition: transform 0.6s ease-in-out;
  }

  .quote-track2 {
    display: flex;
    width: max-content;
    transition: transform 0.6s ease-in-out;
  }
  .glass-section-quote {
   
    text-align: center;
  }
  
  .quote-card {
    flex: 0 0 400px;
    max-width: 400px;
    margin-right: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.04);
  }
  
  .quote-mark {
    font-size: 2rem;
    color: #ff8c42;
    font-weight: bold;
  }
  
  .quote-card cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    color: #00ffff;
    font-style: normal;
  }
  
  /* -------------------PROJECT CATEGORY */
  .project-category-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.category-card {
  width: 320px;
  text-align: center;
  padding: 2rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.category-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.category-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}


  
  /* ..................PROJECTS.............. */
  .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
  }
  
  .project-grid .glass-card {
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  
  .project-grid .glass-card:hover {
    transform: translateY(-5px) scale(1.02);
    /* box-shadow: 0 8px 24px rgba(0, 255, 255, 0.15); */
  }
  
  .project-grid img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease;
  }
  
  .project-grid img:hover {
    transform: scale(1.03);
  }
  
  .project-grid h3 {
    font-size: 1.15rem;
    margin: 0.5rem 0;
    color: #fff;
    font-weight: 600;
  }
  
  .project-description {
    font-size: 0.95rem;
    color: #ccc;
    margin-top: 0.5rem;
    line-height: 1.5;
  }
  
  .project-tech {
    font-size: 0.85rem;
    color: #00ffffb3;
    margin: 0.5rem 0 0.3rem;
    font-style: italic;
  }
  
  .glass-card .project-link {
    display: inline-block;
    margin-top: 0.7rem;
    color: #ff8c42;
    text-decoration: none;
    font-weight: bold;
    /* transition: color 0.1s ease; */
  }
  
  .project-link:hover {
    text-decoration: underline;
  }
   

  .glass-card a {
    text-decoration: none;
    color: inherit;
  }
  .glass-card:hover h3 {
    color: #00ffff;
  }
  .glass-card a:hover h3 {
    color: #00ffff;
  }

  .service-icon {
  font-size: 3rem;
  color: #00d4ff;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.glass-card:hover .service-icon {
  transform: scale(1.1);
  color: #ff8c42; /* matches your accent */
}

/* ...............
FOLLOW UP LOGO
................ */
.follow-logo {
  margin-top: 1.5rem;
  text-align: center;
}

.follow-logo img {
  max-width: 120px;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.follow-logo img:hover {
  opacity: 1;
  transform: scale(1.05);
}

  
  /* ...........MODEL........... */
  .image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
  }
  
  .modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
  }
   
  
  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
  }
  
   
/*................Close Button - Modern Circle Design........... */
.close-outline-btn {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(0, 255, 255, 0.3); /* Cyan border */
  border-radius: 12px;
  background: rgba(0, 255, 255, 0.06); /* Glass tint */
  color: #00ffff;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  transition: all 0.3s ease;
  text-shadow: 0 0 6px rgba(0, 255, 255, 0.7);
}

.close-outline-btn:hover {
  background: rgba(0, 255, 255, 0.15);
  color: #ff00ff;
  border-color: rgba(255, 0, 255, 0.5);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.2);
  /* text-shadow: 0 0 12px rgba(255, 0, 255, 0.7); */
  /* transform: scale(1.15) rotate(2deg); */
}


 
 /* .............CONTACT FORM................*/
  .contact-form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .form-card {
    max-width: 650px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.1);
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  
  .form-group label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #00ffff;
  }
  
  input,
  textarea {
    padding: 0.8rem;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    resize: none;
  }
  
  input:focus,
  textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
  }
  
  button[type="submit"] {
    padding: 0.8rem 1.5rem;
    border: none;
    background: #00ffff;
    color: #000;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  button[type="submit"]:hover {
    background: #00cccc;
  }
  
  .form-note {
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 1rem;
  }

/* ...................FOLLOW UP.................. */
  .follow-up {
    text-align: center;
    margin-top: 2rem;
  }
  
  .follow-up h3 {
    font-size: 1.6rem;
    color: #00ffff;
    margin-bottom: 1rem;
  }
  
  .follow-up p {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1rem;
  }
  
  .follow-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .follow-icons a {
    font-size: 1.5rem;
    color: #00ffff;
    transition: color 0.3s ease;
  }
  
  .follow-icons a:hover {
    color: #00cccc;
  }
/* ...............TOAST............ */
  .toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 255, 255, 0.9);
    color: black;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: bold;
    display: none;
    z-index: 9999;
    animation: fadeInOut 4s ease-in-out;
  }
  .toast-error {
    background: rgba(255, 0, 0, 0.85);
    color: #fff;
  }
  
  /* ...............BLOG................. */
  .blog-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 1.5rem;
  }
  
  .blog-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .blog-card h3 {
    margin-top: 1rem;
    font-size: 1.2rem;
  }
  
  .blog-card p {
    font-size: 0.95rem;
    margin: 0.5rem 0;
    color: #ccc;
  }
  
  .blog-card a {
    color: #ff8c42;
    font-weight: bold;
    text-decoration: none;
  }
  
  .blog-card a:hover {
    text-decoration: underline;
  }

  /* .............Responsiveness........... */
  /* Keyframes */
@keyframes bodyFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateX(-50%) translateY(20px); }
  10% { opacity: 1; transform: translateX(-50%) translateY(0); }
  90% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(-20px); }
}
 
  
  /* Responsive styles */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
     position: absolute;
    top: 58px;
    right: 10px;
    background:#FFF;
    background-size: cover;
    color: #000;
    flex-direction: column;
    width: 220px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    padding: 15px;
    display: none;
    z-index: 9999;
    animation: slideDown 0.3s ease-in-out;
  
  }

  .nav-links.active {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
  }

  .nav-links a {
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), #00ffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;     margin: 10px 0;
    transition: all 0.3s ease;

  }
    .nav-links a:hover {
      color: #000;
      transform: scale(1.05);
    
  }
}

  
  @media (max-width: 600px) {
    .project-grid {
      flex-direction: column;
      align-items: center;
    }
  }

  @media (max-width: 480px) {
    .glass-section {
      margin: 1rem;
      padding: 1.5rem 1rem;
    }
  
    .glass-card {
      width: 100%;
    }
  }
  
  