body {
  font-family: Arial, sans-serif;
}
#nav a:hover {
  background-color: rgb(183, 207, 214);
  border-radius: 20px;
}

.contactData{
        display: flex;
        gap: 20px;
        justify-content: center;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 20px;

  background: 
              url("jyoti\ tiwari\ 2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* Cards */
.card {
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.row.align-items-start {
  align-items: center;
}
.pTag{
    width: 100%;
    
}

/* Section spacing */
section {
  padding-top: 60px;
  padding-bottom: 60px;
}




.card-body {
  display: flex;
  justify-content: center;   
  align-items: center;       
}

.contentData {
  text-align: center;
  max-width: 400px;
  width: 100%;
}

.contentData {
  padding: 15px;
}

@media screen and (max-width: 767px) {
  .hero {
    min-height: auto;
    padding: 80px 15px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .contentData {
    max-width: 90%;
  }

  .hero img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  .contactData{
    flex-direction: column;
    gap: 1px;
    justify-content: center;
  }
    .pTag{
    width: 100%;
    
}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding: 200px 30px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero .container {
    max-width: 700px;
  }
  .pTag{
    width: 100%;
    
}

}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 19px;
  }
}

@media screen and (min-width: 1200px) {
  .hero h1 {
    font-size: 56px;
  }

  .hero p {
    font-size: 20px;
  }
}

.card {
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

#nav a {
  transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}



img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

img:hover {
  transform: scale(1.05);
}

/* a {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

a:hover {
  transform: scale(1.05);
} */
 /* @media (min-width: 992px) {
  .navbar-toggler {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
    justify-content: flex-end;
  }
} */