html,
body {
 width: 100%;
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 overflow-x: hidden;
 font-family: "Plus Jakarta Sans", sans-serif;
}
p.text-size {
 font-size: 18px;
}
/* ========================
   Navbar Styles
=========================== */
.topbar {
 background-color: #030743;
}
a.nav-link {
 font-size: 18px;
 color: #000;
 font-weight: 600;
}

.navbar-nav .nav-link:hover {
 color: #fc253f;
}
.header-navbar {
 position: relative;
 width: 100%;
 transition: all 0.3s ease;
 background-color: #fff;
 z-index: 999;
}
img.logo {
 height: 60px;
 width: 100%;
}
img.footerlogo {
 width: 200px;
}
/* Sticky effect when scrolled */
.header-navbar.sticky {
 position: fixed;
 top: 0;
 left: 0;
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 animation: slideDown 0.3s ease;
}

/* Optional animation */
@keyframes slideDown {
 from {
  transform: translateY(-100%);
 }
 to {
  transform: translateY(0);
 }
}
@media (max-width: 991.98px) {
 .mobile-overlay {
  position: relative;
  z-index: 1050; /* Higher than banner */
 }

 .mobile-overlay .navbar-collapse {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1040;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 }
 .nav-link {
  font-size: 18px;
  font-weight: 600;
  color: #000; /* ensure readable on white/transparent */
  padding: 10px 15px;
  border-radius: 6px;
  transition: background 0.2s ease;
 }
}

.btn-orange {
 background-color: #fc253f;
 color: #fff;
 font-weight: 600;
 border: none;
 padding: 10px 20px;
 border-radius: 6px;
 transition: background-color 0.3s ease;
}

.btn-orange:hover {
 background-color: #001431;
 color: #fff;
}

/* ========================
   Hero Section Base Styles
=========================== */
.hero-section {
 background-color: #030743;
 background-image: url("../images/hero-bg.png");
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
 min-height: 100vh;
 overflow: hidden;
 position: relative;
}

.hero-image-container {
 display: flex;
 align-items: center;
 justify-content: center;
 height: 100%;
 position: relative;
}

.hero-image-box {
 position: relative;
 max-width: 100%;
 width: 100%;
}

.hero1-images {
 position: relative;
 width: 100%;
 max-width: 600px;
 margin: 0 auto;
}

.hero1-images .image1 {
 position: relative;
 width: 100%;
 z-index: 1;
}

.hero1-images .image1 img {
 width: 100%;
 height: auto;
 display: block;
 border-radius: 20px;
  aspect-ratio: 4/3;        /* Taller shape (fix cropped head) */
  object-fit: cover;
  object-position: center top;
}

.hero1-images .image2 {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 width: 100%;
 height: 100%;
 z-index: 2;
 border-radius: 20px;
 overflow: hidden;
}

.hero1-images .image2 img {
 width: 100%;
 height: 100%;
 display: block;
 object-fit: cover;
 object-position: center top;
 transition: transform 0.5s ease;
 border-radius: 20px;

}

.hero-section h1 {
 font-size: 3rem;
 line-height: 1.3;
}

.hero-section p {
 max-width: 500px;
}
.badge {
 background-color: #fc253f;
 border-color: #fc253f;
 font-weight: 500;
 font-size: 14px;
 letter-spacing: 1px;
 padding: 7px 14px;
 border-radius: 6px;
 border: none;
 margin-bottom: 20px;
}
.btn-warning {
 background-color: #fc253f;
 border-color: #fc253f;
 color: #000;
}
.btn-warning:hover {
 background-color: #fff;
 color: #000 !important;
}
.btn-outline-light:hover {
 background-color: #fff;
 color: #000;
}

@media (max-width: 992px) {
 .hero-section {
  text-align: center;
  padding: 80px 15px;
 }

 .hero-section h1 {
  font-size: 2.25rem;
 }

 .hero1-images {
  margin-top: 20px;
  max-width: 400px;
 }

 .d-flex.gap-3 {
  flex-direction: column;
  align-items: center;
 }
}

@media (max-width: 576px) {
 .hero-section {
  padding: 60px 15px;
 }

 .hero-section h1 {
  font-size: 1.75rem;
 }

 .hero1-images {
  max-width: 300px;
 }

 .hero-section p {
  font-size: 1rem;
 }
}

/* ========================
   Consultancy Styles
=========================== */
.consultancy-section {
 padding: 80px 0;
 background-color: #fff;
}

.img-stack {
 position: relative;
 max-width: 100%;
 display: flex;
 justify-content: flex-end;
}

.img-main {
 width: 80%;
 max-width: 450px;
 border-radius: 12px;
 display: block;
 position: relative;
 z-index: 1;
}

.img-overlay {
 position: absolute;
 left: 0;
 top: 20%;
 transform: translateY(-50%);
 width: 300px;
 border: 5px solid #fff;
 border-radius: 12px;
 box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
 animation: jump-2 5s linear infinite;
 z-index: 2;
}

@keyframes jump-2 {
 0% {
  transform: translateY(-50%) translateX(0);
 }
 25% {
  transform: translateY(-60%) translateX(0);
 }
 50% {
  transform: translateY(-50%) translateX(0);
 }
 75% {
  transform: translateY(-55%) translateX(0);
 }
 100% {
  transform: translateY(-50%) translateX(0);
 }
}

@media (max-width: 768px) {
 .img-stack {
  flex-direction: column;
  align-items: center;
  text-align: center;
 }

 .img-main {
  width: 100%;
 }

 .img-overlay {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: 70%;
  margin-top: 20px;
  animation: none;
 }
}

.section-title {
 font-weight: 700;
 font-size: 2.8rem;
}

.section-subtitle {
 color: #fc253f;
 font-weight: 600;
 text-transform: uppercase;
 font-size: 0.9rem;
 letter-spacing: 1px;
}

.feature-icon {
 background-color: #fff2e6;
 border-radius: 50%;
 width: 60px;
 height: 50px;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fc253f;
 font-size: 1.5rem;
}

.feature-text h5 {
 font-weight: 600;
 margin-bottom: 5px;
}

@media (max-width: 992px) {
 .section-title {
  font-size: 2rem;
  text-align: center;
 }
 .section-subtitle {
  text-align: center;
 }

 .btns-row {
  justify-content: center;
  text-align: center;
 }

 .img-overlay {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  margin-top: 20px;
 }
}
.image-section {
 padding: 60px 0;
}

.image-wrapper {
 position: relative;
 display: inline-block;
 max-width: 100%;
}

.main-img {
 border-radius: 12px;
 width: 100%;
 height: auto;
}

@media (max-width: 767.98px) {
 .consultancy-section {
  padding: 60px 0;
  text-align: center;
 }

 .img-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
 }

 .img-big {
  width: 100%;
  max-width: 90%;
  border-radius: 12px;
 }

 .img-small {
  width: 60%;
  max-width: 250px;
  position: relative !important;
  top: auto;
  left: auto;
  transform: none;
  animation: none;
  border: 4px solid #fff;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  margin-top: 0;
 }

 .section-title {
  font-size: 1.8rem;
  line-height: 1.4;
 }

 .section-subtitle {
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
 }

 .btns-row {
  justify-content: center;
  margin-top: 20px;
  gap: 1rem;
 }

 .btn.btn-orange {
  font-size: 1rem;
  padding: 10px 20px;
 }

 .text-muted {
  font-size: 0.95rem;
  margin-bottom: 1rem;
 }
}

/* ========================
   Success  Styles
=========================== */
.success-section {
 background-color: #eaeef1;
 padding: 80px 0;
}

.section-title {
 font-size: 2.5rem;
 font-weight: bold;
}

.subheading-btn {
 background-color: white;
 color: #000;
 font-weight: 500;
 font-size: 0.75rem;
 letter-spacing: 1px;
 padding: 6px 14px;
 border-radius: 6px;
 border: none;
 margin-bottom: 20px;
}

.img-circle {
 width: 60px;
 height: 60px;
 background-color: #fff2e6;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
 margin: 0 10px;
}

.img-circle img {
 width: 28px;
 height: 28px;
}

.service-title {
 font-weight: 600;
 font-size: 1.1rem;
 margin-bottom: 5px;
 color: #000;
}

.service-text {
 color: #5c6770;
 font-size: 0.9rem;
}

.view-more-btn {
 background-color: #030743;
 color: white;
 padding: 10px 24px;
 border-radius: 30px;
 font-weight: 500;
 border: none;
 display: inline-flex;
 align-items: center;
 gap: 8px;
 text-decoration: none;
}

.view-more-btn i {
 background-color: #081120;
 font-size: 1rem;
}

@media (max-width: 768px) {
 .service-box {
  margin-bottom: 30px;
 }
 .subheading-btn {
  text-align: center;
 }
 .view-more-btn {
  text-align: center;
 }
}

/* ========================
   Services Styles
=========================== */

.card-wrapper {
 position: relative;
 overflow: hidden;
 border-radius: 15px;
 text-align: center;
 color: #fff;
 box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.card-wrapper img {
 width: 100%;
 height: auto;
 transition: transform 0.5s ease;
 display: block;
}

.card-wrapper:hover img {
 transform: scale(1.1);
}

.card-wrapper::after {
 content: "";
 position: absolute;
 top: -100%;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(255, 255, 255, 0.2);
 z-index: 2;
 animation: none;
}

.card-wrapper:hover::after {
 animation: swipeDown 1s forwards;
}

@keyframes swipeDown {
 0% {
  top: -100%;
  opacity: 1;
 }
 50% {
  top: 0;
  opacity: 1;
 }
 100% {
  top: 100%;
  opacity: 0;
 }
}

.card-overlay {
 position: absolute;
 bottom: 0;
 width: 100%;
 padding: 30px 15px 100px;
 z-index: 3;
}
.icon-circle {
 width: 60px;
 height: 60px;
 background-color: #fff;
 color: #fc253f;
 display: flex;
 justify-content: center;
 align-items: center;
 border-radius: 50%;
 margin: 0 auto 15px;
 font-size: 24px;
 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.card-title {
 font-size: 1.25rem;
 font-weight: 600;
}

.card-subtitle {
 font-size: 0.85rem;
 text-transform: uppercase;
 letter-spacing: 0.5px;
 margin-top: 5px;
}

.btn-custom-view {
 position: absolute;
 bottom: -1px;
 left: 50%;
 transform: translateX(-50%);
 background-color: #fff;
 padding: 12px 20px;
 border: 1px solid #d5d5d5;
 border-bottom: none;
 border-radius: 15px 15px 0 0;
 font-size: 1rem;
 font-weight: 500;
 text-decoration: none;
 color: #000;
 transition: all 0.3s ease;
 z-index: 4;
}

.btn-custom-view:hover {
 background-color: #fc253f;
 color: #fff;
 border: none;
}

@media (max-width: 768px) {
 .card-wrapper {
  margin-bottom: 26px;
 }
 .btn-custom-view {
  right: 20px;
  padding: 12px;
  font-size: 0.8rem;
 }
}

/* ========================
   Newsletter  Styles
=========================== */
.newsletter {
 background-color: #030743;
 background-image: url("../images/hero-bg.png");
 background-position: center center;
 background-repeat: no-repeat;
 background-size: cover;
 padding: 80px 0px 0px;
}
.newletter-title {
 font-size: 3rem;
 font-weight: bold;
}

.newsletter-section {
 background: rgba(255, 255, 255, 0.05);
 padding: 30px;
 border-radius: 15px;
 backdrop-filter: blur(10px);
 border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-input {
 background: rgba(255, 255, 255, 0.1);
 border: 1px solid rgba(255, 255, 255, 0.2);
 color: #ffffff;
 padding: 15px 20px;
 border-radius: 50px;
 font-size: 0.95rem;
 width: 100%;
 margin-bottom: 15px;
}

.newsletter-input::placeholder {
 color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
 outline: none;
 border-color: #00d4aa;
 box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.2);
 background: rgba(255, 255, 255, 0.15);
}

.newsletter-submit {
 background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
 border: none;
 color: white;
 padding: 15px 25px;
 border-radius: 50px;
 font-weight: 600;
 cursor: pointer;
 transition: all 0.3s ease;
 display: flex;
 align-items: center;
 justify-content: center;
 width: 100%;
}

.newsletter-submit:hover {
 background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
 transform: translateY(-2px);
}
.brand-logo {
 font-size: 2.5rem;
 font-weight: 700;
 color: #ffffff;
 text-decoration: none;
 display: flex;
 align-items: center;
 gap: 10px;
 margin-bottom: 20px;
}

.brand-logo:hover {
 color: #00d4aa;
 transition: color 0.3s ease;
}

.brand-logo .asterisk {
 color: #00d4aa;
 font-size: 1.8rem;
}

.brand-description {
 color: #b0b0b0;
 font-size: 0.95rem;
 line-height: 1.6;
 margin-bottom: 25px;
}

/* ========================
   Footer  Styles
=========================== */
.footer-section {
 background-color: #030743;
 color: #ffffff;
 padding: 60px 0 30px;
 position: relative;
 overflow: hidden;
}

.footer-section::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 pointer-events: none;
}
.phone-button {
 background: linear-gradient(135deg, #fc253f 0%, #e02137 100%);
 color: white;
 padding: 12px 25px;
 border: none;
 border-radius: 50px;
 font-weight: 600;
 font-size: 0.9rem;
 text-decoration: none;
 display: inline-flex;
 align-items: center;
 gap: 10px;
 transition: all 0.3s ease;
 box-shadow: 0 4px 15px rgba(252, 37, 63, 0.4);
}

.phone-button:hover {
 background: linear-gradient(135deg, #fc253f 0%, #e02137 100%);
 transform: translateY(-2px);
 box-shadow: 0 6px 20px rgba(252, 37, 63, 0.4);
 color: white;
}

.phone-icon {
 background: rgba(252, 37, 63, 0.1);
 padding: 8px;
 border-radius: 50%;
 margin-left: 10px;
}

.footer-heading {
 font-size: 1.25rem;
 font-weight: 600;
 color: #ffffff;
 margin-bottom: 25px;
 position: relative;
}

.footer-heading::after {
 content: "";
 position: absolute;
 bottom: -8px;
 left: 0;
 width: 30px;
 height: 2px;
 background: #fc253f;
}

.footer-links {
 list-style: none;
 padding: 0;
 margin: 0;
}

.footer-links li {
 margin-bottom: 12px;
}

.footer-links a {
 color: #b0b0b0;
 text-decoration: none;
 font-size: 0.95rem;
 transition: all 0.3s ease;
 position: relative;
}

.footer-links a:hover {
 color: #00d4aa;
 padding-left: 5px;
}

.location-info h5,
.inquiry-info h5 {
 font-size: 1.25rem;
 font-weight: 600;
 color: #ffffff;
 margin-bottom: 15px;
}

.location-text,
.inquiry-text {
 color: #b0b0b0;
 font-size: 0.95rem;
 line-height: 1.6;
}

.cta-border {
 border-top: 1px solid rgba(255, 255, 255, 0.301);
 padding-top: 60px;
}
.social-links {
 display: flex;
 gap: 15px;
}

.social-links a {
 background: rgb(255 255 255 / 25%);
 color: #ffffff;
 padding: 12px;
 border-radius: 50%;
 text-decoration: none;
 transition: all 0.3s ease;
 display: flex;
 align-items: center;
 justify-content: center;
 width: 40px;
 height: 40px;
}

.social-links a:hover {
 background: #fc253f;
 transform: translateY(-3px);
 box-shadow: 0 5px 15px rgba(252, 37, 63, 0.4);
}

.scroll-top {
 position: fixed;
 bottom: 20px;
 right: 20px;
 background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
 color: white;
 border: none;
 border-radius: 50%;
 width: 50px;
 height: 50px;
 display: flex;
 align-items: center;
 justify-content: center;
 cursor: pointer;
 transition: all 0.3s ease;
 box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.scroll-top:hover {
 transform: translateY(-3px);
 box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
}

@media (max-width: 768px) {
 .footer-section {
  padding: 40px 0 20px;
 }

 .brand-logo {
  font-size: 2rem;
 }

 .phone-button {
  padding: 10px 20px;
  font-size: 0.85rem;
 }

 .newsletter-section {
  padding: 20px;
 }

 .social-links {
  justify-content: center;
 }
}

.about-hero {
 background: linear-gradient(rgba(3, 7, 67, 0.9), rgba(3, 7, 67, 0.9)),
  url("../images/breadcrumb.jpg");
 background-repeat: no-repeat;
 background-size: cover;
 background-position: center;
 color: #fff;
 padding: 100px 0;
}

.about-hero h1 {
 font-size: 3rem;
 font-weight: 700;
}

.breadcrumb-custom {
 background: none;
 padding: 0;
 margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
 content: ">";
 color: #fff;
 padding: 0 8px;
}

.breadcrumb a {
 color: #fff;
 text-decoration: none;
}

.breadcrumb .active {
 color: #ccc;
}

.title-underline {
 width: 80px;
 height: 4px;
 background-color: #f44336;
 margin-bottom: 20px;
}

@media (max-width: 576px) {
 .about-hero h1 {
  font-size: 2rem;
 }
}

.img-big {
 margin-top: 50px !important;
}
@keyframes jump-2 {
 0% {
  transform: translateY(0);
 }
 25% {
  transform: translateY(-20px);
 }
 50% {
  transform: translateY(0);
 }
 75% {
  transform: translateY(-10px);
 }
 100% {
  transform: translateY(0);
 }
}
.img-small {
 position: absolute;
 right: 0;
 top: 0;
 animation: jump-2 5s linear infinite;
}

.card-section {
 display: flex;
 flex-wrap: wrap;
 gap: 20px;
 justify-content: center;
}

.card {
 background-color: #fff;
 border-radius: 15px;
 box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
 overflow: hidden;
 flex: 1 1 300px;
 max-width: 360px;
 transition: transform 0.3s;
}

.image-container {
 position: relative;
 overflow: hidden;
}

.image-container img {
 width: 100%;
 height: auto;
 transition: transform 0.5s ease;
 display: block;
}

.image-container:hover img {
 transform: scale(1.1);
}

.card-number {
 position: absolute;
 top: 10px;
 right: 10px;
 background: #fff;
 color: #fc253f;
 padding: 5px 12px;
 font-weight: bold;
 border-radius: 0 8px 0 8px;
 font-size: 14px;
}

.card h4 {
 font-size: 20px;
 font-weight: 600;
 padding: 15px 20px 5px;
 margin: 0;
 color: #121212;
}

.card p {
 font-size: 15px;
 padding: 0 20px 15px;
 color: #555;
}

.contact-section {
 padding: 60px 20px;
 background: #ffffff;
}

.contact-container {
 display: flex;
 flex-wrap: wrap;
 gap: 30px;
 max-width: 1200px;
 margin: auto;
 justify-content: space-between;
}

.contact-info,
.contact-form {
 flex: 1 1 500px;
 background: #f6fafa;
 padding: 30px;
 border-radius: 16px;
 box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.contact-info h5 {
 color: #fc253f;
 font-weight: bold;
 margin-bottom: 10px;
}

.contact-info h2 {
 color: #122831;
 margin-bottom: 15px;
 font-size: 28px;
}

.contact-info p {
 color: #666;
 margin-bottom: 0;
}

.info-box .info-item {
 display: flex;
 gap: 15px;
 align-items: flex-start;
 margin-bottom: 20px;
 border-bottom: 1px dashed #ccc;
 padding-bottom: 15px;
}

.info-item i.icon {
 font-size: 20px;
 color: #fc253f;
 background: #fff;
 padding: 10px;
 border-radius: 50%;
 box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
 min-width: 40px;
 text-align: center;
}

.info-item small {
 color: #888;
 font-size: 13px;
}

.info-item strong {
 color: #122831;
 display: block;
 font-weight: 600;
}

.contact-form h6 {
 color: #fc253f;
 font-weight: bold;
 margin-bottom: 10px;
}

.contact-form h3 {
 color: #122831;
 margin: 0;
}

.underline {
 display: inline-block;
 width: 60px;
 height: 5px;
 background: #fc253f;
 margin: 10px 0 20px;
 border-radius: 5px;
}

textarea[name="textarea-142"] {
  min-height: 120px;
}


.why-choose-us .container {
  max-width: 800px;
  margin: auto;
}

.why-choose-us h2 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #030743;
}

.reasons {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.reasons li {
  background: white;
  border-left: 5px solid #fc253f;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  font-size: 16px;
  position: relative;
  color: #333;
}