@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #212529; /* Dark Charcoal - Main background */
  --secondary-color: #4fe2b2; /* Vibrant Blue-Green - Accent color */
  --text-color: #ffffff; /* Off-White - Main text color */
  --secondary-text-color: #ffffff; /* Light Gray - Secondary text color */
  --bg-primary: #121417; /* Very Dark Charcoal - Background of the header */
  --card-bg: #2d3035; /* Dark Gray - Background for skill/service cards */
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--primary-color);
  color: var(--text-color);
}

h1,
h2,
h3 {
  font-family: "Saira", sans-serif;
  color: var(--text-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/* Utility Classes */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 2rem;
}

.text-primary {
  color: var(--secondary-color);
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 8px 20px;
  font-size: 14px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #3cc59b;
}

/* Header Start */
header {
  background-color: var(--bg-primary);
  height: 100vh;
}

header .navbar {
  background-color: var(--bg-primary);
  border-bottom: 1px solid #343a40;
  position: fixed;
  width: 100%;
  z-index: 1;
}

header .navbar nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  padding: 1.5rem 2rem;
}

#logo img {
  height: 140px; /* Adjust this value as needed */
  width: auto;
}

header .navbar nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

header .navbar nav ul a {
  margin: 0 15px;
  color: var(--text-color);
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 1.5rem; /* Adjust this value to your liking */
}
.fa-whatsapp {
  font-size: 2rem; /* You can adjust this value to your liking */
}

header .navbar nav ul a:hover {
  color: var(--secondary-color);
}

header .header-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  max-width: 1100px;
  align-items: center;
  margin: auto;
  padding: 5rem 2rem 0;
  height: 100%;
}

header .header-content .content-text {
  margin-bottom: 5rem;
}

#home .header-content p span {
  font-weight: 700;
  font-size: 20px;
}

#home .header-content h1 {
  font-size: 60px;
  color: var(--text-color);
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  margin: 10px;
}

#home .header-content .title {
  font-size: 20px;
  color: var(--secondary-text-color);
  margin: 10px 0;
  font-weight: 500;
}

#home .header-content .social {
  margin: 1rem 0 2rem;
}

#home .header-content .social a i {
  font-size: 18px;
  padding: 10px;
  background-color: var(--card-bg);
  color: var(--text-color);
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

#home .header-content .social a i:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: scale(0.85);
}

header .header-content img {
  max-width: 800px;
  
}
.lang-switcher {
  color: #fff; /* This will make the text white */
  text-decoration: none; /* Add this if you want to remove the underline */
  font-size: 1.5rem; /* Adjust this value to your liking */
}

/* Header End */
/* About Start */
#about,
#skills,
#services {
  padding: 6rem 0;
}
#about h2 {
  margin-top: 60px;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 2rem;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 4px solid #0077cc;
  padding-left: 12px;
  transition: color 0.3s ease;
}
#about h2:hover {
  color: #0077cc;
}
nav a[href="#about"]:hover {
  text-decoration: underline;
  color: #0077cc;
}


#about h2,
#skills h2,
#services h2,
#contact h2 {
  text-align: center;
  font-size: 38px;
  color: var(--text-color);
  font-weight: 600;
  letter-spacing: 1px;
}

#about hr,
#skills hr,
#services hr {
  width: 100px;
  height: 3px;
  background-color: var(--secondary-color);
  border: none;
  margin: 5px auto 0;
}

#about .about-content {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  column-gap: 3rem;
}

#about .about-content .col-1 h3 {
  font-size: 24px;
  color: var(--text-color);
  margin-bottom: 20px;
}

#about .about-content .col-1 p {
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 18px;
}

#about .about-content .col-2 p {
  color: #ffffff;
  margin-bottom: 20px;
  padding: 5px;
  border-bottom: 1px solid #495057;
  font-size: 18px;
}

/* About End */
/* Skills Start */
#skills {
  background-color: var(--card-bg);
}

#skills h2 {
  color: var(--text-color);
  font-family: Poppins, sans-serif;
}

#skills .container h2 img {
  width: 30px;
}

#skills .skills-content {
  margin-top: 2rem;
  background-color: var(--primary-color);
  border-radius: 10px;
  padding: 2rem;
}

#skills .skills-content .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  text-align: center;
}

#skills .skills-content .row .item {
  color: var(--text-color);
  background-color: var(--card-bg);
  margin: 20px;
  padding: 1rem;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease;
}

#skills .skills-content .row .item:hover {
  box-shadow: 0 0 15px rgba(79, 226, 178, 0.3);
  transform: translateY(-5px);
}

#skills .row img {
  max-width: 80px;
  width: 50px;
}

/* Skills End */
/* Services start */
#services,
#contact {
  background-color: var(--primary-color);
}

#services .heading {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
}

#services .heading img {
  width: 60px;
  margin-right: 10px;
}

#services .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4rem;
  text-align: center;
  column-gap: 2rem;
  row-gap: 4rem;
}

#services .row .item {
  background-color: var(--card-bg);
  padding: 30px 15px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  transition: all 0.3s ease;
}

#services .row .item:hover {
  transform: scale(1.04);
  box-shadow: 0 0 15px rgba(79, 226, 178, 0.3);
}

#services .row .item h3 {
  margin: 15px 0;
  color: var(--text-color);
  font-size: 24px;
}

#services .row .item p {
  font-size: 19px;
  color: #ffffff;
}

#services .row .item img {
  width: 70px;
}

/* Services End */
/* Contact Start */
#contact {
  padding: 4rem 0;
  background-color: var(--bg-primary);
}

#contact .row {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  background-color: var(--card-bg);
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.2);
  padding: 2rem 3rem;
  border-radius: 10px;
  
}

#contact .row input,
#contact .row textarea {
  display: block;
  width: 100%;
  margin: 20px 0;
  padding: 10px;
  background-color: #ffffff;
  border: 1px solid #495057;
  color: #333;
  outline: none;
  font-size: 20px;
}
.btn-primary {
  font-size: 1.5rem; /* Adjust this value to make the text bigger */
  padding: 15px 30px; /* Adjust these values to make the button bigger */
}

/* Contact End */
/* Footer Start */
#footer {
  background-color: #212529;
  color: var(--text-color);
  padding: 1rem 0;
  text-align: center;
}

/* Footer End */
/* Tablet Responsive */
@media (max-width: 820px) {
  header .header-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
  