body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin: 0;
  padding: 0;
  background-color: #FFFDF9;
  scroll-behavior: smooth;
  color: #434343;
}
a {
  text-decoration: none;
  color: inherit;
}
h1, h2, h3, p {
  margin: 0;
}
 /* Header styles */
header {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 15px;
}
.logo {
  max-height: 40px;
}
/* Desktop menu */
.desktop-menu {
  display: flex;
  gap: 20px;
}
.desktop-menu a {
  text-decoration: none;
  font-size: 14px;
  color: #434343;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 25px;
}
.desktop-menu a:hover{
  background-color: #3379FF;
  color: #fff;
}
.contactbtn{
  background: #3379FF;
  color: #fff !important;
  border-radius: 25px;
}
.menu-icon {
  font-size: 30px;
  cursor: pointer;
  display: none;
}
/* Mobile navigation */
#mobileNav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 2rem;
  z-index: 1000;
  transform: translateX(100%); 
  transition: transform 0.3s ease-in-out;
}
#mobileNav.active {
  display: flex;
  flex-direction: column;
  transform: translateX(0);
}
#mobileNav a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  display: block;
  padding: 20px 0;
}
#mobileNav .close-icon {
  display: flex;
  font-size: 30px;
  color: white;
  cursor: pointer;
  margin-bottom: 20px;
  align-items: end;
}
/* Responsive styles */
@media (max-width: 768px) {
  .desktop-menu {
    display: none; 
  }
  .menu-icon {
    display: block;
  }
  #mobileNav {
    display: none;
  }
}
.flex {
  margin: 0 auto;
  width: 1280px;
  display: flex;
  align-items: center;
  justify-content:space-between;
}
/* banner Section */
.banner {
  padding: 7rem 0;
}
.banner h1 {
  font-size: 72px;
  font-weight: 500;
  color: #434343;
}
.banner img {
  max-width: 100%;
  border-radius: 52px;
  max-height: 460px;
  box-shadow: 0 4px 9px #DACFB9;
}
/* second section */
.second{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 850px;
  margin: 3rem auto;
}
.second .head{
  font-size: 48px;
  font-weight: bold;
  text-align: center;
}
.second .para{
  font-size: 18px;
  color: #000;
  text-align: center;
}
/* Services Section */
.services {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  padding: 7rem 0;
}
.services h2 {
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
  padding: 0 6rem;
  border-bottom: 2px solid #434343;
  max-width: fit-content;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1280px;
  padding: 0 20px;
  margin-top: 50px;
}
.service-card {
  flex: 1 0 40%;
  display: flex;
  justify-content: center;
  border-radius: 8px;
  min-width: 250px;
}
.service-card-in{
  max-width: 400px;
}
.service-card h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #434343;
}
.service-card p{
  font-size: 16px;
  font-weight: 300;
}
/* Clients Section */
.clients {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 8rem auto;
}
.clients h2, .form-section h2, .about h2 {
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
  padding: 0 6rem;
  border-bottom: 2px solid #434343;
  max-width: fit-content;
}
.client-logos {
  display: flex;
  justify-content: space-between;
  max-width: 1280px;
  margin-top: 50px;
  overflow: hidden;
}
.client-logos img {
  max-height: 50px;
}
.ticker-track {
  display: flex;
  gap: 100px;
  animation: scroll 30s linear infinite;
  will-change: transform;
}

.ticker-track img {
  height: 50px;
  flex-shrink: 0;
}

@keyframes scroll {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Quote Section */
.quote {
  text-align: center;
  margin: 10rem auto 0;
  font-size: 16px;
  font-weight: 400;
}
.quoteH{
  font-size: 48px;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
/* Notification Popup Styles */
.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 15px 20px;
  background-color: #007bff;
  color: white;
  font-size: 14px;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
}
.notification.error {
  background-color: #d9534f;
}
/* Contact Form Section */
.form-section {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  padding-top: 7rem;
}
.form-section form {
  width: 500px;
  max-width: 524px;
  margin: 50px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 16px;
  align-items: center;
}
.form-section input,
.form-section textarea {
  font-family: "Inter", sans-serif;
  width: 100%;
  padding: 17px 20px;
  box-sizing: border-box;
  border: 0;
  border-radius: 24px;
  background-color: #FBF5EB;
}
.form-section button {
  font-family: "Inter", sans-serif;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  background-color: transparent;
  border-radius: 24px;
  transition: background-color 0.3s ease;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #141414 !important;
}
.form-section button:hover {
  background-color: #FBF5EB;
}
/* About us Section */
.about{
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  padding: 0 10px;
  padding-top: 7rem;
  margin: 10rem auto;
  margin-top: 0;
  align-items: center;
  text-align: center;
}
.about .para {
  font-size: 24px;
  font-weight: 300;
  max-width: 900px;
  padding-top: 50px;
}
/* Welcome Section */
.welcome{
  background: #434343;
  color: #fff;
}
.welcome .box{
  max-width: 724px;
  margin: 0 auto;
  text-align: center;
  padding: 90px 10px;
}
.welcome .box h2{
  margin-bottom: 28px;
  font-size: 54px;
  font-weight: 500;
}
.welcome .box .para{
  font-size: 16px;
  font-weight: 500;
}
/* talk Section */
.talk {
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  margin: 8rem auto;
}
.talk .ltb{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.talk .npim, .talk .lt{
  font-size: 54px;
  font-weight: 500;
  color: #000;
}
.talk .lt{
  color: #3379FF;
  margin-top: 22px;
}
.talk a {
  padding: 16px 29px;
  background-color: #3379FF;
  color: #fff;
  font-weight: 600;
  border-radius: 54px;
  font-size: 20px;
  transition: background-color 0.3s ease;
}
.talk a:hover {
  background-color: #2463db;
}
/* Footer */
footer {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 12px;
  justify-content: space-between;
  margin-bottom: 4rem;
}
footer img{
  height: 40px;
}
/* Projects */
.project{
  max-width: 1280px;
  margin: 7rem auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.pro_dt{
  flex: 1 1 45%;
}
.thumbP {
  height: 420px;
  border-radius: 32px;
  overflow: hidden;
}
.thumbP img {
  max-width: 100%;
  display: block;
  transition: transform 1s ease-in-out;
}
.pro_dt:hover .thumbP img{
  transform: scale(1.04);
}
.Pdtl{
  display: flex;
  justify-content: space-between;
  margin: 1rem 0;
}
.pr_Fx3fsr img{
  max-width: 100%;
  display: block;
}

/* Responsive Design */
@media (max-width: 1280px) {
  .flex{
    flex-direction: column;
    gap:4rem;
    max-width: 1024px;
  }
  .client-logos, .talk, footer{
    max-width: 1004px;
/*    padding: 20px;*/
  }
}
@media (max-width: 820px) {
  header {
    max-width: 100%;
  }
  .service-list {
    flex-direction: column;
  }
  .flex, footer {
    flex-direction: column;
    width: 100%;
    gap:4rem;
/*    margin: 10px 20px;*/
  }
  .flex div {
    margin: 0 10px;
  }
  .banner h1{
    font-size: 52px;
  }
  .second .head{
    font-size: 42px;
  }
  .second .para{
    padding: 0 10px;
  }
  .client-logos{
    width: 100%;
  }
  .form-section form{
    width: 95%;
  }
  .talk {
    text-align: center;
    padding: 0 10px;
  }
  .talk .ltb{
    flex-direction: column;
    gap: 4rem;
  }
  .project{
    max-width: 100%;
    padding: 0 10px;
  }
  .thumbP{
    height: 100%;
  }
}