body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #222;
  background: #f9f9f9;
}

header {
  background: linear-gradient(120deg, #071330 100%);
  color: #fff;
  padding-bottom: 2px;
}

.logo {
display: flex;
  align-items: center;
  margin-right: 32px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 12px; 
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.nav-links {
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}

.nav-links li a.active{
  background: #4f8cff; 
  color: #fff; 
  border-radius: 4px; 
  padding: 8px 12px; 
  transition: background-color 0.3s;
}

.nav-links li a:hover {
  color: #66ff00;
}


.logo img {
    height: 100%;
    width: auto;
    max-height: 60px;
    margin-left: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
  align-items: space-between;
  text-size-adjust: bold;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

nav a:hover {
  opacity: 0.7;
  color: rgb(0, 255, 0);
}

.nav-links i {
  font-size: 20px;
  color: #fff;
  transition: color 0.2s;
  vertical-align: middle;
}
.nav-links a:hover i {
  color: #4f8cff;
}


/*HERO SECTION */

.hero-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 60px 10%;
  background: linear-gradient( #071330);
  color: #fff;
}

.hero-image {
 width: 100%;
  max-width: 900px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}


.hero-content {
  flex: 1;
  min-width: 300px;
}

.hero-banner h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-banner .highlight {
  color: #00ffb3;
  font-weight: bold;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.trust-bar {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.star-icon {
  width: 20px;
  height: 20px;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  margin-top: 40px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* welcome section Start here */


.cta-btn {
  background: #fff;
  color: #4f8cff;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: 0.2s, color 0.2s;
  border: 2px solid rgb(30, 146, 255);
  margin-top: 40px;
  max-width: 300px;
}

.cta-btn:hover {
  background: #4f8cff;
  color: #fff;
}

.welcome {
  background: #ffffff;
  padding: 60px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  max-width: 1200px;
  margin: 40px auto;
}

.welcome-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.intro-image img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background-color: #f1f1f1;
}

/* ========== Welcome Section Centered ========== */
.welcome {
  background: #ffffff;
  padding: 60px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  max-width: 1000px;
  margin: 40px auto;
  text-align: center;
}

.welcome-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* Image Styling */
.intro-image img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 12px;
  background-color: #f1f1f1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Text Content Styling */
.welcome-content {
  max-width: 800px;
}

.welcome-content h2 {
  font-size: 2.2rem;
  color: #4f8cff;
  margin-bottom: 16px;
}

.welcome-content p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* CTA Button */
.welcome-content .cta-btn {
  display: inline-block;
  background: #4f8cff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.welcome-content .cta-btn:hover {
  background: #2f6edb;
}

/* ========== Responsive (Optional) ========== */
@media (max-width: 480px) {
  .welcome-content h2 {
    font-size: 1.75rem;
  }

  .welcome-content p {
    font-size: 1rem;
  }

  .welcome-content .cta-btn {
    padding: 10px 24px;
    margin-top: 20px;
    font-size: 0.95rem;
  }
}

/* Welcome section Ends Here */

/* Services Start Here */
.services {
  text-align: center;
  margin-bottom: 60px;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 32px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.service {
    background-color: rgb(255, 255, 255);
  border-radius: 12px;
  box-shadow: 5px 15px 12px rgba(10, 10, 10, 0.20);
  padding: 32px 24px;
  width: 280px;
  height: auto;
  transition: 
    transform 0.25s cubic-bezier(.21,1.02,.73,1.01),
    box-shadow 0.25s cubic-bezier(.21,1.02,.73,1.01);
}
 
.service:hover {
  transform: translateY(-16px) scale(1.05);
  box-shadow: 0 16px 32px rgba(40, 40, 80, 0.18), 0 2px 8px rgba(0,0,0,0.10);
  z-index: 2;
}

.service-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  max-height: 160px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top: 8px;
}


.service h3 {
  margin-top: 0;
  color: #1f1f1f;
  text-size-adjust: bold;
}

/*
.service-more {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-weight: 700;
  margin-top: 20px;
  padding: 10px;
  border-radius: 8px;
  background-color: #6a82fb;
  border: none;
  text-decoration: none;
}
*/

.service-more a{
  color: #1154a0;
  text-decoration: none;
}
.service-more a:hover{
  color: #ffffff;
}
/* Services End Here */


/* About Genzdev */

.intro-agency {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(40,0,80,0.07);
  max-width: 1100px;
  max-height: 600px;
  margin: 40px auto 32px;
  padding: 20px 10px;
}

.intro-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}


/* Intro Start Here */
.intro-container{
  height: 250px;
}
.intro-image img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(79,140,255,0.07);
  background: #f9f9fb;
  display: block;
}

.intro-content {
  flex: 1;
  min-width: 220px;
  margin-top: -50px;
}

.intro-content h2 {
  font-size: 2rem;
  color: #4f8cff;
  margin-bottom: 12px;
}

.intro-content p {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 50px
}
/* Intro End Here */

@media (max-width: 700px) {
  .intro-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .intro-image img {
    margin: 0 auto;
  }
}


/* Contact Us Section */
.contact {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(40,0,80,0.07);
  padding: 48px 32px 40px 32px;
  padding-right: 80px;
  padding-left: 80px;
  max-width: 800px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0 auto;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #252525;
  letter-spacing: 1px;
}

.contact p {
  color: #333;
  margin-bottom: 28px;
  font-size: 1.1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group {
  position: relative;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 14px 14px 14px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  background: #f9f9fb;
  color: #222;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #4f8cff;
  box-shadow: 0 0 0 2px #4f8cff33;
}

.form-group label {
  position: absolute;
  left: 16px;
  top: 16px;
  color: #888;
  font-size: 1rem;
  pointer-events: none;
  background: transparent;
  transition: 0.2s;
}

.contact-form input:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:focus + label,
.contact-form textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  font-size: 0.85rem;
  color: #242424;
  background: #fff;
  padding: 0 4px;
}

.contact-btn {
  background: linear-gradient(90deg, #4f8cff 0%, #6ee7b7 100%);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(79,140,255,0.08);
  transition: background 0.2s, transform 0.2s;
}

.contact-btn:hover {
  background: linear-gradient(90deg, #6ee7b7 0%, #4f8cff 100%);
  transform: translateY(-2px) scale(1.03);
}
/* Contact Ends Here */


/* ABout us */

.about {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(40,0,80,0.07);
  padding: 48px 32px 40px 32px;
  margin: 48px auto 0 auto;
  max-width: 900px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #4f8cff;
  letter-spacing: 1px;
}

.about-intro {
  color: #333;
  margin-bottom: 36px;
  font-size: 1.1rem;
}

.about-team {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.team-member {
  background: #f9f9fb;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(79,140,255,0.07);
  padding: 32px 24px 24px 24px;
  width: 320px;
  transition: transform 0.25s cubic-bezier(.21,1.02,.73,1.01), box-shadow 0.25s cubic-bezier(.21,1.02,.73,1.01);
  text-align: center;
  position: relative;
}

.team-member:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 8px 32px rgba(79,140,255,0.13);
  z-index: 2;
}

.team-img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 3px solid #4f8cff;
  box-shadow: 0 2px 8px rgba(79,140,255,0.10);
}

.team-member h3 {
  margin: 10px 0 4px 0;
  color: #1f1f1f;
  font-size: 1.2rem;
}

.role {
  color: #4f8cff;
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.bio {
  color: #444;
  font-size: 0.98rem;
  margin-bottom: 14px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 8px;
}

.team-social a {
  color: #4f8cff;
  font-size: 1.25rem;
  transition: color 0.2s;
}

.team-social a:hover {
  color: #222;
}

@media (max-width: 800px) {
  .about-team {
    flex-direction: column;
    gap: 24px;
  }
  .team-member {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
}
/* About Ends Here */


/* Footer CSS Start Here */
footer {
  text-align: center;
  padding: 24px 0;
  background: #222;
  color: #fff;
  font-size: 0.95rem;
}


.site-footer {
  background-color: #1e1e1e;
  color: #f1f1f1;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 300px;
  margin: 10px;
  font-size: 12;
  letter-spacing: 0.5px;
}

.footer-section h4 {
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  font-size: 12;
  letter-spacing: 0.5px;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 12;
  letter-spacing: 0.5px;
}

.footer-section ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}



/* .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.newsletter-form input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
} */

/* .newsletter-form button {
  padding: 10px;
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #e65c00;
}
.footer-social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
} */
 
.footer-social-icons a {
  color: #cccccc;
  font-size: 20px;
  transition: color 0.3s ease;
}
.footer-social-icons a:hover {
  color: #ffffff;
}
.footer-social-icons i {
  vertical-align: middle;
}
.footer-social-icons a i {
  color: #cccccc;
  font-size: 20px;
  transition: color 0.3s ease;
}
.footer-social-icons a:hover i {
  color: #ffffff;
}
/* Footer Section CSS End Here */