/* Global Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: cursive, sans-serif;
}

body {
  font-family: sans-serif;
  color: #333;
  background-color: rgb(239, 246, 255);
}

/* Containers */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 6% auto;
  padding: 0 1rem;
}

/* Header */
.container > img {
  object-fit: cover;
  width: 100px;
  height: 55px;
}

header {
  margin: 10px 0;
}

header .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.head-img {
  object-fit: contain;
  width: 20px;
  height: 20px;
}

/* Appointment Button */
.appointment-btn {
  background-color: blue;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  background-color: rgb(239, 246, 255);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  flex-wrap: wrap;
  background-color: rgb(224, 244, 255);
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-radius: 20px;
  width: 100%;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
}

/* Search Box */
.search-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}

.search-box input {
  padding: 10px;
  border: 1px solid black;
  border-radius: 5px;
}

.search-box button {
  background: none;
  border: none;
  cursor: pointer;
}

.search-box button img {
  width: 20px;
  height: 20px;
  display: block;
}

/* Hero Section */
.hero {
  background-color: rgb(239, 246, 255);
  padding: 50px 0;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.hero-content {
  width: 100%;
  max-width: 500px;
  text-align: center;
}

.hero-content h2 {
  color: blue;
  font-size: 1.5rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  line-height: 1.6;
  margin-bottom: 30px;
}

.cricle {
  background-color: rgb(55, 111, 250);
  border-radius: 50%;
  height: 250px;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image > img {
  width: 100%;
  max-width: 220px;
  height: auto;
}

/* Call to Action Buttons */
.last-sec {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 2rem;
}

.btn {
  background-color: rgb(55, 111, 250);
  color: #fff;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
}

/* Footer */
footer {
  position: relative;
  bottom: 0;
  width: 100%;
  text-align: center;
  background-color: black;
  color: #fff;
  padding: 0.5rem ;
}

/* Media Query for Mobile */
@media (max-width: 600px) {
  .logo {
    font-size: 1.2rem;
  }

  .appointment-btn {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content h2 {
    font-size: 1.1rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .cricle {
    height: 200px;
    width: 200px;
  }

  .search-box input {
    width: 100%;
  }
}

      #navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background-color: #0a1a2f;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        padding: 0 2rem;
        z-index: 1000;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
      }

      .logo-link {
        font-size: 1.8rem;
        font-weight: 800;
        font-family: cursive;
        color: rgb(243, 174, 47);
        text-decoration: none;
      }

      .logo-link:hover {
        color: #ffffff;
      }

      #nav-container {
        display: flex;

        gap: 2rem;
        align-items: center;
      }

      .link {
        color: rgb(243, 174, 47);
        text-decoration: none;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: 0.3s;
      }

      .link:hover {
        color: #fff;
        transform: scale(1.05);
      }

      .dev-icon {
        height: 1.6rem;
        width: 1.6rem;
      }
      .resume-btn {
        padding: 8px 16px;
        background-color: #007bff;
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        border-radius: 6px;
        transition: background-color 0.3s ease;
        border: 1px solid transparent;
      }

      .resume-btn:hover {
        background-color: #0056b3;
        border-color: #004a99;
      }
      #navbar ul {
        display: flex;
        justify-content: space-evenly;
        gap: 50px;
        list-style: none;
      }