* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
html,
body {
  width: 100%;
  height: 100%;
}

@font-face {
  font-family: "gilroy";
  src: url("./Gilroy-Regular.otf");
}

.blr {
  filter: blur(55px) saturate(10);
}

#blrone {
  position: fixed;
  right: 5%;
  bottom: 10%;
  width: 130px;
  height: 150px;
  opacity: 0.4;
  background-color: #ea945bbd;
  z-index: 1;
  border-radius: 50%;
}

#blrtwo {
  position: fixed;
  left: 5%;
  bottom: 60%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  opacity: 0.4;
  -webkit-filter: blur(35px) saturate(10);
  filter: blur(55px) saturate(10);
  background-color: #e7a350;
  z-index: 1;
}

#leftside {
  position: absolute;
  left: 0%;
  top: 7%;
  width: 10px;
  height: 10px;
  z-index: 1;
}

#leftside img {
  object-fit: cover;
  width: 300px;
}

#rightside {
  position: absolute;
  right: 20%;
  top: 3%;
  width: 10px;
  height: 10px;
  z-index: 1;
}

#rightside img {
  object-fit: cover;
  width: 300px;
}

.span {
  color: #FA6742;
  font-weight: 700;
}

#main {
  padding: 20px 120px;
  font-family: gilroy;
  width: 100%;
}

#nav {
  width: 100%;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#nav img {
  width: 80px;
}

#links a {
  text-decoration: none;
  color: #000;
  padding: 10px 15px;
  display: inline-block;
  transition: color 0.3s;
  font-weight: 700;
  z-index: 9;
  position: relative;
}

#links a.active {
  color: #FA6742;
}

#links a:hover {
  color: #FA6742;
}

.anim-btn h4 a {
  text-decoration: none;
  color: black;
  z-index: 9;
  position: relative;
}

.anim-btn h4 {
  font-weight: 500;
  border: 1px solid #5a5a5a;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all ease 0.4s;
  margin-right: 40px;
  color: #FA6742;
}

.anim-btn h4::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #FA6742;
  left: 0;
  bottom: -100%;
  border-radius: 50%;
  transition: all ease 0.4s;
}

.anim-btn h4:hover::after {
  bottom: 0;
  border-radius: 0;
}

.anim-btn h4:hover a {
  color: #fff;
  font-weight: 700;
}

#hero {
  width: 100%;
  height: 70vh;
  /* margin-bottom: 50px; */
}

#hero h1 {
  font-size: 60px;
  width: 75%;
  margin-top: 80px;
}

#hero #lower {
  width: 80%;
  /* display: flex; */
  margin-top: 80px;
}

#hero #lower p {
  font-size: 18px;
  width: 60%;
  margin-top: 20px;
}

#buttondiv {
  width: 70%;
  display: flex;
  align-items: center;
  padding: 0px 10px;
  justify-content: space-evenly;
  margin-top: 50px;
}

#buttondiv:hover #buttondiv #arrow {
  rotate: -30deg;
}

#second {
  /* margin-top: 40px; */
  width: 100%;
  height: 80vh;
  display: flex;
  padding: 10px 100px;
  flex-direction: column;
  align-items: center;
  /* border-top: 5px solid #FA6742; */
}

#second-h1 {
  font-size: 50px;
  text-align: center;
  width: 80%;
  margin: 50px 0px;
}

#sec-divs {
  display: flex;
  width: 100%;
  gap: 20px;
  margin-top: 50px;
}

#sec-divs .status {
  width: 33%;
}

#sec-divs .status .status-cnt {
  padding: 10px 20px;
  border: 1px dashed gray;
  border-radius: 20px;
}

#sec-divs .status .status-cnt h1 {
  text-align: start;
  font-size: 50px;
}

#sec-divs .status p {
  width: 90%;
  margin-top: 10px;
  margin-left: 10px;
  font-weight: 700;
  color: #7a7a7a;
}

#companies {
  width: 100%;
  min-height: 90vh;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#companies h1 {
  font-size: 50px;
  text-align: center;
  width: 50%;
  margin: 20px 0px;
}

#comp-div {
  display: grid;
  grid-template-columns: repeat(5, minmax(50px, 1fr));
  gap: 40px;
  justify-items: center;
  align-items: center;
  margin-top: 50px;
  width: 100%;
}

#comp-div .logo {
  max-width: 120px;
  object-fit: cover;
  max-height: 100px;
  background-color: #fff;
  cursor: pointer;
  border-radius: 20px;
  transition: all ease 0.3s;
}

#comp-div .logo:hover {
  scale: 1.2;
}

#comp-div .logo img {
  width: 100%;
  object-fit: cover;
}


.heading {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  background-color: #f5f7f9;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  border-radius: 20px;
  min-width: 130px;
  padding-right: 20px;
}

.heading img {
  width: 42px;
  height: 42px;
  margin-right: 10px;
  object-fit: contain;
}

#services {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  margin-top: 50px;
}

#upper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  justify-content: center;
  gap: 20px;
}


#services #upper h1{
  font-size: 45px;
  text-align: center;
  width: 50%;
}


#services #lower {
  width: 100%;
  padding: 20px;
  justify-content: space-between;
  margin-top: 50px;
  overflow: hidden;
  /* background-color: #FA6742; */
  min-height: 50vh;
}

#elems {
  position: relative;
  height: 60vh;
  width: 100vw;
  top: 8%;
  left: -5%;
}

#elems h1 {
  margin-left: 50px;
}

#elems a {
  text-decoration: none;
}

.elem {
  position: relative;
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0vw 5vw;
  height: 23.3%;
  width: 100%;
  border-bottom: 0.5px solid #FA6742;
  top: 10%;
  cursor: pointer;
  padding: 20px;
}

#lower a {
  text-decoration: none;
}

.elem h1 {
  transition: all ease 0.3s;
}

.elem:hover h1 {
  color: #fff;
}

.elem:hover i {
  color: #fff;
}

.elem:nth-child(1) {
  border-top: 0.5px solid #FA6742;
}

.elem > i {
  font-size: vw;
  position: relative;
  z-index: 9999;
  font-weight: 300;
  color: black;
}
.elem > h1 {
  font-size: 2.4vw;
  position: relative;
  z-index: 9999;
  font-weight: 500;
  color: black;
}

#elems #rec {
  font-size: 38px;
  margin-left: 3vw;
  color: #b091cc;
}

.center14 {
  height: 0%;
  width: 100%;
  background-color: #FA6742;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all ease 0.5s;
}

.elem:hover .center14 {
  height: 100%;
}

#about {
  min-height: 80vh;
  margin: 50px 0;
}

#about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
  width: 100%;
}


#about-text h3 {
  color: #a8a7a7;
  font-size: 40px;
  text-align: start;
  width: 100%;
}

.about {
  color: #2a2a2a;
}

#work {
  min-height: 80vh;
  margin-top: 100px;
}

#work #upper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  justify-content: center;
  gap: 20px;
}

.heading {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  background-color: #f5f7f9;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  border-radius: 20px;
  min-width: 130px;
  padding-right: 20px;
}

.heading img {
  width: 42px;
  height: 42px;
  margin-right: 10px;
  object-fit: contain;
}

#work #upper h1 {
  font-size: 45px;
  text-align: center;
  width: 50%;
}

#work #upper h2{
  font-size: 20px;
  text-align: center;
  width: 30%;
}

#work #lower {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 20px;
}

#work #lower > div {
  background: lightblue; /* Just for visibility */
  padding: 20px; /* Adjust as needed */
  text-align: center;
  width: 350px;
  height: 400px;
  border-radius: 15px;
}


#stories {
  min-height: 100vh;
  margin-top: 50px;
}

#stories #upper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  justify-content: center;
  gap: 20px;
}


#shown{
  display: none;
}

.avatars {
  display: flex;
  align-items: center;
  margin: 0 10px;
}
.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid white;
  object-fit: cover;
  margin-left: -15px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.avatar:first-child {
  margin-left: 0;
}

#stories #lower {
  display: flex;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
  margin-top: 50px;
}

#stories-h1{
  font-size: 45px;
  text-align: center;
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
}


#hide{
  display: initial;
  font-size: 45px;
}

.testimonial-container {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial {
  padding: 20px;
  border-radius: 12px;
  position: relative;
  font-family: gilroy;
}
.testimonial::before {
  content: "\201C";
  font-size: 40px;
  color: #FA6742;
  font-weight: bold;
  position: absolute;
  top: 20px;
  left: 40px;
}
.forback {
  background-color: #f5f7f9;
  padding: 20px;
  border-radius: 20px;
}

.testimonial p {
  margin-left: 30px;
  font-size: 16px;
  color: #333;
  font-weight: 600;
  font-family: gilroy;
}
.profile {
  display: flex;
  align-items: start;
  flex-direction: column;
  margin-top: 30px;
  margin-left: 20px;
}
.profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 10px;
  filter: grayscale(100%);
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.name {
  font-weight: bold;
  color: #222;
}
.designation {
  font-size: 12px;
  color: gray;
}

.upper {
  padding: 10px;
  margin-top: 50px;
  display: flex;
  width: 100%;
  height: 650px;
  border-radius: 30px;
  overflow: hidden;
  background-color: #f5f7f9;
  position: relative;
}

.left-panel {
  width: 70%;
  background-color: #FA6742;
  padding: 80px 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 20px;
}

.left-panel h1 {
  color: white;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}

.left-panel p {
  color: white;
  font-size: 18px;
  line-height: 1.4;
  width: 50%;
}

.form-upper {
  width: 40%;
  background-color:  #2B327C;
  border-radius: 25px;
  padding: 40px;
  margin: 20px 0px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  left: 58%;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
}

input,
textarea {
  width: 100%;
  padding: 15px 20px;
  border: none;
  outline: none;
  border-radius: 15px;
  background-color: #4f56a3e2;
  color: #ffffff;
  font-size: 16px;
  font-family: gilroy;
}

textarea {
  resize: none;
  height: 150px;
}

input::placeholder,
textarea::placeholder {
  color: #ffffffb6;
}

button {
  background-color: #FA6742;
  color: #111111;
  border: none;
  border-radius: 20px;
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.framer-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #555;
}

.framer-badge svg {
  width: 16px;
  height: 16px;
}

.container {
  max-width: 1400px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  overflow: hidden;
  padding: 40px;
  background-color: #2B327C;
  color: #fff;
  margin: 40px 0px;
}

/* Header styles */
header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.logo-section {
  max-width: 600px;
}

.logo {
  font-size: 5rem;
  font-weight: bold;
  color: #FA6742;
  margin-bottom: 20px;
  line-height: 1;
}

.tagline {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
}

/* Navigation styles */
nav {
  display: flex;
  gap: 80px;
}

.nav-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

nav a {
  color: #FA6742;
  text-decoration: none;
  font-size: 1.1rem;
  transition: opacity 0.2s;
}

nav a:hover {
  opacity: 0.8;
}

/* Divider */
.divider {
  height: 1px;
  background-color: #333;
  margin: 30px 0;
}

/* Info section */
.info-section {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}

.info-box {
  max-width: 300px;
}

.info-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FA6742;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.info-content {
  font-size: 1rem;
  line-height: 1.5;
}

/* Footer */
footer {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #999;
}

#social{
  display: flex;
  gap: 25px;
}

#social a{
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

#social a:hover{
  color: #FA6742;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .info-section {
    flex-wrap: wrap;
    gap: 30px;
  }

  header {
    flex-direction: column;
    gap: 40px;
  }

  nav {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  

  .container {
    padding: 20px;
  }

  .logo {
    font-size: 3rem;
  }

  nav {
    flex-direction: row;
    gap: 20px;
  }

  .info-section {
    flex-direction: column;
    gap: 30px;
  }

  .info-box {
    max-width: 100%;
  }
} 

@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(200px);
    /* transform: scale(0.5); */
  }
  to {
    opacity: 1;
    /* transform: scale(1); */
    transform: translateY(0px);
  }
}

.appear {
  opacity: 0;
  transform: scale(0.5);
}

.appear.visible {
  animation: appear 1s linear;
  opacity: 1;
  transform: scale(1);
}

#page4{
  width: 100%;
  z-index: 9;
  position: relative;
  padding: 50px;
}
#page4 .elem{
  /* background-color: salmon; */
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#page4 .elem img:nth-child(1){
  left: -5%;
  width: 400px;
  height: 450px;
  object-fit: cover;
}

#page4 .elem img:nth-child(3){
  right: 2%;
  width: 400px;
  height: 500px;
  object-fit: cover;
}

#page4 .text-div{
  height: 15vh;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
#page4 .elem h1{
  font-size: 5vw;
  font-weight: 300;
  transition: all ease-out 0.5s;
  color: #000;
}


#page4 .elem a{ 
  text-decoration: none;
}

#page4 .elem:hover h1{
  transform: translateY(-100%);
  color: #FA6742;
}

#page4 .elem:hover {
  color: #FA6742;
}

#page4 .elem:hover #arr{
  color: #FA6742;
}


@media (max-width: 648px) {
  body {
    padding: 20px;
  }
  #main {
    padding: 10px;
    font-family: gilroy;
    width: 100%;
  }

  #rightside {
    position: absolute;
    right: 30%;
    top: 204px;
    width: 10px;
    height: 10px;
    z-index: 1;
}

#rightside img {
  object-fit: cover;
  width: 115px;
}
#leftside {
  display: none;
}

  #nav img {
    width: 50px;
  }

  #links a {
    display: none;
  }

  #nav {
    width: 100%;
    height: 40px;
  }

  .anim-btn h4 {
    margin-right: 0;
  }

  #hero {
    height: 60vh;
  }

  #hero h1 {
    font-size: 36px;
    width: 100%;
    margin-top: 70px;
  }

  #hero #lower {
    width: 100%;
    margin-top: 53px;
  }

  #hero #lower p {
    font-size: 17px;
    width: 100%;
    margin-top: 20px;
  }

  #buttondiv {
    width: 70%;
    display: flex;
    align-items: center;
    padding: 0px;
    justify-content: start;
    margin-top: 50px;
  }

  #second {
    margin-top: 40px;
    width: 100%;
    height: 100vh;
    display: flex;
    padding: 0px;
    flex-direction: column;
    align-items: center;
  }

  #second-h1 {
    font-size: 25px;
    text-align: center;
    width: 100%;
    margin: 0px 0px;
  }

  #sec-divs {
    display: flex;
    width: 100%;
    gap: 40px;
    margin-top: 50px;
    flex-direction: column;
  }

  #sec-divs .status {
    width: 100%;
  }

  #sec-divs .status p {
    width: 90%;
    margin-top: 10px;
    margin-left: 10px;
    font-weight: 700;
    color: #7a7a7a;
    font-size: 12px;
}

#about-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

#about {
  min-height: 80vh;
  margin: 50px 0px;
}

.heading {
  text-align: center;
  font-size: 15px;
}

.heading img {
  width: 30px;
  height: 30px;
  margin-right: 0px;
  object-fit: contain;
}

#about-text h3 {
  color: #a8a7a7;
  font-size: 20px;
  text-align: start;
  width: 100%;
  padding-left: 0px;
  letter-spacing: 1.2px;
  line-height: 30px;
}

#companies{
  margin-top: 80px;
}
#companies h1 {
  font-size: 25px;
  text-align: center;
  width: 100%;
 
}

#comp-div {
  display: grid;
  grid-template-columns: repeat(3, minmax(50px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
  margin: 0px 0px;
  width: 100%;
  
}

#comp-div .logo {
  max-width: 120px;
  cursor: pointer;
  border-radius: 10px;
  transition: all ease 0.3s;
}

#services {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 85vh;
  margin-top: 50px;
}

#services #upper h1 {
  font-size: 25px;
  text-align: center;
  width: 100%;
}

#services #lower {
  width: 100%;
  padding: 0px;
  justify-content: space-between;
  margin-top: 50px;
  overflow: hidden;
  min-height: 50vh;
}

.elem > h1 {
  font-size: 15px;
  position: relative;
  z-index: 9999;
  font-weight: 500;
  color: black;
}



#work{
  min-height: 70vh;
  margin-top: 30px;
}

#work #upper h1 {
  font-size: 27px;
  text-align: center;
  width: 100%;
}

#work #upper h2 {
  font-size: 20px;
  text-align: center;
  width: 90%;
}

#stories {
  min-height: 100vh;
  margin-top: 20px;
}



#hide{
  display: none;
}

#shown{
  display: initial;
  text-align: center;
}

.testimonial-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.testimonial {
  padding: 0px;
  border-radius: 12px;
  position: relative;
  font-family: gilroy;
}

.testimonial::before {
  content: "\201C";
  font-size: 40px;
  color: #FA6742;
  font-weight: bold;
  position: absolute;
  top: 10px;
  left: 20px;
}



#contact{
  min-height: 60vh;
  width: 100%;
}

.upper {
  padding: 0px;
  margin-top: 50px;
  display: flex;
  width: 100%;
  height: 600px;
  border-radius: 0px;
  position: relative;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
}

.left-panel {
  width: 100%;
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 0px;
  background-color: #fff;
}

.left-panel h1 {
  color: #FA6742;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.1;
}

.left-panel p {
  color: #FA6742;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  width: 80%;
}

.form-upper {
  width: 100%;
  border-radius: 25px;
  padding: 18px;
  margin: 20px 0px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: initial;
  left: 0;

}

header {
  flex-direction: column;
  gap: 30px;
}
.divider {
  height: 1px;
  background-color: #333;
  margin: 0px 0;
}
.info-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FA6742;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.info-content {
  font-size: 15px;
  line-height: 18px;
}

#footer{
  margin-top: 80px;
}

#page4 {
  min-height: 50vh;
  width: 100%;
  z-index: 9;
  position: relative;
  padding: 0px ;
  margin-top: 30px;
}
#page4 .elem h1 {
  font-size: 10vw;
  font-weight: 300;
  transition: all ease-out 0.5s;
  color: #000;
}
#page4 .text-div {
  height: 6vh;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
#page4 .elem img:nth-child(3) {
  right: 78%;
  width: 100px;
  height: 150px;
  object-fit: cover;
}
#page4 .elem img:nth-child(1) {
  left: 77%;
  width: 100px;
  height: 150px;
  object-fit: cover;
}
}

