:root {
  --orange: #f26b3a;
  --navy: #0A2342;
  --light: #f5f7fa;
  --text: #1f2937;
  --white: #ffffff;
  --black: #000000;
}

.orange-bg{background: var(--orange) !important;}
.blue-bg{background: var(--navy) !important;}
.text-orange{color: var(--orange) !important;}
.montserrat-normal {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}
body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
}

.text-title{
  font-family: "Montserrat", sans-serif;
  color: var(--orange);
  font-size: 40px;
  margin-bottom: 0px;
  font-weight: 700;
}
.partner-top-m{
    margin-top: 40px;
    display: flex;
    align-items: center;
}
/* NAVBAR */
.navbar {
  background: var(--white);
  box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.brand-e {
  color: var(--orange);
}

.nav-space {
  height: 90px;
}
.navbar-brand img{height: 75px;}
.nav-link{font-weight: 500;font-family: "Montserrat", sans-serif; font-size: 14px; color: var(--navy); position: relative;}
.nav-link-active{font-weight: 700 !important;color: var(--orange) !important;}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 3px;
  background-color: var(--orange);
  border-radius: 2px;
}
.navbar-expand-lg .navbar-nav{gap: 40px; margin-right: 30px;}
/* HERO */
.hero {
  padding: 90px 0;
}

.home-hero{
  background: url(../images/home-banner-bg.png);
  background-size: cover;
}
.hero h1 span {
  color: var(--orange);
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.hero-list li {
  margin-bottom: 10px;
  font-weight: 500;
}

.hero-list i {
  color: var(--orange);
  margin-right: 8px;
}
.hero-list span{margin-left: 10px; font-size: 14px;}
.home-hero .btn-primary{margin-top: 40px;}
.hero-img {
  border-radius: 18px;
  width: 100%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.1);
}
p{font-weight: 500;}
.home-hero h1{color: var(--orange); font-weight: 700;}
/* BUTTON */
.btn-primary {
    background: var(--navy);
    border: none;
    font-size: 16px;
    border-radius: 30px;
    padding: 15px 30px;
    font-weight: 700;
}
.btn-primary span img{width: 6px; height: 12px;}
.btn-primary:hover {
 background: var(--navy);
}
/* PARTNERS */
.partners {
  padding: 50px 0;
  font-weight: 600;
}
.partner-wrap {
  max-width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* or flex-start */

}

/* DESKTOP – 7 items */
.partner-item {
  flex: 0 0 calc(100% / 7);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.partner-item img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
}

/* ECOSYSTEM */
.ecosystem {
  padding: 90px 0;
  background-color: #EFF0F9;
}

/* CASE STUDIES */
.cases {
  background: var(--light);
  padding: 90px 0;
}

.case-card {
  background: var(--white);
  padding: 30px;
  border-radius: 14px;
  height: 100%;
  box-shadow: 0 15px 50px rgba(0,0,0,0.05);
}

.case-card.dark {
  background: var(--navy);
  color: var(--white);
}

.case-card.orange {
  background: var(--orange);
  color: var(--white);
}

/* WHY US */
.why {padding: 90px 0;}
.why-card {background: var(--white);padding: 40px;border-radius: 18px;box-shadow: 0 20px 60px rgba(0,0,0,0.08);height: 100%;}
.image-card {background: linear-gradient(rgba(11,28,45,0.85),rgba(11,28,45,0.85)),url("https://via.placeholder.com/400x300");background-size: cover;color: var(--white);}
/* FOOTER */
.footer {background: var(--white);color: var(--black);padding: 70px 20px 10px;}
.footer-container {max-width: 1200px;margin: auto;display: grid;grid-template-columns: 1.4fr 1fr 1.4fr 1.2fr;gap: 40px;}
/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  background: var(--orange);
  color: var(--black);
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 4px;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
}

.tagline {
  font-size: 12px;
  color: var(--black);
  margin: 6px 0 20px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
}
.footer-copyright{  
  text-align: center;
    padding: 20px;
    color: var(--black);
    font-size: 14px;
    margin-top: 20px;
   border-top: 1px solid #d9d9d9;
  }
/* Headings */
.footer-col h4 {
  color: var(--black);
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0px;
}

.footer-col ul li {
  margin-bottom: 14px;
  cursor: pointer;
  font-size: 14px;
}

.footer-col ul li a.active {
  color: var(--orange);
}
.footer-col ul li a {
  color: var(--black);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.navbar-nav .nav-link.active{color: var(--orange) !important; font-weight: 700;}
/* Info blocks */
.info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.info .icon {
  color: var(--orange);
  font-size: 18px;
  min-width: 22px;
}

.info strong {
  color: var(--black);
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.info p {
  font-size: 14px;
  line-height: 1.6;
}

/*CASE STUDY START*/
.case-card {max-width: 900px;margin: auto;padding: 40px;border-radius: 24px;color: var(--white);background: linear-gradient(135deg, #0b2a4a, #061a33);position: relative;box-shadow: 0 20px 40px rgba(0,0,0,0.2);}
.case-title {font-size: 22px;font-weight: 700;line-height: 1.3;margin-bottom: 24px;}
.case-title span {font-weight: 800;}
.case-list {list-style: none;padding: 0;margin: 0;padding-bottom: 50px;}
.case-list li {font-size: 14px;margin-bottom: 12px;padding-left: 20px;position: relative;}
.case-list li::before {content: "•";position: absolute;left: 0;color: var(--white);font-size: 20px;line-height: 1;}
.arrow-btn {position: absolute;bottom: 40px;left: 40px;width: 48px;height: 48px;background: var(--orange);border-radius: 50%;display: flex;align-items: center;justify-content: center;cursor: pointer;}
.arrow-btn span {font-size: 20px;color: var(--white);}
.brand {position: absolute;bottom: 40px;right: 40px;font-size: 28px;font-weight: 700;letter-spacing: 0.5px;}
/*CASE STUDY END*/

/* Why Us?*/
.section-grid {max-width: 1200px;margin: auto;display: grid;grid-template-columns: 1fr 1fr 1fr;grid-template-rows: auto auto;gap: 30px;}
.info-card {background: var(--white);border-radius: 22px;padding: 30px;border: 1px solid #cccccc;}
.info-card h3 {font-size: 22px;margin-bottom: 14px;color: #4A4A4A; font-weight: 700;}
.info-card p {font-size: 15px;line-height: 1.6;color: #4A4A4A;}
.image-card {border-radius: 22px;overflow: hidden;}
.image-card img {width: 100%;height: 100%;object-fit: cover;}
.cta-card div{padding: 30px}
.cta-card {grid-column: 3;grid-row: 1 / span 2; /* 👈 key line */background: linear-gradient(135deg, #0b2a4a, #061a33);border-radius: 22px;padding: 0px;color: var(--white);display: flex;flex-direction: column;justify-content: space-between;}
.cta-card h2 {font-size: 30px;line-height: 1.3;margin-bottom: 20px;}
.cta-card p {font-size: 15px;line-height: 1.6;color: var(--white);}
.why .cta-btn {margin-top: 30px;background: var(--orange);border-radius: 20px;padding:60px 0px; display: flex; align-items: center; justify-content: center;}
.cta-btn button {background: #0b2a4a;color: var(--white);border: none;padding: 14px 28px;border-radius: 30px;font-size: 16px;cursor: pointer;}
.cta-btn button span {margin-left: 8px;}

#menuToggle{border: none;}
#menuToggle img{width: 30px;}
/* GRID */
.our-process{padding: 80px 0px;background: var(--light);}
.our-process .services-grid {max-width: 1200px;margin: auto;display: grid;grid-template-columns: repeat(4, 1fr);gap: 20px;}
.service-card {background: var(--white);border-radius: 22px; border:1px solid #ccc; padding: 32px 28px;min-height: 280px;position: relative;transition: all 0.3s ease;}
.service-card.active {background: #0b2a4a;color: var(--white);}
.our-process .icon {width: 48px;height: 48px;border-radius: 50%;display: flex;align-items: center;justify-content: center;}
.our-process .icon img {width: 48px;height: 48px;}
.our-process .arrow {position: absolute;top: 32px;border:none; right: 38px;}
.service-card.active .arrow {color: var(--white);}
.service-card h3 {margin-top: 40px;font-size: 22px;margin-bottom: 12px;}
.service-card p {font-size: 15px;line-height: 1.6;color: #666;}
.service-card.active p {color: var(--white);}
.service-card:hover {transform: translateY(-6px);}

.vision{background-color: var(--navy);padding: 50px 0px;}
.text-white{color: var(--white);}
.vision-section {padding: 80px 0px;background-color: var(--navy);}
.vision-section .card-header{gap:30px}
.vision-section .cardbox {max-width: 1200px;margin: auto;display: flex;gap: 40px;align-items: flex-start;}
.vision-section .card{background: none; border: none;}
.card {flex: 1;background: none;}
.card-header {display: flex;align-items: center;gap: 16px;margin-bottom: 25px;}
.icon-circle {width: 70px;height: 70px;background: var(--white);color: var(--orange);border-radius: 50%;display: flex;align-items: center;justify-content: center;font-size: 30px;flex-shrink: 0;}
.card h3 {font-size: 22px;font-weight: 600;line-height: 1.3;margin: 0;color: var(--white);}
.card ol {padding-left: 20px;}
.card ol li {margin-bottom: 12px;font-size: 15px;color: #ddd;}
.divider {width: 1px;background: #444;height: 100%;}

/*TESTIMONAL*/
.testimonial-section {padding: 60px 20px;background: var(--light);}
.testimonial-swiper {max-width: 1200px;margin: auto;padding-bottom: 60px;}
.testimonial-card {background: var(--white);border-radius: 16px;border: 1px solid #ccc;padding: 30px;height: 100%;}
.card-top {display: flex;justify-content: space-between;align-items: center;}
.quote {font-size: 48px;color: #ddd;}
.rating {font-weight: 600;}
.testimonial-card h3 {margin: 20px 0 10px;font-size: 20px;font-weight: 700;}
.testimonial-card p {color: #666;line-height: 1.6;font-size: 14px;}
.divider {height: 1px;background: #e6e6e6;margin: 25px 0;}
.profile {display: flex;align-items: center;gap: 14px;}
.profile h4{font-size: 14px; font-weight: 700; margin-bottom: 0px;}
.profile span{font-size: 14px; font-weight: 400;}
.profile img {width: 50px;height: 50px;border-radius: 50%;}

.swiper-pagination {
  position: relative !important;
  margin-top: 25px;
}
/* Swiper dots */
.swiper-pagination-bullet {
  background: var(--navy) !important;
  opacity: 1 !important;
}

.darkbg .swiper-pagination-bullet {
  background: var(--white) !important;
  opacity: 1 !important;
}

.darkbg .swiper-pagination-bullet-active, .swiper-pagination-bullet-active {
  background: var(--orange) !important;
  transform: scale(1.3);
}


/*CTA SECTION*/

.cta-section {padding: 60px 20px;background: var(--light);}
.cta-box {max-width: 1200px;margin: auto;background: linear-gradient(135deg, #0b2545, #0a2a4f);border-radius: 20px;padding: 50px 60px;display: flex;align-items: center;justify-content: space-between;gap: 30px;}
.cta-text h2 {font-size: 32px;font-weight: 700;color: var(--white);margin-bottom: 10px;}
.cta-text p {font-size: 16px;color: #d9e3f0;line-height: 1.6;}
.cta-btn {background: var(--orange);color: var(--white);padding: 16px 26px;border-radius: 40px;text-decoration: none;font-weight: 600;display: flex;align-items: center;gap: 10px;transition: all 0.3s ease;white-space: nowrap;}
.cta-btn span {font-size: 20px;}
.cta-btn:hover {background: var(--orange);transform: translateY(-2px);}

/*FAQ SECTION*/
.faq-section {padding: 70px 20px;background: var(--light);}
.faq-title {text-align: center;font-size: 34px;font-weight: 700;color: var(--orange);margin-bottom: 50px;}
.faq-container {max-width: 1200px;margin: auto;display: flex;flex-direction: column;gap: 20px;}
.faq-item {background: var(--white);border-radius: 16px !important;overflow: hidden;box-shadow: 0 12px 40px rgba(0,0,0,0.4);margin-bottom:20px;}
.faq-question {width: 100%;background: none;border: none;padding: 10px 26px;font-size: 18px;font-weight: 600;color: #222;display: flex;justify-content: space-between;align-items: center;cursor: pointer;}
.faq-question button:hover{background: none;}
.faq-question button{background-color: var(--white) !important;color: #222 !important; box-shadow: none !important; font-weight: bold;}
.faq-question .icon {font-size: 26px;font-weight: 400;}
.faq-answer {overflow: hidden;transition: max-height 0.4s ease;padding: 0 26px;}
.faq-answer div {padding: 0 26px;}
.faq-answer p {color: #666;line-height: 1.7;padding-bottom: 24px;}
.faq-item.active .faq-answer {max-height: 300px;}
.faq-item.active .icon {content: "−";}


/* Hero CTA */
.hero-cta {position: relative;min-height: 380px;background: url("../images/have-doubt-bg.png") center/cover no-repeat;display: flex;align-items: center;}
.hero-overlay {position: absolute;inset: 0;background: rgba(233, 120, 75, 0.85);}
.hero-content {position: relative;max-width: 1200px;padding: 0 40px;margin: auto;width: 100%;display: flex;justify-content: space-between;align-items: center;gap: 40px;}
.hero-text {max-width: 520px;}
.hero-text h2 {font-size: 42px;font-weight: 700;color: var(--white);margin-bottom: 16px;}
.hero-text p {font-size: 18px;line-height: 1.6;color: var(--white);}
.hero-btn {background: var(--navy);color: var(--white);padding: 16px 28px;border-radius: 40px;text-decoration: none;font-weight: 600;display: flex;align-items: center;gap: 10px;white-space: nowrap;box-shadow: 0 10px 30px rgba(0,0,0,0.25);transition: all 0.3s ease;}
.hero-btn span {font-size: 20px;}
.hero-btn:hover {background: #081d36;transform: translateY(-2px);}


/*---------------------------------ABOUT US---------------------------------*/


/* Hero Section */
.about-hero {min-height: 420px;display: flex;align-items: center;justify-content: center;text-align: center;padding: 80px 20px;position:relative;}
.abt-hero-bg{ position: absolute;left: 0px;height: 550px;width: 100%;bottom: 400px;z-index: -1;background: url(../images/abt-slide-bg.png);background-size: cover;}
.about-hero::after{content: '';position: absolute;bottom: 0px;width: 100%;height: 400px;background: var(--navy);left: 0px;z-index: -1;}
.about-content {max-width: 100%;}
.about-content h1 {font-size: 42px;font-weight: 700;color: #1f3b5c;line-height: 1.3;margin-bottom: 20px;}
.about-content h1 span {color: var(--orange);}
.about-content p {font-size: 18px;color: #777;margin-bottom: 35px;}
.hero-btn {display: inline-flex;align-items: center;gap: 10px;background: var(--navy);color: var(--white);padding: 16px 30px;border-radius: 40px;text-decoration: none;font-weight: 600;transition: all 0.3s ease;}
.hero-btn span {font-size: 20px;}
.hero-btn:hover {background: var(--orange);transform: translateY(-2px);}
.hero-btn-1 {display: inline-flex;align-items: center;gap: 10px;background: var(--orange);color: var(--white);padding: 16px 30px;border-radius: 40px;text-decoration: none;font-weight: 600;transition: all 0.3s ease;}
.hero-btn-1 span {font-size: 20px;}
.hero-btn-1:hover {background: var(--navy);transform: translateY(-2px);}
.abt-hero-img{width: 100%; float: left; position: relative; padding-top: 100px; display: flex; align-items: center;}
.abt-hero-img img{width: 100%;}
.abt-bg{width: 600px !important;position: absolute;left: 100px;top: 0px;z-index: -1;}

.bold{font-weight: 700;}

/* Section */
.pillars-section {padding: 80px 20px;background: #f2f2f2;}
.pillars-title {text-align: center;font-size: 36px;font-weight: 700;color: var(--orange);margin-bottom: 60px;}
.pillars-container {max-width: 1200px;margin: auto;display: grid;grid-template-columns: repeat(3, 1fr);gap: 30px;}
.pillar-card {background: var(--white);border-radius: 18px;padding: 40px 30px;text-align: left;border:1px solid #CCCCCC;}
.pillar-icon {font-size: 38px;margin-bottom: 20px;color: var(--orange);}
.pillar-card h3 {font-size: 22px;font-weight: 700;margin-bottom: 14px;color: #333;}
.pillar-card p {font-size: 15px;color: #666;line-height: 1.7;}


/*RULE SECTION*/

.rules-section {padding: 80px 20px 120px;background: var(--white);}
.rules-title {text-align: center;font-size: 36px;font-weight: 700;color: var(--orange);margin-bottom: 80px;}
.rules-container {max-width: 1200px;margin: auto;display: grid;grid-template-columns: repeat(6, 1fr);gap: 40px;}
.rule {display: flex;align-items: flex-start;gap: 16px;}
.timeline {display: flex;flex-direction: column;align-items: center;}
.rules-section .dot {width: 14px;height: 14px;background: var(--orange);border-radius: 50%;}
.rules-section .line {width: 1px;height: 260px;background: var(--orange);margin-top: 12px;}
.rules-section .content h3 {font-size: 16px;font-weight: 600;color: var(--black);margin-bottom: 8px;}
.rules-section .content p {font-size: 14px;color: var(--black);line-height: 1.6;max-width: 200px; /* matches design width */}

.about-section {background: var(--white);padding: 80px 20px;}
.about-container {max-width: 1200px;margin: 0 auto;}
.about-intro {font-size: 22px;line-height: 30px;color:#4A4A4A;margin-bottom: 30px;}
.about-points {list-style: none;padding: 0;margin: 0 0 50px 0;}
.about-points .icon{width: 15px; height: 25px; display: flex; align-items: center; justify-content: center;}
.about-points .icon img{height: 15px; width:15px}
.about-points li {display: flex;align-items: flex-start;gap: 12px;font-size: 16px;color: #4A4A4A;margin-bottom: 18px;}
.about-points .icon {color: #555;font-size: 18px;line-height: 1.4;}
.about-highlight {font-size: 40px;font-weight: 300;line-height: 1.3;color: var(--orange);max-width: 900px;}
.about-highlight span {font-weight: 600;}

.principles {background:url(../images/principle-bg.png) no-repeat;background-size: cover;padding: 90px 20px;position: relative;}
.principles .overlay_p{position: absolute;content: '';left: 0px;top: 0px;width: 100%;height: 100%;background:url(../images/p_bg.png) no-repeat;background-size: cover;z-index: 1;}
.z-index2{z-index: 2; position: relative;}
.principle .icon img{width: 32px; height: 32px;}
.principles-grid {max-width: 1200px;margin: auto;display: grid;grid-template-columns: repeat(3, 1fr);gap: 50px 60px;}
.principle {display: flex;align-items: flex-start;gap: 16px;}
.principle .icon .icon {display: flex;align-items: center;justify-content: center;}
.principle h3 {font-size: 16px;font-weight: 600;color: var(--white);margin-bottom: 6px;}
.principle p {font-size: 14px;color: var(--white);line-height: 1.6;max-width: 280px;}





/*-----------------------------------SERVICE PAGE-------------------------------------*/

.team-section {background: var(--white);padding: 80px 20px;}
.team-grid {max-width: 1200px;margin: auto;display: grid;grid-template-columns: repeat(3, 1fr);gap: 24px;}
.team-card {position: relative;border-radius: 18px;overflow: hidden;height: 420px;}
.team-card img {width: 100%;height: 100%;object-fit: cover;}
.team-card .overlay {position: absolute;bottom: 0;left: 0;width: 100%;padding: 18px 20px;background: #0A2342CC;}
.team-card .overlay h3 {color: var(--white);font-size: 18px;font-weight: 600;text-align: center;}



.domain-portfolio {
  position: relative;
  padding: 100px 20px 120px;
  background: var(--white);
}


/* Half blue background */
.domain-portfolio::before {content: "";position: absolute;top: 0;left: 0;width: 100%;height: 55%; /* controls blue height */background: #0b2a4a;z-index: 0;}
.section-title {position: relative;z-index: 1;text-align: center;color: var(--white);font-size: 36px;font-weight: 700;margin-bottom: 60px;}
.portfolio-card {position: relative;z-index: 1;max-width: 1200px;margin: auto;background: #0b2a4a;border-radius: 22px;overflow: hidden;}
.portfolio-card img {width: 100%;height: 520px;object-fit: cover;display: block;}

/* Tags */
.domain-tags {padding: 30px;background: #0b2a4a;display: flex;flex-wrap: wrap;gap: 16px;justify-content: center;}
.tag {background: var(--orange);color: var(--white);padding: 12px 18px;border-radius: 50px;font-size: 14px;font-weight: 500;display: flex;align-items: center;gap: 10px;}
.tag img {width: 18px;height: 18px;object-fit: contain;filter: brightness(0) invert(1); /* white icon */}
.domain-tags span {background: var(--orange);color: var(--white);}
.engineering {background: #071f3c;padding: 100px 0;position: relative;overflow: hidden;}
.engineering .container {width: 90%;max-width: 1200px;margin: auto;display: grid;grid-template-columns: 1fr 1.2fr;gap: 60px;position: relative;}
.left h2 {color: var(--white);font-size: 42px;font-weight: 700;margin-bottom: 20px;}
.left p {color: #d0d9e5;font-size: 15px;line-height: 1.7;max-width: 420px;}
.right {display: flex;flex-direction: column;gap: 30px;position: relative;z-index: 2;}
.card {background: #e1663c;padding: 32px;border-radius: 20px;color: var(--white);}
.card h3 {font-size: 22px;margin-bottom: 16px;}
.card ul {padding-left: 20px;}
.card li {margin-bottom: 10px;font-size: 14px;}
.person {position: absolute;bottom: -100px;left: 150px;max-width: 500px;z-index: 1;}

.qa-services {background: var(--white);padding: 100px 0;}
.qa-container {width: 90%;max-width: 1200px;margin: auto;display: grid;grid-template-columns: 1fr 1.1fr;gap: 60px;align-items: start;}
.qa-left h2 {color: #e1663c;font-size: 42px;font-weight: 700;line-height: 1.2;margin-bottom: 40px;}
.qa-image {width: 380px;height: 380px;border-radius: 50%;overflow: hidden;}
.qa-image img {width: 100%;height: 100%;object-fit: cover;}
.qa-right {display: flex;flex-direction: column;gap: 30px;}
.qa-card {background: #071f3c;color: var(--white);padding: 36px;border-radius: 20px;}
.qa-card h3 {font-size: 22px;margin-bottom: 18px;}
.qa-card ul {padding-left: 18px;}
.qa-card li {font-size: 14px;margin-bottom: 12px;line-height: 1.6;}



/*TECHSTACK*/
.tech-stack {padding: 80px 0;background: #f3f3f3;}
.section-title {font-size: 36px;color: #e1663c;margin-bottom: 40px;}
.tech-wrapper {max-width: 100%;margin: auto;}
.tech-stack .container{grid-template-columns: none;}
.tech-row {display: grid;grid-template-columns: 80px 260px 1px 1fr;column-gap: 32px;padding: 40px 0;align-items: center; border-top:1px solid #CCCCCC;}
.tech-row > div {min-width: 0;}
.line-col {background: #ddd;width: 1px;}
.title-col {display: flex;gap: 14px;align-items: flex-start;}
.arrow {width: 0;height: 0;margin-top: 6px;border-left: 10px solid #e1663c;border-top: 6px solid transparent;border-bottom: 6px solid transparent;}


/* ICON */
.icon-col img {width: 42px;}

/* TITLE */
.title-col {display: flex;align-items: center;gap: 12px;}
.title-col h4 {font-size: 22px;color: #0a2540;line-height: 1.4;margin: 0;font-weight: 700;}
.arrow {width: 0;height: 0;border-left: 10px solid #e1663c;border-top: 6px solid transparent;border-bottom: 6px solid transparent;}
.line-col {width: 1px;height: 100%;background: #ddd;}
.content-col ul {margin: 0;padding-left: 20px;}
.content-col li {font-size: 15px;color: #333;line-height: 1.7;margin-bottom: 8px;}

/*---------------------------CONTACT US------------------------------*/
.contact-container {display: flex;flex-wrap: wrap;max-width: 1100px;margin: 50px auto;background: var(--white);border-radius: 10px;box-shadow: 0 10px 25px rgba(0,0,0,0.1);  overflow: hidden;}
.contact-info, .contact-form {flex: 1;padding: 40px;min-width: 300px;}
.contact-info {background: var(--navy);color: var(--white);}
.contact-info h2 {margin-bottom: 15px;font-size: 28px;}
.contact-info p {margin-bottom: 20px;line-height: 1.6;}
.info-box p {margin-bottom: 10px;font-weight: 500;}
.social-icons {margin-top: 20px;}
.social-icons a {display: inline-block;margin-right: 10px;}
.social-icons img {width: 30px;filter: brightness(0) invert(1);transition: transform 0.3s;}
.social-icons img:hover {transform: scale(1.2);}
.contact-form h2 {margin-bottom: 20px;font-size: 28px;color: var(--navy);}
.form-group {margin-bottom: 20px;}
.form-group label {display: block;margin-bottom: 5px;font-weight: 500;}
.form-group input,
.form-group textarea {width: 100%;padding: 12px;border: 1px solid #ccc;border-radius: 6px;font-size: 16px;transition: border-color 0.3s;}
.form-group input:focus,
.form-group textarea:focus {border-color: var(--navy);outline: none;}
button {padding: 12px 25px;border: none;background: var(--navy);color: var(--white);border-radius: 6px;cursor: pointer;font-size: 16px;transition: background 0.3s}
button:hover {background: var(--navy);}

/*------------------------------------SERVICE FINANCE------------------------------------*/
.case-section {padding: 0px 20px 20px;background: #fafafa;}
.case-container {max-width: 1200px;margin: auto;display: grid;grid-template-columns: repeat(3, 1fr);gap: 30px;}
.case-section .finance-case-card {position: relative;border-radius: 20px;min-height: 480px;padding: 10px; background-size: cover;background-position: center;overflow: hidden;}
.case-overlay {position: absolute;inset: 0;background: linear-gradient(180deg,rgba(7, 24, 48, 0.75),rgba(7, 24, 48, 0.9));}
.case-content {position: relative;color: var(--white);height: 100%;}
.case-logo {background: var(--white);display: inline-flex;align-items: center;padding: 20px 18px;width: 100%; border-radius: 10px;margin-bottom: 25px;}
.case-logo img {height: 28px;}
.case-content h3 {font-size: 22px;font-weight: 600;margin-bottom: 25px;line-height: 1.3;padding: 0 0px 0px 20px;}
.case-content ul {list-style: none;padding: 0 0px 0px 20px;margin: 0;}
.case-content li {position: relative;padding-left: 26px;margin-bottom: 14px;font-size: 15px;line-height: 1.6;opacity: 0.95;}
.case-content li::before {content: "";position: absolute;left: 0;top: 8px;width: 14px;height: 14px;background: url(../images/service-arrow.svg) no-repeat;background-size: cover;}
.case-card:hover {transform: translateY(-6px);transition: 0.3s ease;}
.partner-section {padding: 100px 20px;background: #f3f3f3;}
.partner-inside {max-width: 1200px;margin: auto;padding: 100px 0px;text-align: center;background:var(--white) url("../images/partner-bg.png"); /* optional */background-size: cover;background-repeat: no-repeat;}
.partner-container h2 {font-size: 36px;font-weight: 600;color: #e4572e;margin-bottom: 60px;}
.partner-grid {display: grid;grid-template-columns: repeat(6, 1fr);gap: 30px;align-items: center;}
.partner-item {display: flex;flex-direction: column;align-items: center;gap: 14px;}
.partner-item .count {font-size: 60px;font-weight: 700;color: #444;}
.partner-item img {max-height: 36px;opacity: 0.8;filter: grayscale(100%);}
.partner-item:hover img {opacity: 1;filter: grayscale(0%);}

.darkbg{background: var(--navy);}

.carousel-control-next, .carousel-control-prev{
  position: relative;width: 45px;height: 40px;padding: 5px 0px;color: var(--white);text-align: center;
  background: var(--black);border: 0;opacity: 1;display: inline-block;
}

.carousel-control-next {
  margin-left: 10px;
}

.white-back {
  background-color: var(--white);
}
