/*////////////////////////////Navbar//////////////////////////////*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');


:root {
  --primary-blue: #007bff;
  --primary-blue-dark: #0056b3;
  --text-light: #f8f9fa;
  --text-dark: #343a40;
  --bg-light: #ffffff;
  --bg-form: #f4f7fc;
  --border-color: #e5e8eb;
  --success-green: #28a745;
  --error-red: #dc3545;
}

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

body {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  /* min-height: 100vh; */
}

/*//////////////////////////////// Image Slider////////////////////////////////*/

.slider {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  width: 300%;
  height: 100%;
  animation: slide 15s infinite;
}

.slide {
  width: 33.333%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption {
  display: block;
  background-color: rgba(0, 0, 0, 0.489);
  padding: 20px 40px;
  width: 70%;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--bg-light);

}

.caption h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.caption p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.slideBtn {
  width: 200px;
}

/*//////////////////////////////Animations //////////////////////*/


@keyframes leftSide {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


@keyframes Up2Down {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide {
  0% {
    margin-left: 0;
  }

  25% {
    margin-left: 0;
  }

  33% {
    margin-left: -100%;
  }

  58% {
    margin-left: -100%;
  }

  66% {
    margin-left: -200%;
  }

  92% {
    margin-left: -200%;
  }

  100% {
    margin-left: -200%;
  }
}

/*///////////////////////////////////Who We Are /////////////////////////////*/

#who-we-are {
  padding: 100px;
  margin-right: 150px;
  margin-left: 50px;

  h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 50px;
    text-align: center;
  }

  .c3 {
    font-weight: 700;
    font-size: 1.14rem;
  }

  .c2 {
    font-size: 1.1rem;
    text-align: left;
  }
}

/*////////////////////////////// what we provides //////////////////////////*/

#we-provides {
  background: var(--bg-form);

  h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    padding-top: 40px;
  }

  .provide {
    text-align: center;
    font-weight: 600;
  }

  .blue {
    color: #0000ff;
  }

  p {
    font-size: 1.1rem;
    text-align: left;
  }
  .cardContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .card {
    background: var(--border-color);
    margin-bottom:30px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    transform: scale(1);

    &:hover {
      transform: scale(1.05);
    }

    img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    p {
      font-size: 0.8rem;
      margin-bottom: 0;
    }
  }

  .row {
    padding-bottom: 35px;
  }

  .card-title {
    font-size: 1rem;
    font-weight: bold;
  }

  .card-text {
    display: flex;
    flex-direction: row;
    place-items: center;
    font-weight: 500;
    margin-top: 20px;
    gap: 10px;

    img {
      width: 20px;
    }

    .price {
      background-color: var(--primary-blue);
      padding: 5px 10px;
      border-radius: 8px;
      display: flex;
      flex-direction: row;
      color: #fff;
      position: absolute;
      right: 5%;
      gap: 5px;
      text-decoration: none;

      svg {
        width: 20px;
        height: 20px;
        display: inline;
      }
    }
  }
}

/* ////////////////////////////// Loader //////////////////////////// */

.loader {
  width: fit-content;
  color: var(--primary-blue)b7;
  margin: 0 auto;
  padding-bottom: 10px;
  font-weight: bold;
  font-family: monospace;
  font-size: 30px;
  clip-path: inset(0 3ch 0 0);
  animation: l4 1s steps(4) infinite;
  display: none;
}

.loader:before {
  content: "Sending..."
}

@keyframes l4 {
  to {
    clip-path: inset(0 -1ch 0 0)
  }
}

/* ////////////////////////////// Completion Certificate //////////////////////////// */

.compCertificate {
  background-color: #f9f9f9;
  margin: 0;
  padding: 30px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
}

.certificate-showcase {
  width: 100%;
  max-width: 1100px;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  transform: translateY(20px);
}


/* --- Main Title --- */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000d4;
  margin-bottom: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  span {
    color: var(--primary-blue);
  }
}

.section-title .icon-flag {
  width: 24px;
  height: 24px;
}

.content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

/* --- Left Column: Certificate Image --- */
.certificate-image-wrapper {
  flex: 1;
  min-width: 300px;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideIn 1s ease-out 0.3s forwards;
}

.certificate-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-image:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* --- Right Column: Certificate Details --- */
.certificate-details {
  flex: 1;
  padding-left: 20px;
  opacity: 0;
  transform: translateX(20px);
  animation: slideIn 1s ease-out 0.5s forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.details-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.details-title .icon-trophy {
  width: 30px;
  height: 30px;
  color: #f39c12;
  /* Gold color */
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  font-size: 18px;
  margin-bottom: 15px;
  margin-left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
}

.features-list .icon-check {
  width: 22px;
  height: 22px;
  color: #4CAF50;
}

/* --- Floating "Ask Query" Button --- */
.ask-query-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: bottom right;
  background-color: #e67e22;
  color: var(--bg-light);
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
  z-index: 1000;
}

.ask-query-btn:hover {
  background-color: #d35400;
}


/* //////////////////////////////  Faqs ///////////////////////// */
/* --- General Container and Font Styles --- */
.faq-container-wrapper {
  background-color: #e6f0f9;
  padding: 50px 20px;
  color: #495057;
}

/* --- FAQ Section Styles --- */
.faq-container-wrapper .faq-section {
  max-width: 1100px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.faq-container-wrapper .faq-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 8px;
}

.faq-container-wrapper .faq-section p {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 30px;
}

/* Accordion Styles */
.faq-container-wrapper .faq-accordion {
  text-align: left;
}

.faq-container-wrapper .faq-item {
  background-color: #fff;
  border-bottom: 1px solid #e9ecef;
}

.faq-container-wrapper .faq-item:first-of-type {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.faq-container-wrapper .faq-item:last-of-type {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom: none;
}

.faq-container-wrapper .faq-item summary {
  font-size: 1rem;
  font-weight: 500;
  color: #495057;
  padding: 20px;
  cursor: pointer;
  position: relative;
  list-style: none;
  /* Removes default marker */
}

/* Custom dropdown arrow */
.faq-container-wrapper .faq-item summary::after {
  content: '▾';
  font-size: 1.2rem;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease-in-out;
}

/* Style for open state */
.faq-container-wrapper .faq-item[open]>summary {
  color: var(--primary-blue);
  /* Blue color for active question */
}

.faq-container-wrapper .faq-item[open]>summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-container-wrapper .faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6c757d;
}

/* --- Info Cards Section (Business Hours & Response Times) --- */
.faq-container-wrapper .info-cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-container-wrapper .info-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex: 1;
  /* Makes cards take up equal space */
  min-width: 300px;
  /* Prevents cards from getting too narrow */
}

.faq-container-wrapper .info-card h3 {
  font-size: 1.25rem;
  color: #212529;
  margin-top: 0;
  margin-bottom: 25px;
}

.faq-container-wrapper .info-list .info-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f1f3f5;
  font-size: 0.95rem;
}

.faq-container-wrapper .info-list .info-row:last-child {
  border-bottom: none;
}

.faq-container-wrapper .info-row span:first-child {
  color: #495057;
}

.faq-container-wrapper .info-row .highlight-text,
.faq-container-wrapper .info-row span:last-child {
  color: #007bff;
  font-weight: 500;
}

.faq-container-wrapper .card-footer-note {
  margin-top: 25px;
  margin-bottom: 0;
  font-size: 0.85rem;
  color: #6c757d;
  line-height: 1.5;
}


#btn-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /* display: none;  */
}

/* --- Responsive Media Query --- */
@media (max-width: 768px) {
  .faq-container-wrapper .info-cards-container {
    flex-direction: column;
    /* Stacks the cards vertically */
  }

  .faq-container-wrapper .faq-section h2 {
    font-size: 1.75rem;
    /* Slightly smaller heading on mobile */
  }
}

/*///////////////////////////////  Contact Us  //////////////////////////*/
.company {
  background: #c3c9dd;
  margin: 0;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  max-width: 1150px;
  margin: 50px auto;
  border-radius: 10px;
}

.company-info {
  display: flex;
  flex-direction: column;
  padding: 10px 10px;
  max-width: 600px;
  margin-right: 10px;
  margin-left: 40px;

  h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #010101;
    text-align: center;
  }

  strong {
    font-weight: 700;
    color: #010101;
    margin-bottom: 10px;
    text-decoration: none;
    font-size: 1.5rem;
  }

  p {
    font-size: 1.1rem;
    color: #010101;
    margin-bottom: 15px;
  }
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 550px;

  h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #010101;
    text-align: center;
  }

  input[type="text"],
  input[type="email"],
  input[type="number"],
  textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 18px;
    border: solid 1px #0056b3;
    border-radius: 5px;
    outline: none;
    font-size: 1.1rem;
    color: #010101;
    font-weight: 400;
    transition: border-color 0.3s ease;
  }
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#submit {
  width: 50%;
  margin-top: 10px;
  display: block;
  margin: 0 auto;
}

/*////////////////////////////////  Footer /////////////////////////*/

ul {
  margin: 0px;
  padding: 0px;
}

.footer-section {
  background: #151414;
  position: relative;
}

.footer-cta {
  border-bottom: 1px solid #373636;
}

.single-cta i {
  color: #0056b3;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
}

.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}

.cta-text span {
  color: #757575;
  font-size: 15px;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 230px;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 28px;
}

.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}

.fa-instagram {
  background: #d82694;
}

.fa-youtube {
  background: #cc2c2c;
}

.fa-linkedin {
  background: #007bb5;
}

.fa-telegram {
  background: #2ca5e0;
}

.footer-widget-heading h3 {
  margin-top: 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #0056b3;
}

.footer-widget ul li {
  display: inline-block;
  width: 50%;
  margin-bottom: 12px;
}

.footer-widget ul li a:hover {
  color: #0056b3;
}

.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}

.subscribe-form {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2e2e2e;
  border: 1px solid #2e2e2e;
  color: #fff;
}

.subscribe-form button {
  position: absolute;
  right: 0;
  background: #0056b3;
  padding: 13px 20px;
  border: 1px solid #0056b3;
  top: 0;
}

.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}

.copyright-area {
  background: #202020;
  padding: 25px 0;
}

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}

.copyright-text p a {
  color: #0056b3;
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

.footer-menu li:hover a {
  color: #0056b3;
}

.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

/*/////////////////////////////// BUTTON CSS /////////////////////////////////////////*/

.r {
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
}

.btn-container {
  width: 130px;
  height: 40px;
  text-align: center;
  position: relative;
  margin: 0 auto;
}



/* From Uiverse.io by kosedagyazilim */

.button {
  display: inline-block;
  padding: 10px 25px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-image: linear-gradient(to bottom right, #0056b3, #0072ff);
  border: none;
  border-radius: 100px;
  box-shadow: 0px 4px 0px #0072ff;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  display: flex;
  justify-content: center;
  position: relative;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 0px #0072ff;
}

.button:active {
  transform: translateY(0px);
  box-shadow: none;
  background-image: linear-gradient(to bottom right, #0072ff, #0056b3);
}

.button:before,
.button:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}


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

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

/* ================================  Review Section============================== */
    .review-cta-section {
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%); /* Deep Blue Gradient */
    }

    /* Decorative background shapes */
    .review-cta-section::before,
    .review-cta-section::after {
        content: '';
        position: absolute;
        border-radius: 50%;
        opacity: 0.1;
        z-index: 1;
    }

    .review-cta-section::before {
        width: 300px;
        height: 300px;
        background: #93c5fd;
        top: -100px;
        left: -100px;
    }

    .review-cta-section::after {
        width: 400px;
        height: 400px;
        background: #60a5fa;
        bottom: -150px;
        right: -150px;
    }

    .review-cta-button {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem; /* 12px */
        background-color: #f59e0b; 
        color: #1e293b; 
        font-weight: 700;
        padding: 0.875rem 2rem; 
        border-radius: 9999px; 
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        transition: all 0.3s ease-in-out;
        margin-bottom: 30px;
        white-space: nowrap; 
    }

    .review-cta-button:hover {
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        background-color: #fbbf24; 
        text-decoration: none;
    }
/*////////////////////////////Media Queries//////////////////////*/


@media screen and (max-width: 1300px) {
  .slide img {
    width: 100%;
    height: 700px;
    object-fit: cover;
  }
}

@media screen and (min-width: 1081px) {
  #who-we-are {
    margin-right: 20px;
    margin-left: 20px;
    padding: 50px 10px;
  }
}

@media screen and (max-width: 992px) {
  #who-we-are {
    margin-right: 0px;
    margin-left: 0px;
    padding: 50px 20px;
  }

  .cookie-banner_frame {
    flex-direction: column;
    gap: 16px;
  }

  .slider {
    height: 500px;
  }

  .slide {
    height: 500px;
  }

  .slide img {
    height: 500px;
  }

  .caption {
    padding: 20px 40px;
    width: 70%;
  }
}

@media screen and (max-width: 768px) {
  .logo {
    align-items: center;
    margin-left: 0;
  }

  .navbar {
    display: flex;
    flex-direction: column;
  }

  .slider {
    height: 400px;
  }

  .slide {
    height: 400px;
  }

  .slide img {
    height: 400px;
  }

  .caption h2 {
    font-size: 2rem;
  }

  .caption p {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .caption {
    padding: 15px 30px;
    width: 70%;
    bottom: 20px;
  }
}


@media screen and (max-width: 576px) {
  .carousel-inner {
    .carousel-caption {
      display: block;
      font-size: 14px;
      background-color: rgba(0, 0, 0, 0.5);
      padding: 10px;
    }

    .carousel-caption h2 {
      font-size: 15px;
    }

    .carousel-caption p {
      font-size: 10px;
    }

    img {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }

    
    .slideBtn{
      width: 100px;
    }
  }

  #who-we-are .title {
    margin-top: 0;
  }

  /*Contact -Us*/

  .company {
    display: flex;
    flex-direction: column;
    border-radius: 0;
    margin: 0 auto;

    .horizontal-line {
      border-top: 2px solid #0056b3;
      margin: 20px 0;
      width: 100%;
    }
  }

  .company-info,
  .contact {
    width: 100%;
    margin: 0;
    padding: 10px;
    margin-bottom: 20px;
    max-width: 100%;
    margin-top: 20px;
  }

  .company-info {
    padding: 0 auto;

    strong {
      font-size: 1.2rem;
      color: #273039ee;
    }
  }

  .contact {
    order: 2;
  }

  .form input,
  .form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
  }

  #submit {
    width: 50%;
    margin-top: 10px;
    display: block;
    margin: 0 auto;
  }

  .company-info h1,
  .contact h1 {
    text-align: center;
    font-size: 2rem;
    color: #273039ee;
  }

  .company-info p,
  .contact form {
    text-align: left;
    color: #010101d4;
  }
}

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

  /*Who We Are*/
  #who-we-are {
    margin: 30px 20px;

    h1 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 25px;
    }

    .c2 {
      font-size: 14px;
      margin-bottom: 10px;
    }
  }

  /*We Provides*/

  #we-provides {
    padding: 30px 20px;

    h1 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 25px;
    }

    ul li {
      font-size: 14px;
      margin-bottom: 10px;
    }

    .card {
      width: 100%;
      margin-bottom: 30px;
    }
  }

  /*Slider*/

  .slider {
    height: 300px;
  }

  .slide {
    height: 300px;
  }

  .slide img {
    height: 300px;
  }

  .caption h2 {
    /* display: none; */
    font-size: 1.2rem;
  }

  .caption p {
    display: none;
    font-size: 0.8rem;
  }

  .caption {
   text-shadow: none;
   margin-bottom: 0;
  }
}


@media (max-width: 900px) {
  .content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .certificate-details {
    padding-left: 0;
    text-align: center;
  }

  .details-title,
  .features-list li {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .certificate-showcase {
    padding: 20px;
  }

  .section-title {
    font-size: 22px;
    display: flex;
    flex-direction: row;
  }

  .details-title {
    font-size: 20px;
  }

  .features-list li {
    font-size: 16px;
  }

  .ask-query-btn {
    display: none;
    /* Hide the floating button on small screens */
  }
}