/* General Reset & Fonts */
:root{
  --primary-color: #237cbe;
  --secondary-color: #294b88;
  --tertiary-color: #F17720;
  --text-color: #333;
  --background-color: #fff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}
li {
  margin: 0;
  padding-left: 24px;
  position: relative;
  list-style: none;
}
li::before{
  content: '';
  background-image: url('../images/icon-clarity.png');
  background-size: cover;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 5px;
  left: 0px;
}

h2{
  color: var(--primary-color);
}

.text-blue{
  color: var(--primary-color);
}

.text-left{
  text-align: left !important;
}

.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 20px;
}

/* Header */
.header {  
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  width: 90%;
  /* margin: 50px auto 0px auto; */
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
}
.header.scrolled {
  background-color: #ffffff; /* or any desired style */
  
  transition: all 0.3s ease;
  position: sticky;
  margin: 0;
  top: 0px;
  left: 0%;
  transform: translateX(0);
  width: 100%;
    border-bottom: 1px solid #eee;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border-radius: 0px;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 70px;
}

.navbar {
  position: relative;
}
.navbar a {
  margin-left: 24px;
  font-weight: 500;
  color: #333;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #F17720;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .hero .split {
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 0;
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin: 10px 0;
    color: #333;
    font-weight: 500;
  }
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8); /* This controls the opacity */
  z-index: 1;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero .container,
.hero-content,
.hero-text,
.hero-image {
  position: relative;
  z-index: 2;
}


@media only screen and (max-width: 600px) {
  .hero{
    height: unset;
  }
}

/* .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
} */

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  margin-top: 150px;
}
@media only screen and (max-width: 600px) {
  .hero-text{
    margin-top: 50px;
  }
}

.hero-text h4 {
  font-size: 16px;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-text h1 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero-text .subheadline {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


.hero-image {
  flex: 1;
  text-align: right;
  min-width: 280px;
  margin-top: 190px;
}
@media only screen and (max-width: 600px) {
  .hero-image{
    margin-top: 50px;
  }
}

.hero-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* New Services Strip Layout */
.services-strip {
  background: #fff;
  padding: 50px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.services-strip-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-align: center;
  flex-wrap: wrap;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-radius: 20px;
}

.service-box {
  flex: 1 1 200px;
  padding: 20px 10px;
  border-right: 1px solid #eee;
}

.service-box:last-child {
  border-right: none;
}

.service-box img {
  height: 40px;
  margin-bottom: 15px;
}

.service-box h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.service-box p {
  font-size: 14px;
  color: #777;
  line-height: 1.4;
}


/* Scroll Animation */
.service-box {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.service-box.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .services-strip-grid {
    flex-direction: column;
    gap: 30px;
  }

  .service-box {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
  }

  .service-box:last-child {
    border-bottom: none;
  }
}


/* what we do */


.what-we-do-parallax {
  background-image: url('../images/image-002.jpg'); /* Replace with your image path */
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 100px 20px;
  position: relative;
}

.what-we-do-parallax .overlay {
  background: rgba(0, 0, 0, 0.65); /* dark overlay */
  padding: 60px 20px;
}

/* .container {
  max-width: 1100px;
  margin: 0 auto;
} */

.section-heading {
  font-size: 38px;
  text-align: center;
  margin-bottom: 30px;
  color: #F17720;
  font-weight: 700;
}

.intro {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.services-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

.services-box h3 {
  font-size: 28px;
  color: #00A7E1;
  margin-bottom: 10px;
}

.subheading {
  font-size: 16px;
  font-weight: 500;
  color: #eee;
  margin-bottom: 20px;
}

.services-box p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #ddd;
}

.service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.service-list li {
  margin-bottom: 10px;
  font-size: 16px;
  padding-left: 20px;
  position: relative;
  text-align: left;
}

.service-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* .quote-box {
  font-size: 18px;
  font-style: italic;
  color: #fff;
  border-left: 4px solid var(--primary-color);
  padding-left: 16px;
} */


.business-approach-section {
  background-color: #f7fafd;
  padding: 100px 20px;
  color: var(--text-color);
  background-image: url('../images/image-001.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 600px) {
  .business-approach-section{
    background-size: 500%;
    background-color: #000;
    background-attachment: scroll;
    background-position: center;
  }
}

.approach-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
}

.approach-text {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
}

.approach-text .section-heading {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-color);
}

.approach-text .section-heading span {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 700;
}

.approach-text .intro {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}

.approach-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.approach-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

/* Maintain existing styles for services-box and list inside */
.business-approach-section .services-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.business-approach-section .services-box h3 {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 10px;
}

.business-approach-section .services-box .subheading {
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.business-approach-section .services-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.business-approach-section .service-list {
  padding-left: 20px;
  margin-bottom: 20px;
}

.business-approach-section .service-list li {
  font-size: 15px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
}

.business-approach-section .service-list li::before {
  content: '';
  background-image: url('../images/icon-clarity.png');
  background-size: cover;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 5px;
}

.business-approach-section .business-approach-quote-box {
  font-size: 16px;
  font-style: italic;
  color: #666;
  border-left: 4px solid var(--primary-color);
  padding-left: 16px;
  position: relative;
  background: linear-gradient(to right, #ffffff, #e6e6e6);
  padding: 40px 20px;
  border-radius: 20px;
  color: #111;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  margin-top: 30px;
}
@media only screen and (max-width: 600px) {
  .business-approach-section .business-approach-quote-box{
    margin-top: 50px;
    padding-left: 10px !important;
  }
}


@media (max-width: 768px) {
  .approach-flex {
    flex-direction: column;
    text-align: center;
  }
  .approach-text {
    max-width: 100%;
  }
  .approach-image img {
    margin-top: 30px;
  }
}


.what-we-do-talk-to-us-btn-wrapper{
  width: 45%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}


/* Application Services */
.application-services {
  padding: 100px 20px;
  background-color: #f9fbfd;
}

/* .container {
  max-width: 1200px;
  margin: 0 auto;
} */

.app-services-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.text-col {
  flex: 1;
  min-width: 300px;
}

.text-col h2 {
  font-size: 32px;
  color: #F17720;
  margin-bottom: 10px;
}

.tagline {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-bottom: 16px;
}

.intro {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
}

.app-service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.app-service-list li {
  font-size: 16px;
  color: #222;
  padding-left: 20px;
  position: relative;
  margin-bottom: 12px;
}

.app-service-list li::before {
  content: '';
  background-image: url('../images/icon-clarity.png');
  background-size: cover;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 5px;
}

.quote {
  font-style: italic;
  font-size: 16px;
  color: #444;
  border-left: 4px solid #00A7E1;
  padding-left: 16px;
}

.image-col {
  flex: 1;
  min-width: 300px;
}

.image-col img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.styled-app-section {
  background: #ffffff;
  padding: 100px 20px;
}

.styled-app-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.styled-app-section .text-col {
  flex: 1;
  min-width: 300px;
}

.styled-app-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.tagline-box {
  background-color: #5f20b7;
  display: inline-block;
  padding: 8px 16px;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 16px;
}

.styled-app-section .intro {
  font-size: 16px;
  color: #555;
  margin-bottom: 24px;
}

.styled-app-section .app-service-list li {
  font-size: 15px;
  color: #222;
  position: relative;
  margin-bottom: 12px;
  padding-left: 22px;
}

.styled-app-section .app-service-list li::before {
  content: '';
  background-image: url('../images/icon-clarity.png');
  background-size: cover;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 5px;
  left: 0px;
}

.styled-app-section .quote {
  font-style: italic;
  font-size: 15px;
  border-left: 4px solid var(--primary-color);
  padding-left: 16px;
  color: #444;
  margin-top: 20px;
}

.modern-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.img-box {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.img-box img {
  width: 100%;
  border-radius: 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}

.purple-top,
.purple-bottom {
  position: absolute;
  width: 100px;
  height: 40px;
  background-color: var(--primary-color);
  z-index: 2;
}

.purple-top {
  top: -20px;
  left: -30px;
  transform: rotate(-3deg);
}

.purple-bottom {
  bottom: -20px;
  right: -30px;
  transform: rotate(3deg);
}

.border-box {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid var(--primary-color);
  z-index: 1;
}

.dots {
  position: absolute;
  width: 60px;
  height: 60px;
  background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
  background-size: 12px 12px;
  z-index: 0;
  opacity: 0.4;
}

.top-dots {
  top: -40px;
  right: -30px;
}

.bottom-dots {
  bottom: -40px;
  left: -30px;
}

/* Responsive */
@media (max-width: 768px) {
  .styled-app-wrapper {
    flex-direction: column-reverse;
    text-align: left;
  }

  .img-box {
    text-align: center;
  }

  .purple-top,
  .purple-bottom,
  .border-box,
  .dots {
    display: none; /* optional: hide for mobile */
  }
}


/* Capability services */
.capability-services {
  padding: 100px 20px;
  background-color: #ffffff;
}
@media only screen and (max-width: 600px) {
  .capability-services{
    padding: 0px 20px;
  }
}
/* .container {
  max-width: 1200px;
  margin: 0 auto;
} */

.capability-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
@media only screen and (max-width: 600px) {
  .capability-content{
    order: 2;
  }
}

.image-col {
  flex: 1;
  min-width: 300px;
}
@media only screen and (max-width: 600px) {
  .image-col{
    order: 1;
  }
}

.image-col img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.text-col {
  flex: 1;
  min-width: 300px;
}

.text-col h2 {
  font-size: 32px;
  color: #00A7E1;
  margin-bottom: 10px;
}

.tagline {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  margin-bottom: 16px;
}

.intro {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
}

.capability-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.capability-list li {
  font-size: 16px;
  color: #222;
  padding-left: 20px;
  position: relative;
  margin-bottom: 12px;
}

.capability-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #F17720;
  font-weight: bold;
}

.quote {
  font-style: italic;
  font-size: 16px;
  color: #333;
  border-left: 4px solid #00A7E1;
  padding-left: 16px;
}
/* Tagline reused for capability */
.tagline-box {
  background-color: var(--secondary-color);
  display: inline-block;
  padding: 8px 16px;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 16px;
}

/* Color change for tick bullets */
.capability-list li::before {
  /* color: #00A7E1; */
  content: '';
  background-image: url('../images/icon-clarity.png');
  background-size: cover;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 5px;
}

/* Quote stripe */
.capability-services .quote {
  border-left-color: #00A7E1;
}

/* Image section flips left using reverse class */
.reverse-layout {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .reverse-layout {
    flex-direction: column-reverse;
  }
}


/* How we work */
.how-we-work-parallax {
  background-image: url('../images/parallax-howwework.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  color: #fff;
  position: relative;
}

.how-we-work-parallax .overlay {
  background: rgba(0, 0, 0, 0.7);
  padding: 60px 20px;
}


.section-heading {
  font-size: 38px;
  text-align: center;
  color: #F17720;
  margin-bottom: 20px;
}

.subheading,
.intro {
  text-align: center;
  font-size: 16px;
  color: #ddd;
  margin-bottom: 10px;
}

.approach-heading {
  text-align: center;
  font-size: 22px;
  margin-top: 50px;
  margin-bottom: 40px;
  color: #00A7E1;
  font-weight: 600;
}

.approach-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.approach-box {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(2px);
}

.approach-box img {
  height: 60px;
  margin-bottom: 20px;
}

.approach-box h4 {
  font-size: 20px;
  color: #F17720;
  margin-bottom: 10px;
}

.approach-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #eee;
}
/* Updated How We Work Section */
.modern-how-we-work {
  position: relative;
  background-image: url('../images/image-003.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: auto;
  background-position: center;
  padding: 0;
  color: #fff;
}

.modern-how-we-work .overlay {
  background: rgba(0, 0, 0, 0.1);
  padding: 60px 20px;
}

.modern-how-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.how-text-col {
  flex: 1;
  min-width: 300px;
}

.how-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
  line-height: 1.4;
}

.how-heading span {
  color: var(--secondary-color);
}

.how-subtext {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 30px;
}

.how-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

/* .btn-primary {
  background-color: #F17720;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #d4620e;
} */

.btn-link {
  color: #fff;
  font-weight: 500;
  text-decoration: underline;
  font-size: 15px;
}

.how-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.stat-box {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 100px;
}

.stat-box strong {
  font-size: 20px;
  color: #F17720;
  display: block;
}

.stat-box span {
  font-size: 13px;
  color: #eee;
}

.how-image-col {
  flex: 1;
  text-align: center;
}

.how-image-col img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Approach Cards */
@media (max-width: 768px) {
  .our-approach-heading{
    text-align: center;
  }
}
.how-approach-cards {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 10px;
    margin-left: 19%;
}
@media (max-width: 768px) {
  .how-approach-cards {
      margin-left: 0%;
  }
}
.approach-card {
  background: #fff;
  color: #222;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  max-width: 280px;
  flex: 1 1 220px;
  text-align: center;
}
@media (max-width: 768px) {
  .approach-card {
    max-width: 90%;
    flex: unset;
    margin: 0 auto;
  }
}


.approach-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #00A7E1;
}

.approach-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .modern-how-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .how-buttons {
    justify-content: center;
  }

  .how-stats {
    justify-content: center;
  }

  .how-heading {
    font-size: 28px;
  }
}


/* Engagement Models */

.engagement-models {
  padding: 100px 20px;
  background-color: #f8fbff;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #00A7E1;
  font-weight: 700;
}

.models-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.model-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
  flex: 1 1 300px;
  max-width: 360px;
  transition: transform 0.3s ease;
}

.model-card:hover {
  transform: translateY(-6px);
}

.model-card img {
  height: 60px;
  margin-bottom: 20px;
}

.model-card h3 {
  font-size: 20px;
  color: #F17720;
  margin-bottom: 12px;
}

.model-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}


.quote-box {
  position: relative;
  background: linear-gradient(to right, #ffffff, #e6e6e6);
  padding: 60px 30px;
  border-radius: 20px;
  color: #111;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  max-width: 600px;
  margin-top: 50px;
}

.quote-box-heading{
  text-align: center;
  margin-top: -30px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .quote-box-heading{
    text-align: right;
  }
}

.quote-mark {
  font-size: 60px;
  font-weight: bold;
  color: #111;
}

.quote-top {
  position: absolute;
  top: 10px;
  left: 20px;
  color: var(--secondary-color);
}

.quote-bottom {
  position: absolute;
  bottom: 10px;
  right: 20px;
  color: var(--secondary-color);
}

.quote-content-wrapper{
  display: flex;
  flex: 1 1;
}
@media only screen and (max-width: 600px) {
  .quote-content-wrapper{
    flex-direction: column;
  }
}
.quote-points{
  flex: 1;
  color: var(--text-color);
  font-size: 16px;
  margin-right: 20px;
  margin-top: 15px;
}
@media only screen and (max-width: 600px) {
  .quote-points{
    margin-bottom: 20px;
  }
}
.quote-points ul {
  list-style: disc;
  padding: 0;
  margin: 0;
}
.quote-text{
  flex: 1;
  margin: 0 auto;
  text-align: left;
}
.quote-text p {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.quote-text strong {
  font-size: 26px;
  color: var(--secondary-color);
  display: block;
  margin-bottom: 15px;
}



  /* Why Addwisery */

/* Modern Why Addwisery Section */
.why-addwisery-modern {
  /* background-image: url('../images/image-004.jpg'); */
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 0px 20px;
  color: #fff;
  position: relative;
}

.why-addwisery-modern .overlay {
  background: rgba(255, 255, 255, 0.75);
  padding: 0px;
}

.why-modern-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  padding: 0;
  position: relative;
}

.why-image-col {
  flex: 1;
  min-width: 300px;
  text-align: center;
  /* position: relative; */
  background-image: url('../images/image-004.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 800px;
}

.why-image-box {
  position: absolute;
  display: inline-block;
  top: 36%;
  width: 80%;
}

.why-image-box img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.shape {
  position: absolute;
  width: 36px;
  height: 36px;
  background: transparent;
  color: #005fa3;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

.shape-dollar { 
      top: 10px;
    left: -80px;
    width: 60%;
    height: 50px;
    background-color: #9dd5ec;
    position: absolute;
    border-radius: 0;
 }
.shape-gear   { 
      top: 60px;
    left: -20px;
    width: 61%;
    height: 50px;
    background-color: #4496c5;
    position: absolute;
    border-radius: 0;
 }
.shape-star   { 
      top: 110px;
    left: -20px;
    width: 63%;
    height: 50px;
    background-color: #76c6e7;
    position: absolute;
    border-radius: 0;
 }

.why-text-col {
  flex: 1;
  min-width: 300px;
}

.why-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.why-heading span {
  color: var(--primary-color);
}

.why-subtext {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-primary.dark {
  background-color: #fff;
  color: #000;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.btn-primary.dark:hover {
  background-color: #F17720;
  color: #fff;
}

.why-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-benefit {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.07);
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(3px);
  border-left: 4px solid var(--primary-color);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 8px 24px;
}

.why-benefit img {
  height: 50px;
  flex-shrink: 0;
  margin-top: 4px;
}

.why-benefit-text {
  flex: 1;
}

.why-benefit-text h4 {
  font-size: 18px;
  color: #00A7E1;
  margin-bottom: 8px;
}

.why-benefit-text p {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .why-modern-wrapper {
    flex-direction: column;
  }

  .why-benefits-grid {
    grid-template-columns: 1fr;
  }

  .shape {
    display: none;
  }
}
@media (max-width: 600px) {
  .why-benefit {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .why-benefit-text {
    text-align: center;
  }
}

/* Careers - New Modern Layout */
.careers-section {
  background: #f8f9fd;
  padding: 100px 20px;
}
.careers-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 20px;
}
.careers-content {
  flex: 1 1 400px;
  max-width: 500px;
}
@media only screen and (max-width: 600px) {
  .careers-content{
    text-align: left;
  }
}


.what-we-look-for-wrapper{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  margin-top: 40px;
}

.careers-reach-out-wrapper{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  margin-top: 40px;
}

.careers-content h2 {
  font-size: 72px;
  font-weight: 300;
  color: var(--primary-color);
  line-height: 1.3;
  margin-bottom: 20px;
}

.careers-content .desc {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  max-width: 400px;
}

.btn-group {
  display: flex;
  gap: 15px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}



.btn-secondary {
  background-color: #f1f3f6;
  color: #222;
  border: 1px solid #ddd;
}

/* Image Side */
.careers-image {
  flex: 1 1 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 500px;
  margin-top: 40px;
}

.image-wrapper {
  position: relative;
  z-index: 2;
}

.image-wrapper img {
  width: 100%;
  border-radius: 16px;
  z-index: 2;
  position: relative;
}

/* Abstract shapes */
.shapes .shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.7;
}

.shape.yellow {
  width: 60px;
  height: 60px;
  background: #fdd835;
  top: 10%;
  left: -30px;
}

.shape.purple {
  width: 100px;
  height: 100px;
  background: #a29bfe;
  bottom: 5%;
  right: -40px;
  border-radius: 25% 75% 75% 25% / 25% 25% 75% 75%;
}

.shape.green {
  width: 80px;
  height: 80px;
  background: #81ecec;
  top: 60%;
  left: -40px;
}

.shape.pink {
  width: 50px;
  height: 50px;
  background: #fab1a0;
  bottom: 10%;
  left: 20%;
}

@media (max-width: 768px) {
  .careers-container {
    flex-direction: column;
    text-align: center;
  }

  .careers-image {
    margin-top: 20px;
  }

  .btn-group {
    justify-content: center;
  }
}



/* Modern Let’s Talk Section */
/* Overall Section Wrapper */
.lets-talk-section {
  position: relative;
  background-color: #fff;
  padding: 100px 0;
}
@media only screen and (max-width: 600px) {
  .lets-talk-section{
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 100px;
  }
}

/* Full-width green strip */
.green-strip {
  background-color: var(--secondary-color);
  height: 436px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 600px) {
  .green-strip{
    height: 100%;
  }
}

/* Inner content: centered row */
.talk-content-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

/* Text Column */
.talk-text {
  color: var(--primary-color);
  max-width: 480px;
  text-align: left;
}

.talk-text h2 {
    font-size: 82px;
    font-weight: 300;
    margin-bottom: 16px;
    color: #fff;
}

.talk-text .intro {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #eafff0;
  text-align: left;
}



/* Phone mockup overlap */
.talk-phone {
  position: relative;
  height: 500px; /* taller than strip */
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup {
  background: transparent;
  border-radius: 32px;
  padding: 30px 20px;
  width: 250px;
  max-width: 360px;
  height: 100%;
  position: absolute;
  top: calc(50% - 250px); 
  background-image: url('../images/mobile.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  position: relative;
}

.talk-btn {
  background-color: #41b883;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  position: absolute;
  width: 200px;
  height: 40px;
  border-radius: 12px;
}
.talk-btn.email{
  background: #F17720;
  color: #fff;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 16px;
  padding: 10px 20px;
}

/* Contact details inside phone */
.contact-block {
  text-align: center;
  margin-bottom: 30px;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 12px;
  position: absolute;
  width: 240px;
  height: 50px;
  border-radius: 30px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-block.email{
  top: 150px;
  left: -23%;
  transform: rotate(-9deg);
}
.contact-block.phone{
  top: 250px;
  right: -23%;
  transform: rotate(9deg);
}
.contact-block.location{
  top: 350px;
  left: -23%;
  transform: rotate(-9deg);
}

.contact-block img {
  height: 30px;
}

.contact-block p {
  font-size: 15px;
  color: #333;
  margin: 0;
}

.contact-block p a {
  color: #00A7E1;
  text-decoration: none;
  font-weight: 500;
}

/* Responsive: stack content */
@media (max-width: 768px) {
  .talk-content-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .talk-text {
    text-align: center;
  }

  .phone-mockup {
    position: static;
    margin-top: -100px; /* adjust for better mobile overlap */
  }
}


/* Sections */
.section {
  background-color: #fff;
  padding: 80px 20px;
}

.section.alt {
  background-color: #f3f4f6;
}

.section h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 24px;
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

/* Cards */
.card-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #fff;
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  flex: 1;
  min-width: 280px;
  max-width: 340px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  color: #F17720;
  margin-bottom: 16px;
}



/* Three Column */
.three-column {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.three-column > div {
  flex: 1;
  min-width: 280px;
}

/* Bullet List */
.bullet-list {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 0;
}

.bullet-list li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}

.bullet-list li::before {
  content: '✔';
  color: #00A7E1;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Contact Form */
.contact form {
  display: grid;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.contact input,
.contact select,
.contact textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 100%;
  font-size: 16px;
}

.contact textarea {
  height: 120px;
}



/* Footer */
.site-footer {
  background: #fff;
  padding: 60px 20px 20px;
  color: #333;
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-left {
  position: relative;
}

.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo {
  height: 120px;
  margin-right: 10px;
}
@media only screen and (max-width: 600px) {
  .footer-logo {
    height: 90px;
    margin-right: 10px;
  }
}

.footer-links {
  display: flex;
}
.footer-column{
  display: flex;
  gap: 30px;
  margin-top: 50px;
}
@media only screen and (max-width: 600px) {
  .footer-column{
    justify-content: center;
    flex-wrap: wrap;
  }
}

.footer-column a {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #333;
  text-decoration: none;
}

.footer-column a:hover {
  color: #00A7E1;
}

.footer-bottom {
  border-top: 1px solid #eee;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-bottom .left a {
  margin-right: 20px;
  color: #666;
  text-decoration: none;
}

.footer-bottom .right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icons a {
  color: #666;
  margin-right: 10px;
  font-size: 18px;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-bottom .right {
    flex-direction: column;
    align-items: flex-start;
  }

  /* .footer-bottom .left {
    display: none;
  } */
}


/* Go to Top Button */
.go-top {
position: fixed;
    bottom: 20px;
    right: 24px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 20px;
    padding: 12px 16px;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    width: 50px;
    height: 50px;
    display: flex
;
    justify-content: center;
    align-items: center;
}

.go-top:hover {
  background-color: #F17720;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Custom Modal Base Styles */
.custom-modal {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.6);
  padding-top: 60px;
}

/* Modal Content Box */
.custom-modal-content {
  background-color: #fff;
  margin: auto;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 900px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

/* Modal Body Scroll */
.modal-body {
  max-height: 60vh;
  overflow-y: auto;
  margin-top: 20px;
}

.modal-body h4 {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.modal-body h5 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #444;
}

.modal-body ul {
  margin-left: 20px;
  padding-left: 10px;
  list-style-type: disc;
}

.modal-body ul li {
  margin-bottom: 8px;
}