/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', sans-serif;
  background:   #2b2f3e;
  color: #ffb347;
  line-height: 1.6;
}

/* Top Bar */
.top-bar {
  position: static; /* or just remove this line */
  z-index: 1001;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #2b2f3e;
  color: white;
  border: 0.5px solid rgba(255, 255, 255, 0.2); /* thin outline */
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.15); /* subtle glow */
}

.top-bar a,
.top-bar i {
  color: white;
  text-decoration: none;
  margin-left: 5px;
}
.top-bar a:hover {
  text-decoration: underline;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0px;
  z-index: 1000;
  background:  #2b2f3e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
  color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.logo {
  font-weight: bold;
  font-size: 1.5rem;
}
.nav-links {
  display: flex;
  gap: 18px;
  list-style: none;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  border-bottom: 3px solid #f89a17;;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color:  #1c1f2b;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    display: none;
  }
  .nav-links.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .navbar {
    flex-wrap: nowrap;
  }
}

/* Hero Section */
.hero-banner {
  background:  #2b2f3e;
  color: #ffb347;
  text-align: center;
  padding-bottom: 60px ;
  padding-top: 20px;

}
.hero-text {
  margin-top: 40px;
  padding: 0 20px;
}
.hero-text h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.hero-text h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: white;
}
.hero-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffb347;
  margin: 20px auto;
}

/* Sections / Cards */
section.card {
  background: #2b2f3e;
  margin: 30px auto;
  padding: 30px 20px;
  max-width: 800px;
  border-radius: 12px;
  border: 0.5px solid rgba(255, 255, 255, 0.2); /* thin outline */
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.15); /* subtle glow */
  transition: box-shadow 0.3s ease, border 0.3s ease;
}

section.card:hover {
  border: 0.5px solid rgba(255, 255, 255, 0.5); /* more visible on hover */
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4); /* stronger glow */
}

section.card h2,
section.card h3 {
  color: #ffb347;
}
section.card h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}
section.card h3 {
  margin: 10px 0 5px;
}
section.card p,
section.card li {
  font-size: 0.95rem;
}
section.card ul {
  padding-left: 20px;
}

/* Icons */

.fa-eye {
  font-size: 0.8rem;
  color: white;
  margin-left: 4px;
  vertical-align: middle;
  transition: color 0.2s;
}

/* .icons i,

.icons i:hover {
 color: #ffa726;
} */

  

/* CTA Buttons */
.cta-button,
.glow-button,
.whatsapp-button {
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 30px;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}
.cta-button {
  background: #2b2f3e;
  color: #ffb347;
  border: 2px solid white;
  border-radius: 12px; /* Rounded corners */
  padding: 10px 20px;
  box-shadow: 0 0 8px white; /* White glow */
  transition: all 0.3s ease-in-out;
  font-weight: bold;
}

.cta-button:hover {
  background: #ffb347;
  color: white;
  box-shadow: 0 0 12px #ffb347; /* Glowing yellow on hover */
  border-color: #ffb347;
}

.glow-button {
  background: #d27d06;
  color: white;
}
.glow-button:hover {
  background:#8a5409;
}
.whatsapp-button {
  background-color: #25D366;
  color: white;
}
.whatsapp-button i {
  margin-right: 8px;
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
form input,
form textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  background: #fafafa;
}
form button {
  background: #ffb347;;
  color: white;
  font-weight: bold;
  padding: 10px;
  border: none;
  border-radius: 5px;
}
form button:hover {
  background: #ffb347;;
}
.input-group {
  display: flex;
  flex-direction: column;
}
.input-group label {
  font-weight: bold;
  margin-bottom: 6px;
  color: #ffb347;
}
.input-group input,
.input-group textarea {
  background: #fafafa;
  border: 2px solid #ddd;
  border-radius: 6px;
  padding: 12px 14px;
}
.input-group input:focus,
.input-group textarea:focus {
  border-color: #ffb347;
  box-shadow: 0 0 6px rgba(0, 120, 212, 0.4);
}

/* Success Message */
.success-message {
  display: none;
  color: #ffb347;
  background: #2b2f3e;
  padding: 12px 16px;
  margin-top: 20px;
  border-left: 2px solid #43a047;
  border-radius: 16px;
  font-weight: bold;
}

/* Skill Tags */
.skill-tag {
  display: inline-block;
  background: #333;
  color: #ffa726;
  padding: 6px 12px;
  border-radius: 20px;
  margin: 4px 6px 4px 0;
  font-size: 0.9rem;
  border: 1px solid #ffa726;
  transition: 0.3s ease;
}
.skill-tag:hover {
  background: #ffa726;
  color: #1c1f2b;
}

/* Certificate Grid */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.cert-badge {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}
.cert-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.cert-badge img {
  height: 40px;
  margin-bottom: 10px;
}
.cert-badge span {
  display: block;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
}
.cert-badge a {
  color: black;
  font-size: 16px;
  text-decoration: none;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  background:   #2b2f3e;
  color: white;
}

  
    .floating-wa { position: fixed; bottom: 20px; right: 20px; background-color: #25D366; color: white; padding: 12px 18px; border-radius: 50px; text-decoration: none; font-size: 18px; z-index: 1000; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
    
   
.top-bar {
  display: flex;
  justify-content: center; /* centers content horizontally */
  align-items: center;
  padding: 1rem 0;
 /* dark background */
}

.top-bar .icons {
  display: flex;
  gap: 1rem; /* space between icons */
}

.top-bar .icons a {
  color: white;
    font-size: 1.8rem;
  transition: transform 0.2s ease;
}

.top-bar .icons a:hover {
  transform: scale(1.2);
 
}
