* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #1A2332;
    font-family: 'Poppins', sans-serif;
    color: white;
}

/* HEADER */
.main-header {
    width: 100%;
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1A2332;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.navbar {
    display: flex;
    gap: 32px;
}

.navbar a {
    text-decoration: none;
    color: #dcdcdc;
    font-size: 16px;
    transition: 0.3s;
}

.navbar a:hover {
    color: white;
}

/* HERO SECTION */
.hero-section {
    text-align: center;
    padding: 120px 20px;
}

#logo {
    height: 120px;
    width: auto;
}

.name {
    font-size: 50px;
    font-weight: bold;
    margin-top: 20px;
    background: linear-gradient(to right, #3b82f6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#devel {
    color: white;
    margin-top: 15px;
}


.button-container {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.portfolio-button {
    padding: 12px 22px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    background-color: #3b82f6;
    transition: 0.3s;
}

.hire-me:hover {
    background-color: #2563eb;
}

.projects {
    background-color: #4b5563;
}

.projects:hover {
    background-color: #374151;
}


.about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 100px;
    gap: 40px;
    background: #000;
}

.about-text {
    flex: 1;
}

.about-image img {
    width: 450px;
    border-radius: 10px;
}


.skills-section {
    padding: 60px 50px;
}

.skills-section h1 {
    text-align: center;
    margin-bottom: 40px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.skill-card {
    background: #000;
    padding: 25px;
    border-radius: 20px;
    min-height: 200px;
    height: 200px;
    width: 300px;
}

.skill-card h2 {
    text-align: center;
    margin-bottom: 10px;
}

.skill-card ul {
    margin-top: 10px;
    padding-left: 20px;
}

ul {
  list-style: none;
}

ul li {
  color: white; 
  position: relative;
  padding-left: 20px;
}

ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0077ff; 
  font-size: 22px;
}

#a1 {       
    color: white;
    text-align: center;
}

.projectile {
    background: #000;
    padding: 50px;
}


.projects-section {
  padding: 80px 10%;
  background: linear-gradient(180deg, #0b1220, #0f172a);
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 50px;
}

.projects-container {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.project-card {
  background: #1e293b;
  width: 320px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
}

.project-card img {
  width: 400px;
  height: 180px;
  object-fit: cover;
}

.project-content {
  padding: 18px;
}

.project-content h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 20px;
}

.project-content p {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.5;
}

.tech-tags {
  margin: 15px 0;
}

.tech-tags span {
  display: inline-block;
  background: #1d4ed8;
  color: #ffffff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  margin: 4px 4px 0 0;
}

.project-links {
  display: flex;
  gap: 15px;
}

.project-links a {
  color: #93c5fd;
  text-decoration: none;
  font-size: 14px;
}

.project-links a:hover {
  text-decoration: underline;
}


.testimonials-section {
  padding: 90px 6%;
  background: linear-gradient(180deg, #0b1220, #0f172a);
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 60px;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #1e293b;
  width: 360px;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
  position: relative;
}

.quote-icon {
  font-size: 50px;
  color: #3b82f6;
  position: absolute;
  top: 18px;
  left: 22px;
  opacity: 0.9;
}

.testimonial-text {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 35px;
  margin-bottom: 28px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info h4 {
  color: #ffffff;
  font-size: 15px;
  margin: 0;
}

.client-info span {
  color: #94a3b8;
  font-size: 13px;
}

.contact-section {
  padding: 90px 6%;
  background: linear-gradient(180deg, #0f172a, #1e293b);
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 60px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Left Card */
.contact-info {
  background: #0b1220;
  width: 420px;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.45);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.icon {
  font-size: 22px;
  color: #3b82f6;
}

.info-item h4 {
  color: #ffffff;
  font-size: 16px;
  margin: 0;
}

.info-item p {
  color: #cbd5e1;
  font-size: 14px;
  margin-top: 4px;
}

/* Right Card */
.contact-form {
  background: #0b1220;
  width: 520px;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.45);
}

.contact-form label {
  color: #94a3b8;
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #1e293b;
  border: none;
  border-radius: 8px;
  padding: 12px;
  color: #ffffff;
  margin-bottom: 18px;
  font-size: 14px;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 14px; 
  background: #2563eb;
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #1d4ed8;
}
#footer {
  background: #000;
  text-align: center;
  padding: 10px;
  font-size: 20px;
  margin-bottom: 5px;
  letter-spacing: 4px;

}
