:root {
  --primary-color: #10264d;
  --primary-light: #1a3a6b;
  --primary-dark: #0a1a35;
  --secondary-color: #ff6b9d;
  --accent-color: #0066cc;
  --text-dark: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --light-gray: #e8e8e8;
  --transition: all 0.3s ease;

  --font-heading: "TT Neoris", "Poppins", sans-serif;
  --font-body: "TT Commons Pro", "Open Sans", sans-serif;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(16, 38, 77, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

body {
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 18px;
  color: var(--text-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--primary-color);
}

h1 {
  font-size: 32px;
  line-height: 66px;
}

h2 {
  font-size: 28px;
  line-height: 40px;
}

h3 {
  font-size: 20px;
  line-height: 28px;
}

p {
  text-align: justify;
}

.header {
  z-index: 1000;
  padding: 30px 0 50px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.logo-bg {
  background-color: var(--primary-color);
  padding: 30px 20px;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 15px rgba(16, 38, 77, 0.15);
}

.logo-bg img {
  display: block;
  height: auto;
  width: 175px;
}

.left-nav,
.right-nav {
  flex: 1;
}

.left-nav {
  margin-left: 150px;
}

.right_nav {
    margin-right: 120px;
}

.right-nav {
  justify-content: flex-end;
}

.left-nav .nav,
.right-nav .nav {
  margin: 0;
}

.main-nav .nav-link,
.left-nav .nav-link,
.right-nav .nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 0.5px;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.main-nav .nav-link::after,
.left-nav .nav-link::after,
.right-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.main-nav .nav-link:hover::after,
.left-nav .nav-link:hover::after,
.right-nav .nav-link:hover::after {
  width: 100%;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: var(--transition);
}

.social-icon:hover {
  transform: translateY(-2px);
}

.social-icon svg {
  width: 15px;
  height: 15px;
}

.mobile-menu-nav .nav-link {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  border-bottom: 1px solid rgba(16, 38, 77, 0.1);
  transition: var(--transition);
}

.mobile-menu-nav .nav-link:hover {
  color: var(--primary-light);
  padding-left: 10px;
}

@media (max-width: 991px) {
  .header {
    padding: 20px 0 40px;
  }
  .logo-bg {
    padding: 20px 30px;
  }
  .logo-bg img {
    width: 130px;
  }
  .header .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .social-icons-mobile .social-icon {
    width: 28px;
    height: 28px;
  }

  .social-icons-mobile .social-icon svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 576px) {
  .social-icons-mobile .social-icon {
    width: 24px;
    height: 24px;
  }

  .social-icons-mobile .social-icon svg {
    width: 14px;
    height: 14px;
  }
}

.hero-section {
  position: relative;
  padding-top: 115px;
}
.hero-wrapper {
  min-height: 730px;
  overflow: hidden;
}

.hero-swiper {
  z-index: 1;
}

.hero-overlay {
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  z-index: 3;
  pointer-events: none;
}

.hero-text {
  pointer-events: auto;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 66px;
  color: var(--white);
  max-width: 630px;
  margin: 0 auto;
}

.hero-text p {
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}
.brand-logos-bar .container-fluid {
  padding: 0;
}

.hero-mobile-text {
  display: none;
}

@media (max-width: 991px) {
  .header {
    background-color: #10264d !important;
    box-shadow: none !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .header .container {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .logo-center {
    position: static !important;
    transform: none !important;
    margin-left: 14px;
  }

  .logo-bg {
    background-color: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .logo-bg img {
    width: 130px !important;
  }

  .navbar-toggler svg path {
    stroke: #ffffff !important;
  }

  .social-icons-mobile {
    display: none !important;
  }

  .mobile-menu-nav {
    background-color: #10264d;
  }

  .mobile-menu-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
    font-size: 15px;
  }

  .mobile-menu-nav .nav-link:hover {
    color: #ffffff !important;
    padding-left: 14px !important;
  }

  .brand-logos-bar {
    background-color: #ffffff !important;
    border-bottom: 1px solid #ebebeb;
    padding: 18px 0 !important;
  }

  .hero-section {
    padding-top: 0 !important;
    display: flex;
    flex-direction: column;
  }

  .hero-wrapper {
    min-height: 380px !important;
    position: relative;
  }

  .hero-overlay {
    display: none !important;
  }

  .hero-content {
    display: none !important;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }

  .swiper-pagination {
    bottom: 12px !important;
  }

  .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5) !important;
    width: 8px;
    height: 8px;
  }

  .swiper-pagination-bullet-active {
    background-color: #ffffff !important;
    opacity: 1 !important;
  }

  .hero-mobile-text {
    display: block;
    background-color: #10264d;
    padding: 36px 35px 48px;
  }

  .hero-mobile-text h1 {
    font-family: var(--font-heading), "Poppins", sans-serif;
    font-size: 40px;
    line-height: 37px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .hero-section {
    padding-top: 115px !important;
  }

  .hero-overlay {
    display: block !important;
  }

  .hero-content {
    display: flex !important;
  }

  .hero-mobile-text {
    display: none !important;
  }
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--white);
  width: 50px;
  height: 50px;
  z-index: 4;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 50px;
  font-weight: bold;
}

.swiper-pagination {
  bottom: 20px !important;
  z-index: 4;
}

.swiper-pagination-bullet {
  background-color: var(--white);
  opacity: 0.5;
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--white);
}

.brand-logo {
  height: 100%;
  max-width: 150px;
  object-fit: contain;
}

.brand-logos-swiper {
  overflow: hidden;
  padding: 10px 0;
}

.brand-logos-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}
.brand-logos-mobile {
  display: none;
}
.brand-logos-desktop {
  display: block;
}

@media (max-width: 991px) {
  .brand-logos-mobile {
    display: block;
    margin-top: 90px;
  }
  .brand-logos-desktop {
    display: none;
  }
}
.products-section {
  padding: 80px 0;
}
.product-row {
  margin-bottom: 130px;
}

.product-row:last-child {
  margin-bottom: 0;
}

.product-title {
  font-weight: 500;
  font-size: 32px;
  line-height: 66px;
  color: #000000;
}

.product-description {
  font-size: 11px;
  line-height: 18px;
  color: #000000;
  max-width: 309px;
}

.learn-more {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #000000;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 20px;
  border: 1px solid #000;
  text-decoration: none;
  transition: var(--transition);
}

.learn-more:hover {
  color: var(--primary-light);
  gap: 10px;
}

.service-item {
  transition: var(--transition);
}

.service-item:hover {
  background-color: var(--primary-color) !important;
}

.service-item:hover h3,
.service-item:hover p {
  color: var(--white) !important;
}

.card {
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.bg-gradient {
  background: linear-gradient(135deg, #e8f4f8 0%, #f5f9fc 100%);
}

@media (max-width: 1199px) {
     .left-nav {
          margin-left: 30px;
  }
  .right_nav {
      margin-right: 0;
  }
}

@media (max-width: 1024px) {
  .hero-wrapper {
    min-height: 450px;
  }

  .hero-text h1 {
    font-size: 28px;
    line-height: 38px;
  }

  .product-row {
    margin-bottom: 60px;
  }
 
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 90px;
  }
  h1 {
    font-size: 24px;
    line-height: 32px;
  }

  h2 {
    font-size: 22px;
    line-height: 30px;
  }

  .hero-wrapper {
    min-height: 400px;
  }

  .hero-text h1 {
    font-size: 24px;
    line-height: 32px;
  }

  .hero-text p {
    font-size: 11px;
    line-height: 18px;
  }

  .product-row {
    margin-bottom: 40px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .products-section {
    margin: 0 25px;
  }
}

@media (max-width: 480px) {
  h1,
  .hero-text h1 {
    font-size: 20px;
    line-height: 28px;
  }

  h2 {
    font-size: 18px;
    line-height: 26px;
  }

  .hero-wrapper {
    min-height: 320px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.about-us-section {
  position: relative;
  overflow: hidden;
  border-top: 80px solid #10264d;
}

.content-side {
  background: #ffffff;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.content-side::after {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  width: 100px;
  height: 100%;
  background: #ffffff;
  transform: skewX(-5deg);
  z-index: 1;
}

.content-wrapper {
  padding: 180px 60px 180px 150px;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.section-label {
  font-size: 19px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.section-title {
  font-size: 32px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 25px;
  line-height: 34px;
}

.section-description {
  font-size: 11px;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.image-side {
  background: #e9ecef;
  position: relative;
  overflow: hidden;
}

.image-wrapper {
  position: absolute;
  top: 0;
  left: -50px;
  width: calc(100% + 50px);
  height: 100%;
  overflow: hidden;
}

.diagonal-image {
  width: 110%;
  height: 100%;
  object-fit: inherit;
  transform-origin: center;
  margin-left: -5%;
}

.value-cards-wrapper {
  margin-top: -60px;
  position: relative;
  z-index: 10;
  padding: 0 20px 80px;
}

.value-cards {
  background: #10264d;
  border-radius: 20px;
  padding: 10px 20px 25px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.value-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}

.icon-wrapper svg {
  width: 100%;
  height: 100%;
}

.value-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  text-align: center;
  max-width: 88px;
}

.challenge-section {
  padding: 280px 0 180px;
  position: relative;
}

.challenge-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.challenge-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(248, 249, 250, 0.9);
  z-index: 1;
}

.challenge-section .container {
  position: relative;
  z-index: 2;
}
.challenge-text {
  font-family: var(--font-heading);
  font-size: 20px;
  color: #2d629f;
  line-height: 25px;
  font-weight: 500;
  margin: 0 auto 50px;
  max-width: 816px;
  text-align: center;
}

.journey-illustration {
  max-width: 600px;
  margin: 0 auto;
}

.journey-illustration svg {
  width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .about-us-section .row {
    min-height: auto;
    flex-direction: column-reverse;
  }

  .content-side::after {
    display: none;
  }

  .content-wrapper {
    padding: 60px 30px 100px;
    max-width: 100%;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 45px;
  }

  .image-wrapper {
    position: relative;
    left: 0;
    width: 100%;
    height: 400px;
    transform: none;
  }

  .diagonal-image {
    width: 100%;
    transform: none;
    margin-left: 0;
  }

  .value-card:nth-last-child(-n + 2) {
    margin-bottom: 0;
  }

  .challenge-text {
    font-size: 18px;
  }
  .product-row:nth-child(odd) {
    flex-direction: column-reverse;
  }
}

@media (max-width: 575px) {
  .content-wrapper {
    padding: 80px 35px 130px;
  }

  .section-description {
    font-size: 12px;
    margin-bottom: 45px;
  }

  .value-card:last-child {
    margin-bottom: 0;
  }

  .challenge-text {
    font-size: 16px;
  }
  .section-label {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.trusted-partner-section {
  position: relative;
  padding: 100px 20px 250px;
  overflow: visible;
}

.section-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.trusted-partner-section .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 32px;
  font-weight: 500;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 35px;
}

.hero-subtitle {
  font-size: 19px;
  font-weight: 400;
  color: #ffffff;
  max-width: 550px;
  text-align: center;
  margin: 0 auto 60px;
  line-height: 30px;
}

.value-cards-row {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}

.value-card-item {
  flex: 0 0 auto;
  max-width: 250px;
}

.card-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #0d1b3e;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
}

.value-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.value-card-title {
  font-size: 20px;
  font-weight: 500;
  color: #0f2c4c;
  margin-bottom: 15px;
  line-height: 23px;
}

.value-card-desc {
  font-weight: 400;
  font-size: 11px;
  color: #0d1b3e;
  line-height: 20px;
  margin: 0;
  text-align: center;
}

.what-we-do-section {
  padding: 200px 0;
}

.section-heading {
  font-size: 32px;
  font-weight: 500;
  color: #0d1b3e;
  margin-bottom: 25px;
}

.section-subheading {
  font-size: 20px;
  font-weight: 400;
  color: #0d1b3e;
  line-height: 30px;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 15px;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  height: 100%;
}

.service-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.service-text {
  flex: 1;
}

.service-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: #0d1b3e;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .value-cards-row {
    gap: 20px;
  }

  .value-card-item {
    max-width: 280px;
  }

  .card-content {
    padding: 30px 25px;
  }

  .section-heading {
    font-size: 32px;
  }

  .section-subheading {
    font-size: 16px;
  }
  .value-cards-row {
    position: relative;
  }
}

@media (max-width: 767px) {
  .trusted-partner-section {
    padding: 60px 20px 80px;
  }

  .hero-title {
    text-align: left;
  }

  .hero-subtitle {
    font-size: 15px;
    text-align: left;
  }

  .value-card-item {
    max-width: 100%;
    width: 100%;
  }

  .what-we-do-section {
    padding: 60px 20px;
  }

  .service-card {
    padding: 20px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
  }

  .service-title {
    font-size: 15px;
  }
  .brand-logo {
    height: 100px;
  }

  .brand-logos-mobile {
    padding: 0 !important;
  }

  .what-we-do-section .row.justify-content-center.mt-5 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .what-we-do-section .row.justify-content-center.mt-5 > [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: unset !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
  }

  .service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 16px 10px;
    height: 100%;
    gap: 5px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
    margin-bottom: 10px;
  }

  .service-title {
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
  }
}

@media (max-width: 575px) {
  .value-cards-wrapper {
    margin-top: 0;
    padding: 0;
  }
  .value-cards-wrapper .container {
    padding: 0;
    width: 100%;
  }
  .value-cards {
    padding: 30px 35px;
    border-radius: 0;
    gap: 15px;
  }
  .value-title {
    font-size: 8px;
    line-height: 15px;
  }

  .value-card .icon-wrapper img {
    width: 45px;
    height: 45px;
  }

  .value-icon {
    width: 70px;
    height: 70px;
  }

  .value-card-title {
    font-size: 24px;
  }

  .value-card-desc {
    font-size: 12px;
    line-height: 15px;
  }
  .challenge-section {
    display: none;
  }
  .hero-subtitle {
    font-size: 12px;
    line-height: 15px;
    max-width: 300px;
    margin-left: 0;
  }
}

.our-edge-section {
  position: relative;
  padding: 150px 20px 250px;
  overflow: visible;
}

.our-edge-section .section-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.our-edge-section .container {
  position: relative;
  z-index: 2;
}

.edge-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}

.edge-description {
  font-size: 18px;
  color: #e0e6ed;
  line-height: 1.8;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.mission-vision-row {
  position: absolute;
  margin-top: 60px;
  gap: 40px;
}

.mission-vision-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 45px 70px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mission-vision-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0f2c4c 0%, #2d5a8e 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card-heading {
  font-size: 28px;
  font-weight: 700;
  color: #0d1b3e;
  margin-bottom: 20px;
}

.card-text {
  font-size: 15px;
  color: #0d1b3e;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
}

@media (max-width: 991px) {
  .our-edge-section {
    padding: 150px 20px;
  }

  .edge-title {
    font-size: 38px;
  }

  .mission-vision-row {
    gap: 30px;
  }

  .mission-vision-card {
    padding: 35px 30px;
    min-height: 260px;
    text-align: center;
  }

  .card-heading {
    font-size: 24px;
  }

  .card-text {
    font-size: 14px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .edge-title {
    font-size: 32px;
  }

  .mission-vision-row {
    position: relative;
    margin-top: 40px;
    gap: 20px;
  }

  .mission-vision-card {
    padding: 30px 25px;
    min-height: auto;
  }

  .card-heading {
    font-size: 22px;
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  .edge-title {
    font-size: 28px;
  }

  .mission-vision-card {
    padding: 25px 20px;
    border-radius: 40px;
  }

  .card-heading {
    font-size: 20px;
  }

  .card-text {
    font-size: 12px;
    line-height: 15px;
  }
}

.inside-brands-section {
  padding: 200px 0 0;
}

.brands-heading {
  font-size: 40px;
  font-weight: 700;
  color: #0f2c4c;
  margin-bottom: 20px;
}

.brands-subheading {
  font-size: 17px;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.article-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.article-image {
  width: 100%;
  height: 250px;
  background: #c4c4c4;
  overflow: hidden;
}

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

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

.article-content {
  padding: 30px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 0.5px solid #4743c9;
  border-top: none;
  border-radius: 0 0 20px 20px;
}

.article-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f2c4c;
  margin-bottom: 15px;
  line-height: 1.4;
}

.article-excerpt {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #0f2c4c;
  text-decoration: none;
  transition:
    gap 0.3s ease,
    color 0.3s ease;
}

.article-link:hover {
  gap: 12px;
  color: #1a4d8f;
}

.article-link svg {
  transition: transform 0.3s ease;
}

.article-link:hover svg {
  transform: translateX(3px);
}

.btn-see-more {
  padding: 15px 50px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: #0f2c4c;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 60px;
}

.btn-see-more:hover {
  background: #1a4d8f;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(15, 44, 76, 0.3);
}

@media (max-width: 991px) {
  .inside-brands-section {
    padding: 100px 20px;
  }

  .brands-heading {
    font-size: 32px;
  }

  .brands-subheading {
    font-size: 16px;
    margin-bottom: 50px;
    text-align: center;
  }

  .article-image {
    height: 220px;
  }

  .article-title {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .brands-heading {
    font-size: 28px;
  }

  .brands-subheading {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .article-image {
    height: 200px;
  }

  .article-content {
    padding: 25px 20px;
  }

  .article-title {
    font-size: 17px;
  }

  .article-excerpt {
    font-size: 13px;
  }

  .btn-see-more {
    padding: 12px 40px;
    font-size: 15px;
    margin-top: 0;
  }
}

@media (max-width: 575px) {
  .brands-heading {
    font-size: 26px;
  }

  .brands-subheading {
    font-size: 14px;
  }

  .article-card {
    border-radius: 15px;
  }

  .article-image {
    height: 180px;
  }

  .article-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .article-excerpt {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .article-link {
    font-size: 14px;
  }

  .btn-see-more {
    padding: 12px 35px;
    font-size: 14px;
    width: 100%;
    max-width: 250px;
    margin-top: 30px;
  }
  .catalogue-section {
    display: none;
  }
}

.catalogue-section {
  padding: 100px 0;
}

.catalogue-card {
  background: #0d1b3e;
  border-radius: 30px;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
}

.catalogue-content {
  padding-right: 40px;
}

.catalogue-title {
  font-size: 44px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.catalogue-description {
  font-size: 17px;
  color: #e0e6ed;
  line-height: 1.7;
  margin-bottom: 35px;
}

.catalogue-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition:
    gap 0.3s ease,
    opacity 0.3s ease;
}

.catalogue-link:hover {
  gap: 15px;
  opacity: 0.9;
}

.catalogue-link svg {
  transition: transform 0.3s ease;
}

.catalogue-link:hover svg {
  transform: translateX(3px);
}

.catalogue-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .catalogue-card {
    padding: 50px 40px;
  }

  .catalogue-content {
    padding-right: 20px;
    margin-bottom: 40px;
  }

  .catalogue-title {
    font-size: 36px;
  }

  .catalogue-description {
    font-size: 16px;
  }

  .catalogue-mockup {
    height: 300px;
  }

  .main-catalogue {
    width: 200px;
    height: 270px;
  }
}

@media (max-width: 767px) {
  .catalogue-section {
    padding: 60px 15px;
  }

  .catalogue-card {
    padding: 40px 30px;
    border-radius: 20px;
  }

  .catalogue-content {
    padding-right: 0;
    margin-bottom: 50px;
    text-align: center;
  }

  .catalogue-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .catalogue-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .catalogue-link {
    font-size: 16px;
    justify-content: center;
  }

  .catalogue-mockup {
    height: 280px;
    margin: 0 auto;
  }

  .main-catalogue {
    width: 180px;
    height: 250px;
  }
  .edge-title,
  .section-heading {
    font-size: 28px;
    text-align: left;
  }
  .edge-description,
  .section-subheading {
    font-size: 12px;
    line-height: 15px;
    text-align: left !important;
  }
}

@media (max-width: 575px) {
  .catalogue-card {
    padding: 35px 25px;
  }

  .catalogue-title {
    font-size: 28px;
  }

  .catalogue-description {
    font-size: 14px;
  }

  .catalogue-link {
    font-size: 15px;
  }

  .catalogue-mockup {
    height: 250px;
  }

  .main-catalogue {
    width: 160px;
    height: 220px;
  }
}

.partner-section {
  padding: 450px 0 30px;
}

.partner-card {
  background: #0f1f3d;
  border-radius: 30px;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
}

.card-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.3;
}

.partner-card .row {
  position: relative;
  z-index: 2;
}

.partner-content {
  padding-right: 40px;
}

.partner-title {
  font-size: 32px;
  font-weight: 500;
  color: #ffffff;
  line-height: 65px;
}

.partner-description {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  line-height: 28px;
  margin-bottom: 40px;
  max-width: 550px;
}

.email-form {
  max-width: 550px;
}

.form-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 50px;
  padding: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.form-wrapper:focus-within {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.email-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 15px 25px;
  font-size: 16px;
  color: #495057;
  background: transparent;
}

.email-input::placeholder {
  color: #adb5bd;
}

.submit-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0f2c4c;
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.submit-button:hover {
  background: #1a4d8f;
  transform: scale(1.05);
}

.submit-button svg {
  width: 24px;
  height: 24px;
}

.partner-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.containers-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
}

.partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 991px) {
  .partner-card {
    padding: 50px 40px;
  }

  .partner-title {
    font-size: 38px;
  }

  .partner-description {
    font-size: 18px;
    margin-bottom: 35px;
  }

  .partner-image {
    padding: 0;
  }

  .containers-img {
    max-width: 350px;
  }
}

@media (max-width: 767px) {
  .partner-section {
    padding: 30px 15px 30px;
  }

  .partner-card {
    padding: 30px 20px;
    border-radius: 20px;
  }
  .partner-content {
    padding-right: 10px;
  }

  .partner-card .row {
    flex-wrap: nowrap;
    align-items: center;
  }

  .partner-card .col-md-6:first-child {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .partner-card .col-md-6:last-child {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .partner-title {
    font-size: 22px;
    margin-bottom: 12px;
    line-height: 30px;
  }

  .partner-description {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .form-wrapper {
    padding: 5px;
    border-radius: 40px;
  }

  .submit-button {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
  }

  .submit-button svg {
    width: 18px;
    height: 18px;
  }

  .partner-image {
    margin-top: 0;
    padding: 0;
  }

  .containers-img {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .partner-card {
    padding: 25px 18px;
  }

  .partner-title {
    font-size: 20px;
  }

  .partner-description {
    font-size: 8px;
  }

  .email-input {
    font-size: 8px;
    padding: 0 12px;
  }

  .submit-button {
    width: 25px;
    height: 25px;
  }
}

.footer {
  background: var(--primary-color);
  padding: 60px 0 30px;
  color: #ffffff;
}

.footer-brand {
  float: inline-end;
}

.footer-logo {
  width: 108px;
  height: auto;
  margin: 8px 0;
}

.footer-tagline {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  line-height: 36px;
  margin-bottom: 25px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-link {
  font-size: 15px;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 3px;
}

.contact-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #ffffff;
}

.contact-link:hover::after {
  background: #ffffff;
}

.address {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.6;
  margin-top: 15px;
  margin-bottom: 0;
  max-width: 150px;
}

.footer-links,
.footer-social {
  padding-top: 8px;
}

.links-list,
.social-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-list li,
.social-list li {
  margin-bottom: 12px;
}

.links-list a,
.social-list a {
  font-size: 15px;
  color: #e0e6ed;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.links-list a::after,
.social-list a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.links-list a:hover,
.social-list a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.links-list a:hover::after,
.social-list a:hover::after {
  width: 100%;
}

.footer-social-icon {
  display: none;
}

.social-label {
  display: inline;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 767px) {
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 25px;
  text-align: right;
}

.copyright {
  font-size: 14px;
  color: #b8c5d6;
  margin: 0;
  text-align: end;
}

@media (max-width: 991px) {
  .footer {
    padding: 50px 20px 25px;
  }

  .footer-brand {
    max-width: 100%;
    margin-bottom: 20px;
    float: inline-start;
  }

  .footer-tagline {
    font-size: 16px;
  }

  .back-to-top {
    margin-bottom: 20px;
  }

  .footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 50px 20px 30px;
    text-align: center;
  }

  .footer .row:first-child {
    flex-direction: column;
    align-items: center;
  }

  .footer .row:first-child > [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
  }

  .footer-brand {
    float: none;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
  }

  .footer-logo {
    width: 160px;
  }

  .footer-tagline {
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 20px;
  }

  .footer-contact {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px;
    max-width: 300px;
    margin: auto auto 70px;
  }

  .contact-link {
    font-size: 13px;
    padding: 0;
  }

  .contact-link + .contact-link::before {
    content: " | ";
    color: #e0e6ed;
    margin-right: 4px;
  }

  .address {
    max-width: 100%;
    text-align: center;
    font-size: 13px;
    margin-top: 0;
    position: relative;
    padding-bottom: 20px;
  }

  .address::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #ffffff;
  }
  .contact-link::after {
    content: none;
  }

  .footer-links {
    padding-top: 0;
    width: 100%;
    text-align: center;
  }

  .links-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .links-list li {
    margin-bottom: 16px;
  }

  .links-list a:hover {
    transform: none;
  }

  .footer-social {
    width: 100%;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 10px;
  }

  .social-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5px;
  }

  .social-list li {
    margin-bottom: 0;
  }

  .social-list a {
    display: flex;
  }

  .social-label {
    display: none;
  }

  .footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    font-size: 18px;
    color: #ffffff;
    transition: background 0.3s ease;
  }

  .footer-social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
  }

  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
  }

  .copyright {
    text-align: center;
    font-size: 13px;
  }
}
@media (max-width: 575px) {
  .footer-links,
  .footer-social {
    padding-top: 0;
  }

  .col-6.mb-4 {
    margin-bottom: 30px !important;
  }
}
