@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

html,
body {
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  /* Default: 16px (1rem = 16px) */
}

.w-90 {
  width: 90% !important;
}

a {
  text-decoration: none;
}

/* Responsive scaling */
@media (max-width: 1200px) {
  html {
    font-size: 70%;
    /* 1rem = 14.4px */
  }
}

@media (max-width: 768px) {
  html {
    font-size: 80%;
    /* 1rem = 12.8px */
  }

  .box {
    border-radius: 10px !important;
  }

  .box:before {
    border-radius: 10px !important;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 70%;
    /* 1rem = 11.2px */
  }
}

body {
  font-family: "Sora", sans-serif;
}

/* This only changes this particular animation duration */
.animate__animated.animate__bounce {
  --animate-duration: 2s;
}

/* This changes all the animations globally */
:root {
  --animate-duration: 800ms;
  --animate-delay: 0.9s;
}

.my-element {
  display: inline-block;
  margin: 0 0.5rem;

  animation: bounce;
  /* referring directly to the animation's @keyframe declaration */
  animation-duration: 2s;
  /* don't forget to set a duration! */
}

.my-element {
  --animate-repeat: 2;
}

/* This only changes this particular animation duration */
.animate__animated.animate__bounce {
  --animate-duration: 2s;
}

/* This changes all the animations globally */
:root {
  --animate-duration: 800ms;
  --animate-delay: 0.9s;
}

p {
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Ubuntu', sans-serif;
}

.text-on-img img {
  width: 100% !important;
  margin-bottom: -35px;
}

@media (max-width:1024px) {
  .text-on-img img {
    width: 527px !important;
    text-align: center;
  }
}

@media (max-width:767px) {
  .text-on-img img {
    width: 100% !important;

  }
}

.hero-section {
  background-image: url(../images/hero-bg.webp);
  min-height: 850px;
  padding: 71px 0px 71px 0px;
  background-size: cover;
  /* Ensures the image covers the container */
  background-repeat: no-repeat;
  width: 100%;
  margin-top: 66px;
}


@media (max-width: 600px) {
  .hero-section {
    margin-top: 70px;
  }

}


/* header-section-start */
.nav-bg-color {
  border-radius: 30px;
  padding: 10px 20px;
}

.bg-none-header {
  background-color: #fff;
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.nav-bg-color .nav-link,
.nav-bg-color .btn-schedule {
  margin-bottom: 0;
}

@media (max-width: 992px) {

  .nav-bg-color .nav-link,
  .nav-bg-color .btn-schedule {
    margin-bottom: 0;
    margin-bottom: 10px;
  }

  .bg-none-header {
    box-shadow: none !important;
    background-color: inherit !important;
    flex-direction: column !important;
  }

  .nav-bg-color {
    border-radius: 0px;
    padding: 0px 0px;
  }
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
}

/* Default Header Style */
header {
  position: relative;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  padding: 10px 0px;
}

/* Mobile Styles */
@media (max-width: 992px) {

  .custom-edtech-solution-need {
    margin-top: -10px !important;
  }

  .navbar-toggler {
    order: 2;
  }

  .navbar-brand {
    order: 1;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 250px;
    background-color: white;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
    padding-top: 50px;
    /* Adjust padding for close button */
    padding-left: 20px;
  }

  .navbar-collapse.show {
    transform: translateX(0);
  }

  /* Close Button Styles */
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 20px;
    font-weight: 500;
    color: #000;
  }

  .close-btn i {
    font-size: 30px;
  }

}

/* Sticky Header Style */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  /* White background */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1050;
}

/* header.sticky .bg-none-header{
  box-shadow: none;
  background-color: transparent;
} */

/* header.sticky .social-icons a{
  color: #fff;
} */
/* Adjust Hero Section to Prevent Content Jump */
.nav-link.border-effect {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit;
}


.border-bt {
  border: 1px solid #031765 !important;
  opacity: 1;
}


/* down-row-start */
.icons-down-trip {
  padding: 1.75rem !important;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background: radial-gradient(100% 100% at 100% 41.3%, #0866FF 0%, #052151 100%)
    /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */
  ;

  transition: .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icons-down-trip:hover {
  background-color: var(--primary-color);

}

.nav-link.border-effect::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-link.border-effect:hover::after {
  width: 100%;
  left: 0;
}

.nav-link:hover {
  color: #031765 !important;
}

.navbar-brand img {
  width: 250px;
}

.btn-schedule {
  background: radial-gradient(circle, #0866FF 0%, #052151 100%);
  /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */
  ;
  color: white;
  border-radius: 30px;
  padding: 9px 20px;
  font-weight: 500;
  transition: .3s ease;
}


.btn-schedule:hover {
  background: radial-gradient(circle, #052151 0%, #0866FF 100%);
  color: #fff;
}

.btn-outline-primary:hover {
  background: radial-gradient(circle, #052151 0%, #0866FF 100%);
  color: #fff;
}

.btn-primary {
  color: white;
  border-radius: 20px;
  padding: 10px 20px;
  font-weight: 500;
  background-color: #3E3E3E;
  border: none;
}

.btn-primary:active {
  background-color: #6F3E31 !important;
}

.btn-primary:hover {
  background-color: #6F3E31;
}





.social-icons a {
  color: #031765;
  font-size: 15px;
}

.social-icons i:hover {
  color: #6F3E31;
}

/* header-section-end */
/* banner-content-start */
.play-btn {
  display: flex;
  align-items: center;
  background: transparent;
  border: 2px solid #ccc;
  padding: 10px 20px;
  border-radius: 50px;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  gap: 10px;
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.play-btn i {
  font-size: 24px;
  margin-right: 10px;
}

.banner-content h1 {
  font-size: 3.5rem;
  font-weight: 600;
  color: #fff;
}

.banner-content h1 span {


  color: #6F3E31;
}

.banner-content p {
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0px;

}

/* our-expertise-start */
.section-space {
  padding: 5rem 0rem;
  background-image: url(../images/hero-bg\ 1.webp);
  background-size: cover;
}

.engaged-bg {
  background-image: url(../images/engaged-bg.webp);
}

.section-space-two {
  background-image: url(../images/hero-bg\ 1.webp);
  background-size: cover;
  min-height: 750px;
}

.section-space-three {
  background-image: url(../images/about-us-two.webp);
  background-size: cover;
}

.space-section {
  padding: 5rem 0rem;
  background-image: url(../images/bg-anchors.webp);
  background-size: cover;
}

.margin-section {
  margin-top: 100px;
}

.margin-section-two {
  margin-top: 60px;
}



.card-style {
  position: relative;
  padding: 20px;
  background: #ffffff;
  height: 100%;
  color: #000;
  /* Default text color */
  text-align: center;
  transition: color 0.4s ease-in-out;
  /* Smooth text color transition */
  z-index: 1;
  /* Text ko upar rakhne ke liye */
  cursor: pointer;
}

.card-style::before {
  content: "";
  position: absolute;
  bottom: -100%;
  /* Initially neeche rahega */
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(100% 100% at 100% 41.3%, #0866FF 0%, #052151 100%);
  transition: bottom 0.4s ease-in-out;
  z-index: 0;
  /* Background ko text ke neeche rakhne ke liye */
}

.card-style:hover {
  color: #fff;
  /* Hover par text ka color white ho jayega */
}

.card-style:hover {
  color: #fff;
  /* Hover par text ka color white ho jayega */
}

.card-style * {
  position: relative;
  /* Ensure ke text upar rahe */
  z-index: 2;
  /* Text ko background se upar dikhane ke liye */
}

.card-style:hover::before {
  bottom: 0;
  /* Background smoothly slide karega */
}

.card-style:hover .healthcare-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}



.healthcare-card {
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden;
  height: 100%;
  padding-bottom: 20px;

}

.healthcare-card img {
  width: 100%;
  border-radius: 12px 12px 0 0;

}

.healthcare-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(109.27deg, #175DA2 8.42%, #0684FF 91.58%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -50px auto 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 8px;
  transform: rotate(-44deg);

}

.healthcare-icon img {
  width: 50px;
  height: 50px;
  transform: rotate(46deg);
}

.healthcare-card h4 {
  font-weight: bold;
  margin-top: 10px;
}

.healthcare-card p {
  font-size: 14px;
  margin-bottom: 0;
}

.epertise-headings h2 {
  font-size: 2.5rem;
  font-weight: 500;
}

.epertise-headings-two h2 {
  font-size: 3.5rem;
  font-weight: 500;
}

.epertise-headings-two .experience-text {
  font-weight: 700;
  font-size: 3.5rem;
  letter-spacing: 0%;
  text-align: center;

}

.epertise-headings .experience-text {
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 0%;
  text-align: center;

}

.epertise-headings .expertise-text-b {
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 0%;
  text-align: center;
  color: #043687;

}

.epertise-headings-two .experience-text {
  font-weight: 700;
  font-size: 3.5rem;
  letter-spacing: 0%;
  text-align: center;

}

.epertise-headings-two .expertise-text-b {
  font-weight: 700;
  font-size: 3.5rem;
  letter-spacing: 0%;
  text-align: center;
  color: #043687;

}

.sub-headings {
  color: #043687;
  font-size: 1.2rem;
  margin-bottom: 0;
}

/* pricing-section-start */
.pricing-section {
  padding: 5rem 0rem;
  background-image: url(../images/whoweare02.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

.pricing-section-two {
  background-image: url(../images/pricing-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 5rem 0rem;
}

.pricing-section .sub-headings {
  color: #fff;
}

.pricing-headings h2 {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 400;
}

.pricing-headings h2 span {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
}

.pricing-headings-two h2 {
  font-size: 3.5rem;
  color: #fff;
  font-weight: 400;
}

.pricing-headings-two h2 span {
  font-size: 3.5rem;
  color: #fff;
  font-weight: 700;
}

.pricing-content .card {
  background-color: transparent;
  color: #fff;
  box-shadow: none !important;
}

.pricing-content .card p {
  color: #fff;
  min-height: 50%;
}

.pricing-content h4 {
  color: #FEC536;
  font-size: 2rem;
}

.pricing-content h2 {
  font-size: 3rem;
  color: #fff;
}

.img-pricing {
  background-color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.img-pricing img {
  width: 50px;
  height: 50px;
}

.card-pricing {
  background-color: #fff;
  border-top-right-radius: 29px;
  border-bottom-left-radius: 29px;
  border-bottom-width: 6px;
  box-shadow: 0px 4px 40.1px 0px #00000040;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
  border-bottom: 4px solid #043687;
}

.card-pricing {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-pricing:hover {
  transform: translateY(-30px);
  cursor: pointer;
}

.card-pricing h5 {
  font-size: 2.5rem;
  color: #777777;

}

.card-pricing span {
  font-size: 3rem;
  color: #043687;

}

/* engagement-model-start */
.team-card {
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 30px 20px;
  position: relative;
  transition: .3s ease;
}

.team-icon {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.team-icon img {
  width: 50px;
  height: 50px;
}

.team-card h4 {
  font-weight: 400;
  margin-top: 30px;
}

.team-card span {
  color: #000;
  font-weight: 700;
}

.team-card p {
  color: #555;
  font-size: 14px;
  margin-bottom: 0;
}

.team-card:hover {
  background-color: #031765;
  color: #ffffff;
  cursor: pointer;
  transition: .3s ease;
  /* Smooth lifting effect */
}

.team-card p,
.team-card span {
  transition: color 0.4s ease-in-out;
}

.team-card:hover p,
.team-card:hover span {
  color: #ffffff;
}

/* talk-section-start */
.talk-section {
  padding: 5rem 4rem;
  background-image: url(../images/lets-talk.webp);
  background-size: cover;
}

.btn-talk {
  background-color: #fff;
  border-radius: 30px;
  padding: 8px 30px;
}

.btn-talk:hover {
  background-color: #052151;
  color: #fff;
}

/* testimonial-start */

.testimonial-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.testimonial-header {
  background: #0d47a1;
  padding: 20px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  color: white;
  position: relative;
}

.testimonial-header img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-header h5 {
  margin-top: 10px;
  font-weight: bold;
  text-align: left;
}

.testimonial-header p {
  margin: 0;
  font-size: 14px;
  text-align: start;
}

.rating {
  background: white;
  padding: 5px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: inline-block;
  position: absolute;
  bottom: -15px;
  left: 75%;
  transform: translateX(-50%);
}

.rating i {
  color: #ffcc00;
}

.testimonial-body {
  padding: 30px 20px 20px;
  font-size: 14px;
  color: #555;
}

/* recent-project */
.recent-projects {
  background-image: url(../images/project-bg.webp);
  background-size: cover;
  padding: 5rem 0rem;
}

.project-card {
  position: relative;
  width: 100%;
  /* Apni requirement ke mutabiq height set karein */
  overflow: hidden;
}

.project-card img {
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.overlay {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: top 0.4s ease-in-out;
  text-align: center;
}

.overlay h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.overlay .btn {
  background-image: linear-gradient(to right, #3c70a4 0%, #64b2cd 100%);
  padding: 8px 15px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
  color: #fff;
}

.overlay .btn:hover {
  background-image: linear-gradient(to right, #64b2cd 0%, #3c70a4 100%)
}

.project-card:hover .overlay {
  top: 0;
}

/* bg-started-started */
.bg-started {
  background-image: url(../images/bg-started.webp);
  background-size: cover;
  padding: 5rem 0rem;
}

.card-started {
  background-color: #052355;
  height: 100%;
}

.card-started img {
  width: 90px;
}

/* footer-start */

.contact-item span {
  font-weight: bold;
}


.contact-item {
  display: flex;
  flex-direction: column;
}

.contact-item a {
  color: black;
  text-decoration: none;
  font-weight: bold;
}

.icon-container {
  background-color: #043687;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}

.icon-container .icon-f {
  color: #FFFFFF;
  font-size: 1.2rem;
}

.footer-contact-icons {
  margin-bottom: 50px;
  border-bottom: 1px solid #818181;
}


.footer-headings::before {
  content: "";
  width: 44px;
  height: 3px;
  background-color: #043687;
  position: absolute;
  bottom: -10px;
  left: 0;
}



.footer-icons {
  display: flex;
  gap: 16px;

}

.footer-icon {
  display: flex;
  align-items: center;
  height: 40px;

  color: white;
  font-size: 24px;
  transition: background-color 0.3s ease;
  text-decoration: none;
  /* Remove underline from links */
}




.footer-bg {
  background-image: url(../images/footer-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer {
  font-size: 14px;
  padding: 5rem 0rem 1rem;
}

.footer h5 {
  margin-bottom: 15px;
}

.footer p {
  margin-bottom: 10px;
}

.footer .form-control {
  max-width: 70%;
}

.footer .btn {
  background-color: #043687;
  color: white;
}

.footer .btn:hover {
  background-color: #01245e;
}

.footer ul.list-inline i {
  font-size: 1.2rem;
  margin: 0 5px;
}

.footer ul.list-unstyled li a:hover {
  text-decoration: underline;
}

.footer-social-links li {
  font-size: 20px;


}

.footer-social-links a {
  color: #031765;
}

.footer-span {
  color: #031765;
}

.btn-footer-paper {
  background-color: #E1E1FA;
  padding: 5px 15px;
  border-radius: 0px 10px 10px 0px;
}

.footer-links li {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 16px;
}

@media (max-width:600px) {
  .w-50 {
    width: 100% !important;
  }
}


/* about-us-start */



.about-us-img {
  background-image: url(../images/about-us.webp);
  min-height: 735px;
  padding: 20px 0px 0px 0px;
  background-size: cover;
  /* Ensures the image covers the container */
  background-repeat: no-repeat;
  background-position: calc(70% + 0px) calc(50% - 10px);
  width: 100%;
  margin-top: 70px;
}

.about-section {
  background-color: #fff;
}

.about-title {
  font-size: 2.5rem;
  color: #000;
}

.about-description {
  font-size: 1.5rem;
  color: #333333;
  line-height: 1.6;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.our-vision {
  background-image: url(../images/hero-bg\ 3.webp);
  background-size: cover;
}

.our-vision h2 {
  font-size: 40px;
  font-weight: 700;
}

.vision-cards img {
  width: 70%;
}

.vision-cards {
  background-color: #0D78A0;
  padding: 20px;
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
  transition: .3s ease;
  color: #000 !important;
}

.vision-cards:hover {
  background-color: #033345;
  transition: .3s ease;
  color: #fff !important;
}

.vision-one {
  background-color: #F7E3FF;
}

.vision-two {
  background-color: #FCEFD5;
}

.vision-three {
  background-color: #EFF0FB;
}

.vision-four {
  background-color: #FFD4C9;
}

.vision-five {
  background-color: #EAFFCD;
}

.vision-six {
  background-color: #EAFCFF;
}

.vision-seven {
  background-color: #FDFFCA;
}

.vision-eight {
  background-color: #DCFFFF;
}

@media (max-width:600px) {
  .about-us-img {
    background-image: url(../images/about-us.webp);
    height: 320px;
    padding: 20px 0px 0px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: calc(70% + 0px) calc(50% - 10px);
    width: 100%;
  }

  .banner-content h1 {
    font-size: 2.6875rem;
    font-weight: 700;
  }
}

/* about-page-end */
/* contact-us-page-start */

.contact-banner {
  background-image: url(../images/hero-bg\ 3.webp);
  background-size: cover;
  margin-top: 80px;
}

.contact-us {
  padding: 60px 0px 60px 0px;
}

.contact-heading h1 {
  font-weight: 700;
}

.contact-heading p {
  color: #414141;
}

.contact-content p {
  margin-bottom: 80px;
}

.contact-content {
  background-color: #031765;
  padding: 40px;
  color: #fff;
  border-radius: 10px;
}

.contact-content-form {
  padding: 40px;
}

.contact-content-form .form-control {
  border: none;
  border-bottom: 1px solid grey;
  border-radius: unset;
  box-shadow: none;
  opacity: 50%;
  border-radius: 4px;
}


.contact-content a {
  color: #fff !important;
}

.social-space {
  margin-top: 80px;
}

.icon-bg {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333333;
  text-align: center;
  line-height: 40px;
  margin-right: 30px;
  font-size: 18px;
  transition: .3s ease;

}

.icon-bg:hover {
  background-color: #fff;
  color: #000;
  transition: .3s ease;
}

.icon-bg:hover a {
  transition: .3s ease;
  color: #000 !important;
}

.contact-check-form li {
  margin-right: 40px;
}

.contact-content-form .form-check-input:checked {
  background-color: #000;
  box-shadow: none;
  border: none;
}

li {
  list-style: none;
}

@media screen and (max-width: 1024px) {}

/* contact-us-page-end */


/* web-development-page start */

.custom-space {
  padding: 5rem 0rem;

}

@media (max-width:991px) {


  .minus-object-margin{
    margin-bottom: 50px;
  }


  .custom-space {
    padding: 3.5rem 0rem;

  }

  .strip-row {
    overflow: visible;
    position: relative;
    z-index: 1000;
    /* margin-bottom: 5.5rem; */
    background: rgba(255, 255, 255, 0.7);
  }

  .nav-link.border-effect {
    display: block !important;
  }

  .banner-content h1 span {
    font-size: 3.6875rem !important;
    font-weight: 500;
    color: #6F3E31;
  }
}

.banner-img-doc img {
  width: 70%;
}

.strip-row h5 {
  font-weight: 700;
  font-size: 18px;
}

.strip-row p {
  font-size: 15px !important;
  line-height: 20px !important;
}

ul {
  padding-left: 0;
}

.strip-row {
  padding: 20px;
  overflow: visible;
  position: relative;
  z-index: 1000;
  /* margin-bottom: -5.3rem; */
  background: rgba(255, 255, 255, 0.7);
}


}

@media (max-width:591px) {
  .custom-space {
    padding: 2.5rem 0rem;

  }
}

.web-development {
  background-image: url(../images/webdevelopment\ 02.webp);
  min-height: 735px;
  padding: 20px 0px 0px 0px;
  background-size: cover;
  /* Ensures the image covers the container */
  background-repeat: no-repeat;
  background-position: calc(70% + 0px) calc(50% - 10px);
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

@media (max-width:321px) {
  .web-development {
    margin-top: 70px;
  }

  .margin-soft-two {
    margin-bottom: 30px;
  }
}

@media (max-width:600px) {

  .margin-soft-two {
    margin-bottom: 30px;
  }
}

.stacks li {
  list-style: disc;
  margin-left: 15px;
  margin-bottom: 10px;
  color: #fff;
}

.stacks-two li {
  list-style: disc;
  margin-left: 15px;
  margin-bottom: 10px;
  color: #000;
}

.development-headings h1 {
  font-size: 100px;
  font-weight: 700;
  color: #fff;
}

.development-headings p {
  font-size: 24px;
  color: #fff;
}

.description-headings h2 {
  font-weight: 700;
}

@media screen and (max-width: 600px) {
  .development-headings h1 {
    font-size: 40px !important;
    font-weight: 700 !important;
    color: #fff !important;
  }

}


@media screen and (max-width: 768px) {
  .development-headings h1 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
  }
}

.accordion-button:not(.collapsed) {
  background-color: #0C3A53;
  color: #fff;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* web-development-page end */

/* benifit-section-start */
.feature-card {
  background-color: #f0f7ff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  position: relative;
  height: 100%;
  transition: 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  position: relative;
}

.feature-card:hover {
  background-color: #031765;
  transition: 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  cursor: pointer;
  color: #fff !important;

}

.feature-card:hover p {
  color: #fff !important;
}

.margin-top-sec {
  margin-top: 50px;
}

.feature-icon {
  width: 100px;
  height: 100px;
  background-color: #EDF6FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -80px auto 20px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border: 6px solid #ffffff;
}

.feature-card:hover .feature-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.feature-icon img {
  width: 35px;
 
}

.margin-dev {
  margin-bottom: 40px;
}

.fee-card {
  background-image: url(../images/fee-img.webp);
  background-size: cover;
  padding: 40px 40px 40px 300px;
}

@media (max-width:990px) {
  .fee-card {
    padding: 40px 40px 40px 40px;
  }
}

@media (max-width: 1440px) {
  .fee-card {
    padding: 40px 40px 40px 50px;
  }
}

.img-contaier-fee {
  background-image: url(../images/fee-img-02.webp);
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.tech-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 10px;
  color: white;
}

.tech-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-icon img {
  width: 30px;
  height: 30px;
}

.tech-text h5 {
  margin: 0;
  font-weight: 500;
  margin-bottom: 8px;
}

.tech-text p {
  margin: 0;
  font-size: 14px;
}

/* benifit-section-end */

/* dev.services */
.feature-icon-two {
  width: 100px;
  height: 100px;
  background-color: #031765;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border: 6px solid #ffffff;
  text-align: center;
}

.feature-icon-two img {
  width: 30px;
}

/* buildapp-start */
.app-bg {
  background-image: url(../images/buildapp-bg.webp);
  background-size: cover;
  padding: 70px 0px 70px 0px;
}

.app-card {
  text-align: center;
  margin: auto;
  padding: 20px;
  background-color: #000E45;
  border-radius: 0px 0px 12px 12px;
  transition: .3s ease;
  color:white;
}


.app-content img {
  min-height: 265px;
}

.app-content{
  height: 100%;
}

.feature-icon-two {
  width: 100px;
  height: 100px;
  background-color: #031765;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border: 6px solid #ffffff;
  text-align: center;
}


.process-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
  border: 2px dashed #031765;
  border-radius: 50px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card-process {
  padding: 10px;
  border-radius: 10px;
}

.card-process:hover {
  background-color: #fff;
  cursor: pointer;
  box-shadow: 8px 4px 74.3px 0px #7C7C7C4A;
  border: none;
  transform: scale(1.1) translateY(-5px);
  /* Thora zoom aur oper move */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  padding: 10px;
  border-radius: 10px;
}

.card-process:hover .process-icon {
  background-color: #fff;
  cursor: pointer;
  border: none;
}

.process-icon img {
  width: 50px;
}

/* software_development-page-start */

.software-development {
  background-image: url(../images/software-dev-bg.webp);
  height: 850px;
  padding: 100px 0px 22px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: calc(70% + 0px) calc(50% - 0px);
  width: 100%;
}

.software-headings h1 {
  color: #fff;
  font-weight: 700;
  font-size: 70px;
  margin-bottom: 20px;
}

.software-headings p {
  color: #fff;
  line-height: 30px;

}

.soft-expertise-bg {
  background-image: url(../images/soft-expertise.webp);
  background-size: cover;
  background-position: center;
}

.soft-partner-bg {
  background-image: url(../images/soft-partner-bg.webp);
  background-size: cover;
  background-position: center;
  min-height: 550px;
}

.soft-card-bg {
  background-color: #fff;
  border-radius: 20px;
}

.soft-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.soft-icon img {
  width: 60px;
  height: 60px;
}

.software-needs {
  background-image: url(../images/soft-tech-02.webp);
  background-size: cover;
  background-position: center;

}

.custom-card {
  color: white;
  border: 1px solid #fff;
  border-radius: 15px;
  cursor: pointer;
  transition: .3s ease;
}

.custom-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.custom-card .content {
  background: rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 15px;

}

.custom-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.custom-card:hover {
  background-color: #031765;
  transition: .3s ease;
}

/* software_development-page-end */
/* fee-shedule-start */
.fee-shedule {
  padding: 80px 0px 80px 0px;
  background-image: url(../images/hero-bg\ 3.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

.fee-shedule-bg {
  padding: 80px 0px 80px 0px;
  background-image: url(../images/bg-sec-01.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

.fee-heading h2 {
  font-size: 40px;
  font-weight: 700;
}

.fee-heading-two h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

.fee-heading-two p {

  color: #fff;
}

@media screen and (max-width: 600px) {
  .fee-heading h2 {
    font-size: 20px;
    font-weight: 700;

  }
}

/* fee-shedule-end */

.modal-header {
  background-color: #031765;
  color: #fff;
}

.btn-close-white {
  opacity: 100%;
}

.btn-footer {
  background-color: #031765;
  color: #fff;
}

.btn-footer:hover {
  background-color: #031765;
  color: #fff;
}

.modal-backdrop {
  z-index: 1;
}

/* AI IN HEALTHCARE-start */
.ai_in_healthcare {

  background-image: url(../images/ai-img-01\ \(1\).webp);
  min-height: 735px;
  padding: 20px 0px 0px 0px;
  background-size: cover;
  /* Ensures the image covers the container */
  background-repeat: no-repeat;
  background-position: calc(70% + 0px) calc(50% - 10px);
  width: 100%;
  position: relative;
  margin-top: 70px;
}

.treatment-bg {
  background-image: url(../images/treatment-01.webp);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 5rem 0rem;
}

.ai-graphic img {
  width: 100%;
}

.ai-graphic {
  position: absolute;
  right: 9%;
  bottom: -20%;
}

@media (max-width:1100px) {
  .ai-graphic {
    position: absolute;
    right: 3%;
    bottom: -20%;
  }

  .ai-graphic img {
    width: 90%;
  }
}

@media (max-width:800px) {
  .ai-graphic {
    position: absolute;
    right: -1%;
    bottom: -10%;
  }

  .ai-graphic img {
    width: 70%;
  }
}

@media (max-width:600px) {
  .ai-graphic {
    position: absolute;
    right: -11%;
    bottom: -6%;
  }

  .ai-graphic img {
    width: 50%;
  }
}

.ai-feature {
  background: linear-gradient(135deg, #002c6a, #003a90);
  color: white;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  height: 100%;
}

.ai-feature i {
  font-size: 30px;
  color: white;
}

.ai-pricing {
  background-color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.ai-feature img {
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 10px;
}

.ai-card {
  background: #eef5ff;
  border-radius: 15px;
  padding: 25px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  position: relative;
  height: 100%;
  transition: .3s ease;
  cursor: pointer;

}

.ai-card:hover {
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
  background: #031765;
  transition: .3s ease;
  color: #fff !important;
}

.icon-box {
  background: #003a90;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -18%;
  left: 7%;
}

.icon-box img {
  width: 50px;
  height: 50px;

}

/* UI/UX-START */
.uiux-bg {
  background-image: url(../images/uiux-bg.webp);
  min-height: 850px;
  padding: 100px 0px 22px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: calc(70% + 0px) calc(50% - 0px);
  width: 100%;
}

.text-color {
  color: #031765;
  font-weight: 600 !important;
}

.uiux-card {
  background-color: #eef4fc;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 20px;
  text-align: left;
  border-top: 3px solid #031765;
  border-radius: 0;
  height: 100%;
  transition: .3s ease-in-out;
}

.uiux-card img {
  width: 70px;
  height: 70px;
  background-color: #031765;
  padding: 10px;
  border-radius: 10px;
}

.uiux-card:hover {
  background-color: #031765;
  color: #fff;
  cursor: pointer;
  transition: .3s ease-in-out;
}

.feature-card-three {
  background-color: #031765;
  border-radius: 15px;
  padding: 30px;
  position: relative;
  height: 100%;
  transition: 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  position: relative;
  color: #fff;
}

.feature-card-three p {
  color: #fff;
}

.feature-card-three:hover {
  background-color: #eef4fc;
  transition: 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  cursor: pointer;
  color: #000 !important;

}

.feature-card-three:hover p {

  color: #000 !important;

}

.ui-why-choose {
  background-image: url(../images/Why-Choose-us-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.ui-ux-choose-card {
  height: 100%;
}

/* cyber-security-page-start */
.cyber-security-banner {
  background-image: url(../images/cyber-banner.webp);
  min-height: 735px;
  padding: 20px 0px 0px 0px;
  background-size: cover;
  /* Ensures the image covers the container */
  background-repeat: no-repeat;
  background-position: calc(70% + 0px) calc(50% - 10px);
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

.fee-card-two {
  background-image: url(../images/tech-bg.webp);
  background-size: cover;
  padding: 40px 0px 40px 0px;
}

.unique-custom-space {
  background-image: url(../images/tech-bg.webp);
  background-size: cover;
  padding: 5rem 0rem;
  background-repeat: no-repeat;

}


.tech-box-two {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #032965;
  padding: 15px 20px;

  color: white;
  border-left: 3px solid #fff;
}

.main-tech-box {
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  border-radius: 12px;
}

.tech-container img {
  width: 65%;
}

.feature-card-trust {
  background-image: url('../images/trust-img-01\ \(1\).webp');
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  height: 100%;
  transition: 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  position: relative;
  background-repeat: no-repeat;
}

.feature-card-trust-two {
  background-image: url('../images/trust-img-01\ \(2\).webp');
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  position: relative;
  height: 100%;
  transition: 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  background-repeat: no-repeat;
}

.feature-card-trust-three {
  background-image: url('../images/trust-img-01\ \(3\).webp');
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  position: relative;
  height: 100%;
  transition: 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  background-repeat: no-repeat;
  color: #fff;
}

.feature-card-trust h4 {
  color: #fff;
}

.feature-card-trust img {
  width: 45px;
}

.feature-card-trust-two img {
  width: 45px;
}

.feature-card-trust-three img {
  width: 45px;
}

.cyber-categories {
  background-image: url('../images/1234.webp');
  padding: 60px 0px 100px 0px;
  background-repeat: no-repeat;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}

.div-bottom-margin {
  margin-top: -150px;
}

.ai-card-two {
  background: #031765;
  border-radius: 15px;
  padding: 25px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  position: relative;
  height: 100%;
  transition: .3s ease;
  cursor: pointer;
  color: #fff;

}

.icon-box-two {
  background: #003a90;
  padding: 15px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -18%;
  left: 7%;
  border: 6px solid #fff;
  height: 90px;
  width: 90px;
}

.icon-box-two img {
  width: 50px;


}

/* data_analysis_start */
.data-bg {
  background-image: url(../images/data-banner.webp);
  /* Ensures the image covers the container */
  background-repeat: no-repeat;
  width: 100%;
  margin-top: 66px;
  background-position: center;
  min-height: 550px;
  margin-bottom: -50px;
}

.data-bg-two {
  background-image: url(../images/data-bg-02.png);
  min-height: 750px;
  padding: 40px 0px;
}

.conatiner-data {
  margin-top: -200px;
}

@media (max-width:600px) {
  .conatiner-data {
    margin-top: -100px;
  }
}

@media (max-width:400px) {
  .conatiner-data {
    margin-top: -68px;
  }
}

.section-title {
  font-size: 24px;
  font-weight: bold;
}

.icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.card-data {
  border: none;
  padding: 20px;
  height: 100%;
  text-align: center;
}

.card-data img {
  width: 60px;
}

.card-data-two img {
  width: 60px;
}

.card-data-two {
  border-left: 2px solid #031765;
  border-right: 2px solid #031765;
  padding: 20px;
  height: 100%;
  text-align: center;
}

.bg-advanced {
  background-image: url(../images/advanced-bg.webp);
  min-height: 750px;
  padding: 5rem 0rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.text-advance {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  border: 2px solid #b6b6b6;
  color: #fff;
  margin-bottom: 30px;
}

.bg-advanced p {
  color: #fff;
}

.text-advance p {
  margin-bottom: 0;
}

.service-title {
  font-size: 28px;
  font-weight: bold;
}

.service-box {
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 15px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 10px;
}

.image-stack img {
  width: 100%;
}

.image-stack {
  position: relative;
}

.image-stack img:nth-child(2) {
  position: absolute;
  top: 50px;
  left: 80px;
  width: 80%;
}

.driving-bg {
  padding: 5rem 0rem;
}

.text-drivin p {
  font-weight: 400;
  font-size: 1.2rem;
}

.bg-redefining {
  background-image: url(../images/redefining-bg.webp);

  padding: 5rem 0rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* .data-bg .banner-content{
  padding: 71px 0px 71px 0px;
} */
/* our-team-start */
.box {
  border-radius: 10px;
  background: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.box:hover .location-text {
  color: #fff;
}

.box:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 0px;
  height: 100%;
  border-radius: 10px;
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.30);
  transition: all 0.3s ease;
  background: radial-gradient(100% 100% at 100% 41.3%, #0866FF 0%, #052151 100%);
}

.box:hover:before {
  width: 100%;
}

.box:hover .image-wrapper {
  padding: 0;
}

.box:hover .box-desc {
  color: #fff;
}

.box:hover .social li a {
  background: #fff;
  background-image: none;
  color: #000;
}

.box:hover .social li a:hover {
  background: #1d1d1d;
  color: #fff;
}

.image-wrapper {
  position: relative;
  max-width: 210px;
  max-height: 210px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  padding: 15px;
  transition: all 0.5s ease;
  box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.20);
}

.image-wrapper img {
  border-radius: 50%;
  transition: all 500ms ease;
}

.box-desc {
  position: relative;
}

ul.social {
  padding: 0;
}

ul.social li {
  display: inline-block;
  list-style-type: none;
}

ul.social li a {
  position: relative;
  width: 36px;
  height: 36px;
  /* background-image: linear-gradient(to right, #3c70a4 0%, #64b2cd 100%); */
  display: inline-block;
  line-height: 36px;
  border-radius: 50%;
  color: #fff;
  transition: all .5s ease;
}

ul.social li a .fa-facebook-f {
  position: relative;
  width: 36px;
  height: 36px;
  /* background-image: linear-gradient(to right, #3c70a4 0%, #64b2cd 100%); */
  display: inline-block;
  line-height: 36px;
  border-radius: 50%;
  color: #fff;
  transition: all .5s ease;
}

ul.social li a .fa-github {
  position: relative;
  width: 36px;
  height: 36px;
  /* background-image: linear-gradient(to right, #3c70a4 0%, #64b2cd 100%); */
  display: inline-block;
  line-height: 36px;
  border-radius: 50%;
  color: #fff;
  transition: all .5s ease;
}

ul.social li a .fa-pinterest-p {
  position: relative;
  width: 36px;
  height: 36px;
  /* background-image: linear-gradient(to right, #3c70a4 0%, #64b2cd 100%); */
  display: inline-block;
  line-height: 36px;
  border-radius: 50%;
  color: #fff;
  transition: all .5s ease;
}

ul.social li a .fa-instagram {
  position: relative;
  width: 36px;
  height: 36px;
  /* background-image: linear-gradient(to right, #3c70a4 0%, #64b2cd 100%); */
  display: inline-block;
  line-height: 36px;
  border-radius: 50%;
  color: #fff;
  transition: all .5s ease;
}

.social .fa-facebook-f {
  background-color: #1877F2;
  padding: 10px;
}

.social .fa-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
  padding: 10px;
}

.social .fa-pinterest-p {
  background-color: #E60023;
  padding: 10px;
}

.social .fa-github {
  background-color: #333;
  padding: 10px;
}

.location-text {
  color: #919191;
}

.logo-container {
  position: relative;
  width: 150px;
  /* SVG Logo size */
  height: 50px;
  /* SVG Logo size */
  display: inline-block;
}

.logo-container svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -50px;
  z-index: 1;
  /* Pehle SVG neeche */
  transition: opacity 0.3s ease-in-out;
  /* Smooth hiding effect */
}

.logo-container::after {
  content: "";
  position: absolute;
  top: 5px;
  left: -100%;
  /* Start from outside left */
  width: 250px;
  /* Increase width for bigger PNG */
  height: 100%;
  background: url('../images/anchorstech-logo.webp');
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  /* Pehle invisible */
  transition: left 0.5s ease-in-out, opacity 0.2s ease-in-out;
  z-index: 2;
  /* PNG SVG ke upar hoga */
}

.logo-container:hover::after {
  opacity: 1;
  /* PNG dikhai de */
  left: 0;
  /* PNG left se right slide karega */
}

.logo-container:hover svg {
  opacity: 0;
  /* SVG hide ho jaye */
}

/* Yeh hidden `a` clickable bana dega */
.logo-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  /* Sabse upar rakha takay clickable ho */
}

.dropdown.show .dropdown-menu.full-width {
  display: flex !important;
  /* Flex use karenge taake columns proper set ho */
  flex-wrap: wrap;
  padding: 20px;
}

/* Dropdown columns */
.dropdown-menu.full-width .col-6 {
  padding: 10px;
}

/* Style for dropdown items */
.dropdown-menu.full-width .dropdown-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
  text-transform: capitalize;
}

/* Image size */
.dropdown-menu.full-width .dropdown-item img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.dropdown-menu.full-width {
  position: fixed;
  top: 80px;
  left: 14%;
  width: 71%;
  height: auto;
  background: white;
  z-index: 9999;
  padding: 10px 9px;
  border-radius: 20px;

}

@media (max-width:768px) {
  .dropdown-menu.full-width {
    width: 100vw;
    padding: 0px 0px;
    left: 0%;
  }

}

.dropdown-item svg {
  width: 25px;
  height: 20px;
}

.dropdown-item {
  display: flex;
  gap: 5px;
  padding: 10px;
}

.expertise-text-b {
  color: #031765;
}



/* healthcare-section-start */
.healthcare-section {
  background-color: #EDF6FF;

}

.healthcare-section .left-section {
  background-image: url(../images/healthcare-left.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  padding: 130px 40px 130px 140px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  justify-content: center;
  flex-direction: column;
  display: flex;
}

.healthcare-section .right-section {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.healthcare-section .doctor-image {
  max-width: 100%;
  height: auto;
}


.header-custom-space {
  padding: 10.3rem 0rem 5rem 0rem;
}


.unbold-text {
  font-weight: 400;

}

.heading-wrapper h2 {
  font-size: 3.5rem;
  font-weight: 700;
}


/* Media query for tablet screens */
@media (max-width: 991px) {
  .heading-wrapper h2 {
    font-size: 2.5rem;
    /* Smaller font size for tablets */
    font-weight: 600;
    /* Slightly lighter font weight, if desired */
  }
}

.highlight-blue {
  color: #043687;

}


#hipaa-compliance {
  background-color: #EDF6FF;
}

.why-choose-us {
  margin-top: -30px;
}

.why-choose-content {
  text-align: center;

  border-radius: 10px;
  color: white;
  width: 80%;
  margin: auto;
  padding: 10px;
  margin-top: -75px;
  background-color: #043687;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;

}

.service-card-two {
  height: 100%;
  color: white;
  background-color: #031765;
  border-radius: 20px;
  padding: 30px;
}

.minus-content {
  margin-top: -100px;
}

.service-section {
  background-image: url(../images/service-include.png);
}

.icon-main .service-icon img {
  padding: 5px;

}

.icon-main .service-icon {
  margin-bottom: 30px;
  line-height: 4.5;
  text-align: center;
  background-color: #043687;
  padding: 5px;
  border-radius: 50%;
  height: 90px;
  width: 90px;
  border: 5px solid #ffffff;

}


.feature-box-odd {
  background-color: #14438E;
  height: 100%;
  padding: 30px;
  color: white;
}


.card-icon-odd {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 50px;
  height: 50px;
  background-color: white;
}

.card-icon-odd .img-icon svg {
  padding: 5px;

}




.feature-box {
  background-color: #EDF6FF;
  height: 100%;
  padding: 30px;
}



.card-icon .img-icon svg {
  padding: 5px;

}


.commitment-section {
  background-image: url(../images/commitment-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 5rem 0rem;

}


/* testimonials-start */

.testimonial-card-healthcare {
  background-color: #003087;
  color: white;
  border: 3px solid #005bff;
  border-radius: 15px;
  padding: 25px;
  position: relative;
  height: 300px;
  overflow: visible;
}

.quote {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-top: 40px;
}

.profile-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #ccc;
  /* Placeholder color */
  position: absolute;
  bottom: -50px;
  /* Half outside the card */
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid white;
}

.client-info {
  text-align: center;
  margin-top: 60px;
}

.client-info h6 {
  font-size: 1.1rem;
  font-weight: bold;
  color: #003087;
  margin-bottom: 5px;
}

.client-info p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

/* faq-section-start */
.faq-section-bg {
  background-image: url(../images/faq-bg-health.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.faq-header {
  text-align: center;
  margin-bottom: 2rem;
}

.faq-header h2 {
  font-weight: 700;
  color: #002b7f;
}

.faq-header p {
  font-size: 0.95rem;
  color: #333;
  max-width: 800px;
  margin: auto;
}

.accordion-item {
  border: none;

  margin-bottom: 1rem;
  box-shadow: 0 0 0 0.1rem #dee2e6;
}

.accordion-button {
  background-color: #fff;
  color: #000;
  font-weight: 500;

}

.accordion-button:not(.collapsed) {
  background-color: #043687;
  color: #fff;
  box-shadow: none;
}

.accordion-button::after {
  content: '+';
  font-size: 1.5rem;
  background-image: none !important;
  transform: none !important;
  color: #043687;
}

.accordion-button:not(.collapsed)::after {
  content: '-';
  color: #fff;
}

.accordion-body {
  background-color: #f9f9f9;
  border-radius: 0 0 0.75rem 0.75rem;
  font-size: 0.95rem;
  color: #333;
}

/* exess-css-start */
.axess-bg {
  background-color: #043687;
  margin-top: 66px;
}

.excess-card {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  margin: auto;
  border-top: 2px solid #043687;
}

.custom-header {
  background-color: #e9f0f8;
  padding: 2rem 1.5rem 3.5rem;
  text-align: center;
  position: relative;
}

.custom-header h5 {
  color: #043687;
  font-weight: bold;
}

.custom-icon {
  width: 70px;
  height: 70px;
  background-color: #D9D9D9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid #fff;
}

.custom-image img {
  width: 100%;
  display: block;
  background: #e9f0f8;
}


.custom-paragraph {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
}

.img-contaier-fee-m {
  background-image: url(../images/managment-bg.webp);
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}


/* Ed-Tech Section STart */


.edtech-section {
  background-image: url(../images/ed-tech-banner-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}





.educational-excellence {

  background-image: url(../images/educational-excellence-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

}


.solutions-card {
  background: white;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}



.ed-icons-wrapper {
  background-color: #031765;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  border: 5px solid #E0F0FF;
  margin-bottom: 20px;
}


.ed-icons-main img {
  width: 30px;

}

.main-edtech-solution {

  background-image: url(../images/custom-edtech-sol.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


.custom-edtech-solution-need {
  margin-top: -50px;
}




.tech-card {
  background-color: #063889;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.tech-card img {
  max-width: 40px;
}



.partner-with-tech-section {
  background-image: url(../images/2222.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

}




.light-blue-card {
  background-color: #0D4092;
}


.dark-blue-card {
  background-color: #0A3271;
}

.partner-card {
  color: white;
  border: none;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-icon {
  width: 70px;
  height: 70px;
  background-color: #386ABA;
  border-radius: 0px 5px 5px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.card-icon img {
  width: 25px;
}


/* Ed-Tech Section end*/


/* productivity-Suite start  */
.philosophy-section {
  background-image: url(../images/ourvision.webp);
  color: white;
  text-align: center;
  padding: 60px 20px 40px;
  object-fit: cover;
}

.image-box {
  background-color: #ffffff;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  margin: 40px auto;
  max-width: 700px;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.bottom-box-bg {
  background-color: #fff;
  margin-top: -200px;
  padding: 5rem 0 0rem 0;
}

.bottom-box {
  background-color: #002366;
  padding: 60px 20px 20px 20px;
  border-radius: 20px;
  color: white;
  font-size: 14px;
  max-width: 900px;
  margin: auto;
}

.philosophy-card {
  background: #0A2E68;
  border-radius: 15px;
  padding: 25px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  position: relative;
  height: 100%;
  transition: .3s ease;
  cursor: pointer;

}

.bottom-box-bg-two {
  background-color: #fff;
  margin-top: -100px;
  padding: 5rem 0 0rem 0;
}

.bottom-box-two {
  background-color: #EDF6FF;
  padding: 60px 20px 20px 20px;
  border-radius: 20px;
  color: #0A2E68;
  font-size: 14px;
  max-width: 900px;
  margin: auto;
}

/* value-sec-start */
.values-section {
  padding: 60px 15px;
}

.values-title {
  font-size: 2rem;
  font-weight: 600;
}

.values-title span {
  color: #002366;
}

.value-icon {
  font-size: 2.5rem;
  color: #002366;
}

.value-title {
  font-weight: 600;
  color: #002366;
}

.value-box:not(:last-child) {
  margin-bottom: 40px;
}

.rounded-corner-image {
  border-radius: 0 2rem 2rem 0;
  overflow: hidden;
}

.value-text {
  font-size: 0.95rem;
  color: #444;
}

/* map-css-start */

.header-text {
  color: #003087;
  font-size: 2.5rem;
  font-weight: bold;
}

.subheader-text {
  color: #333;
  font-size: 1.1rem;
}

.map-container {
  background: url('../images/map-bg.png') no-repeat center center;
  background-size: cover;
}

.flag-section {
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.flag-section img {
  width: 30px;
  margin-right: 10px;
}

.footer-text {
  color: #333;
  font-size: 1rem;
}

/* You can add the dots for the map using absolute positioning */
.dot {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

/* Header Section */
.conductHeaderSection {
  background-color: #1e3a8a;
  /* Dark blue background */
  color: white;
  position: relative;
}

.conductHeaderSection h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.conductHeaderSection p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.conductHeaderSection a {
  color: #60a5fa;
  text-decoration: none;
}

/* Hexagon Background Shape (using a placeholder) */
.conductHexagonBg {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Code of Conduct Card */
.conductConductCard {
  background-color: #dbeafe;
  color: #1e3a8a;
  padding: 30px;
  border-radius: 10px;
  margin-top: -50px;
  position: relative;
  z-index: 1;
}

.conductConductCard h2 {
  font-size: 2rem;
  font-weight: bold;
}

.conductConductCard p {
  font-size: 1rem;
}

.conductConductCard a {
  color: #1e3a8a;
  text-decoration: none;
}

.conductArrowCircle {
  background-color: #1e3a8a;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: absolute;
  right: 30px;
  top: 30px;
}

/* Get Started Section */
.conductGetStartedSection {
  padding: 50px 0;
  text-align: center;
}

.conductGetStartedSection h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1e3a8a;
}

.conductGetStartedSection p {
  font-size: 1rem;
  color: #4b5e8a;
}

/* Contact Cards */
.conductContactCard {
  background-color: #1e3a8a;
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
}

.conductContactCard h5 {
  font-size: 1.25rem;
  font-weight: bold;
}

.conductContactCard p {
  font-size: 0.9rem;
}

/* Footer Links */
.conductFooterLinks {
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

.conductFooterLinks a {
  color: #1e3a8a;
  text-decoration: none;
  margin: 0 10px;
}

/* how_we_deliver_css_start */
.deliver-bg {
  background-image: url(../images/how_deliever.webp);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 67px;
  min-height: 800px;
  background-position: center;
}

.deliver-card {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #043687;
  border-left: 5px solid #043687;


}

.deliver-card .card-body {
  text-align: center;
  padding: 2rem;
  color: #fff;

}

.border-card-left {
  background-color: #043687;
  width: 20px;
  height: 100%;
  border-radius: 5px;
}

.pathway-bg {
  background-color: #043687;
  color: #fff;
}

.custom-feature-box-area {

  background-color: #fff;
}

.custom-feature-box {
  border: none;
  text-align: center;
  padding: 25px;
  background-color: #EBF5FF;
  border-radius: 12px;
  height: 100%;
}

.custom-feature-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.custom-feature-box h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #043687;
}

.custom-feature-box p {
  font-size: 0.95rem;
  color: #043687;
  line-height: 1.5;
}

.intro-block h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #043687;
  margin-bottom: 20px;
}

.intro-block p {
  font-size: 1.1rem;
  color: #043687;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.6;
}

.deliver-bg-two {
  background-image: url(../images/how_deliever.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 800px;
}

.card-wrapper {
  position: relative;
  margin-top: 3rem;
  text-align: center;
  height: 100%;
}

.card-top {
  background-color: #EDF6FF;
  max-width: 300px;
  margin: 0 auto;
  padding: 3rem 1rem 2rem 1rem;
  border-radius: 0.5rem;
  font-weight: bold;
  z-index: 1;
  color: #043687;
  position: relative;
}

.card-custom {
  background-color: #043687;
  color: white;
  border: none;
  border-radius: 1rem;
  padding: 2rem 1.5rem 1.5rem;
  margin: 1rem auto;
  margin-top: -10px;
  position: relative;
  z-index: 0;
}

.card-wrapper .icon {
  position: absolute;
  top: -43px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #d9d9d9;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #043687;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.bottom-card {
  background-color: #043687;
  color: white;
  border-radius: 1rem;
  padding: 2rem;
  margin: 3rem 1rem 1rem;
  text-align: center;
}

.success-card {
  background-color: rgba(0, 43, 103, 0.81);
  /* #002B67CF */
  border: none;
}

.icon-circle {
  background-color: #d9d9d9;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #043687;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.talent-bg .main-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1e3a8a;
  margin-bottom: 2rem;
}

.talent-bg .cards-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.talent-bg .card-wrapper {
  width: 100%;
  max-width: 87%;
  margin-bottom: 1rem;
}

/* Stair pattern using nth-child */
.talent-bg .card-wrapper:nth-child(odd) {
  margin-left: 0;
  margin-right: auto;
}

.talent-bg .card-wrapper:nth-child(even) {
  margin-left: auto;
  margin-right: 0;
}

.talent-bg .content-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}

.talent-bg .content-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.anchors-bg-bene {
  background-image: url('../images/icon-logo.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.talent-bg .card-icon {
  width: 48px;
  height: 48px;
  background: #043687;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: #fff;
}

.talent-bg .card-icon i {
  color: white !important;
  font-size: 1.5rem;
}

.talent-bg .card-content {
  flex: 1;
}

.talent-bg .card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.talent-bg .card-text {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.7;
}

.talent-bg .main-container {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .talent-bg .cards-container {
    max-width: 100%;
  }

  .talent-bg .card-wrapper:nth-child(odd),
  .card-wrapper:nth-child(even) {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .talent-bg .main-title {
    font-size: 2rem;
  }

  .talent-bg .content-card {
    padding: 1.2rem;
    flex-direction: column;
    gap: 1rem;
  }

  .talent-bg .card-wrapper {
    margin-bottom: 1rem;
  }

  .talent-bg .card-icon {
    margin-top: 0;
    align-self: flex-start;
  }

  .talent-bg .card-title {
    font-size: 1.2rem;
  }

  .talent-bg .header-section {
    padding: 2rem 0 1rem;
  }
}

@media (max-width: 576px) {
  .talent-bg .main-title {
    font-size: 1.8rem;
  }

  .talent-bg .content-card {
    padding: 1rem;
  }

  .talent-bg .card-icon {
    width: 40px;
    height: 40px;
  }

  .talent-bg .card-icon i {
    font-size: 1.2rem;
  }
}

.talent-bg {
  background-color: #EDF6FF;
}




.productivity-Suite-section {
  background-image: url(../images/empowering-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

}





.success-simplified-row {
  background-image: url(../images/success-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}




.achieve-card {
  border: none;
  background-image: url(../images/achieve-card-bg.webp);

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 30px;
  height: 100%;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
}


.card-icon-two img {
  width: 50px;
  height: 50px;
}

.hr-team-section {
  background-color: #043687;
}



.feature-section {
  padding: 50px 0;
}


.feature-item {
  color: white;
  display: flex;
  margin-bottom: 30px;
  align-items: center;
}


.feature-item p {

  margin-bottom: 0;
}

.feature-item .feature-item-icon {
  background-color: #002561;
  min-width: 70px;
  min-height: 70px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.feature-item img {
  width: 40px;
  height: 40px;



}




.project-management-card {
  background-color: #E7F7FB;
  border-radius: 31px;
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.project-management-card img {
  max-width: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}



.centralize-hub-section {
  background-color: #EDF6FF;
}

.centralized-card {

  background-color: #FFFFFF;
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;

}


.centralized-card img {
  max-width: 40px;
}

.card-icon-two {
  width: 70px;
  height: 70px;
  background-color: #D9ECFF;
  border-radius: 0px 5px 5px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}


.top-banner {
  background-image: url(../images/company-01\ \(2\).webp);
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
  border-radius: 10px;
  margin-top: -40px;
}


.company-box img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.company-text {
  flex: 1;
}

.company-icon {
  color: #003366;
  font-size: 1.2rem;
}

.company-title {
  font-weight: 700;
  color: #003366;
}





/* productivity-Suite end */