* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

img,
video {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

p {
  margin-bottom: 0;
  font-size: 14px;
}

:root {
  --primary-color: #0c1b38;
  --secondary-color: #18859f;
}

/* common code  */

section {
  padding: 60px 0;
  overflow: hidden;
}

.common-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px;
  gap: 20px;
  border-radius: 60px;
  border: none;
  background-color: var(--primary-color);
  padding-left: 20px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.common-btn h6 {
  color: white;
  font-size: 15px;
}

.common-btn .btn-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.common-btn .btn-icon img {
  width: 24px;
}

.common-btn:hover {
  background-color: var(--secondary-color);
}

.common-btn:hover .btn-icon {
  background-color: var(--primary-color);
  transform: rotate(45deg);
}

.common-title {
  margin-bottom: 35px;
}

.common-title h2 {
  font-size: 27px;
  margin-bottom: 10px;
}

.common-title p {
  color: var(--primary-color);
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  background: var(--secondary-color);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
  z-index: 1000;

}


#scrollTopBtn img {
  width: 24px;
  transform: rotate(225deg);
  position: relative;
  top: -2px;
}



/* navbar code  */
.navbar {
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  background-color: transparent !important;
  z-index: 99;
}

.navbar .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-color) !important;
}

.navbar .nav-link.active {

  color: var(--secondary-color) !important;
}

.navbar-brand {
  position: relative;
}

.navbar-brand img {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-0%, -50%);
}

.navbar-collapse {
  background-color: #ffffff;
  padding: 6px 6px 6px 0;
  border-radius: 60px;
}

.navbar-expand-lg .navbar-nav {
  gap: 4px;
}

@media screen and (max-width: 991px) {
  .navbar {
    top: 7%;
    background-color: white !important;
  }

  .navbar-collapse {
    border-radius: 0;
    background-color: transparent;
    padding-top: 30px;
  }

  .navbar-brand img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    transform: translate(0%, -50%);
  }
}

/* banner code  */
.banner {
  width: 100%;
  height: 100vh;
  position: relative;

}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.253);
  width: 100%;
  height: 100%;
  z-index: 5;

}



.banner h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  letter-spacing: 1px;
  text-align: center;
  z-index: 6;
  font-weight: 800;
}

.banner img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* direct contact  */
.direct-contact {
  margin-top: -50px;
  overflow: hidden;
  position: relative;
  z-index: 99;
}

.direct-contact .container {
  background-color: #fff !important;
  padding: 29px;
  border-radius: 12px;

  box-shadow: rgba(50, 50, 93, 0.089) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.116) 0px 3px 7px -3px;
  margin-bottom: 40px;
}

.direct-contact .direct-input {
  position: relative;
}

.direct-contact .direct-input input {
  padding: 8px 0 8px 30px;
  width: 100%;
  border: 1px solid #ebebeb;
  border-radius: 8px;
}

.direct-contact .direct-input input:focus {
  outline: none;
}

.direct-contact .direct-input input::placeholder {
  font-size: 13px;
  color: #7e7f83;
}

.direct-contact .direct-input img {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  width: 13px;
  margin-left: 10px;
}

.direct-contact .direct-contact-form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 60px;
  border: none;
  background-color: var(--secondary-color);
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.direct-contact .direct-contact-form-btn:hover {
  background-color: var(--primary-color);
}

.direct-contact .direct-contact-form-btn h6 {
  color: white;
  font-size: 14px;
}

/* quality-cards code  */
.quality-cards .card {
  padding: 25px;
  display: flex;
  flex-direction: row;
  gap: 15px;
  background-color: var(--primary-color);
  border-radius: 10px;
}

.quality-cards .card .icon img {
  width: 21px;
}

.quality-cards .card h5 {
  font-size: 19px;
  color: white;
  margin-bottom: 10px;
}

.quality-cards .card p {
  font-size: 0.9rem;
  color: white;
}

/* why section code   */
.why .why-box-wrapper {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.why .why-box-wrapper h5 {
  font-size: 19px;
  margin-bottom: 10px;
}

.why .why-box-wrapper p {
  font-size: 14px;
  color: #575757;
}

.why .gallery-wrapper {
  display: flex;
  gap: 20px;
}

.why .gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.why .gallery-thumbs img {
  width: 125px;
  height: 125px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.why .gallery-preview {
  width: 100%;
  position: relative;
}

.why .gallery-preview img {
  width: 100%;
  height: 545px;
  object-fit: cover;
  border-radius: 10px;
}

/* project featured code  */
.featured-project .project-card {
  width: 100%;
  height: 470px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  position: relative;
}

.project-1 {
  background-image: url(../images/project/project-1.png);
}

.project-2 {
  background-image: url(../images/project/project-2.png);
}

.project-3 {
  background-image: url(../images/project/project-3.png);
}

.project-nyati {
  background-image: url(../images/project/Nyati\ Ongoing_1.jpeg);
}

.project-dlf {
  background-image: url(../images/project/DLF\ Group\ Chandigarh_1.jpeg);
}

.featured-project .project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0000004f;
  z-index: 1;
  border-radius: 20px;
}

.featured-project .project-card>* {
  position: relative;
  z-index: 2;
}

.featured-project .project-card .project-top {
  display: flex;
  justify-content: flex-end;
}

.featured-project .project-card .project-content {
  margin-top: auto;
  color: #fff;
  width: 40%;
  padding: 30px;
}

.featured-project .project-card .project-top .location {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 100px;
  padding: 10px 24px;
}

.featured-project .project-card .project-top .location {
  color: rgba(0, 0, 0, 0.8);
  position: relative;
}

.featured-project .project-card .project-top .location img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.featured-project .project-card .project-content h2 {
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 15px;
}

.featured-project .project-card .project-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.01em;
  background-color: rgba(255, 255, 255, 0.8);
}

.featured-project .project-card .project-content .common-btn {
  margin-top: 20px;
}

.featured-project div .view-all-work {
  margin: auto auto;
}

/* services we offer code */
.services-we-offer {
  background-color: var(--primary-color);
  color: #fff;
}

.services-we-offer .service-list {
  list-style: none;
  padding: 50px 0 15px 0;
  margin: 0;
}

.services-we-offer .service-list li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.01em;
  background-color: rgba(126, 127, 131, 1);
}

.services-we-offer .service-list li {
  position: relative;
  padding: 20px 20px 20px 40px;
  max-width: 100%;
}

.services-we-offer .service-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 1.6em;
  width: 12px;
  height: 12px;

  background-image: url("../images/icons/Ellipse-white.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.radius-14 {
  border-radius: 14px;
}

/* portfolio categories code */
.portfolio-categories .categories-list {
  list-style: none;
  padding: 15px 0 15px 0;
  margin: 0;
}

.portfolio-categories .categories-list li {
  position: relative;
  padding: 20px 20px 20px 40px;
  border-bottom: 1px solid rgba(126, 127, 131, 1);
}

.portfolio-categories .categories-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 1.6em;
  width: 12px;
  height: 12px;
  background-image: url("../images/icons/Ellipse-black.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.portfolio-categories .categories-list li::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 1.6em;
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/arrow-up-tilted.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/* gallery code */
.project-gallery .gallery-wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Each row */
.scroll-row {
  overflow: hidden;
  white-space: nowrap;
}

/* Track */
.scroll-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

/* Images */
.scroll-track img {
  width: 260px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

/* Animations */
.scroll-left .scroll-track {
  animation: scroll-left 30s linear infinite;
}

.scroll-right .scroll-track {
  animation: scroll-right 30s linear infinite;
}

/* Keyframes */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* foundation code */
.foundation-card {
  margin-top: 10px;
}

.primary-card {
  background-color: var(--secondary-color);
  color: #fff;
}

.secondary-card {
  color: rgba(0, 0, 0, 0.6);
}

.step {
  padding: 20px;
  border: 1px solid rgba(209, 209, 209, 1);
  border-radius: 6px;
}

.step p {
  padding: 10px 20px 10px 20px;
  border-radius: 5px;
}

.step.primary-card p {
  background-color: #fff;
  color: #000;
}

.step.secondary-card p {
  background-color: #000;
  color: #fff;
}

.foundation-list {
  margin-top: 15px;
  font-size: 14px;
  padding-left: 25px;
}

/* footer code starts */
.footer {
  background-color: var(--primary-color);
  color: #fff;
  padding: 40px 0;
}

.footer .contact-arrow {
  width: 60px;
  height: 60px;
}

.footer .contact-heading {
  font-size: 3em;
}

.footer .contact-text {
  margin: 30px 0;
}

.footer .social-icons a img {
  width: 32px;
  height: 32px;
}

.footer .footer-logo img {
  width: 130px;
  height: 130px;
}

.secondary-color {
  background-color: var(--secondary-color);
}

.footer .common-btn:hover .btn-icon {
  background-color: var(--secondary-color);
  transform: rotate(45deg);
}

/* .footer .email-input {
  padding: 10px 20px;
  border-radius: 40px;
} */
.email-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border-radius: 999px;
  padding: 12px 18px;
  max-width: 350px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.input {
  display: inline-flex;
  gap: 12px;
}

.email-input input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 12px;
  color: #333;
}

.email-input input::placeholder {
  color: #8b95a7;
}

.footer .contact-info {
  margin-top: 20px;
}

.footer .contact-info a {
  text-decoration: none;
  color: inherit;
}

.footer .contact-info p {
  padding: 8px 0;
  font-size: 14px;
}

.footer .contact-info p img {
  width: 32px;
  height: 32px;
  margin-right: 15px;
}

.footer .free-consultation-heading {
  font-size: 1.5em;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .featured-project .project-card .project-content {
    width: 100%;
  }
}


/* about us page /////////////////////////////////////////////////////////////////////////// */
.breadcrumbs {
  width: 100%;
  height: 80vh;
  padding-top: 7%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.breadcrumbs.about {
  background-image: url(../images/breadcrumb/about-breadcrumb.png);
}

.breadcrumbs.about::after {
  content: none;
}

.breadcrumbs.project {
  background-image: url(../images/why/why\ \(1\).png);
}

.breadcrumbs.contact {
  background-color: var(--primary-color);
}

.breadcrumbs.contact>* {
  position: relative;
  z-index: 2;
}

.breadcrumbs.project>* {
  position: relative;
  z-index: 2;
}

.breadcrumbs::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #0000004f;
  z-index: 1;
}

.breadcrumbs h2 {
  font-size: 52px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.breadcrumbs p {

  color: white;
}

/* our story section code  */
.our-story p {
  margin-bottom: 15px;
}

.our-story img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
}

/* Our Core Values code  */
.core-value .common-title h2, .core-value .common-title p {
  color: white;
}

.core-value {
  background-color: var(--primary-color);
}

.core-value .card {
  background-color: #ffffff;
}

.core-value .card h5 {
  color: var(--primary-color);
}

.core-value .card p {
  color: var(--primary-color);
}

/* meet leadership code  */
.meet-leadership .card {
  border: none;
}

.meet-leadership .card .card-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
}

.meet-leadership .card .card-body {
  padding-left: 0;
}

.meet-leadership .card h5 {
  font-size: 21px;
}

.meet-leadership .card p:nth-child(2) {
  color: var(--secondary-color);

}

.counter-wrapper {
  background-color: #F0F0F0;
  padding: 50px;
  border-radius: 10px;
}

.counter-wrapper .counter-card {
  text-align: center;
}

.counter-wrapper .counter-card h3 {
  color: var(--secondary-color);
  font-size: 47px;
  font-weight: 800;
}

.counter-wrapper .counter-card h5 {

  font-size: 19px;
  /* font-weight: 800; */
}

/* projects page code  */
.projects-section .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  border-color: transparent;
}

.projects-section .nav-tabs {
  border-bottom: none;
}

.projects-section .project-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px;
  gap: 20px;
  border-radius: 60px;
  border: none;
  background-color: #D1D1D14D;
  padding-left: 20px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  margin-bottom: 5px;
}

.projects-section .project-btn h6 {
  color: var(--primary-color);
  font-size: 15px;
}

.projects-section .project-btn .icon-btn {
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.projects-section .project-btn .icon-btn span {
  font-size: 14px;
  margin-bottom: 0;
  color: var(--primary-color);
}

.projects-section .projects-section .nav-tabs {
  background-color: #F7F7F7;
  border-radius: 13px;
  padding: 30px;

}

.projects-section .nav-tabs .nav-link.active .project-btn {
  background-color: var(--primary-color);
}

.projects-section .nav-tabs .nav-link.active .project-btn .icon-btn {
  background-color: var(--secondary-color);
}

.projects-section .nav-tabs .nav-link.active .project-btn h6 {
  color: white;
}

.projects-section .nav-tabs .nav-link.active .project-btn .icon-btn span {
  color: white;

}

.projects-section .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  border: 1px solid transparent;
}

.projects-section .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  background-color: initial;
}

.projects-section .nav-link {
  padding: 0rem 0.25rem;
}

/* contact page code  */
.contact-form form .input {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  gap: 3px;
}

.contact-form form .input label {
  color: var(--primary-color);
  font-size: 14px;
  margin-bottom: 1px;

}

.contact-form form .input input {
  height: 40px;
  border: 1px solid #D1D1D1;
  border-radius: 8px;
  padding-left: 10px;
}

.contact-form form .input textarea {
  height: 100px;
  border: 1px solid #D1D1D1;
  border-radius: 8px;
  padding-left: 10px;

}

.contact-form .contact-card {
  background-color: #F0F0F0;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 15px;
}

.contact-form .contact-card h5 {
  font-size: 18px;
  color: var(--primary-color);
}

.contact-form .contact-card h6 {
  font-size: 15px;
  color: black;
  font-weight: 400;
}

.contact-form .contact-card a {
  text-decoration: none;
}

.contact-form .contact-card p {
  font-size: 12px;
  color: #333;
}

.below-img .contact-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

/* portfolio page code  */
.portfolio-card {
  position: relative;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  height: 200px;
  overflow: hidden;
}

.portfolio-card img {
  position: absolute;
  border-radius: 10px;
  height: 200px;
  object-fit: cover;
  transition: all .3s ease;
}

.portfolio-card:hover img {
  transform: scale(1.04);
}

.portfolio-card .portfolio-btn {
  padding: 10px 20px;
  background-color: #D1D1D1;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  border-radius: 100px;
  color: var(--primary-color);
}

.designer {
  position: relative;
  overflow: hidden;

}

.designer .row>* {
  position: relative;
  z-index: 2;
}

.designer::after {
  content: "";
  position: absolute;
  top: 60px;
  right: 60px;
  width: 250px;
  height: 60%;
  background-image: url(../images/portfolio/Vector.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

@media screen and (max-width:1000px) {
  .designer::after {
    content: none;
  }
}

.designer h5 {
  color: white;
}

.designer-box {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.designer-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid rgb(255, 255, 255);
}

.designer-box h6 {
  font-size: 20px;
  color: white;
}

.designer-box p {
  /* font-size: 20px; */
  color: rgb(194, 194, 194);
}

.designer .row {
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 50px;
  overflow: hidden;

}

/* service section page code  */
.services-section .card {
  padding: 10px;
  border: 1px solid #D1D1D1;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
  height: -webkit-fill-available;
}

.services-section .card .card-img img {
  border-radius: 12px;
  height: 200px;
  object-fit: cover;
}

.services-section .card .card-body {
  padding: 0px;
}

.services-section .card .card-body h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.services-section .card .card-body p {
  font-size: 14px;
}

.services-section .card ul li {
  font-size: 14px;
  margin-bottom: 10px;
}

.services-section .card ul {
  padding-left: 1rem;
  margin-bottom: 0;
}

.services-section .card .common-btn {
  width: 162px;
}

.additional-services .btn-wrapper {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;
}

.additional-services .additional-btn {
  display: flex;
  align-items: center;
  border: 1px solid #D1D1D1;
  border-radius: 15px;
  padding: 15px;
  gap: 10px;
  margin-bottom: 5px;
}

.additional-services .additional-btn img {
  width: 15px;
  height: 15px;
}

.additional-services .additional-btn h6 {
  font-size: 14px;
  color: var(--primary-color);
}

/* project details  */
.project-details {
  position: relative;
}

.project-details .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 50px;
  width: 100%;
  padding: 0 50px;

}

.project-details .heading .breadcrumb {
  margin-bottom: 0;
}

.project-details .location-btn {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
  border-radius: 100px;
  background-color: #9e9e9e;
}

.project-details .location-btn img {
  width: 20px;
}

.project-details .location-btn h6 {
  color: rgb(0, 0, 0);
}

.breadcrumb li, .breadcrumb li a, .breadcrumb-item+.breadcrumb-item::before, .breadcrumb-item.active {
  color: white;
  text-decoration: none;
  font-size: 17px;
}

/* service details page  */
.service-details .detail-heading h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.service-details .detail-heading .disc {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-details .detail-heading .disc h6 {
  background-color: var(--secondary-color);
  color: white;
  padding: 10px 15px;
  border-radius: 100px;
}

.service-details .detail-heading .disc p {

  color: #7E7F83;

}

.service-details .details-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 45px;
}

.service-details .details-body .details-list {
  display: flex;
  gap: 55px;
}

.service-details .details-body .details-list li {
  margin-bottom: 10px;
}

.service-details .details-body p, .service-details .details-body li {
  color: #7E7F83;
}

.service-details .project-details-box {
  border-radius: 14px;
  padding: 30px;
  background-color: #F0F0F0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-details .project-details-box .detail-item {
  border-bottom: 1px solid #7E7F83;
  padding-bottom: 20px;
}

.service-details .project-details-box .detail-item:nth-last-child(1) {
  border-bottom: 1px solid #7e7f8300;
  padding-bottom: 0px;
}

.service-details .project-details-box .detail-item h6 {
  color: #7E7F83;
  font-size: 13px;
  margin-bottom: 8px;
}

.service-details .project-details-box .detail-item p {
  color: var(--primary-color);
  font-size: 13px;
}

/* thank you page code  */
.thankyou-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e6f9f0, #ffffff);
  font-family: Arial, sans-serif;
}

.thankyou-container {
  text-align: center;
  background: #fff;
  padding: 50px 40px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  width: 90%;
}

.checkmark {
  width: 80px;
  height: 80px;
  margin: auto;
  background: var(--secondary-color);
  color: #fff;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
}

.thankyou-container h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: var(--primary-color);
  font-weight: 700;
}

.thankyou-container p {
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}