@import url("bootstrap.min.css");

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Light.woff") format("woff"),
    url("../fonts/OpenSans-Light.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Regular.woff") format("woff"),
    url("../fonts/OpenSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans-medium.woff") format("woff"),
    url("../fonts/open-sans-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Semibold.woff") format("woff"),
    url("../fonts/OpenSans-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Bold.woff") format("woff"),
    url("../fonts/OpenSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-ExtraBold.woff") format("woff"),
    url("../fonts/OpenSans-ExtraBold.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --primary-dark-blue: #061e3c;
  --secondry-dark-blue: #143663;
  --primary-light-blue: #5595b3;
  --secondry-light-blue: #579099;
  --primary-sky-blue: #279dba;
  --text-blue: #64b0df;
  --text-yellow: #e3a648;
  --text-dark-blue: #3d817e;
  --green: #076f13;
  --primary-light-green: #51751e;
  --dark-brown: #7a3230;
  --primary-blue: #2962a3;
  --purple: #5419a6;
}

body {
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  scroll-behavior: smooth;
}
main,
footer {
  overflow: hidden;
}
h1,
.h1 {
  font-size: 92px;
  font-weight: 900;
}
h2,
.h2 {
  font-size: 40px;
  font-weight: 700;
}
h4,
.h4 {
  font-size: 20px;
  font-weight: 700;
}
h5,
.h5 {
  font-size: 18px;
  font-weight: 700;
}
h6,
.h6 {
  font-size: 16px;
  font-weight: 700;
}
.custom-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  box-sizing: border-box;
}
.filled-btn {
  min-width: 190px;
  height: 64px;
  padding: 0px 30px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  border: none;
  border-radius: 8px;
}
.blue-btn {
  min-width: 150px;
  height: 56px;
  padding: 0px 10px;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  border: none;
  border-radius: 8px;
}
.sm-content {
  display: none;
}
.blue-bg {
  background-color: var(--secondry-dark-blue);
}
.light-blue-bg {
  background-color: var(--secondry-light-blue);
}
.green-bg {
  background-color: var(--green);
}
.sky-blue-bg {
  background-color: var(--primary-sky-blue);
}
.white-bg {
  background-color: var(--white);
}
.text-blue {
  color: var(--text-blue);
}
.text-yellow {
  color: var(--text-yellow);
}
.text-dark-blue {
  color: var(--text-dark-blue);
}
.text-light-green {
  color: var(--primary-light-green);
}
.text-dark-brown {
  color: var(--dark-brown);
}
.text-primary-blue {
  color: var(--primary-blue);
}
.text-purple {
  color: var(--purple);
}
.text-center {
  text-align: center;
  max-width: 70%;
  margin: 0 auto 65px;
}
.space-between {
  margin-bottom: 30px;
}
.list-circle {
  list-style-type: circle !important;
  margin: 0;
  padding: 0;
}
.list-circle li {
  margin-bottom: 10px;
}

/* Header Base */
.header {
  padding: 15px 0 13px;
  background-color: #fff;
  border-top: 2px solid #061e3c;
  position: relative;
  z-index: 1000;
}

.logo-wrapper {
  width: 242px;
}
.close-menu{display: none;}

.nav-links ul {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.nav-links ul li {
  list-style: none;
  margin-right: 36px;
  position: relative;
}

.nav-links ul li a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease;
}

.nav-links ul li a:hover {
  color: #5595b3;
}

.nav-links ul li a.active {
  color: #279dba;
  font-weight: 700;
}

.nav-links ul li a .icon-wrapper {
  width: 12px;
  height: 12px;
  color: #000000;
  margin-left: 8px;
  position: absolute;
  object-fit: cover;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  vertical-align: middle;
  transition: 0.3s ease-in-out;
  right: -19px;
  top: 30%;
}

.nav-links ul li a:hover .icon-wrapper {
  transform: rotate(180deg);
  color: #5595b3;
}

/* Contact Button */
.contact-btn {
  width: 48px;
  height: 48px;
  background-color: #061e3c;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.phone-icon {
  color: #fff;
  font-size: 20px;
}
.contact-icon {
  text-decoration: none;
}
/* Submenu */
.submenu {
  position: absolute;
  top: 130%;
  left: -20px;
  background: #fff;
  min-width: 240px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 99;
}

.submenu ul {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.submenu ul li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  transition: 0.3s ease;
}

.submenu ul li a:hover {
  color: #5595b3;
}

.about-us-menu:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile Styles */
.menuicon {
  display: none;
  cursor: pointer;
  font-size: 26px;
  color: #061e3c;
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9997;
}

.mobile-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* hero section */
.hero-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 92px);
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: transparent
    radial-gradient(closest-side at 50% 50%, #123e580e 0%, #09192ed0 100%);
  width: 100%;
  height: 100%;
  z-index: 3;
}
.hero-section-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100vh - 92px);
}
.hero-section .hero-section-content .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: opacity 1s ease;
}
.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} /* Hide thumbnail smoothly */
.video-thumbnail.hidden {
  opacity: 0;
  pointer-events: none;
}
.hero-section-content .hero-section-heading {
  position: relative;
  z-index: 5;
  color: #fff;
  text-align: center;
  max-width: 670px;
}
.services-banner.hero-section-content .hero-section-heading,
.contact-us-hero.hero-section-content .hero-section-heading {
  max-width: 100%;
}
.services-banner.hero-section-content .hero-section-heading p,
.contact-us-hero.hero-section-content .hero-section-heading p {
  font-size: 24px;
  padding-top: 40px;
  max-width: 610px;
  margin: 0 auto;
}
.hero-section-heading span {
  font-size: 24px;
}
.hero-section-heading h1 {
  margin-bottom: 110px;
}
.hero-section-heading .filled-btn {
  min-width: 170px;
  height: 52px;
  padding: 0 24px;
  font-size: 16px;
  margin-bottom: 24px;
}
.hero-section-slider {
  position: absolute;
  bottom: 40px;
  max-width: 1520px;
  z-index: 5;
}
.hero-section-slider p {
  color: #fff;
  margin-bottom: 30px;
}
.logo-slider img {
  /* min-width: 140px; */
  max-width: 100%;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
  height: auto;
  object-fit: cover;
  display: flex;
  align-items: center;
  margin: auto;
}
.logo-slider img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}
.slick-slide {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.slick-track {
  display: flex !important;
  align-items: center !important;
}
/* expertise section */
.expertise {
  padding: 120px 0 25px;
}
.expertise .card-wrapper {
  border-radius: 8px;
  box-shadow: 0px 3px 26px #0000001a;
  background-color: #fff;
  padding: 32px 28px 28px 28px;
  text-align: center;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease-in-out;
}
.expertise .card-wrapper:hover {
  background-color: var(--secondry-dark-blue);
  color: var(--white);
}
.expertise .card-wrapper:hover .card-img-wrapper {
  background-color: var(--white) !important;
}
.expertise .card-wrapper:hover .card-img-wrapper svg path {
  fill: var(--secondry-dark-blue);
}
.expertise .card-wrapper .card-img-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 16px;
  transition: 0.3s ease-in-out;
}
.expertise .card-wrapper .card-img-wrapper svg {
  width: 40px;
  height: 40px;
  transition: 0.3s ease-in-out;
}
.card-wrapper h5 {
  max-width: 210px;
  margin: 0 auto 13px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-wrapper p {
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
}
/* about */
.about {
  padding: 80px 0 110px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 200px;
  width: 1500px;
  height: 1045px;
  background-image: url("../images/logo-water-mark.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
.about::after {
  content: "";
  position: absolute;
  bottom: 75px;
  left: 0;
  width: 1200px;
  height: 520px;
  background-color: #fff;
  box-shadow: 0px 0px 26px #0000001a;
  z-index: 1;
}

.about .about-content {
  position: relative;
  background-image: url("../images/about-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 16px;
  overflow: hidden;
  z-index: 3;
  padding: 65px 90px 90px 65px;
  margin-bottom: 135px;
}
.about .about-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(270deg, #010a159d 0%, #061e3c 100%);
  z-index: 1;
}
.about-content h2 {
  color: #fff;
  position: relative;
  z-index: 3;
  margin-bottom: 20px;
}
.about-content h2 span {
  font-weight: 400;
}
.about-content p {
  color: var(--white);
  position: relative;
  z-index: 3;
  margin: 0;
  width: 90%;
}
.about-content p:not(:last-child) {
  margin-bottom: 35px;
  font-weight: 100;
  letter-spacing: 1px;
  font-size: 15px !important;
}
.about-content .img-wrapper {
  position: relative;
  z-index: 3;
  justify-content: end;
  display: flex;
  margin-left: auto;
}
.about-vission {
  position: relative;
  z-index: 2;
}
.about-vission .vission-content {
  padding-right: 100px;
}
.vission-content h2 {
  max-width: 500px;
  margin-bottom: 30px;
  word-break: break-word;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.vission-content h2 span {
  margin-top: 10px;
}
.vission-content ul {
  padding: 0;
  margin: 0 0 0 0;
}
.vission-content ul li {
  list-style-type: none;
}
/* .vission-content ul li:not(:last-child) {
  margin-bottom: 15px;
} */
.vission-content ul li .list-wrapper {
  display: flex;
}
.list-wrapper .icon-wrapper {
  width: 60px;
  height: auto;
  transition: 0.3s ease;
  margin-right: 38px;
}
.list-wrapper .icon-wrapper img {
  min-width: 100%;
  height: auto;
}
.list-wrapper .content-wrapper ul {
  padding-left: 20px;
  margin: 0;
  display: flex;
  align-items: center;
}
.list-wrapper .content-wrapper ul li {
  margin-bottom: 0;
  list-style-type: circle;
  font-weight: 700;
}
.list-wrapper .content-wrapper ul li:not(:last-child) {
  margin-right: 30px;
}
.about-vission .vission-img-wraper {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  justify-content: end;
}
/* our services */
.our-services {
  padding: 35px 0 120px;
}
.services-wrapper .our-services {
  padding-top: 120px;
}
.our-services .our-services-heading h2 {
  margin-bottom: 20px;
}
.our-services .our-services-heading p {
  font-weight: bold;
}
.our-services .service-card-wrapper {
  padding: 22px;
  box-shadow: 0px 3px 26px #0000001a;
  border-radius: 8px;
  /* min-height: 416px; */
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card-wrapper .img-wrapper {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 22px;
  flex-shrink: 0;
}
.service-card-wrapper .img-wrapper img {
  min-width: 100%;
  height: max-content;
  object-fit: cover;
  min-height: 160px;
}
.our-services .service-card-wrapper .service-card-content .list-circle {
  padding-left: 30px;
}
.service-card-wrapper .service-card-content {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.service-card-content .content-heading {
  width: 25%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 120px;
  min-height: 100px;
  transition: justify-content 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.service-card-wrapper .content-heading .card-btn {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 30px);
}
.service-card-wrapper .content-heading h4 {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0;
}
.service-card-wrapper:hover .content-heading {
  justify-content: flex-start;
}
.service-card-wrapper:hover .content-heading h4 {
  transform: translateY(-8px);
}
.service-card-wrapper:hover .content-heading .card-btn {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
/* latest project */
.latest-project {
  padding: 120px 0px 140px;
  background: url("../images/latest-bg.png");
}
.latest-project,
.latest-project-content {
  color: var(--white);
  z-index: 1;
  position: relative;
}
.latest-project .latest-project-content h2 {
  margin-bottom: 20px;
}
.latest-project .latest-project-content .bold-text {
  max-width: 80%;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 28px;
}
.latest-project .latest-project-content .description {
  font-size: 24px;
  font-weight: 200;
  margin: 50px 0 60px;
}
.latest-project .latest-project-content button {
  color: #0f6ca7;
  border: 2px solid #0f6ca7;
}

/* our team */
.our-team {
  padding: 120px 0;
}
.our-team .team-content {
  max-width: 100%;
}
.our-team .team-content h2 {
  margin-bottom: 20px;
}
.our-team .team-content p {
  margin-bottom: 30px;
}
/* events */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
}
.event-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: center;
  transition: 0.3s ease-in-out;
}
.event-card .event-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-card .event-body {
  display: flex;
  flex-direction: column;
}
.event-meta {
  color: #143663;
  font-size: 16px;
  margin-bottom: 10px;
}
.event-meta .separator {
  margin: 0 8px;
  color: #b0b8c3;
}
.event-title {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 12px 0;
}
.event-desc {
  color: #383838;
  margin: 0 0 14px 0;
}
.event-link {
  margin-top: auto;
  color: #143663;
  text-decoration: none;
  font-weight: 600;
  text-align: end;
  width: fit-content;
  margin-left: auto;
}
.event-card:hover .event-link {
  color: #dd0000;
  transform: translateX(5px);
  transition: 0.3s ease-in-out;
}
.feature-clients-heading p {
  padding: 10px 0 0 !important;
}

/* featured clients */
.feature-clients {
  padding: 120px 0;
  background-color: #f5f5f5;
}

/* footer */
.site-footer {
  padding-top: 70px;
  background: transparent
    linear-gradient(258deg, #5595b3f0 0%, #2e5c83eb 44%, #143663e6 100%) 0% 0%
    no-repeat padding-box;
  color: #ffffff;
}
.site-footer .footer-top {
  align-items: baseline;
  gap: 20px;
  padding-bottom: 40px;
}
.footer-about .footer-logo {
  width: 180px;
}
.footer-about p {
  max-width: 420px;
  margin: 24px 0 33px 0;
}
.footer-about .footer-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
}
.footer-about .footer-link:hover {
  color: #d7e8f5;
}
.footer-list h6,
.footer-contact h6 {
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 20px;
}
.footer-contact a {
  text-decoration: none;
  color: var(--white);
}
.footer-list ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-list ul li {
  list-style: none;
  margin: 10px 0;
  position: relative;
  padding-left: 16px;
}
.footer-list ul li a {
  color: #e6f0f7;
  text-decoration: none;
}
.footer-list ul li a:hover {
  color: #ffffff;
}
.footer-list ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact .contact-item {
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
}
.footer-contact .contact-item i {
  margin-right: 10px;
}
.social-icons {
  display: flex;
  gap: 12px;
}
.social-icons a.facebook {
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  flex: 0 0 38px;
}
.social-icons a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50%;
}
.social-icons a:hover {
  background: rgba(255, 255, 255, 0.18);
}
.site-footer .footer-bottom {
  padding: 17px 0;
  background: transparent
    linear-gradient(268deg, #5595b3 0%, #2e5c83 44%, #14366385 100%) 0% 0%
    no-repeat padding-box;
  text-align: center;
  color: #ffffff;
}
.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

/* loader */
.preloader {
  position: fixed;
  inset: 0;
  background: #0b1a2b;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader .preloader-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.preloader .spinner {
  width: 56px;
  height: 56px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: #279dba;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin-bottom: 14px;
}
.preloader .preloader-text {
  color: #e7f6ff;
  font-weight: 600;
  letter-spacing: 0.4px;
}
/* Contact Form Page */
.contact-form-section {
  padding: 120px 0;
  background-color: #f8f9fa;
}

.contact-info h2 {
  color: var(--primary-dark-blue);
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 700;
}

.contact-info p {
  color: #666;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-form-section .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 24px;
}

.contact-text h6 {
  color: var(--primary-dark-blue);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-text p {
  color: #666;
  font-size: 16px;
  margin: 0;
}

.form-group label {
  display: block;
  color: var(--primary-dark-blue);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Open Sans";
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-sky-blue);
  box-shadow: 0 0 0 3px rgba(39, 157, 186, 0.1);
}

.form-group textarea {
  resize: none;
  min-height: 120px;
}

.contact-form .filled-btn {
  width: 100%;
  margin-top: 10px;
}

/* Form validation styles */
.form-group input:invalid,
.form-group textarea:invalid {
  border-color: #dc3545;
}

.form-group input:valid,
.form-group textarea:valid {
  border-color: #28a745;
}

/* contact form  */
.contact-form-wrapper {
  padding: 120px 0;
  background-color: #f5f5f5;
}
.form-wrapper {
  background: white;
  max-width: 1330px;
  margin: 0 0 0 auto;
  max-height: 100%;
  box-shadow: 0px 0px 10px #0000001a;
  border-radius: 32px;
  z-index: 0;
  overflow: hidden;
}
.form-banner-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.form-area {
  padding: 40px;
  width: 60%;
}
.contact-font {
  color: #143663;
  font-size: 32px;
  font-weight: bold;
}
.locations-card {
  position: absolute;
  left: 0;
  top: 8%;
  max-width: 436px;
  width: 100%;
  min-height: 670px;
  background: #fff;
  border-radius: 32px;
  padding: 59px 30px;
  box-shadow: 0 6px 18px rgba(20, 28, 40, 0.08);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.loc-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  padding-top: 19px;
}
.loc-item p {
  display: flex;
  align-items: center;
}

.loc-item h6 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #121212;
}
.loc-item p {
  font-size: 16px;
  color: #4b4b4b;
  margin: 0;
  line-height: 1.4;
}

.locations-divider {
  height: 1px;
  background: #e6e6e6;
  margin: 12px 0;
}
.ribbons {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  left: -32px;
}
.ribbon {
  display: flex;
  padding: 10px 0px 10px 14px;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  clip-path: polygon(100% 0, 95% 49%, 100% 100%, 0 100%, 0 0);
  width: 100%;
}
.ribbon.phone {
  background: #5595b3;
  width: 255px;
}
.ribbon.email {
  background: #143663;
  top: 20px;
  width: 355px;
}

/* right form area */
.form-area {
  flex: 1;
  padding: 40px 52px;
  position: relative;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.form-area .title {
  color: var(--deep-blue);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}
.form-area .subtitle {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 22px;
}

/* inputs */
.contact-form .form-control {
  border: 1px solid #b9b9b9;
  border-radius: 6px;
  padding: 12px 14px;
  box-shadow: none;
  height: 72px;
  transition: border-color 0.15s, box-shadow 0.15s;
  font-size: 16px;
  color: #383838;
}
.contact-form .form-control::placeholder {
  color: #383838;
}

.contact-form textarea.form-control {
  min-height: 182px;
  height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: none;
}
.contact-form .form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 0.12rem rgba(25, 156, 184, 0.12);
}

.submit-wrap {
  display: flex;
  justify-content: flex-end;
}

/* Services Page */
.services-wrapper .hero-section::before {
  content: none;
}
.portfolio {
  padding: 0 0 120px;
}
.portfolio-heading {
  padding-bottom: 45px;
}
.portfolio-heading p {
  font-weight: bold;
  font-size: 18px;
}
.portfolio .portfolio-content h5 {
  font-size: 20px;
  font-weight: bold;
}
.service-section {
  padding: 60px 0;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.image-card:hover img {
  transform: scale(1.05);
}

.image-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
  min-height: 70px;
  height: fit-content;
  max-width: 400px;
  margin: auto;
  padding: 0 30px;
}

.text-block h5 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.text-block p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0;
}

.text-block {
  margin-bottom: 30px;
}
/* Experience Page */
.projects {
  padding: 0;
}
.projects-space {
  padding-bottom: 120px;
}
.projects-heading {
  padding-bottom: 45px;
}
.projects-heading h2 {
  color: #ff8022;
}
.projects-heading h5 {
  font-size: 32px;
  font-weight: 300;
}
.project-slider {
  padding: 60px 0;
  position: relative;
}
.service-card-wrapper.experience-card {
  margin-bottom: 50px;
}
.card-wraper {
  padding: 35px 45px 50px 45px;
  background-color: white;
  box-shadow: 0px 0px 26px #0000001a;
  border-radius: 8px 0px 0px 8px;
}
.card-wraper .img-wrapper {
  margin-bottom: 33px;
}
.card-wraper .content-wrapper h4 {
  font-size: 24px;
  margin-bottom: 25px;
}
.card-wraper .content-wrapper p {
  color: #383838;
}

.card-wraper .content-wrapper .design-service {
  margin-left: 50px;
}

.card-wraper .content-wrapper .design-service ul {
  padding: 0px;
}

.card-wraper .content-wrapper .design-service ul li {
  list-style-type: circle;
  font-weight: 600;
}

.card-wraper .content-wrapper .design-service ul li:not(:last-child) {
  margin-bottom: 10px;
}
.slick-slide {
  padding: 15px;
}

.slick-dots {
  bottom: -40px;
}
.slick-dots li button:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #ff8022;
  background-color: transparent;
  opacity: 1;
  transition: all 0.3s ease;
}
.slick-dots li.slick-active button:before {
  background-color: #ff8022;
  border-color: #ff8022;
}
.slick-dots li button:hover:before {
  background-color: rgba(255, 128, 34, 0.2);
}

.project-card {
  display: flex;
  flex-direction: column;
}
.project-img {
  width: 357px;
  height: 265px;
  object-fit: cover;
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-info {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.project-info:hover {
  transform: translateY(-5px);
}

.project-info {
  padding: 29px 28px;
  text-align: center;
  margin-top: -40px;
  width: 95%;
  min-height: 180px;
}

.project-info h5 {
  margin-bottom: 8px;
}

.project-info p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 4px;
}

/* Slick Arrows */
.slick-prev,
.slick-next {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #e6e6e6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: 0.3s ease-in-out;
}
.slick-prev:hover,
.slick-next:hover {
  background-color: #5595b3;
}
.slick-prev:hover::before,
.slick-next:hover::before {
  color: #fff;
}
.slick-prev::before,
.slick-next::before {
  color: #000;
  font-size: 18px;
  opacity: 1;
  font-weight: bolder;
  line-height: normal;
  transition: 0.3s ease-in-out;
}

.slick-prev {
  left: -45px;
}

.slick-next {
  right: -45px;
}

/* media queries */

/* Large Desktop (≤1750px) */
@media (max-width: 1750px) {
  .locations-card {
    left: 5%;
  }
  .custom-container {
    max-width: 1400px;
    padding: 0 20px;
  }
  .about::before{
    width: 1380px;
    left: 185px;
    height: 945px;
  }
  .expertise {
    padding: 100px 0 25px;
  }
  .about {
    padding: 70px 0 100px;
  }
  .our-services {
    padding: 35px 0 100px;
  }
  .our-team {
    padding: 100px 0;
  }
  .feature-clients {
    padding: 100px 0;
  }
  .site-footer{
    padding-top: 60px;
  }
  .services-wrapper .our-services {
    padding-top: 100px;
  }
  .portfolio {
    padding: 0 0 100px;
  }
  .contact-form-wrapper {
    padding: 100px 0;
  }
}

/* Desktop (≤1550px) */
@media (max-width: 1550px) {
  .custom-container {
    max-width: 1200px;
    padding: 0 15px;
  }

  .about::before {
    width: 1300px;
    height: 900px;
  }
  .about::after {
    box-shadow: none;
    background-color: transparent;
  }

  .contact-form-wrapper {
    padding: 100px 0;
  }

  .form-wrapper {
    max-width: 1200px;
    max-height: 700px;
  }

  .locations-card {
    max-width: 400px;
    min-height: 580px;
    padding: 50px 25px;
  }

  .ribbons {
    left: -23px;
    margin-top: 0;
  }

  .form-area {
    padding: 35px 45px;
  }

  .contact-font {
    font-size: 28px;
  }

  .loc-item h6 {
    font-size: 18px;
  }

  .loc-item p {
    font-size: 15px;
  }

  .ribbon {
    padding: 10px 60px 10px 12px;
    font-size: 16px;
  }

  .expertise {
    padding: 100px 0 45px;
  }
  .nav-links ul li a .icon-wrapper {
    top: 25%;
  }
  .about::before{
    width: 1180px;
    left: 185px;
  }
}

/* Desktop (≤1366px) */
@media (max-width: 1366px) {
  .custom-container {
    max-width: 1140px;
    padding: 0 15px;
  }
  .nav-links ul li a {
    font-size: 15px;
  }

  .about::before {
    width: 1100px;
    height: 760px;
  }

  .contact-form-wrapper {
    padding: 80px 0;
  }

  .locations-card {
    max-width: 380px;
    padding: 45px 22px;
  }

  .form-area {
    padding: 30px 40px;
  }

  .form-wrapper > div:first-child {
    min-height: 350px;
  }
  .about::before{
    width: 1120px;
    left: 113px;
  }
  .expertise {
    padding: 80px 0 15px;
  }
  .about {
    padding: 60px 0 80px;
  }
  .our-services {
    padding: 25px 0 80px;
  }
  .our-team {
    padding: 80px 0;
  }
  .feature-clients {
    padding: 80px 0;
  }
  .site-footer{
    padding-top: 50px;
  }
  .services-wrapper .our-services {
    padding-top: 80px;
  }
  .portfolio {
    padding: 0 0 80px;
  }
  .contact-form-wrapper {
    padding: 80px 0;
  }
}

/* Large Tablet (≤1200px) */
@media (max-width: 1200px) {
  .custom-container {
    max-width: 960px;
    padding: 0 15px;
  }

  /* Generic */
  .sm-content {
    display: block;
  }

  /* Header */
  .logo-wrapper {
    width: 190px;
  }
  .nav-links ul li {
    margin-right: 20px;
  }
  .nav-links ul li a .icon-wrapper {
    width: 9px;
    height: 9px;
    right: -12px;
    top: 30%;
  }

  /* Hero */
  .hero-section-heading h1 {
    font-size: 60px;
  }

  .hero-section-heading span {
    font-size: 20px;
  }

  /* About */
  .about {
    padding: 0 0 50px;
  }
  .about-vission .vission-content {
    padding-right: 0px;
  }
  .about .about-content {
    padding: 65px 15px 40px 15px;
    margin-bottom: 30px;
  }

  /* Services */
  .our-services {
    padding-bottom: 80px;
  }
  .our-services .service-card-wrapper {
    min-height: 416px;
    margin-bottom: 30px;
  }

  .service-card-wrapper .content-heading {
    display: none;
  }
  .service-card-wrapper .service-card-content h4.sm-content {
    display: block;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
  }
  .service-card-wrapper .service-card-content ul {
    flex-grow: 1;
    margin-bottom: 20px;
  }
  .service-card-wrapper .service-card-content button.sm-content {
    display: block;
    margin: 0 auto;
    min-width: 150px;
  }
  .service-card-wrapper .service-card-content h4.sm-content {
    display: block;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
  }
  .service-card-wrapper .service-card-content ul {
    flex-grow: 1;
    margin-bottom: 20px;
  }
  .our-services .service-card-wrapper .service-card-content .list-circle {
    padding-left: 0;
  }
  .service-card-wrapper .service-card-content {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
  }
  /* team */
  .our-team {
    padding: 50px 0;
  }
  .team-img-wrapper {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .feature-clients {
    padding: 50px 0;
  }
  /* Expertise */
  .expertise {
    padding: 50px 0 45px;
  }

  /* Contact */
  .contact-form-wrapper {
    padding: 60px 0;
  }
  .locations-card {
    position: static;
    max-width: none;
    width: 100%;
    min-height: auto;
    margin-bottom: 30px;
    padding: 40px 30px;
  }
  .form-area {
    width: 100%;
    padding: 30px;
  }
  .ribbons {
    position: relative !important;
    left: -3.5%;
    max-width: 300px;
  }

  /* Portfolio */
  .portfolio-heading {
    padding-bottom: 15px;
  }

  /* Events */
  .events-grid {
    grid-template-columns: 1fr;
  }
  .event-card {
    grid-template-columns: 180px 1fr;
  }
}

/* Tablet (≤992px) */
@media (max-width: 992px) {
  .custom-container {
    max-width: 720px;
    padding: 0 15px;
  }
  .service-card-wrapper .service-card-content {
    flex-direction: column;
  }
  /* Menu */
  .menuicon {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
    box-shadow: -2px 0 18px rgba(0, 0, 0, 0.12);
    padding: 80px 24px 24px;
    flex-direction: column;
    align-items: flex-start !important;
    z-index: 9998;
    transition: right 0.3s ease;
  }
  
  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #061e3c;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
  }
  
  .close-menu:hover {
    color: #279dba;
  }

  .nav-links.open {
    right: 0;
  }
  .nav-links ul li a .icon-wrapper {
    width: 12px;
    height: 12px;
  }
  .nav-links ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-links ul li {
    margin-right: 0;
  }

  .submenu {
    position: static;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    background: none;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .submenu.open {
    opacity: 1;
    visibility: visible;
    max-height: 200px;
  }

  .submenu ul li a {
    padding: 6px 0 6px 20px;
  }

  .contact-btn {
    margin-top: auto;
  }

  body.menu-open {
    overflow: hidden;
  }

  .menuicon {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
    box-shadow: -2px 0 18px rgba(0, 0, 0, 0.12);
    padding: 80px 24px 24px;
    flex-direction: column;
    align-items: flex-start !important;
    z-index: 9998;
    transition: right 0.3s ease;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .submenu {
    position: static;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    background: none;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .submenu.open {
    opacity: 1;
    visibility: visible;
    max-height: 200px;
  }
  .submenu ul li a {
    padding: 6px 0 6px 20px;
  }
  .contact-btn {
    margin-top: auto;
  }
  body.menu-open {
    overflow: hidden;
  }
  .contact-icon {
    background-color: transparent;
    justify-content: start;
  }
  .project-img {
    width: 100%;
    height: auto;
  }
  /* Typography */
  h1,
  .h1 {
    font-size: 60px;
    font-weight: 900;
  }
  h2,
  .h2 {
    font-size: 30px;
  }
  h4,
  .h4 {
    font-size: 18px;
    font-weight: 700;
  }
  .our-services-heading.text-center,
  .feature-clients-heading.text-center {
    margin-bottom: 50px;
    max-width: 100%;
  }
  /* Hero */
  .hero-section {
    height: auto;
  }

  .hero-section-content {
    flex-direction: column;
    justify-content: center;
    height: 100vh;
  }

  .hero-section-heading h1 {
    font-size: 48px;
    margin-bottom: 40px;
  }

  .hero-section-heading span {
    font-size: 18px;
  }

  .hero-section-heading .filled-btn {
    min-width: 150px;
    height: 48px;
    font-size: 15px;
    padding: 0 20px;
    margin-bottom: 20px;
  }

  .blue-btn {
    min-width: 150px;
    height: 48px;
    font-size: 15px;
    padding: 0 20px;
  }

  .hero-section-slider {
    bottom: 20px;
  }

  .hero-section-slider p {
    margin-bottom: 16px;
  }

  /* About */
  .about::before {
    width: 800px;
    height: 550px;
  }
  .about-content .row {
    flex-direction: column-reverse;
  }
  .about-content .img-wrapper {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    margin-bottom: 10px;
    max-width: 300px;
  }
  .about .about-content {
    padding: 35px 20px;
    margin-bottom: 50px;
  }
  .about-vission .row {
    flex-direction: column-reverse;
  }
  .about-vission .vission-content {
    margin-top: 20px;
  }
  .about-vission .vission-img-wraper {
    display: flex;
    margin: 0 auto;
    justify-content: center;
  }
  .vission-content ul {
    margin: 0;
  }
  .list-wrapper .icon-wrapper {
    width: 50px;
    margin-right: 25px;
  }
  /* Services */
  .our-services {
    padding-bottom: 60px;
  }
  .our-services .service-card-wrapper {
    min-height: 416px;
    padding: 25px 35px;
  }
  .service-card-content .content-heading {
    width: 30%;
    height: 120px;
    min-height: 100px;
  }
  /* ltest project */
  .latest-project-img-wrapper {
    z-index: 0;
    opacity: 0.4;
  }
  .latest-project {
    padding: 50px 0px;
  }
  /* Contact */
  .contact-form-wrapper {
    padding: 50px 0;
  }
  .form-banner-img {
    display: none;
  }
  .form-wrapper {
    max-width: none;
    max-height: none;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .locations-card {
    padding: 35px 25px;
    margin-bottom: 25px;
    height: 100%;
    border-radius: 16px;
  }
  .form-area {
    padding: 25px;
  }
  .ribbons {
    left: -4%;
  }
  .text-block {
    margin-bottom: 20px;
  }
  .card-wraper .content-wrapper .design-service {
    margin-left: 0px;
  }
  .card-wraper img {
    min-height: 200px;
  }
  .portfolio {
    padding: 0 0 50px;
}
.about::before{
  display: none;
}
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .custom-container {
    max-width: 540px;
    padding: 0 15px;
  }

  /* Hero */
  .hero-section {
    height: auto;
  }

  .hero-section-heading .filled-btn {
    min-width: 140px;
    height: 44px;
    font-size: 14px;
    padding: 0 18px;
    margin-bottom: 18px;
  }

  .latest-project-content button,
  .team-content button,
  .blue-btn {
    min-width: 140px;
    height: 44px;
    font-size: 14px;
    padding: 0 18px;
  }

  .hero-section-content {
    height: 70vh;
  }

  .hero-section-heading {
    max-width: 90%;
  }

  .hero-section-heading h1 {
    font-size: 38px;
    margin-bottom: 32px;
  }

  .hero-section-heading span {
    font-size: 16px;
  }

  .hero-section-heading .filled-btn {
    width: 100%;
    max-width: 250px;
    padding: 10px 0;
  }

  .logo-slider img {
    min-width: 100px;
    max-width: 120px;
    height: 40px;
  }

  /* about */
  .about::before {
    width: 600px;
    height: 400px;
  }
  .list-wrapper .content-wrapper ul {
    flex-wrap: wrap;
  }
  .about-content .img-wrapper {
    width: 200px;
  }

  /* Services */
  .our-services {
    padding-bottom: 50px;
  }
  .our-services .service-card-wrapper {
    min-height: 416px;
    padding: 20px 30px;
    margin-bottom: 25px;
  }
  .service-card-wrapper .img-wrapper {
    margin-bottom: 16px;
  }
  .service-card-content .content-heading {
    width: 35%;
    height: 120px;
    min-height: 100px;
  }
  .service-card-content .content-heading h4 {
    font-size: 16px;
  }
  /* Contact */
  .contact-form-wrapper {
    padding: 40px 0;
  }
  .form-wrapper {
    border-radius: 12px;
  }
  .contact-form .form-control {
    height: 50px;
  }
      .ribbons {
        left: -5.5%;
    }
  /* Events */
  .event-media {
    width: 100%;
  }
  .event-card {
    display: flex;
    flex-direction: column;
  }
  .card-wraper {
    padding: 30px 15px 30px 30px;
  }

  /* Other sections */
  .services-banner.hero-section-content .hero-section-heading p,
  .contact-us-hero.hero-section-content .hero-section-heading p {
    font-size: 20px;
    padding-top: 20px;
  }

  .services-wrapper .our-services {
    padding-top: 50px;
  }

  .our-services-heading.text-center,
  .feature-clients-heading.text-center {
    margin-bottom: 20px;
  }

  .projects-heading {
    padding-bottom: 20px;
  }
  .footer-bottom p {
    font-size: 14px;
  }
}

/* Small Mobile (≤576px) */
@media (max-width: 576px) {
  h2,
  .h2 {
    font-size: 27px;
  }
  .custom-container {
    max-width: 100%;
    padding: 0 10px;
  }

  .hero-section {
    height: auto;
  }

  .hero-section-heading .filled-btn {
    min-width: 130px;
    height: 42px;
    font-size: 13px;
    padding: 0 16px;
    margin-bottom: 16px;
  }

  .blue-btn {
    min-width: 130px;
    height: 42px;
    font-size: 13px;
    padding: 0 16px;
  }

  .hero-section-content {
    height: 60vh;
  }

  .hero-section-heading h1 {
    font-size: 30px;
    margin-bottom: 24px;
  }

  .hero-section-heading span {
    font-size: 15px;
  }

  .hero-section-heading .filled-btn {
    font-size: 14px;
  }

  .hero-section-slider p {
    font-size: 14px;
  }

  .logo-slider {
    gap: 16px;
  }

  .logo-slider img {
    min-width: 80px;
    height: 35px;
  }

  .about::before {
    width: 400px;
    height: 280px;
    top: 10%;
    background-size: contain;
  }
  /* about */
  .service-card-wrapper .service-card-content h4.sm-content {
    margin-bottom: 0px;
  }
  .latest-project .latest-project-content .bold-text {
    margin-bottom: 0;
  }
  .service-card-wrapper .service-card-content ul {
    margin-bottom: 0px;
    padding-left: 0;
  }
  /* Services */
  .our-services {
    padding-bottom: 40px;
  }
  .our-services .service-card-wrapper {
    min-height: 416px;
    padding: 25px;
  }
  .service-card-wrapper .img-wrapper {
    margin-bottom: 14px;
  }
  .service-card-content .content-heading {
    width: 40%;
    height: 120px;
    min-height: 100px;
  }
  .service-card-content .content-heading h4 {
    font-size: 14px;
  }

  .contact-form-wrapper {
    padding: 30px 0;
  }
  .form-wrapper {
    border-radius: 8px;
    margin: 0 0;
  }

  .ribbons {
    flex-wrap: wrap;
    gap: 8px;
  }
  /* Events */
  .events-grid {
    grid-template-columns: 1fr;
  }
  .event-card {
    grid-template-columns: 180px 1fr;
  }
  .latest-project .latest-project-content .description {
    font-size: 15px;
    margin: 10px 0 20px;
  }
  .card-wrapper {
    text-align: center;
    padding: 18px;
    min-height: 200px;
  }

  .card-img-wrapper {
    width: 60px;
    height: 60px;
  }

  .card-wrapper h5 {
    font-size: 0.95rem;
  }
  .locations-card {
    border-radius: 8px;
  }
}

/* Extra Small Mobile (≤480px) */
@media (max-width: 480px) {
  .custom-container {
    padding: 0 5px;
  }

  .card-wrapper {
    text-align: center;
    padding: 18px;
    min-height: 200px;
  }

  .contact-form-wrapper {
    padding: 20px 0;
  }
  .form-wrapper {
    margin: 0;
    border-radius: 6px;
  }

  .ribbons {
    flex-direction: column;
    gap: 6px;
  }
}
