/*

Theme Name: Apporya

Theme URI: http://www.Apporya.com

Author: Apporya

Author URI: http://www.Apporya.com

Description: Simple and Responsive Wordpress theme.

*/

@font-face {
  font-family: "Nunito-Light";
  src: url("fonts/Nunito-Light.ttf");
}

@font-face {
  font-family: "Nunito-Regular";
  src: url("fonts/Nunito-Regular.ttf");
}

@font-face {
  font-family: "Nunito-Medium";
  src: url("fonts/Nunito-Medium.ttf");
}

@font-face {
  font-family: "Nunito-SemiBold";
  src: url("fonts/Nunito-SemiBold.ttf");
}

@font-face {
  font-family: "Nunito-Bold";
  src: url("fonts/Nunito-Bold.ttf");
}

@font-face {
  font-family: "Nunito-ExtraBold";
  src: url("fonts/Nunito-ExtraBold.ttf");
}

/* -- style for common -- */

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito-Regular";
}

p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 28px;
  color: #3d4348;
  font-family: "Nunito-Regular";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: var(--black);
}

a,
input,
textarea,
button,
select {
  outline: none;
}

a:hover,
a:focus,
input:focus,
textarea:focus,
button:focus,
select:focus {
  outline: none;
  text-decoration: none;
}

a:hover {
  color: var(--black);
  text-decoration: none;
}

input,
textarea,
button,
select,
label,
a,
span,
img {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  height: auto;
}

:focus {
  box-shadow: none !important;
}

.container {
  width: 100%;
  max-width: 1200px;
}

ul,
ol {
  text-decoration: none;
  padding: 0;
  margin: 0;
}

a {
  color: var(--black);
  text-decoration: none;
}

/* Common Style */

:root {
  --primary: #ddd;
  --black: #3e5055;
  --white: #fff;
}

.common-container {
  max-width: 1920px;
  width: 100%;
  padding: 0 300px;
  margin: auto;
}

.text-center {
  text-align: center;
}

.padding-100 {
  width: 100%;
  padding-top: 100px;
}

.padding-50 {
  width: 100%;
  padding-top: 50px;
}

.common-title {
  margin: auto;
  text-align: center;
  font-size: 42px;
  font-family: "Nunito-Bold";
  position: relative;
  padding-bottom: 20px;
  width: 65%;
  margin: auto;
}

.common-title::before {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 70px;
  height: 3px;
  background: #880467;
  left: 50%;
  transform: translateX(-50%);
}

/* Header Style */

header.header {
  height: 100px;
  display: flex;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  z-index: 9;
}

header.white-sticky {
  background: #fff;
}

.header-menu-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

#main-menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

#main-menu a {
  font-size: 18px;
}

/* Homepage Style */

.home-banner-sec {
  background-position: bottom !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  min-height: 100vh;
}

.banner-content-sec {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 200px 0 100px;
}

.banner-content-sec h1 {
  max-width: 620px;
  margin: auto;
  text-align: center;
  font-family: "Nunito-Bold";
  font-size: 48px;
  line-height: 54px;
}

.banner-content-sec h1 span {
  color: #880467;
}

.banner-content-sec p {
  max-width: 620px;
  text-align: center;
  margin-top: 15px;
  font-size: 20px;
}

.heading-sec .common-title {
  margin-bottom: 10px;
}

#menu-item-200 a {
  color: #fff;
  font-size: 16px;
}

#menu-item-200 {
  background: linear-gradient(145deg, #940068, #940068);
}

#menu-item-200:hover {
  background: linear-gradient(145deg, #228b22, #228b22);
  box-shadow: 8px 8px 16px #3a973a47, -8px -8px 16px rgba(255, 255, 255, 0.6);
}

.common-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  width: fit-content;
  padding: 0 30px;
  font-size: 16px;
  background: linear-gradient(145deg, #228b22, #228b22);
  color: #fff !important;
  border-radius: 40px;
  font-family: "Nunito-Medium";
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
}

.common-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 10%,
    transparent 30%
  );
  transition: transform 0.4s ease;
  transform: translate(-50%, -50%) scale(0);
  z-index: 0;
}

.common-btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.common-btn:hover {
  background: linear-gradient(145deg, #940068, #940068);
  box-shadow: 8px 8px 16px #9400683d, -8px -8px 16px rgba(255, 255, 255, 0.6);
  color: #fff;
}

.common-btn span {
  position: relative;
  z-index: 1;
}

.banner-content-sec .common-btn {
  margin-top: 25px;
  height: 55px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  justify-content: center;
  gap: 35px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.service-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 22px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #e1e4ff;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px #228b2236;
}

.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-box img {
  width: 54px;
  height: 54px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
}

.why-apporya-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.why-apporya-image-side {
  width: 50%;
}

.why-apporya-image-side img {
  width: 100%;
  border-radius: 12px;
}

.why-apporya-content-side {
  width: 50%;
}

.why-apporya-contents h3 {
  font-size: 42px;
  font-family: "Nunito-Bold";
  position: relative;
  padding-bottom: 20px;
  width: fit-content;
}

.why-apporya-contents ul {
  display: grid;
  gap: 15px;
  list-style: none;
  margin-top: 20px;
}

.why-apporya-contents ul li {
  position: relative;
  padding-left: 30px;
  font-size: 20px;
}

.why-apporya-contents ul li::before {
  content: "";
  background-image: url(./images/right-arrow.svg);
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 4px;
  background-size: contain;
  background-repeat: no-repeat;
}

.achievements-modern {
  width: 100%;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
  letter-spacing: -0.5px;
}

.achieve-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 750px;
  margin: 0 auto;
}

.ach-item {
  background: #f3f6ff;
  padding: 18px 24px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 500;
  color: #2c2c2c;
  border: 1px solid #e0e5f8;
  transition: 0.3s ease;
  text-align: left;
  position: relative;
  padding-left: 48px;
}

.ach-item::before {
  content: "★";
  position: absolute;
  font-size: 20px;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #009915;
  opacity: 0.9;
}

.ach-item:hover {
  background: #e8edff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
}

.large-container {
  position: static;
  max-width: 1580px;
  padding: 0px 30px;
  margin: 0 auto;
}

.testimonial-section {
  position: relative;
  padding-bottom: 210px;
  overflow: hidden;

  &:before {
    position: absolute;
    left: -200px;
    top: 22%;
    background-image: url(./images/ring-circle.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 701px;
    height: 756px;
    content: "";
    -webkit-animation: fa-spin 25s infinite alternate;
    -moz-animation: fa-spin 25s infinite alternate;
    -ms-animation: fa-spin 25s infinite alternate;
    -o-animation: fa-spin 25s infinite alternate;
    animation: fa-spin 25s infinite alternate;
  }

  .sec-title {
    position: relative;
    margin-bottom: 115px;

    .title {
      margin-bottom: 20px;
    }
  }

  .testimonial-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 -50px;
  }
}

.testimonial-block .text p {
  margin-bottom: 10px;
}

.testimonial-block {
  position: relative;
  padding: 50px;

  .inner-box {
    padding: 60px 95px;
    background-color: #ffffff;
    box-shadow: 0 0 50px rgba(226, 222, 232, 0.75);
  }

  .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 32px;
    color: #282331;
    font-weight: 400;
    margin-bottom: 50px;
    font-family: "Muli", sans-serif;
  }

  .info-box {
    position: relative;
    padding-left: 115px;
    padding-top: 10px;

    .thumb {
      position: absolute;
      left: 0;
      top: 0;
      height: 82px;
      width: 82px;

      img {
        border: 6px solid #e5e6fa;
        border-radius: 50%;
        overflow: hidden;
        display: block;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        box-shadow: 0 45px 45px rgba(147, 147, 147, 0.35);
      }
    }

    .name {
      position: relative;
      display: block;
      font-size: 21px;
      line-height: 1.2em;
      color: #382c4d;
      font-weight: 700;
      margin-bottom: 10px;
      font-family: "Niramit", sans-serif;
    }

    .designation {
      position: relative;
      display: block;
      font-size: 16px;
      line-height: 24px;
      color: #8053f7;
      font-weight: 400;
      font-family: "Muli", sans-serif;
    }
  }
}

.testimonial-carousel {
  .owl-nav {
    position: absolute;
    right: 75px;
    bottom: 70px;
  }

  .owl-next,
  .owl-prev {
    position: relative;
    display: inline-block;
    height: 75px;
    width: 75px;
    line-height: 75px;
    text-align: center;
    border-radius: 50%;
    background-color: #ffffff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }

  .owl-next:hover,
  .owl-prev:hover {
    background-color: #00df97;
    box-shadow: 0 24px 24px rgba(187, 187, 187, 0.75);
  }
}

.arrow-right,
.arrow-left {
  position: relative;
  display: inline-block;
  height: 9px;
  width: 43px;
  background-image: url(http://t.commonsupport.com/adro/images/icons/arrow-left-2.png);
  background-repeat: no-repeat;
  background-position: center;
}

.arrow-right {
  background-image: url(http://t.commonsupport.com/adro/images/icons/arrow-right-2.png);
}

.testimonial-section .thumb-layer {
  position: absolute;
  right: 30px;
  top: 120px;

  .image {
    position: relative;
    margin-right: 0;

    img {
      display: inline-block;
      max-width: 100%;
      height: auto;
    }
  }
}

.cta-flat {
  width: 100%;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
}

.cta-flat-box {
  width: 100%;
  max-width: 950px;
  background: #f2f5ff;
  padding: 60px 50px;
  border-radius: 22px;
  text-align: center;
  border: 1px solid #dbe2ff;
}

.cta-flat-box h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.cta-flat-box p {
  font-size: 17px;
  color: #555;
  margin-bottom: 35px;
}

.cta-flat-buttons {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.flat-btn {
  padding: 15px 34px;
  border-radius: 10px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.flat-btn.filled {
  background: #940068;
  color: #fff;
}

.flat-btn.filled:hover {
  background: #940068;
  transform: translateY(-3px);
}

.flat-btn.outline {
  border: 2px solid #009915;
  color: #009915;
  background: transparent;
}

.flat-btn.outline:hover {
  background: #eaf0ff;
  transform: translateY(-3px);
}

/* Footer Section */

footer {
  border-top: 1px solid #d0d5dd;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 80px 0;
}

.address-section {
  max-width: 320px;
}

.foot-sec h3 {
  font-size: 22px;
  font-family: "Nunito-Bold";
  margin-bottom: 25px;
}

.footer-right {
  display: grid;
  gap: 8px;
}

.footer-right li,
.address-section div a {
  list-style: none;
  font-size: 18px;
  font-family: "Nunito-Medium";
}

.address-section div {
  display: grid;
  gap: 10px;
}

.copy-right {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #e9ecef;
}

.privacy-sec {
  display: flex;
  gap: 20px;
  font-size: 18px;
  align-items: center;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  max-width: 650px;
  margin: auto;
  color: #555;
}

/* Hero Banner With Background Image */
.hero {
  position: relative;
  width: 100%;
  padding: 160px 0 140px;
  overflow: hidden;
  background: #e9ecef;
}

/* Dark + gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 18px;
  width: 80%;
  margin: auto;
}

.hero-content p {
  font-size: 21px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.95;
}

/* ---------------------------------------------------
   2. Who We Are - Modern Split Section w/ Round Image
------------------------------------------------------*/
.who-we-are {
  padding: 90px 0;
}

.who-flex {
  display: flex;
  gap: 40px;
  align-items: center;
}

.who-img {
  width: 50%;
}

.who-text {
  width: 50%;
}

.who-img img {
  border-radius: 20px;
}

.who-text h2 {
  font-size: 34px;
  margin-bottom: 15px;
  font-family: "Nunito-Bold";
}

.who-text h2 span {
  color: #880467;
}

.who-text p {
  margin-bottom: 10px;
}

/* ---------------------------------------------------
   3. Vision + Mission + Values – Modern Card Row
------------------------------------------------------*/
.vm-section {
  background: #f8f9fa;
  padding: 90px 0;
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.vm-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.05);
}

.vm-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.vm-card ul {
  padding-left: 20px;
}

.research-division-section .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px auto;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1b2534;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 16px;
  color: #5b657a;
}

.alt-title2 {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 80px;
  color: #0e0e0e;
  letter-spacing: -0.6px;
}

.alt-roadmap2 {
  position: relative;
  margin: auto;
  padding: 20px 0;
}

.alt-roadmap2::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 5%;
  width: 4px;
  height: 86%;
  transform: translateX(-50%);
  background: #009915;
  opacity: 0.35;
  border-radius: 12px;
}

/* row */
.alt-item2 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

/* alternating */
.alt-item2.left {
  flex-direction: row;
}

.alt-item2.right {
  flex-direction: row-reverse;
}

/* card */
.alt-content2 {
  background: #ffffffcc;
  backdrop-filter: blur(4px);
  padding: 30px 34px;
  border-radius: 18px;
  width: 46%;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: 0.3s ease;
}

.alt-content2:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14);
}

.alt-content2 h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #101010;
}

.alt-content2 p {
  font-size: 15px;
  line-height: 1.68;
  color: #444;
}

.alt-marker2 {
  width: 70px;
  height: 70px;
  background: #940068;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  box-shadow: 0 0 25px rgb(160 0 105 / 11%), 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 500%;
}

/* small connection dot */
.alt-line-dot {
  width: 20px;
  height: 20px;
  background: #fff;
  border: 4px solid #256bff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
}

/* responsive */
@media (max-width: 768px) {
  .alt-roadmap2::before {
    display: none;
  }

  .alt-item2,
  .alt-item2.right {
    flex-direction: column;
  }

  .alt-marker2 {
    position: relative;
    left: 0;
    transform: none;
    margin-bottom: 25px;
  }

  .alt-line-dot {
    display: none;
  }

  .alt-content2 {
    width: 100%;
  }
}

/* ---------------------------------------------------
   5. Technical Team – Badge Cloud Layout
------------------------------------------------------*/
.team {
  text-align: center;
}

.badges span {
  display: inline-block;
  background: #fff;
  margin: 3px;
  padding: 4px 14px;
  border-radius: 50px;
  box-shadow: 0 5px 20px #f8f9fa;
  font-size: 14px;
  border: 1px solid #d0d5dd;
  height: fit-content;
}

.badges div {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  padding: 0px 10px;
  border-right: 1px solid #d0d5dd;
}

.badges div:nth-child(4n) {
  border-right: none !important;
}

.badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

/* ---------------------------------------------------
   6. Stats – Large Numbers Section
------------------------------------------------------*/
.stats {
  background: #880467;
  padding: 100px 0;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
  gap: 25px;
}

.stat-box h2 {
  font-size: 52px;
  font-weight: 800;
  margin: 0;
  color: #fff;
}

.stat-box p {
  font-size: 18px;
  opacity: 0.8;
  color: #fff;
}

.common-title span {
  color: #a00069;
}

.heading-sec p {
  width: 70%;
  margin: auto;
}

.vm-card li {
  font-size: 18px;
  list-style: disc;
}

.badges-bottom span {
  display: block;
  color: #940068;
  font-family: "Nunito-Bold";
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  padding: 16px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  background: #128c7e;
}

/* Hero Section */
.hero-section {
  min-height: 95vh;
  background: linear-gradient(135deg, #94006830 0%, #fff 70%);
  color: white;
  display: flex;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  padding: 170px 0 100px;
}

.hero-title {
  font-size: 62px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  max-width: 900px;
  opacity: 0.95;
  margin-bottom: 40px;
}

.btn-primary {
  background: white;
  color: #940068;
  padding: 18px 44px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: all 0.4s;
}

.btn-primary:hover {
  transform: translateY(-6px);
}

/* General Section */
.section-padding {
  padding: 50px 0;
}

.section-heading {
  font-size: 3.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 80px;
  color: #0f172a;
}

.section-heading span {
  color: #940068;
}

/* Services Grid – Responsive CSS Grid */
.services-grid1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.service-box {
  background: white;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  borderdisk: 1px solid #e2e8f0;
  transition: all 0.4s ease;
}

.service-box:hover {
  transform: translateY(-16px);
  box-shadow: 0 30px 80px rgba(14, 165, 233, 0.22);
}

.service-title {
  font-size: 1.65rem;
  color: #940068;
  margin: 16px 0;
  font-weight: 700;
}

.service-desc {
  margin-bottom: 20px;
  color: #475569;
}

.service-list {
  list-style: none;
  margin: 20px 0;
}

.service-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: #334155;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #940068;
  font-weight: bold;
  font-size: 1.3rem;
}

.service-importance {
  font-style: italic;
  color: #64748b;
  font-size: 0.95rem;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed #cbd5e1;
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.process-card {
  background: white;
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.process-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: #940068;
  opacity: 0.15;
  margin-bottom: -20px;
}

.process-title {
  color: #940068;
  margin: 16px 0;
  font-weight: 700;
}

/* Testimonials */
.testimonials-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 140px 0;
}

.testimonial-quote {
  font-size: 1.4rem;
  font-style: italic;
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 2;
}

.testimonial-author {
  color: #940068;
  font-weight: 700;
  text-align: center;
}

.metrics-grid {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
  margin-top: 60px;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Final CTA */
.cta-final {
  color: white;
  text-align: center;
  padding: 140px 0;
}

.cta-title {
  font-size: 3.8rem;
  margin-bottom: 24px;
}

.cta-subtitle {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 40px;
}

.expertise-hero {
  min-height: 65vh;
  display: flex;
  padding: 180px 0 100px;
  position: relative;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  text-align: center;
  justify-content: center;
  background-position: center !important;
}
.expertise-hero::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffffb3;
}

.expertise-hero .common-container,
.expertise-matters .common-container {
  position: relative;
  z-index: 2;
}

.expertise-matters {
  position: relative;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}

.expertise-matters::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000000a1;
}

.expertise-hero .common-container {
  position: relative;
}
.expertise-hero h1 {
  font-size: 48px;
  font-family: "Nunito-Bold";
  max-width: 70%;
  margin: auto;
}

.expertise-hero p {
  max-width: 900px;
}

.expertise-domain-header img {
  width: 62px;
  height: 62px;
  margin-bottom: 30px;
}

.expertise-domains {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.expertise-domain-card {
  padding: 40px 30px;
  border-radius: 10px;
  border: 1px solid #d0d5dd;
  transition: all 0.3s ease;
}

.expertise-domain-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #940068;
  background-color: #940068;
  color: var(--white);
}

.expertise-domain-card:hover .expertise-domain-header img {
  filter: invert(1);
}

.expertise-domain-body span {
  font-size: 18px;
  display: block;
  font-family: "Nunito-SemiBold";
  margin-bottom: 10px;
}

.expertise-wrapper .why-apporya-contents h3 {
  font-size: 38px;
  padding-bottom: 0px;
}

.expertise-wrapper .why-apporya-contents ul {
  gap: 12px;
  margin: 20px 0;
}

.flex-reverse {
  flex-direction: row-reverse;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.tools-box {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 0px 25px #e9ecef;
  border: 1px solid #f8f9fa;
  transition: all 0.3s ease;
}
.tools-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.tools-box h2 {
  margin-top: 0;
  font-size: 20px;
  font-family: "Nunito-Semibold";
}
.tools-box ul {
  margin: 0;
  padding-left: 30px;
  list-style: disc;
  margin-top: 15px;
}

.expertise-matters h3 {
  font-size: 42px;
  color: #fff;
  font-family: "Nunito-Bold";
  margin-bottom: 30px;
}

.expertise-matters ul {
  color: #fff;
  font-size: 20px;
  display: grid;
  gap: 10px;
  list-style: inside;
  font-family: "Nunito-Medium";
}

.cap-wrapper .why-apporya-contents h3 {
  font-size: 32px;
  padding-bottom: 15px;
}

.cap-wrapper p {
  font-size: 16px;
  margin-bottom: 20px;
}

.cap-wrapper-para {
  font-size: 16px;
  margin-top: 20px;
}

.domain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.domain-box {
  background: #88046717;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #880467;
}

.domain-box h3 {
  margin-top: 0;
  color: #880467;
  font-size: 18px;
  margin-bottom: 10px;
  font-family: "Nunito-Bold";
}

.domain-box ul {
  margin: 0;
  padding-left: 20px;
}

.domain-box ul li {
  margin-bottom: 6px;
}

.domain-para {
  margin-top: 35px !important;
  max-width: 900px;
  margin: auto;
  text-align: center;
  font-family: "Nunito-Semibold";
}

.expertise-wrapper .why-apporya-contents ul li {
  font-size: 18px;
}

.expertise-domain-header {
  display: flex;
  justify-content: center;
}

.expertise-domain-body {
  text-align: center;
}

.timeline-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 650px;
  margin: auto;
  position: relative;
  z-index: 1;
  background: #ffffff94;
  padding: 50px;
  border-radius: 20px;
  backdrop-filter: blur(1px);
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.step-card {
  margin-top: 8px;
}

.step-number {
  min-width: 40px;
  min-height: 40px;
  background: #880467;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.step-card h3 {
  margin: 0 0 5px 0;
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
}

.step-card p,
.step-card li {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

.step-card ul {
  padding-left: 20px;
  margin: 0;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-toggle {
  margin-left: 10px;
}

.dropdown-menu {
  display: block !important ;
  width: max-content !important;
  background-clip: padding-box;
  min-width: 200px !important;
  margin: 0 0 !important;
  border-radius: 8px !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08) !important;
  /* hide by default */
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  /* animation */
  transition: opacity 0.25s ease, transform 0.25s ease;
}
/* Each dropdown link style */
.dropdown-menu li a {
  padding: 10px 18px;
  display: block;
  color: #333;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
  color: #000;
}

/* Show on hover with animation */
.menu-item-has-children.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0px);
  pointer-events: auto;
}

.mobile-show {
  display: none !important;
}

.hambuger-menu-sec {
  display: none;
}

.menu-nav-icon {
  display: flex;
  flex-direction: column;
  width: 45px;
  cursor: pointer;
  align-items: flex-end;
  cursor: pointer;
}

.menu-nav-icon span {
  background: var(--black);
  border-radius: 10px;
  height: 4px;
  margin: 4px 0;
  transition: all 0.3s ease-in-out;
}

.menu-nav-icon:hover span {
  width: 100% !important;
}

.menu-nav-icon span:nth-of-type(1) {
  width: 50%;
}

.menu-nav-icon span:nth-of-type(2) {
  width: 100%;
}

.menu-nav-icon span:nth-of-type(3) {
  width: 75%;
}

.menu-close-sec {
  display: none;
}

.contact-container {
  display: flex;
  gap: 40px;
}

.contact-left-sec {
  width: 35%;
  margin-top: 50px;
}

.contact-right-sec {
  width: 65%;
  padding: 50px 50px 10px;
  border-radius: 20px;
  border: 1px solid #d0d5dd;
}

.frm_error {
  color: #f04438 !important;
}

input {
  height: 45px;
  border: 1px solid #d0d5dd !important;
}

textarea {
  height: 100px;
  max-height: 100px;
  resize: none;
  border: 1px solid #d0d5dd !important;
}

.conatct-map iframe,
.conatct-map {
  height: 400px;
  width: 100%;
}

.contact-right-sec h3 {
  font-size: 26px;
  font-family: "Nunito-Bold";
  margin-bottom: 10px;
}

.contact-info-text p {
  font-size: 14px;
  line-height: 24px;
}

.contact-info-text {
  margin-bottom: 20px;
}

.contact-left-sec aside {
  display: flex;
  gap: 14px;
  margin-bottom: 25px;
  align-items: center;
}

.contact-left-sec aside i {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #e9ecef;
}

.contact-left-sec aside h5 {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  font-family: "Nunito-Semibold";
}

.contact-left-sec aside a,
.contact-left-sec aside p {
  color: #555;
  font-size: 18px;
  line-height: 28px;
  font-family: "Nunito-Semibold";
  transition: all 0.3s ease-in-out;
}

.contact-left-sec aside a:hover {
  color: #880467;
}

.contact-left-sec aside i svg {
  width: 24px;
  height: 24px;
  color: #000;
}

.contact-left-sec aside b {
  font-family: "Nunito-Bold";
}

.header-logo img,
.footer-logo img {
  height: 44px;
}

.foot-logo-sec aside {
  display: flex;
  align-items: center;
  gap: 10px;
}

.foot-logo-sec aside a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #228b22;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.foot-logo-sec aside a:hover {
  background: #940068;
}

.foot-logo-sec {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.foot-logo-sec div {
  display: grid;
  gap: 20px;
}

.foot-logo-sec div p {
    font-family: "Nunito-Medium";
    max-width: 260px;
    font-size: 16px;
    line-height: 24px;
}

.frm_submit .common-btn {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  height: 50px !important;
  width: fit-content !important;
  padding: 0 30px !important;
  font-size: 16px !important;
  background: linear-gradient(145deg, #228b22, #228b22) !important;
  color: #fff !important;
  border-radius: 40px !important;
  font-family: "Nunito-Medium" !important;
  transition: all 0.4s ease-in-out !;
  position: relative !important;
  overflow: hidden !important;
  border: none !important;
}

.frm_submit .common-btn::before {
  content: "";
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 300% !important;
  height: 300% !important;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 10%,
    transparent 30%
  ) !important;
  transition: transform 0.4s ease !important;
  transform: translate(-50%, -50%) scale(0) !important;
  z-index: 0 !important;
}

.frm_submit .common-btn:hover::before {
  transform: translate(-50%, -50%) scale(1) !important;
}

.frm_submit .common-btn:hover {
  background: linear-gradient(145deg, #940068, #940068) !important;
  box-shadow: 8px 8px 16px #9400683d, -8px -8px 16px rgba(255, 255, 255, 0.6) !important;
  color: #fff !important;
}

.cap-timeline-banner {
  height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cap-timeline-banner-img {
  height: calc(100vh - 100px);
  position: sticky;
  top: 100px;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}

.cap-timeline-banner .common-container {
  height: calc(100vh - 100px);
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 0;
}

.cap-timeline-banner .common-container h2,
.cap-timeline-banner .common-container p {
  margin: 0 auto;
}

.cap-time-main-sec {
  position: relative;
  background: #ffffff78;
}

.service-wrapper-sec .why-apporya-contents ul li {
  font-size: 18px;
}

.service-wrapper-sec h4 {
  font-size: 20px;
  margin-top: 25px;
  font-family: "Nunito-Bold";
}

.why-matters-sec {
  margin-top: 35px !important;
  max-width: 800px;
  margin: auto;
  text-align: start;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  position: relative;
  border: 1px solid #228b22;
  padding-top: 35px;
}

.why-matters-sec h3 {
  font-size: 16px;
  font-family: "Nunito-Bold";
  position: absolute;
  height: 38px;
  top: -18px;
  background: #228b22;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 12px;
  color: #fff;
}

.why-matters-sec p {
  font-size: 16px;
  line-height: 24px;
  font-family: "Nunito-Semibold";
}

.dropdown-toggle .fa-chevron-down:before {
  opacity: 0.8;
  font-size: 14px;
}

.sub-service-sec .vm-card ul {
  margin: 15px 0;
}

.sub-service-sec .vm-card li {
    font-size: 16px;
}

.sub-service-sec aside {
    padding: 6px 10px;
    width: fit-content;
    border-left: 4px solid #880467;
    font-size: 16px;
}

.sub-service-sec  .vm-card h3 {
    font-size: 22px;
    font-family: 'Nunito-Bold';
    margin-bottom: 15px;
}

.vm-grid.sub-service-sec {
    grid-template-columns: repeat(2, 1fr);
}