/* Reset some default browser styles */
body,
h1,
h2,
h3,
p,
a,
ul,
li {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

/* Body styling */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header styling */
.header {
  background: #333;
  color: #fff;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.navbar a {
  color: #fff;
  margin: 0 1rem;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
  color: #f39c12;
}

/* Home section styling */
.home {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  background: #f4f4f4;
}

.home-content h1 span {
  color: #f39c12;
}

.btn-box {
  margin-top: 1rem;
}

.btn-box .btn-1,
.btn-box .btn-2 {
  padding: 0.5rem 1rem;
  margin-right: 0.5rem;
  border: none;
  background: #f39c12;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-box .btn-1:hover,
.btn-box .btn-2:hover {
  background: #e67e22;
}
#photo{
  height: 200px;
  background-size:contain;
  border-radius: 50%;
}
.img-box img {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
}

/* About section styling */
/* Base Styles */
.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px;
  gap: 20px;
 
}

.about-img {
  flex: 1 1 100%;
  text-align: center;
}

.about-img img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.about-content {
  flex: 2 1 100%;
}

.heading {
  font-size: 2em;
  margin-bottom: 20px;
}

.heading span {
  color: red;
}

p {
  margin: 0 0 15px 0;
}

.btn-2 {
  display: inline-block;
  padding: 10px 20px;
  background-color: red;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.btn-2:hover {
  background-color: darkred;
}

/* Media Queries for Responsiveness */
@media (min-width: 600px) {
  .about {
    flex-direction: row;
  }

  .about-img,
  .about-content {
    flex: 1 1 50%;
  }

  .about-img {
    text-align: left;
  }

  .about-content {
    padding-left: 20px;
  }
}

@media (min-width: 992px) {
  .about {
    padding: 40px;
  }

  .heading {
    font-size: 2.5em;
  }

  .btn-2 {
    padding: 12px 24px;
  }
}


/

/* Footer styling */


.hero-image img {
  height: 50px;
  background-size: contain;
}




.hero-image img{
  height: 50px;
  background-size: contain;
}

.Highlihght{
  color: red;
}