
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #10002b, #240046);
  color: white;
  overflow-x: hidden;
}


#vanta-background {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}


header {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}





.navbar {
  background: rgba(16, 0, 43, 0.5);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: relative;
}

.navbar a {
  color: white;
  text-decoration: none;
}

.navbar .logo {
  font-size: 24px;
  font-weight: bold;
}

.navbar .logo span {
  color: #f72585;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar .btn {
  background: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.navbar .btnn {
  background: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  color: #240046;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
}
.nav-chip {
  padding: 20px;
  background: #10002b;
  text-align: center;
  gap: 60px;
}

.chip-link {
  position: relative;
  display: inline-block;
  color: white;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  transition: all 0.3s ease;
  padding: 0;
  border-radius: 9999px;
  gap: 60px;
}

.chip-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.chip-link:hover {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
}

.navbar .logo img {
  height: 40px;
  display: block;
}


.navbar .btnn:hover {
  background-color: #66ade2; 
  transform: translateY(-4px); 
  box-shadow: 0 0 15px #66ade2; 
}

.hero {
  text-align: center;
  padding: 100px 20px 60px;
}


.section-divider {
  position: relative;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}


.section-scroll-indicator {
  position: relative;
  text-align: center;
  color: white;
  z-index: 10;
  width: 100%;
  margin: 20px 0;
}

.section-scroll-text {
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-scroll-arrow {
  position: relative;
  width: 30px;
  height: 60px;
  border: 2px solid white;
  border-radius: 20px;
  margin: 0 auto;
}

.section-scroll-dot {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 6px;
  height: 6px;
  background-color: red;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: sectionScrollAnimation 2s infinite;
}

@keyframes sectionScrollAnimation {
  0% {
    opacity: 1;
    top: 10px;
  }
  50% {
    opacity: 1;
    top: 40px;
  }
  100% {
    opacity: 0;
    top: 40px;
  }
}

.highlight {
  background: linear-gradient(to right, #00f0ff, #ff00e0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.consultation-form {
  margin-top: 30px;
}

.consultation-form input {
  padding: 10px;
  margin: 5px;
  border-radius: 20px;
  border: none;
  outline: none;
}

.consultation-form button {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  background: #66ade2;
  color: #000;
  font-weight: bold;
  cursor: pointer;
}

.services {
  text-align: center;
  padding: 80px 20px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.card {
  background: #1f0033;
  padding: 30px;
  border-radius: 15px;
  width: 250px;
  text-align: center;
  box-shadow: 0 0 10px #00000033;
}

.steps {
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.steps h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
}

footer {
  background: #0a001a;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
  color: #888;
  font-size: 14px;
}

.logo {
  font-size: 1.4rem;
  color: rgb(0, 0, 0);
  font-weight: bolder;
  padding: 6px 0;
  
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.logo-img {
  height: 40px;
  margin-left: 100px;  
  margin-top: 20px;    
}




.contact {
  background: linear-gradient(135deg, #10002b, #240046);
  padding: 80px 20px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
}

.contact h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #fff6f6;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.contact-form {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  resize: none;
  background-color: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #000000;
}

.contact-form button {
  background-color: #000000;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #000000;
}

.contact-info {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: left;
  font-size: 1rem;
  color: #fffefe;
}

.contact-info p {
  margin-bottom: 15px;
}

.contact-info i {
  margin-right: 10px;
  color: #ffffff;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.card {
  background-color: #290042;
  border-radius: 20px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.steps-title {
  background-color: white;
  color: black;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
  font-weight: bold;
}

.testimonials-section {
  background-color: #240046;
  padding: 60px 30px;
  text-align: center;
  font-family: 'Arial', sans-serif;
  font-family: 'Roboto', sans-serif;
}

.testimonials-title {
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
}

.testimonials-title .subtitle {
  display: block;
  font-family: 'Pacifico', cursive;
  font-size: 32px;
  color: #ff2e7e;
  margin-top: -10px;
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  max-width: 500px;
  text-align: left;
  transition: transform 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-photo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

.testimonial-card h3 {
  margin: 10px 0 5px;
  font-size: 22px;
  font-weight: bold;
  color: #111;
}

.role {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
  font-family: 'Barlow Condensed', sans-serif;
}

.quote {
  font-size: 17px;
  line-height: 1.6;
  color: #222;
  position: relative;
  font-family: 'Roboto', sans-serif;
}

.quote-mark {
  font-size: 26px;
  color: #e91e63;
  margin-right: 6px;
  vertical-align: middle;
  font-family: 'Roboto', sans-serif;
}

.blog-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: 'Roboto', sans-serif;
  text-align: center; 

}


.blog-section .title-container {
  border: 2px solid;
  border-image: linear-gradient(90deg, #007cf0, #00dfd8, #ff0080) 1;
  padding: 20px 40px;
  display: inline-block;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 20px rgba(0, 223, 216, 0.2);
  backdrop-filter: blur(4px); 
  animation: pulse-border 5s infinite alternate;
  margin: 0 auto 40px auto; 
  width: fit-content;
  text-align: center;
}

.blog-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.blog-subtitle {
  font-size: 28px;
  font-style: italic;
  color: #ec4899; 
  margin-bottom: 40px;
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  justify-items: center; 
}

.blog-card {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  max-width: 350px; 
  width: 100%;
  font-family: 'Roboto', sans-serif;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-category {
  font-size: 14px;
  font-weight: bold;
  color: #ec4899;
  margin-bottom: 10px;
  font-family: 'Barlow Condensed', sans-serif;
}

.blog-heading {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  color: #000000; 
  font-family: 'Barlow Condensed', sans-serif;
}
.services-section {
  display: flex;
  flex-wrap: wrap;
  height: 100vh;
  overflow: hidden;
}

.service-box {
  flex: 1;
  min-width: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: scale(1.02);
}

.service-overlay {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
}

.service-overlay h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
}

.service-overlay p {
  font-size: 1em;
  line-height: 1.5;
  font-family: 'Roboto', sans-serif;
  
}

.services {
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
}

.services-header {
  padding-top: 80px; 
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

.services-header h2 {
  font-size: 2.5em;
  font-weight: bold;
  color: white;
}

.services-header .gradient {
  background: linear-gradient(to right, #00c6ff, #0072ff, #8e2de2, #ff6ec4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title {
  background: linear-gradient(to right, #00f0ff, #ff00e0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 23px;
  text-align: center;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

li {
  display: inline-block;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #1e1e1e;
    color: white;
}

.delivery-section {
  display: flex;
  align-items: center; 
  justify-content: center;
  background-color: #ffffff; 
  padding: 40px; 
  max-width: 900px; 
  margin: 40px auto; 
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.delivery-image {
  flex: 1; 
  text-align: center; 
  margin-right: 20px; 
}

.delivery-image img {
  max-width: 100%; 
  height: auto;
}

.delivery-text {
  flex: 1; 
  text-align: left; 
}

.delivery-text h2 {
  color: #000000; 
  margin-bottom: 15px; 
}

.delivery-text p {
  color: #666666; 
  line-height: 1.6; 
}

@media screen and (max-width: 600px) {
  .delivery-section {
    flex-direction: column; 
    text-align: center; 
  }

  .delivery-image {
    margin-right: 0; 
    margin-bottom: 20px; 
  }

  .delivery-text {
    text-align: center;
    color: #0000;
  }
}

.why-our-agency {
    background-color: #330066;
    color: white;
    padding: 20px;
    text-align: center;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative; 
    overflow: hidden;   
}

.why-our-agency > h2 {
    font-size: 2em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    color: white; 
    display: inline-block; 
}

.why-our-agency span {
    background: linear-gradient(to right, cyan, magenta); 
    -webkit-background-clip: text; 
    color: transparent;
    display: inline-block; 
    position: relative; 
    z-index: 1;      
}

.why-our-agency-content {
    background-color: #330066;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.delivery-text h2 {
    color: #333333;
    margin-bottom: 15px;
}

.delivery-text p {
    color: #666666; 
    line-height: 1.6;
}

.title-container {
  border: 2px solid;
  border-image: linear-gradient(90deg, #007cf0, #00dfd8, #ff0080) 1;
  padding: 20px 40px;
  display: inline-block;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 20px rgba(0, 223, 216, 0.2);
  backdrop-filter: blur(4px); 
  animation: pulse-border 5s infinite alternate;
  margin: 0 auto;              
  width: fit-content;
  text-align: center;
  margin-bottom: 70px;          
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 10px rgba(255, 0, 128, 0.2);
  }
  100% {
    box-shadow: 0 0 20px rgba(0, 223, 216, 0.6);
  }
}


.services-title {
  font-size: 36px;
  color: white;
  text-align: center;
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

.gradient-text {
  background: linear-gradient(90deg, #007cf0, #00dfd8, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.float-effect {
  display: inline-block;
  animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.float-glow {
  display: inline-block;
  animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 6px #00dfd8;
  }
  50% {
    text-shadow: 0 0 12px #ff0080;
  }
}


@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 15px;
  }
  
  .navbar ul {
    position: static;
    transform: none;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .navbar .btnn:last-child {
    margin-top: 15px;
  }
}

