@charset "UTF-8";

/* General body styling */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
  background-color: #ecf0f0;
  margin: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2em;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

img {
  max-width: 100%;
  height: auto;
}

.text-center {
  text-align: center;
}

h2 {
  font-weight: 700;
  font-size: 2rem;
}

a {
  transition: all 0.3s ease;
  text-decoration: none !important;
  outline: none !important;
}

p {
  margin: 0 0 26px;
  line-height: 1.8;
}

*,
::after,
::before {
  box-sizing: border-box;
}

/* Header area */
.header-area {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 99;
  padding: 10px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  margin: 0 auto;
}

/* Logo */
.site-logo .logo img {
  display: block;
  max-width: 225px;
  width: 100%;
  height: auto;
}

/* Main nav wrapper */
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 99;
  padding: 20px 0px;
}

/* Hamburger toggle button */
.menu-toggle {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #FFF;
  display: block;
}

/* Menu area (mobile) */
.menu-area {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  flex-direction: column;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.menu-area.active {
  display: flex;
}

.menu-area ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}

.menu-area ul li {
  position: relative;
}

.menu-area ul li a {
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 500;
  padding: 8px 12px;
  display: block;
  transition: color 0.3s ease;
}

.menu-area ul li a:hover {
  color: #007bff;
}

/* Dropdown submenu */
.menu-area ul li.has-dropdown:hover .sub-menu {
  display: block;
}

.menu-area .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 180px;
  z-index: 100;
}

.menu-area .sub-menu li a {
  padding: 8px 15px;
  color: #333;
  white-space: nowrap;
}

.menu-area .sub-menu li a:hover {
  background: #f5f5f5;
  color: #007bff;
}

/* Right side button */
.nav-right-item .primary-btn {
  display: inline-flex;
  align-items: center;
  background: #007bff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.nav-right-item .primary-btn:hover {
  background: #0056b3;
}

.nav-right-item .btn-icon {
  display: inline-flex;
  margin-left: 8px;
}

/* Larger screens – desktop */
@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }

  .menu-area {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    box-shadow: none;
    padding: 0;
    width: auto;
  }

  .menu-area ul {
    flex-direction: row;
    gap: 20px;
  }

  .menu-area .sub-menu {
    position: absolute;
  }
}

/* hero-wrapper */
.hero-wrapper {
  background: url(../images/banner-final.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.banner-section {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  text-align: center;
  gap: 50px;
}

.banner-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.banner-content p {
  font-size: 1.1rem;
  color: #FFFFFF;
}

.banner-image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Larger screens: side-by-side layout */
@media (min-width: 992px) {
  .banner-section {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }

  .banner-content {
    flex: 1;
    max-width: 50%;
  }

  .banner-image {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
  }
}

/* Services/Why Choose Us grid */
.chooseUS h2 {
  max-width: 630px;
  margin: 0 auto;
}

.chooseUS-grid {
  display: grid;
  grid-gap: 26px;
  gap: 26px;
  grid-template-columns: 32.1% 32.1% 32.1%;
  grid-row-gap: 24px;
  padding-top: 30px;
}

.chooseUS-grid.smo {
  grid-template-columns: 23.6% 23.6% 23.6% 23.6%;
}

.chooseUS-grid.Hiring {
  grid-template-columns: 48.15% 48.15%;
}

.services-item {
  margin: 0;
  padding: 60px 35px 60px 35px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0px 0px 50px 11px #EEE;
  position: relative;
  text-align: left;
}

.services-item .services-icon {
  position: relative;
  transition: all .3s ease;
}

.services-item .services-icon .image-part .main-img,
.services-item .services-icon .image-part .hover-img {
  height: 70px;
  width: 70px;
}

.main-img {
  color: #1159f7;
}

.hover-img {
  color: #FFFFFF;
}

.services-item .services-icon .image-part .hover-img {
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  transform: scale(0);
  transition: all .3s ease;
}

.services-item .services-content {
  padding: 33px 0px 0px 0;
  position: relative;
}

.services-item .services-content .services-text .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 13px;
}

.services-item .services-content .services-text .title a {
  color: #161616;
}

.services-item .services-content .services-text .title a:hover {
  color: #FFFFFF;
}

.services-item .services-content .services-desc p {
  margin: 0;
  color: #444444;
}

.services-item .services-content .serial-number {
  position: absolute;
  right: 15px;
  top: -113px;
  font-size: 70px;
  font-weight: 600;
  line-height: 119px;
  color: #02010108;
  margin-bottom: 10px;
}

.services-item:hover {
  background-color: #014EF6;
}

.services-item:hover .services-icon .image-part .main-img {
  transform: scale(0);
}

.services-item:hover .services-icon .image-part .hover-img {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.services-item:hover .services-content .services-text .title a {
  color: #ffffff;
}

.services-item:hover .services-content .services-text .title a:hover {
  color: #f3c703;
}

.services-item:hover .services-content .services-desc p {
  color: #ffffff;
}

.services-item:hover .services-content .serial-number {
  color: #FFFFFF26;
}

/* About Section */
.about,
.faq {
  background-color: #ffffff;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-content {
  flex: 1 1 500px;
  max-width: 600px;
}

.about-content h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #222;
  font-weight: 700;
}

.about-content h2 .highlight {
  color: #0073e6;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    max-width: 100%;
  }

  .about-image {
    max-width: 100%;
  }
}

.two-column-layout {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 100%
}

.two-column-layout .column {
  flex: 1 1 48%;
  box-sizing: border-box;
}

/* Responsive: Stack on small screens */
@media (max-width: 768px) {
  .two-column-layout .column {
    flex: 1 1 100%;
  }
}


.faq-img-area {
  max-width: 49%px;
  position: relative;
}

.faq-img-area .faq-img {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.faq-img-area .faq-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.faq-img-area .faq-img .title {
  position: absolute;
  top: 40px;
  left: 30px;
  max-width: 400px;
  color: #FFFFFF;
  z-index: 2;
}

.faq-img-area .faq-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0c1e21;
  opacity: 0.25;
}

.faq-img-area .box-area {
  max-width: 239px;
  bottom: 0;
  right: 0;
  left: inherit;
  padding: 15px 0 0 15px;
  border-top-left-radius: 12px;
  border-top-right-radius: 0;
}

.box-area {
  background: #FFF;
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 241px;
  width: 100%;
  padding: 15px 15px 0 0;
  border-top-right-radius: 12px;
}

.faq-img-area .box-area::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  left: -12px;
  right: inherit;
}

.box-area::after {
  left: auto;
  top: auto;
  right: -13px;
  bottom: 0;
}

.faq-img-area .box-area::before {
  left: inherit;
  right: 0;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.box-area::after,
.box-area::before {
  content: "";
  position: absolute;
  left: 0;
  top: -13px;
  width: 13px;
  height: 13px;
  background: url('data:image/svg+xml,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg" class="w-11 h-11"><path d="M11 1.54972e-06L0 0L2.38419e-07 11C1.65973e-07 4.92487 4.92487 1.62217e-06 11 1.54972e-06Z" fill="%23ffffff"></path></svg>');
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.faq-img-area .box-area::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  left: -12px;
  right: inherit;
}

.box-area::after {
  left: auto;
  top: auto;
  right: -13px;
  bottom: 0;
}

.call-box {
  background-color: #0049e3;
  border-radius: 10px;
  padding: 25px 20px 30px;
  text-align: left;
}

.call-box .title {
  color: #FFFFFF;
  font-weight: 600;
  max-width: 145px;
  margin-bottom: 29px;
}

.call-box .call-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #0c1e21;
  color: #ffffff;
  font-size: 20px;
  height: 52px;
  width: 52px;
  border-radius: 50%;
  margin-bottom: 9px;
}

.call-box .number {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}

/* Accordion Container */
.tj-faq {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

/* Accordion Item */
.accordion-item {
  margin-bottom: 16px;
}

/* Accordion Title Button */
.faq-title {
  width: 100%;
  background-color: #ecf0f0;
  color: #333;
  padding: 16px;
  text-align: left;
  font-size: 16px;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.3s ease;
  font-weight: 600;
}

.faq-title:hover,
.accordion-item.active .faq-title {
  background-color: #ecf0f0;
}

/* Accordion Body */
.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  background: #ecf0f0;
  transition: max-height 0.3s ease, padding 0.3s ease;
  border-radius: 0px 0px 8px 8px;
}

.accordion-item.active .accordion-body {
  padding: 0px 16px 16px 16px;
  max-height: 500px;
  /* Adjust as needed for content height */
}

/* Paragraph Style */
.faq-text p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.faq-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
}

.accordion-item.active .faq-title {
  border-radius: 8px 8px 0 0;
}

.faq-title .icon {
  font-size: 20px;
  font-weight: bold;
  margin-left: 10px;
  transition: transform 0.3s ease;
}


/* Footer */
.row {
  display: flex;
  flex-wrap: wrap;
}

ul {
  list-style: none;
}

.footer {
  background-color: #0244d6;
  padding: 70px 0;
}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #0049e3;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}

.cop {
  color: #FFF;
  padding: 10px;
}

.footer-col p,
.footer-col h5 {
  color: #FFFFFF;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

/*responsive*/
@media(max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media(max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .site-logo .logo img {max-width:145px; }
  .header-area .container {padding: 0 1em;}
  .nav-wrapper {padding:10px 0px;}
  .chooseUS-grid {
    display: block;
  }

  .services-item {
    margin-bottom: 30px;
  }

  .about-image {
    flex: 1 1 1px;
  }

  .footer {
    padding-bottom: 10px;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .menu-area ul li a {
    color: #333;
  }
}


:root {
  --bg: #f7f8fb;
  --card: #ffffff;
  --accent: #0b74da;
  --muted: #6b7280;
  --radius: 12px;
  --shadow: 0 6px 18px rgba(16, 24, 40, 0.06);

}

.contact-card {
  width: 100%;
  max-width: 720px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  box-sizing: border-box;
  text-align: left;
}

p.lead {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.full {
  grid-column: 1/-1;
}

label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #111827;
}

input,
textarea, 
select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #e6e9ef;
  font-size: 14px;
  box-sizing: border-box;
  background: transparent;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.hint {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

 

.btn {
  background: var(--accent);
  color: white;
  border: 0;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  width: auto;
}

.btn-reset {
  background: #e6e9ef;
  color: #111827;
}

.btn[disabled] {
  opacity: .6;
  cursor: default;
}

.status {
  font-size: 13px;
  margin-top: 12px;
}

.error {
  color: #b91c1c;
}

.success {
  color: #065f46;
}

.space-between {
  justify-content: space-between;
  align-items: center;
}

.flex-gap {
  display: flex;
  gap: 8px;
}

@media (max-width:640px) {
  .grid {
    grid-template-columns: 1fr
  }
}