*{margin:0;padding:0;box-sizing:border-box;font-family:Arial;}
body{background:#f5f5f5;}


.container{width:90%;max-width:1200px;margin:auto;}
/* NAVBAR */
header {
  background: #ffffff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 5px;
}

@media (max-width: 768px) {

  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background:white;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  nav.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

@media(max-width:768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }
}

.hero{
   height:100vh;
   background-image: url('Main1.jpeg');
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   display:flex;
   flex-direction:column;
   justify-content:center;
   align-items:center;   /* Center everything */
   text-align:center;
   color:white;
}

.hero-buttons{
   margin-top:380px;
   display:flex;
   gap:15px;
}
.btn-primary{
  background:#4b63b6;
  color:#fff;
  padding:10px 20px;
  border:none;
  border-radius:25px;
  cursor:pointer;
  
}
.btn-secondary{
  background:#fff;
  color:#4b63b6;
  padding:10px 20px;
  border:none;
  border-radius:25px;
  cursor:pointer;
}
/* ABOUT SECTION */
.about {
  padding: 80px 0;
  background: #f8f9fc;
}

.about-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
}

.about-content {
  flex: 1;
 
}

.about-inner {
  max-width: 500px;
}

.about-content h2 {
  font-size: 34px;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  font-weight: 600;
  margin-bottom: 18px;
}

.about-btn {
  background: #4b63b6;
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.about-btn:hover {
  background: #364bb5;
}

.projects {
  padding: 80px 0;
  background: #4b63b6;
  color: white;
  text-align: center;
}

.projects h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

/* Marquee Container */
.marquee {
  overflow: hidden;
  position: relative;
}

/* Moving Content */
.marquee-content {
  display: flex;
  gap: 30px;
  animation: scroll 20s linear infinite;
}

/* Individual Cards */
.project-card {
  min-width: 320px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-content {
  padding: 20px;
  text-align: left;
}

.project-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.project-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.project-btn {
  display: inline-block;
  padding: 8px 18px;
  background: #4b63b6;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  transition: 0.3s;
}

.project-btn:hover {
  background: #364bb5;
}
/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.contact {
  padding: 80px 0;
  background: #f5f6fa;
  text-align: center;
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-sub {
  color: #666;
  margin-bottom: 40px;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
}

.contact-form {
  background: #ffffff;
  padding: 40px;
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
  transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #4b63b6;
  outline: none;
  box-shadow: 0 0 0 2px rgba(75,99,182,0.2);
}

textarea {
  height: 120px;
  resize: none;
}

.contact-btn {
  background: #4b63b6;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #364bb5;
}
footer{
  background:#4b63b6;
  color:#fff;
  padding:20px 0;
}
.footer {
  background: linear-gradient(135deg, #2d3e9f, #5b79e6);
  color: white;
  padding: 50px 0;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left h3 {
  margin-bottom: 10px;
}

.footer-left p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-social i {
  margin-left: 15px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-social i:hover {
  transform: scale(1.2);
}
@media(max-width:768px){
  .about-flex{flex-direction:column;}
  .about img,.about-content{width:100%;}
  .hero h1{font-size:28px;}
}

@media(max-width: 900px) {
  .about-container {
    flex-direction: column;
  }

  .about-content {
    padding: 50px 30px;
  }
}

/* WHY CHOOSE US SECTION */
.why {
  padding: 80px 0;
  background: #f2f4f7;
  text-align: center;
}

.why h2 {
  font-size: 40px;
  margin-bottom: 50px;
  font-weight: 700;
}

/* Cards Container */
.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Single Card */
.card {
  background: #ffffff;
  width: 380px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  padding-bottom: 25px;
}

.card:hover {
   transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card h3 {
  font-size: 20px;
  margin: 20px 0 10px;
  font-weight: 600;
}

.card p {
  font-size: 15px;
  color: #6b7280;
  padding: 0 20px;
  line-height: 1.6;
}


.dev a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.dev a:hover {
  text-decoration: underline;
}

