/* RESET */
 
  * { margin: 0 ;
  padding: 0;
  box-sizing: border-box;
}

/* BASE BODY STYLES */
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #222;
  background-color: #fff;
  line-height: 1.6;
}

/* NAVBAR: DotSphere Custom Style */
.navbar-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e0e0e0;
}

.navbar-logo img {
  height: 51px;
}

.navbar-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.navbar-menu li a {
  text-decoration: none;
  font-weight: 400;
  color: #5f5f5f;
  position: relative;
  transition: color 0.3s ease;
  font-size: 16px;
}

.navbar-menu li a::after {
  content: none;
}

.navbar-menu li a:hover {
  color: #1b94c9;
}
x
/* SECTION STYLES */
,.section {
  padding: 40px 20px;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* MAIN HEADING */
.section h3 {
  font-size: 24px;
  font-weight: 400;
  color: #278FC1;
  margin-bottom: 14px;
}

/* BODY TEXT */
.section p {
  font-size: 16px;
  font-weight: 300;
  color: #222;
}

/* SEARCH INPUT + BUTTON */
.search-container {
  margin-top: 30px;
}

#searchInput {
  width: 300px;
  padding: 10px;
  border: 1px solid #82d5fa;
  border-radius: 5px;
  outline-color: #1b94c9;
  color: #1b94c9;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 12px;
  background-color: #fff;
}

/* ✅ Placeholder text color */
#searchInput::placeholder {
  color: #c7c7c7; /* Change to your preferred placeholder color */
  opacity: 1;  /* Ensures full visibility across browsers */
}


button.bn26 {
  background-color: #1b94c9;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  margin-left: 10px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

/* RESULT + ERROR STYLES */
#error,
#result,
.footer,
.section p {
  font-size: 16px;
  font-weight: 300;
  color: #222;
}

#result p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #222;
  margin-bottom: 30px;
}

#result img {
    display: block;
    margin: 32px auto 32px auto;
    max-width: 600px;
    width: 100%;
    height: auto;
    box-shadow: 0 4px 24px 0 rgba(39,143,193,0.08);
    border-radius: 10px;
  }

/* Hero Section Background */
.hero-section {
  background-image: url("https://dotsphere.in/wp-content/uploads/2025/05/Landing-Section-New-06.svg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: scroll;
  padding: 60px 20px;
  position: relative;
}

/* Hero Image before Heading */
.hero-image {
  width: auto;
  height: 100px;
  margin: 0 auto 20px auto;
  display: block;
}

/* FOOTER */
.footer {
  background: #f7fcff;
  padding: 32px 0 0 0;
  border-top: 1px solid #ccf1ff;
}

.multi-col-footer {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 30px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1 1 180px;
  margin-bottom: 20px;
  vertical-align: top;
  color: #7f7f7f;
}

.footer-col h3 {
  color: #1b94c9;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #8b8b8b;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #0d8cba;
}

.footer-social {
  margin-top: 18px;
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  align-items: center;
}

.footer-social a {
  color: #2ba2de;
  width: 42px;
  height: 42px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 1px 4px 0 rgba(40,143,193,0.06);
  text-decoration: none;
}

.footer-social a:hover {
  color: #36a9e1;
  background: #f3fafd;
  box-shadow: 0 4px 12px 0 rgba(40,143,193,0.10);
  transform: translateY(-2px) scale(1.07);
}

.newsletter form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.newsletter input[type="email"] {
  padding: 10px 20px;
  border: 1px solid #279dcf;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
  background: #fff;
  width: 100%;
  max-width: 320px;
  color: #444;
  font-family: 'Montserrat', sans-serif;
}

.newsletter input[type="email"]::placeholder {
  color: #888;
  font-size: 18px;
}

.newsletter button[type="submit"] {
  background: #1b94c9;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 0;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  max-width: 320px;
  font-family: 'Montserrat', sans-serif;
}

.newsletter button[type="submit"]:hover {
  background: #145e7a;
}

.footer-bottom {
  text-align: left;
  color: #b0b0b0;
  font-size: 15px;
  padding: 16px 0px 10px 30px;
  background: #f6fbfd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 24px auto 0 auto;
  border-top: 1px solid #e0e0e0;
}

.footer-bottom a {
  color: #5bb3d6;
  text-decoration: none;
  margin-left: 8px;
}



/* CAREER FORM SECTION */
.career-section {
  padding: 60px 20px;
  background-color: #fff;
}

.career-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.career-left img {
  max-width: 300px;
  width: 100%;
}

.career-right {
  flex: 1 1 400px;
  max-width: 500px;
}

.career-right form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.career-right form input,
.career-right form textarea {
  padding: 12px;
  border: none;
  border-bottom: 1px solid #00aef0;
  font-family: 'Montserrat', sans-serif;
  outline: none;
  resize: none;
}

.career-right form input[type="file"] {
  padding: 0;
}

.career-right form button {
  background-color: #00aef0;
  color: white;
  padding: 12px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  transition: 0.3s;
}

.career-right form button:hover {
  background-color: #007fb3;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .multi-col-footer, .footer-bottom {
    max-width: 90vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 900px) {
  .multi-col-footer {
    flex-direction: column;
    gap: 0;
    padding: 10px 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    padding: 12px 10px 8px 10px;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 25px;
  }

  .newsletter form {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter input[type="email"],
  .newsletter button[type="submit"] {
    width: 70vw;
    border-radius: 8px;
    margin-left: 0;
  }

  .navbar-menu {
    flex-direction: column;
    gap: 10px;
  }

  .navbar-menu li a {
    font-size: 18px;
  }

  .container {
    padding: 0 15px;
  }
}

/* --- RESPONSIVE IMPROVEMENTS FOR MOBILE & TABLET --- */
@media (max-width: 700px) {
  .navbar-custom {
    padding: 18px 20px;
  }
  .navbar-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 18px;
    color: #1f94ca;
    cursor: pointer;
    margin-left: auto;
    margin-top: 2px;
    z-index: 2100;
    position: relative;
    outline: none;
  }
  .navbar-toggle i {
    display: none;
  }
  .navbar-toggle .hamburger {
    display: block;
    width: 40px;
    height: 30px;
    position: relative;
  }
  .navbar-toggle .hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #278FC1;
    margin: 6px 0;
    border-radius: 2px;
    transition: 0.3s;
  }
  .navbar-menu {
    flex-direction: column;
    width: 81vw;
    max-width: 600px;
    height: 100vh;
    margin-top: 0;
    display: flex;
    background: rgba(255, 255, 255, 0.209);
    position: fixed;
    left: -100vw;
    top: 0;
    z-index: 2001;
    transition: left 0.35s cubic-bezier(0.4,0,0.2,1);
    padding-top: 60px;
    overflow-y: auto;
    border-radius: 0;
    box-shadow: none;
    border-right: 1px solid #e0e0e0;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .navbar-menu.show {
    left: 0;
  }
  .navbar-menu .navbar-logo {
    display: block;
    width: 100%;
    text-align: right;
    margin-bottom: 40px;
    padding-left: 32px;
  }
  .navbar-menu li {
    width: 100%;
    text-align: right;
    padding: 0 0;
    margin: 0;
  }
  .navbar-menu li a {
    font-size: 16px;
    width: 100%;
    display: block;
    padding: 60px 32px 22px 32px;
    color: #278FC1;
    border-bottom: 1px solid #e0e0e0;
    background: transparent;
    letter-spacing: 0.5px;
    transition: background 0.2s, color 0.2s;
  }
  .navbar-menu li:last-child a {
    border-bottom: none;
  }
  .navbar-menu li a:hover {
    background: rgba(39,143,193,0.07);
    color: #145e7a;
  }
  .navbar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    z-index: 2000;
    transition: opacity 0.3s;
  }
  .navbar-overlay.show {
    display: block;
  }
  .container {
    max-width: 98vw;
    padding: 0 6px;
  }
  .hero-section {
    padding: 60px 5px 30px 5px;
    background-size: cover;
    background-position: center top;
  }
  .hero-image {
    width: 90px;
    margin-bottom: 10px;
  }
  .section h3 {
    font-size: 20px;
  }
  .section p {
    font-size: 15px;
  }
  .search-container {
    margin-top: 18px;
  }
  #searchInput {
    width: 70vw;
    max-width: 100%;
    font-size: 16px;
    padding: 8px 10px;
  }
  button.bn26 {
    width: 100px;
    margin: 16px;
    font-size: 16px;
    padding: 8px 0;
  }
  #result img {
    width: 700px ;
    max-width: 100vw ;
    height: auto;
  }
  .options-container {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: stretch;
  }
  .download-btn, .share-btn {
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 8px;
    font-size: 16px;
    padding: 10px 0;
  }
}

/* Make sure result text and buttons are readable and touch-friendly on small screens */
@media (max-width: 400px) {
  .section h3 {
    font-size: 16px;
  }
  #result p, .section p {
    font-size: 13px;
  }
  .hero-image {
    width: 60px;
  }
}

/* Always hide .navbar-toggle by default, but show on mobile only */
.navbar-toggle {
  display: none;
}
@media (max-width: 700px) {
  .navbar-toggle {
    display: block;
  }
  .navbar-menu {
    display: flex ;
  }
}
@media (min-width: 701px) {
  .navbar-menu {
    display: flex;
    position: static;
    width: auto ;
    height: auto ;
    background: none;
    box-shadow: none ;
    border: none;
    flex-direction: row;
    align-items: right ;
    gap: 20px;
    left: 100px;
    top: 0;
    padding: 0;
  }
  .navbar-menu .navbar-logo { display: none; }
}

/* Hide default icon in toggle, use custom hamburger */
.navbar-toggle i { display: none; }

@media (max-width: 700px) {
  .navbar-menu {
    background: linear-gradient(135deg, rgba(66, 179, 232, 0.18) 0%, rgba(255,255,255,0.85) 100%);
    backdrop-filter: blur(30px);
  }
  .navbar-menu .navbar-logo {
    padding-left: 30px;
    padding-bottom: 42px;
    text-align: left;
    width: 100%;
  }
  .navbar-menu .menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-top: 48px;
    gap: 18px;
  }
  .navbar-menu li {
    width: 100% ;
    text-align: center;
    margin: 0;
    padding: 0;
  }
  .navbar-menu li a {
    font-size: 18px ;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400 ;
    color: #2196c9;
    background: transparent ;
    border: none ;
    display: block ;
    padding: 10px 40px 10px 10px ;
    letter-spacing: 0.01em;
    text-align: right ;
    transition: color 0.2s;
    box-shadow: none;
    border-bottom: 1px solid rgb(255, 255, 255);
  }
  .navbar-menu li:last-child a {
    border-bottom: none;
  }
  .navbar-menu li a:hover, .navbar-menu li a:focus {
    color: #156fa3;
    background: none;
  }
  .navbar-menu li.active a, .navbar-menu li a.active {
    color: #156fa3;
    background: none;
  }
}








.footer-col.about {
  margin-left: 32px;
}
@media (max-width: 900px) {
  .footer-col.about {
    margin-left: 0;
  }
}













.download-btn, .share-btn {
  display: inline-block;
  background: #2196c9;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  margin: 0 10px 0 0;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px 0 rgba(39,143,193,0.08);
}
.download-btn:last-child, .share-btn:last-child {
  margin-right: 0;
}
.download-btn:hover, .share-btn:hover {
  background: #156fa3;
  color: #fff;
}
.options-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 700px) {
  .options-container {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: stretch;
  }
  .download-btn, .share-btn {
    width: 100%;
    margin: 0 0 8px 0;
    font-size: 1rem;
    padding: 6px 0;
    text-align: center;
  }
}