@import url("https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Bree+Serif&family=Bungee&family=Calistoga&family=Carter+One&family=Concert+One&family=Dancing+Script:wght@400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Laila:wght@300;400;500;600;700&family=Lobster&family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Merienda:wght@300..900&family=Oleo+Script:wght@400;700&family=Pacifico&family=Permanent+Marker&family=Roboto+Slab:wght@100..900&family=Rowdies:wght@300;400;700&family=Rozha+One&family=Rubik+Wet+Paint&family=Satisfy&family=Sekuya&family=Tangerine:wght@400;700&family=Young+Serif&display=swap");

* {
  a {
    text-decoration: none;
  }

  font-family: "Roboto Slab", serif;
}

.ias-header-wrapper {
  width: 100%;
  font-family: "Roboto Slab", serif;
}

body {
  padding: 0;
  margin: 0;
}

.span {
  color: #0e7aa7;
}

/*------------------------------Header ------------------------------ */

/* Sticky Header Style */
.ias-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease-in-out;
}

/* Smooth animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* TOP BAR */
.ias-topbar {
  background: #f5f5f5;
  padding: 6px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.ias-hamburger {
  color: #0e7aa7;
}

.ias-social-icons i {
  margin-right: 15px;
  cursor: pointer;
  color: #0e7aa7;
  font-size: 20px;
}

.ias-top-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 500;
}

.ias-top-links .phone {
  color: #0e7aa7;
  font-size: 14px;
  font-weight: 500;
}

.ias-appointment-btn {
  background: #0e7aa7;
  color: #fff;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 2px;
}

/* MAIN NAV */
.ias-navbar {
  padding: 5px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ddd;
}

.ias-logo {
  display: flex;
  align-items: center;
}

.ias-logo img {
  height: 100px;
}

.ias-nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.ias-nav-menu ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.ias-nav-menu ul li {
  position: relative;
}

.ias-nav-menu ul li a {
  text-decoration: none;
  color: #222;
  font-size: 16px;
  padding: 5px 10px;
  font-weight: 500;
}

.ias-nav-menu ul li a.ias-active {
  color: #0e7aa7;
}

.ias-rotate {
  transition: 0.3s;
}

.ias-rotate.active {
  transform: rotate(180deg);
}

/* DROPDOWN */
.ias-dropdown {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  background: #fff;
  padding: 10px 0;
  min-width: 350px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 99999;
}

.ias-dropdown a {
  display: block;
  padding: 8px 15px;
  color: #333;
  font-size: 15px;
  font-weight: 500;
}

.ias-nav-menu ul li:hover .ias-dropdown {
  display: block;
}

/* SEARCH */
.ias-search-box {
  position: relative;
}

.ias-search-box input {
  padding: 8px 35px 8px 15px;
  border-radius: 20px;
  border: 1px solid #ccc;
  outline: none;
  font-family: "Roboto Slab", serif;
}

.ias-search-box i {
  position: absolute;
  right: 10px;
  top: 9px;
  font-size: 14px;
}

.search-results {
  position: absolute;
  background: #fff;
  border: 1px solid #ddd;
  max-height: 300px;
  overflow-y: auto;
  width: 250px;
  display: none;
  z-index: 9999;
}
.search-results a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #eee;
}
.search-results a:hover {
  background: #0e7aa7;
  color: #fff;
}

/* HAMBURGER */
.ias-hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* MOBILE MENU */
.ias-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  transition: 0.4s ease;
  z-index: 999;
}

.ias-mobile-menu.ias-open {
  right: 0;
}

.ias-mobile-menu ul {
  list-style: none;
  padding: 0;
}

.ias-mobile-menu ul li {
  margin-bottom: 15px;
}

.ias-mobile-menu ul li a {
  text-decoration: none;
  color: #222;
  font-size: 16px;
  font-family: "Roboto Slab", serif;
}

.ias-mobile-dropdown {
  display: none;
  padding-left: 15px;
  flex-direction: column;
}

.ias-mobile-dropdown a {
  font-size: 14px;
  display: block; /* each link full width */
  padding: 8px 0;
  width: 100%;
}

.ias-mobile-menu ul {
  display: block; /* remove any flex */
}

.ias-mobile-menu ul li {
  display: block;
}

.ias-mobile-toggle {
  cursor: pointer;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .ias-nav-menu {
    display: none;
  }

  .ias-hamburger {
    display: block;
  }

  .ias-search-box {
    display: none;
  }
  .ias-topbar .phone {
    display: none;
  }

  .ias-topbar .ias-appointment-btn {
    display: none;
  }

  .ias-logo img {
    height: 60px;
  }

  .ias-social-icons {
    margin-left: 50px;
  }
}

/*------------------------------Slider ------------------------------ */

.hindi-slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hindi-slider-container {
  width: 100%;
  height: 350px;
  position: relative;
}

.hindi-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

.hindi-slide-item {
  min-width: 100%;
  height: 100%;
}

.hindi-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* NAV BUTTONS */
.hindi-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(90, 58, 28, 0.6);
  color: #ffffff;
  border: none;
  font-size: 18px;
  padding: 10px 14px;
  cursor: pointer;
  z-index: 5;
}

.hindi-slider-prev {
  left: 12px;
}

.hindi-slider-next {
  right: 12px;
}

/* DOTS */
.hindi-slider-dots {
  position: absolute;
  bottom: 14px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hindi-slider-dot {
  width: 10px;
  height: 10px;
  background: #e2d6c3;
  border-radius: 50%;
  cursor: pointer;
}

.hindi-slider-dot.active {
  background: #5a3a1c;
}

/* RESPONSIVE HEIGHT */
@media (max-width: 1024px) {
  .hindi-slider-container {
    height: 340px;
  }
}

@media (max-width: 768px) {
  .hindi-slider-container {
    height: 340px;
  }
}

@media (max-width: 480px) {
  .hindi-slider-container {
    height: 340px;
  }
}

/*---------------------------------main-banner-------------------------------------------------- */

.ias-full-image-section {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.ias-full-image-section img {
  width: 100%;
  height: auto; /* auto height */
  display: block;
  object-fit: cover;
}

/* ================= FOOTER ================= */

.ias-footer-wrapper {
  background: #0e7aa7;
  color: #fff;
  padding-top: 20px;
}

.ias-footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 60px 20px 60px;
}

.ias-footer-col h3 {
  margin-bottom: 20px;
  font-size: 22px;
  border-bottom: 2px solid whitesmoke;
  display: inline-block;
  padding-bottom: 5px;
  font-weight: 500;
  color: whitesmoke;
}

.ias-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ias-footer-col ul li {
  margin-bottom: 10px;
}

.ias-footer-col ul li a {
  color: white;
  font-size: 14px;
  transition: 0.3s;
}

.ias-footer-col ul li a:hover {
  padding-left: 5px;
}

.ias-footer-logo {
  height: 120px;
  border-radius: 50%;
}

.ias-footer-about {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

.ias-footer-social i {
  margin-right: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.ias-footer-social .icons {
  color: white;
}

.ias-footer-social i:hover {
  transform: scale(1.2);
}

.ias-footer-bottom {
  text-align: center;
  padding: 15px;
  background: #0c6a91;
  font-size: 14px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .ias-footer-main {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 30px 40px 30px;
  }
}

@media (max-width: 600px) {
  .ias-footer-main {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .ias-footer-col h3 {
    border: none;
  }
}

/* ================= CONTACT SECTION ================= */

.ias-contact-section {
  background: white;
  padding: 20px 40px;
}

.ias-contact-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.ias-contact-left {
  flex: 1;
}

.ias-contact-left h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 500;
}

.ias-contact-sub {
  margin-bottom: 30px;
}

.ias-contact-info p {
  margin-bottom: 15px;
  font-size: 15px;
}

.ias-contact-info p a {
  margin-bottom: 15px;
  font-size: 15px;
  color: black;
}

.ias-contact-info i {
  color: #0e7aa7;
  margin-right: 10px;
}

/* RIGHT FORM */

.ias-contact-right {
  flex: 1;
}

.ias-contact-form {
  margin-top: 20px;
}

.ias-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.ias-form-row input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  outline: none;
}

.ias-contact-form textarea {
  width: 100%;
  height: 120px;
  padding: 12px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  resize: none;
}

.ias-map-section {
  width: 100%;
  height: 300px; /* Desktop height */
}

.pop-map-section {
  width: 100%;
  height: 200px;
}

.ias-map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .ias-map-section {
    height: 300px; /* Mobile height */
  }

  .pop-map-section {
    height: 150px;
  }
}

/* CAPTCHA + SUBMIT */

.ias-captcha-submit-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ias-captcha-box {
  background: #ddd;
  padding: 10px 15px;
  font-weight: bold;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ias-captcha-box i {
  cursor: pointer;
}

.ias-captcha-submit-row input {
  padding: 10px;
  border: 1px solid #ccc;
  width: 150px;
}

.ias-captcha-submit-row button {
  background: #0e7aa7;
  color: #fff;
  border: none;
  padding: 12px 30px;
  cursor: pointer;
  transition: 0.3s;
}

.ias-captcha-submit-row button:hover {
  background: #0a668d;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .ias-contact-section {
    padding: 20px 15px;
  }

  .ias-contact-container {
    flex-direction: column;
    gap: 30px;
  }

  .ias-form-row {
    flex-direction: column;
    gap: 0;
  }

  .ias-form-row input {
    width: 150%;
    margin-bottom: 20px;
  }

  .textarea {
    width: 150% !important;
    margin-bottom: 20px;
  }

  .ias-captcha-submit-row {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .ias-captcha-box {
    width: 147%;
    justify-content: center;
  }

  .ias-captcha-submit-row input {
    width: 150%;
  }

  .ias-captcha-submit-row button {
    width: 160%;
  }

  .ias-form-row {
    flex-direction: column;
    gap: 0;
  }





  
  .ias-form-row .input {
    width: 100%;
    margin-bottom: 20px;
  }

  .textareas {
    width: 100% !important;
    margin-bottom: 20px;
  }

  .ias-captcha-submit-row {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .boxes {
    width: 100%;
    justify-content: center;
  }

  .ias-captcha-submit-row .input {
    width: 100%;
  }

  .ias-captcha-submit-row .btns {
    width: 100%;
  }
}

/* ================= FAQ SECTION ================= */

.ias-faq-section {
  padding: 10px 40px;
  background: #f9f9f9;
}

.ias-faq-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.ias-faq-container {
  max-width: 1200px;
  margin: auto;
}

.ias-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.ias-faq-card {
  background: #fff;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  transition: 0.3s;
}

.ias-faq-question {
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

.ias-faq-question i {
  color: #0e7aa7;
  transition: 0.3s;
}

.ias-faq-answer {
  display: none;
  padding: 0 20px 15px 20px;
  font-size: 14px;
  color: #555;
}

.ias-faq-card.ias-active .ias-faq-answer {
  display: block;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .ias-faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= BLOG SECTION ================= */

.ias-blog-section {
  padding: 20px 40px;
  background: #f9f9f9;
}

.ias-blog-container {
  max-width: 1200px;
  margin: auto;
}

.ias-blog-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.ias-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ias-blog-card {
  background: #fff;
  border: 1px solid #ddd;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.ias-blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.ias-blog-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ias-blog-date {
  font-size: 13px;
  color: #888;
}

.ias-blog-content h3 {
  font-size: 18px;
  flex: 1;
}

.ias-blog-content p {
  color: #555;
  font-size: 14px;
}

.ias-blog-btn {
  background: #0e7aa7;
  color: #fff;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.ias-blog-btn:hover {
  background: #095f80;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .ias-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ias-blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= BLOG DETAIL ================= */

.ias-blog-detail-section {
  padding: 20px 40px;
  background: #ffffff;
}

.ias-blog-detail-container {
  max-width: 1200px;
  margin: auto;
}

.ias-blog-detail-row {
  display: flex;
  align-items: center;
  gap: 50px;
}

.ias-blog-detail-left {
  flex: 1;
}

.ias-blog-detail-right {
  flex: 1;
}

.ias-blog-detail-right img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.ias-blog-detail-title {
  font-size: 34px;
  margin-bottom: 10px;
}

.ias-blog-detail-date {
  color: #888;
  margin-bottom: 20px;
}

.ias-blog-detail-content p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #444;
  text-align: justify;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .ias-blog-detail-row {
    flex-direction: column;
  }

  .ias-blog-detail-right {
    order: -1;
  }
}

/* ================= RELATED BLOGS ================= */

.ias-related-blog-section {
  padding: 20px 40px;
  background: #f7f9fb;
}

.ias-related-container {
  max-width: 1200px;
  margin: auto;
}

.ias-related-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.ias-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ias-related-card {
  background: #ffffff;
  border: 1px solid #e3e3e3;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.ias-related-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.ias-related-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ias-related-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ias-related-date {
  font-size: 13px;
  color: #888;
}

.ias-related-content h3 {
  font-size: 18px;
  flex: 1;
}

.ias-related-btn {
  background: #0e7aa7;
  color: #fff;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.ias-related-btn:hover {
  background: #095f80;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .ias-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ias-related-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= CAREER SECTION ================= */

.ias-career-section {
  padding: 20px 40px;
  background: #f7f9fb;
}

.ias-career-container {
  max-width: 1200px;
  margin: auto;
}

.ias-career-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.ias-career-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ias-career-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

.ias-career-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.ias-career-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.ias-career-content {
  padding: 25px;
}

.ias-career-content h3 {
  margin-bottom: 15px;
}

.ias-career-info {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.ias-career-info li {
  margin-bottom: 8px;
  font-size: 14px;
}

.ias-career-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #0e7aa7;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.ias-career-btn:hover {
  background: #095f80;
}

/* Responsive */

@media (max-width: 768px) {
  .ias-career-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= CAREER DETAIL ================= */

.ias-career-detail-section {
  padding: 20px 40px;
  background: #ffffff;
}

.ias-career-detail-container {
  max-width: 800px;
  margin: auto;
}

.ias-career-detail-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
}

.ias-career-description {
  margin-bottom: 40px;
  line-height: 1.7;
  color: #444;
}

.ias-career-form-box {
  background: #f7f9fb;
  padding: 40px;
  border: 1px solid #e5e5e5;
}

.ias-career-form-group {
  margin-bottom: 20px;
}

.ias-career-form-group input,
.ias-career-form-group select,
.ias-career-form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 14px;
  box-sizing: border-box;
}

/* ================= CAPTCHA ROW ================= */

.ias-career-captcha-row {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: nowrap;
}

.ias-career-captcha-box {
  display: flex;
  align-items: center;
  background: #e9eef2;
  padding: 10px 15px;
  border: 1px solid #ccc;
  font-weight: bold;
  letter-spacing: 2px;
  white-space: nowrap;
}

.ias-career-captcha-box button {
  margin-left: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
}

.ias-career-captcha-row input {
  flex: 1; /* take remaining space */
  padding: 12px;
  border: 1px solid #ccc;
  min-width: 150px;
  box-sizing: border-box;
}

.ias-career-submit-btn {
  padding: 12px 25px;
  background: #0e7aa7;
  color: #fff;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  width: auto;
  flex-shrink: 0;
  transition: 0.3s;
}

.ias-career-submit-btn:hover {
  background: #095f80;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .ias-career-detail-section {
    padding: 20px;
  }

  .ias-career-form-box {
    padding: 25px;
  }

  .ias-career-captcha-row {
    flex-direction: column;
    align-items: stretch;
  }

  .ias-career-submit-btn {
    width: 100%;
  }
}

/* ================= TWO COLUMN ROW ================= */

.ias-career-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.ias-career-col {
  flex: 1;
}

.ias-career-col input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 14px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .ias-career-row {
    flex-direction: column;
    gap: 15px;
  }
}

/* ================= GALLERY SECTION ================= */

.ias-gallery-section {
  padding: 20px 40px;
  background: #f7f9fb;
}

.ias-gallery-container {
  max-width: 1200px;
  margin: auto;
}

.ias-gallery-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.ias-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ias-gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s;
  border: 4px solid #095f80;
}

/* ================= LIGHTBOX ================= */

.ias-gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.ias-gallery-lightbox-img {
  max-width: 90%;
  max-height: 80%;
}

.ias-gallery-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.ias-gallery-prev,
.ias-gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
}

.ias-gallery-prev {
  left: 40px;
}

.ias-gallery-next {
  right: 40px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .ias-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ias-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ias-gallery-item img {
    height: 180px;
  }
}

/* ================= ABOUT SECTION ================= */

.ias-about-section {
  padding: 20px 40px;
  background: #f7f9fb;
}

.ias-about-container {
  max-width: 1200px;
  margin: auto;
}

.ias-about-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.ias-about-content {
  flex: 1;
}

.ias-about-title {
  font-size: 34px;
  margin-bottom: 20px;
}

.ias-about-text {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #444;
  text-align: justify;
}

.ias-about-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #0e7aa7;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.ias-about-btn:hover {
  background: #095f80;
}

.ias-about-image {
  flex: 1;
}

.ias-about-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  mix-blend-mode: multiply;
}

/* ================= ABOUT SECTION ANIMATION ================= */

.ias-about-title,
.ias-about-text,
.ias-about-btn,
.ias-about-image {
  opacity: 0;
  transform: translateY(40px);
  animation: iasFadeUp 1s ease forwards;
}

.ias-about-title {
  animation-delay: 0.2s;
}

.ias-about-text {
  animation-delay: 0.6s;
}

.ias-about-btn {
  animation-delay: 0.9s;
}

.ias-about-image {
  animation-delay: 1.2s;
}

@keyframes iasFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .ias-about-row {
    flex-direction: column;
  }

  .ias-about-image {
    order: -1;
  }

  .ias-about-title {
    font-size: 28px;
  }
}

/* ================= MISSION VISION VALUES ================= */

.ias-mvv-section {
  padding: 20px 40px;
  background: #ffffff;
}

.ias-mvv-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

/* Tabs */

.ias-mvv-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.ias-mvv-tab-btn {
  padding: 12px 30px;
  background: #f1f1f1;
  border: 1px solid #ddd;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.ias-mvv-tab-btn.active {
  background: #0e7aa7;
  color: #fff;
  border-color: #0e7aa7;
}

.ias-mvv-tab-btn:hover {
  background: #0e7aa7;
  color: #fff;
}

/* Content */

.ias-mvv-content-wrapper {
  max-width: 800px;
  margin: auto;
}

.ias-mvv-content {
  display: none;
  animation: iasFade 0.3s ease-in-out;
}

.ias-mvv-content.active {
  display: block;
}

.ias-mvv-content h3 {
  font-size: 35px;
  margin-bottom: 15px;
}

.ias-mvv-content p {
  line-height: 1.7;
  color: #444;
}

/* Animation */

@keyframes iasFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */

@media (max-width: 768px) {
  .ias-mvv-tab-btn {
    width: 100%;
  }
}

/* ================= MVV SECTION ANIMATION ================= */

.ias-mvv-container {
  opacity: 0;
  transform: translateY(40px);
  animation: iasMvvFadeUp 1s ease forwards;
}

/* First Section Appears */
.ias-mvv-container {
  animation-delay: 0.2s;
}

/* Tabs Appear After */
.ias-mvv-tabs {
  opacity: 0;
  transform: translateY(40px);
  animation: iasMvvFadeUp 1s ease forwards;
  animation-delay: 0.6s;
}

/* Then Content Wrapper */
.ias-mvv-content-wrapper {
  opacity: 0;
  transform: translateY(40px);
  animation: iasMvvFadeUp 1s ease forwards;
  animation-delay: 1s;
}

/* Smooth Fade Up */
@keyframes iasMvvFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= PRODUCT SECTION ================= */

.ias-product-section {
  padding: 20px 40px;
  background: white;
}

.ias-product-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */

.ias-product-header {
  text-align: center;
  margin-bottom: 60px;
}

.ias-product-title {
  font-size: 37px;
  margin-bottom: 10px;
}

.ias-product-subtitle {
  color: #666;
  font-size: 16px;
}

/* Grid */

.ias-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */

.ias-product-card {
  background: #ffffff;
  border: 1px solid #0e7aa7;
  padding: 25px;
  text-align: center;
  transition: 0.3s;
}

.ias-product-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.ias-product-name {
  font-size: 16px;
  margin-bottom: 10px;
  color: #0e7aa7;
  font-weight: 500;
}

.ias-product-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Responsive */

@media (max-width: 992px) {
  .ias-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ias-product-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .ias-product-image img {
    height: 180px;
  }
}

/* ================= PRODUCT SECTION SCROLL ANIMATION ================= */

.ias-product-header,
.ias-product-card {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.ias-product-header.show,
.ias-product-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= WHY CHOOSE US ================= */

.ias-why-section {
  padding: 20px 40px;
  background: #f7f9fb;
}

.ias-why-container {
  max-width: 1200px;
  margin: auto;
}

.ias-why-header {
  text-align: center;
  margin-bottom: 30px;
}

.ias-why-title {
  font-size: 37px;
  margin-bottom: 10px;
}

.ias-why-subtitle {
  color: #666;
  font-size: 16px;
}

/* Grid */

.ias-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */

.ias-why-card {
  background: white;
  padding: 10px 25px;
  text-align: center;
  border: 1px solid #0e7aa7;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 150px;
}

.ias-why-card:hover {
  background: #0e7aa7;
}

.ias-why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.ias-why-icon {
  font-size: 40px;
  color: #0e7aa7;
}

.ias-why-card h3 {
  font-size: 18px;
  font-weight: 500;
}

.ias-why-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.ias-why-card:hover .ias-why-icon {
  color: white;
}

.ias-why-card:hover p {
  color: white;
}

.ias-why-card:hover h3 {
  color: white;
}

/* Responsive */

@media (max-width: 992px) {
  .ias-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .ias-why-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= WHY SECTION SCROLL ANIMATION ================= */

.ias-why-header,
.ias-why-card {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.ias-why-header.show,
.ias-why-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= REVIEW SECTION STYLE 2 ================= */

.ias-review2-section {
  padding: 20px 40px;
  background: #ffffff;
}

.ias-review2-container {
  max-width: 1300px;
  margin: auto;
}

/* ===== Header ===== */

.ias-review2-header {
  text-align: center;
  margin-bottom: 50px;
}

.ias-review2-subtitle {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0e7aa7;
  font-weight: 600;
  margin-bottom: 10px;
}

.ias-review2-title {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0;
  color: #222;
}

.ias-review2-title span {
  color: #0e7aa7;
}

.ias-review2-header p {
  font-size: 15px;
  color: #666;
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
}

/* ===== Slider Wrapper ===== */

.ias-review2-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden; /* prevents distortion */
}

/* ===== Slider ===== */

.ias-review2-slider {
  display: flex;
  gap: 20px; /* spacing between cards */
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 100%;
}

/* ===== Card ===== */

.ias-review2-card {
  flex: 0 0 calc(25% - 15px); /* 4 cards desktop */
  background: #f7f9fb;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
  box-sizing: border-box;
  min-height: auto;
}

/* ===== Top Section ===== */

.ias-review2-top {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.ias-review2-top img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
  flex-shrink: 0;
}

.ias-review2-top h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

/* ===== Stars ===== */

.ias-review2-stars {
  font-size: 13px;
  color: #ffc107;
  margin-top: 3px;
}

/* ===== Review Text ===== */

.ias-review2-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ===== Navigation Buttons ===== */

.ias-review2-prev,
.ias-review2-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0e7aa7;
  color: #ffffff;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
  z-index: 10;
}

.ias-review2-prev {
  left: 10px;
}

.ias-review2-next {
  right: 10px;
}

.ias-review2-prev:hover,
.ias-review2-next:hover {
  background: #0b678c;
}

/* ===== Responsive ===== */

@media (max-width: 992px) {
  .ias-review2-card {
    flex: 0 0 calc(50% - 10px); /* 2 cards */
  }
}

@media (max-width: 600px) {
  .ias-review2-section {
    padding: 40px 20px;
  }

  .ias-review2-title {
    font-size: 26px;
  }

  .ias-review2-card {
    flex: 0 0 100%; /* 1 card */
  }

  .ias-review2-prev {
    left: 0;
  }

  .ias-review2-next {
    right: 0;
  }
}
