@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Forum&display=swap");

body {
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 0.5em;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  outline: 1px solid var(--secondary-color);
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #0f3b2e;
  --secondary-color: #c8a75d;
  --teritary-color: #f8f5ee;
}

*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

p {
  font-size: 18px;
  color: #000;
}

ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

a,
button {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

a:hover {
  text-decoration: none;
}

button:focus,
input:focus,
textarea:focus,
select:focus,
a:hover {
  outline: none;
  box-shadow: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
.fontHeading {
  font-family: "Forum", serif;
}
.fontPrimary {
  font-family: "DM Sans", sans-serif;
}
section {
  padding: 60px 0 60px;
}
.inlineHeader {
  display: flex;
  padding: 0px 0;
  align-items: center;
  justify-content: space-between;
}

.large_heading {
  font-size: 4.5rem;
  line-height: 64px;
}

.heading {
  font-size: 50px;
  line-height: 50px;
}

.sub_heading {
  font-size: 35px;
}

.sub_heading2 {
  font-size: 32px;
}

.small_heading {
  font-size: 28px;
}

.title {
  font-size: 19px;
}
.text {
  font-size: 16px;
}

.fontWeight300 {
  font-weight: 300;
}

.fontWeight400 {
  font-weight: 400;
}

.fontWeight500 {
  font-weight: 500;
}

.fontWeight600 {
  font-weight: 600;
}

.fontWeight700 {
  font-weight: 700;
}

.fontWeight800 {
  font-weight: 800;
}

.fontWeight900 {
  font-weight: 900;
}

.header.stricky-fixed {
  position: fixed;
  z-index: 999;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  width: 100%;
  background: #fff;
  -webkit-animation-name: menu_sticky;
  animation-name: menu_sticky;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  padding: 10px 0;
}
/* .header.stricky-fixed .leftLogo img {
  filter: none;
  -webkit-filter: none;
} */
.header.stricky-fixed .leftLogo h2 {
  color: #000 !important;
}

@-webkit-keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }

  50% {
    margin-top: -130px;
  }

  100% {
    margin-top: 0;
  }
}

@keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }

  50% {
    margin-top: -130px;
  }
}
.text_secondary {
  color: var(--secondary-color);
}
.text_primary {
  color: var(--primary-color);
}
.bgPrimary {
  background: var(--primary-color);
}

.bgSecondary {
  background: var(--secondary-color);
}
.bgGrey {
  background: #f1f1f1;
}
.containerFull {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.header {
  padding: 10px 0;
  background-color: var(--primary-color);
}
.leftLogo img {
  max-width: 100%;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.btnTheme {
  display: inline-block;
  padding: 15px 34px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-weight: 600;
  border: 2px solid transparent;
}
.btnTheme:hover {
  color: var(--secondary-color) !important;
  background: transparent;
  border-color: var(--secondary-color);
}
.btnTheme2 {
  display: inline-block;
  padding: 10px 34px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-weight: 600;
  border: 2px solid transparent;
}
.btnTheme2:hover {
  color: var(--secondary-color) !important;
  background: transparent;
  border-color: var(--secondary-color);
}
.hoverWhite:hover {
  background: transparent;
  border-color: #fff;
  color: #fff !important;
}


.heroSection {
  position: relative;
  width: 100%;
  /* background: var(--teritary-color); */
  overflow: hidden;
  min-height: calc(100vh - 90px);
}

.heroContent {
  position: relative;
  z-index: 3;
  max-width: 550px;
  padding: 90px 0;
}
.imageWrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 38vw;
  height: 100%;
  z-index: 1;
}

.topImage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.topImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(4px);

  transform: scale(1.05);
}

.profileImage {
    position: absolute;
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    z-index: 2;
    box-shadow: 0 25px 60px rgba(0,0,0,0.22);
}

.profileImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 5px;
}

.profileImage::before {
    content: "";
    position: absolute;
    top: -15px;
    right: -15px;
    width: 180px;
    height: 180px;
    border-top: 10px solid var(--primary-color);
    border-right: 10px solid var(--primary-color);
}

.profileImage::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 180px;
    height: 180px;
    border-bottom: 10px solid var(--secondary-color);
    border-left: 10px solid var(--secondary-color);
}
.heroHighlights {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.highlightItem {
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlightItem i {
    color: var(--secondary-color);
    font-size: 20px;
}

.highlightItem span {
    font-size: 16px;
    font-weight: 600;
}
.service-wrapper {
  border-radius: 30px;
  overflow: hidden;
  background: #fffdf9;
  border: 1px solid #ddd4c8;
}

.service-card {
  padding: 40px 38px;
  height: 100%;
  border-right: 1px solid #ddd4c8;
  border-bottom: 1px solid #ddd4c8;
  /*background: #fffdf9;*/
  transition: 0.3s;
}

.service-card:hover {
  background: #f9f5ef; 
}
.service-card:hover h3,
.service-card:hover p,
.service-card:hover i,
.service-card:hover a {
  color: #333 !important;
}
.service-icon {
  font-size: 34px;
  color: #3e6841;
  margin-bottom: 28px;
  display: inline-block;
}
.engage-card {
  background: #315b34;
  color: #fff;
  padding: 40px 38px;
  height: 100%;
}
.engage-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 15px;
  letter-spacing: 1px;
  transition: 0.3s;

  font-weight: 600;
}

.engage-btn:hover {
  background: #fff;
  color: #315b34;
}
.engagement-wrapper {
  border: 1px solid #ddd4c8;
  border-radius: 10px;
  overflow: hidden;
  /* background: #fbf8f3; */
  background: #fff;
}

.engagement-row {
  border-bottom: 1px solid #ddd4c8;
  padding: 45px 35px;
}

.engagement-row:last-child {
  border-bottom: none;
}

.year-text {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #d07b52;
  margin-bottom: 18px;
  font-weight: 600;
}

.company-title {
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #0f2233;
  font-weight: 400;
}

.designation {
  font-size: 16px;
  color: #374553;
 
  line-height: 1.7;
}
.engagement-list {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.engagement-list li {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.9;
  color: #41505e;
 
  display: list-item;
}

.engagement-list li::marker {
  color: var(--secondary-color);
  font-size: 16px;
}

.credential-icon img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 20px;
}
.education-list {
  padding-left: 22px;
  margin: 0;
  list-style-type: disc;
}

.education-list li {
  font-size: 20px;
  color: #4f5d69;
  margin-bottom: 18px;
}

.education-list li::marker {
  color: #d07b52;
}
.education-image {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.education-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.4s ease;
  display: block;
}

.education-image:hover img {
  transform: scale(1.05);
}
.award-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 15px;
  margin: 0 auto 20px;
  display: block;
}
.bgTeritary {
  background: var(--teritary-color);
}
.award-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #ddd;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  height: 100%;
}

.award-card:hover {
  transform: translateY(-8px);
}
.engagement-box {
  background: var(--teritary-color);
  padding: 40px;
  border-radius: 20px;
  color: #000;
  border: 1px solid #ddd;
  height: 100%;
}

.about-image {
  height: 100%;
}

.about-image img {
  width: 100%;

  height: 100%;
  max-height: 550px;
  object-fit: cover;
  display: block;
  border-top: 40px solid var(--secondary-color);
  border-right: 40px solid var(--secondary-color);
  border-bottom: 40px solid var(--secondary-color);
}
.profile-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  background: var(--teritary-color);
  align-items: flex-start;
}
.rightContact {
  padding: 30px;
}
.itemForm input,
.itemForm textarea {
  border: 1px solid #ccc;
  width: 100%;
  padding: 5px 15px;
  font-size: 15px;
  height: 45px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
.itemForm label {
  display: block;
  font-weight: 600;
}
.itemForm {
  margin-top: 15px;
}
.itemForm input:focus {
  border-color: var(--primary-color);
}
.itemForm textarea {
  height: 90px;
}

.footer {
  background: var(--teritary-color);
  padding: 50px 0 0;
  border-top: 2px solid var(--secondary-color);
}

.mainFooter {
  margin-top: 40px;
  padding: 18px 0;
  border-top: 1px solid #ddd;
}
.itemFooter ul li a {
  display: inline-block;
  color: #111;
  font-size: 17px;
  padding: 5px 0;
  font-weight:600;
}
.itemFooter ul li a:hover {
  color: var(--secondary-color);

}
.textLight {
  color: #111;
}
.socialLink ul {
  display: flex;
  margin-top: 30px;
}
.socialLink ul li a {
  display: inline-block;
  padding: 15px;
  color: #333;
  font-size: 17px;
}
.bottomMenu ul {
  display: flex;
  gap: 15px;
}
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 5px;
  background-color: var(--secondary-color);
  z-index: 999;
  width: 50px;
  height: 50px;
  text-align: center;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  font-size: 16px;
  -webkit-transition: 0.9s;
  transition: 0.9s;
  overflow: hidden;
  color: #fff;
}

.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}
.itemForm input {
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: 1px solid #e0e0e0;
    height: 60px;
    font-size: 15px;
    transition: all .5s ease-in-out;
}
.innerPage {
  position: relative;
  height: 320px;
  padding-top: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  z-index: 1;
}

.innerPage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit; 
  background-size: cover;
  background-position: center;
  filter: blur(5px); 
  transform: scale(1.05); 
  z-index: -2;
}

.innerPage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.aiCard{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.4s ease;
    border:1px solid #ddd;
}

.aiCard:hover{
    transform:translateY(-10px);
}

.aiIcon{
    width:65px;
    height:65px;
    border-radius:50%;
    background:#0B1F3A;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
}

.infoItem{
    margin-bottom:25px;
}

.infoItem:last-child{
    margin-bottom:0;
}
.timelineWrapper{
    position:relative;
}

.timelineItem{
    display:flex;
    gap:30px;
    margin-bottom:40px;
    align-items:flex-start;
}

.timelineNumber{
    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--primary-color);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
}

.timelineContent{
    flex:1;
    background:#f8f9fc;
    border-radius:20px;
    padding:35px;
    border:1px solid #edf0f5;
}

.timelineGrid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:20px;
    margin-top:25px;
}

.timelineBox{
    background:#fff;
    border-radius:15px;
    padding:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}
.transformCard{
    background:#fff;
    border-radius:25px;
    padding:35px;
    height:100%;
    position:relative;
    overflow:hidden;
    transition:0.4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.transformCard:hover{
    transform:translateY(-10px);
}

.transformTop{
    width:70px;
    height:70px;
    border-radius:20px;
    background:#0B1F3A;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    font-weight:700;
}

.infoRow{
    padding:18px 0;
    border-bottom:1px solid #edf0f5;
}
.rightTestimonial{
  padding-left: 6rem;
}
.imgQuote
 {
    width: 60px;
}

    .service-card2 {
      background: #fff;
      border-radius: 20px;
      padding: 35px 25px;
      text-align: center;
      height: 100%;
      transition: 0.3s ease;
      border: 1px solid var(--primary-color);
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }

    .service-card2:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.12);
      border:1px solid var(--secondary-color);
    }

    .service-icon2 {
      width: 65px;
      height: 65px;
      border: 3px solid var(--primary-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
    
    }

    .service-icon2 i {
      font-size: 28px;
      color:var(--primary-color);
    }
    .testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 36px 30px 30px;
    overflow: hidden;
    border: 1px solid #e5ebf2;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 32px rgba(15, 35, 60, 0.06);
    transition: all 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(15, 35px, 60px, 0.12);
}

.quote-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    border-radius: 14px;
  background:#e7eeec; 
  color: var(--primary-color);
}

.quote-icon i {
    font-size: 34px;
    line-height: 1;
}

.testimonial-text {
    flex: 1;
    margin: 0 0 30px;
}

.testimonial-author {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-top: 22px;
    border-top: 1px solid #edf1f5;
}

.author-initials {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.author-details h3 {
    margin: 0 0 7px;
    font-size: 18px;
    line-height: 1.35;
    color: var(--primary-color);
}

.author-details p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.author-details p span {
    font-weight: 600;
}

.centerMenu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.centerMenu ul {
  display: flex;
  gap: 25px;
}

.centerMenu ul li a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.centerMenu ul li:hover a,
.centerMenu ul li.active a {
  color: var(--secondary-color);
}
.header.stricky-fixed .centerMenu ul li a {
  color:#000;
}
.header.stricky-fixed .centerMenu ul li a:hover {
   color: var(--secondary-color);
}
.header.stricky-fixed .centerMenu ul li.active a {
    color: var(--secondary-color) !important;
}