:root {
    --font-primary: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
    --color-text: #202020;
    --color-background: #fff;
    --color-primary: #567F53;
    --color-primary-hover: #456a44;
    --color-secondary:#1c465c;
    --color-white: #fff;
      --green: #567F53;
  --light: #f6f8f5;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
  overflow-x: hidden;
}

html {
    font-size: clamp(14px, 1.2vw, 16px); /*16px*/
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: all 0.3s ease;
}


ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container{
    width: min(1520px, 92%);;
    max-width: 1520px;
    margin: 0 auto;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.header{
    background-color: #fff;
}
.brand-logo img{
  width: 250px;
  height: 54px;
}

/* NAV - Desktop */
.navbar-ul {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-item-dropdown {
    position: relative;
}

/* Multi-column dropdown */
.nav-item-dropdown ul {
    position: absolute;
    top: 120%;
    left: 0;
    width: 720px;
    background: #fff;
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 12px 25px;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-item-dropdown:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item-dropdown ul li {
    list-style: none;
}

.nav-item-dropdown ul li a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    color: #333;
    border-radius: 8px;
    transition: all 0.25s ease;
    position: relative;
}

.nav-item-dropdown ul li a:hover {
    background: #f1f5f9;
    color: var(--color-primary);
    transform: translateX(6px);
}

.nav-item-dropdown ul li a::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    width: 5px;
    height: 5px;
    background: var(--color-primary);
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    transition: 0.3s;
}

.nav-item-dropdown ul li a:hover::before {
    transform: translateY(-50%) scale(1);
}

/* Dropdown arrow */
.dropdown-toggle::after {
    content: "▾";
    margin-left: 6px;
    font-size: 20px;
    transition: 0.3s;
}

.nav-item-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Second dropdown column fix */
.nav-item-dropdown:nth-child(2) ul {
    width: 360px;
    grid-template-columns: repeat(2, 1fr);
}

.grid-col{
    display: unset !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
}
.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #1d4871;
    border-radius: 2px;
}

.btn {
    display: flex;
    gap: 12px;
}


/* Base Button */
.btn a {
    position: relative;
    padding: 12px 22px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
    color: var(--color-white);
    font-weight: 500;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


.btn a:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.btn a:active {
    transform: translateY(0) scale(0.98);
}

/* Shine Animation */
.btn a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-25deg);
    transition: 0.6s;
}

/* Shine on Hover */
.btn a:hover::before {
    left: 130%;
}


.btn a:last-child {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.btn a:last-child:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
.navbar-ul li a{
    color: var(--color-text) z;
}

/* .nav-btn a:hover {
    background-color: var(--color-primary-hover);
} */

.hero-section {
    position: relative;
    padding: 100px 0 100px 0;
    background-image: url(../images/bghero.webp);
    height: 768px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    
}
.curved-section {
position: absolute;
  width: 100%;
    height: 100px;
    bottom: 0%;
  background: url('../images/wave.webp') no-repeat center/cover;
 
}
.flex-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.text_content {
    width: 50%;
}
.form{
    width: 40%;
}

.text_content h1 {
    font-size: clamp(28px, 4vw, 50px);
    margin-bottom: 20px;
    color: var(--color-white);
    line-height: 1.2;
}
.text_content p {
    font-size: clamp(15px, 1.4vw, 18px);
    margin-bottom: 10px;
    color: var(--color-white);
}
.text_content .btn {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-direction: row;
}

.text_content .btn a {
    position: relative;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.text_content .btn a .icon {
  width: 40px;
    min-width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #000f1e, #16394a);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size:  clamp(14px, 1.2vw, 16px);
    -webkit-animation: opacity 1s infinite linear;
    color: var(--color-white);
}
/* Icon Circle */
.btn a .icon {
    width: 30px;
    min-width: 30px;
    height: 30px;
    background: linear-gradient(144deg, #032a00 0%, #456a44 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size:  clamp(14px, 1.2vw, 16px);
    -webkit-animation: opacity 1s infinite linear;
    color: var(--color-white);
}

@keyframes opacity {
  0% {
    opacity: 1;
}

50% {
    opacity: .2;
}
100% {
    opacity: 1;
}
}
/* Primary Button */
.text_content .btn a:nth-child(1) {
    background: linear-gradient(135deg, #1d4871, #16394a);
    color: #fff;
}

/* Secondary Button */
.text_content .btn a:nth-child(2) {
    background: transparent;
    border: 2px solid #1d4871;
    color: #fff;
}

/* Hover Lift + Glow */
.text_content .btn a:hover {
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* Click Effect */
.text_content .btn a:active {
    transform: scale(0.97);
}

/* Shine Effect */
.text_content .btn a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.25);
    transform: skewX(-25deg);
    transition: 0.6s;
}

.text_content .btn a:hover::before {
    left: 130%;
}

/* Secondary Hover Fill */
.text_content .btn a:nth-child(2):hover {
    background: linear-gradient(135deg, #1d4871, #16394a);
    border-color: transparent;
}

.text_content img {
    width: 100%;
    height: auto;
}


/* Wrapper */
.form-wrapper {
    position: relative;
}

/* Offer Badge */
.offer {
    position: absolute;
    top: -100px;
    right: -120px;
    width: 100%;
    max-width: 32%;
    color: #fff;
    padding: 8px 14px;
    border-radius: 30px;
    font-weight: 600;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}


/* Form Box */
.form-box {
    /* width: 360px; */
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    animation: fadeUp 0.8s ease;
}

/* Heading */
.form-box h2 {
    font-size: clamp(26px, 3vw, 35px);
    color: #1c465c;
    margin-bottom: 5px;
}

.form-box p {
    font-size: clamp(15px, 1.4vw, 18px);
    color: #777;
    margin-bottom: 20px;
}

/* Fields */
.field {
    position: relative;
    margin-bottom: 18px;
}

.field input,
.field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: clamp(18px, 1.8vw, 22px);
    transition: 0.3s;
}

.field textarea {
    height: 90px;
    resize: none;
}

/* Focus Effect */
.field input:focus,
.field textarea:focus {
    border-color: #1c465c;
    box-shadow: 0 0 0 2px rgba(28,70,92,0.1);
}

/* Floating Label */
.field label {
    position: absolute;
    top: 50%;
    left: 12px;
    color: #999;
    font-size: clamp(14px, 1.2vw, 16px);
    transform: translateY(-50%);
    background: #fff;
    padding: 0 5px;
    transition: 0.3s;
    pointer-events: none;
}

.field input:focus + label,
.field input:valid + label,
.field textarea:focus + label,
.field textarea:valid + label {
    top: -7px;
    font-size: clamp(14px, 1.2vw, 16px);
    color: #1c465c;
}

/* Button */
button {
    width: 100%;
    padding: 12px;
     background: linear-gradient(135deg, #1d4871, #16394a);
    color: #fff;
    
    border: none;
    border-radius: 8px;
    font-size: clamp(14px, 1.2vw, 16px);
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #16394a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(28,70,92,0.2);
}




.trusted_partner{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 100px 0;
}

.trusted_partner h2{
    font-size: clamp(32px, 5vw, 65px);
    color: #6E926E;
    font-weight: 600;
    line-height: 1;
    text-align: center;

}
.trusted_partner h2 span{
    color: #1c465c;
    font-size:  clamp(40px, 8vw, 100px);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}
.trusted_partner h2 .flag{
  background: url("../images/usaflag.webp") no-repeat center;
  background-size: 100%;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: bold;
  

}

.trusted_partner p{
    font-size: clamp(15px, 1.4vw, 18px);
    color: #777;
    text-align: center;
    margin-top: 20px;
}

.trusted_partner .partner-logos{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-direction: row;
}

.story_section{
    background-image: url(../images/bg-texture.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.story_section h2{
    font-size: clamp(32px, 5vw, 65px);
    color: var(--color-white);
    font-weight: 600;
    line-height: 1;
    text-align: center;
}
.story_section p{
    font-size: clamp(15px, 1.4vw, 18px);
    color: #fff;
    text-align: center;
    margin-top: 20px;
    max-width: 800px;
}
.story_section .text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.text-content ul{
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;

}
.text-content ul li{
    background-color: var(--color-white);
    color: var(--color-primary);
    padding: 20px 40px;
    border-radius: 10px;
    font-weight: 500;
}
.text-content ul li a{
    color: var(--color-primary);
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 500;
}

.author_section{
    padding: 120px 0;
    
}

.author_section .container{
    
    display: flex;
    gap: 40px !important;
    
}
.author_section .container .author-image{
width: 50%;
}
.author_section .container .text-content{
width: 50%;

/* additional css */
display: flex;
justify-content: space-between;
flex-direction: column;
gap: 20px;
}


.about-achieve-wrapper{
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin: 0 0 20px 0;
}
.item-content{
    border-radius: 10px;
    padding: 20px;
    background-color: #1d4871;
    color: var(--color-white);
}
.item-content h2{
    font-size: clamp(20px, 2.2vw, 28px) !important;
    color: var(--color-white) !important;
}
.item-content p {
    margin-top: 0 !important;    
}
.author_section .text-content h2{
    font-size: clamp(28px, 4vw, 50px);
    color: #6E926E;
    font-weight: 600;
    line-height: 1;
}
.author_section .text-content span{
    color: #1c465c;
     font-size: clamp(28px, 4vw, 50px);
}

.author_section .text-content p{
    font-size: clamp(15px, 1.4vw, 18px);
    margin-top: 10px;
}

.author_section .author-image img{
    border-radius: 2px;
}


.published-section{
    display: flex;
    flex-direction: column;
    padding: 100px 0  100px 0;
   background: url('../images/bookCover.webp') no-repeat center/cover;
}
.published-section .container h2 {
    color: #fff;
    font-size: clamp(32px, 5vw, 65px);
    text-align: center;
    font-weight: 600;
}
.published-section .container .highlight{
  
    font-weight: 500;
}

.sbp_slider {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

.sbp_track {
  display: flex;
  align-items: center;
  transition: transform 0.6s ease;
}

.sbp_slide {
  min-width: 500px;
  height: 400px;
  margin: 0 15px;
  border-radius: 14px;
  overflow: hidden;
  transform: scale(0.8);
  opacity: 0.5;
  transition: all 0.5s ease;
}

.sbp_slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CENTER ACTIVE */
.sbp_slide.active {
  transform: scale(1);
  opacity: 1;
}

/* SIDE NEIGHBORS */
.sbp_slide.prev,
.sbp_slide.next {
  transform: scale(0.9);
  opacity: 0.8;
}
.btn-primary{
  
  align-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-primary a{
background-color: #fff;
  border: 1px solid#fff;
  color: var(--color-primary);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 10px;
  margin-top: 20px;
}
.btn-primary a:hover{
background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: var(--color-white);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 10px;
}


/* Process */

.sbp-process {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f9fb, #ffffff);
  font-family: 'Poppins', sans-serif;
}

.sbp-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.sbp-left h2 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.2;
  color: #1c465c;
}

.sbp-left h2 span {
  background: #1c465c;
  -webkit-background-clip: text;
  color: transparent;
}

.intro {
  margin: 15px 0 25px;
  color: #555;
  line-height: 1.6;
}

.sbp-list {
  list-style: none;
  padding: 0;
}

.sbp-list li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  color: #444;
}

.sbp-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1c465c;
  font-weight: bold;
}

/* BUTTONS */
.sbp-buttons {
  margin-top: 35px;
}

.btn {
  
  border-radius: 30px;
  text-decoration: none;
  margin-right: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.btn.primary {
  background: #1c465c;
  color: #fff;
}

.btn.primary:hover {
  background: #163646;
}

.btn.secondary {
  border: 2px solid #1c465c;
  color: #1c465c;
}

.btn.secondary:hover {
  background: #1c465c;
  color: #fff;
}

/* RIGHT */
.sbp-right h3 {
  font-size: clamp(20px, 2.2vw, 28px);  
  background: #1c465c;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 20px;
}

.sbp-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.icon {
  font-size: clamp(24px, 2.5vw, 32px);
  margin-bottom: 10px;
}
.card .lottie-player {
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.card:hover .lottie-player {
  transform: scale(1.15);
}

/* cta */

.hero {
  background-image: url('../images/bgcover.webp');
  color: #fff;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1520px;
  margin: auto;
}

/* LEFT CONTENT */
.hero-content {
  max-width: 800px;
}

.hero-content h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.2;
  font-weight: 600;
}

.hero-content h2 span {
  color: #163646;
}

.hero-content p {
  margin: 20px 0 30px;
  color: #fff;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 15px;
}



.hero-image img {
 width: 100%;
  max-width: 100%;
}





/* style css */

.process-horizontal {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f7f9fc, #eef3f8);
  
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: clamp(32px, 5vw, 65px);
  margin-bottom: 80px;
  color: var(--color-secondary);
}

.section-title span {
  color: var(--color-primary);
}
.step .circle h3{
    font-size: clamp(20px, 2.2vw, 28px);
    color: var(--color-primary);
    font-weight: 700;
}

/* Wrapper */
.timeline-wrapper {
  position: relative;
  overflow-x: auto;
  padding-bottom: 30px;
}


/* Steps Row */
.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
    min-width: 900px;
    flex-wrap: wrap;
}

/* Each Step */
.step {
  flex: 0 0 auto;
}


/* Circle Card */
.circle {
  width: 330px;
  height: 330px;
  border-radius: 50%;
  padding:30px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}



.circle .icon {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 10px;
}

/* Text */
.circle h3 {
  font-size: clamp(14px, 1.2vw, 16px);
  margin-bottom: 8px;
}

.circle p {
  font-size: clamp(12px, 1vw, 14px);
  color: #555;
}

.circle:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

/* SECTION */
.sbp_section {
    padding: 100px 20px;
    max-width: 1520px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.sbp_title {
  color: var(--color-secondary);
  text-align: center;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;

}
.sbp_title span{
  color: var(--color-primary);
}

.sbp_section .sbp_desc {
  align-self: center;
  text-align: center;
  color: var(--color-text);
  max-width:400px;
  margin-top: 10px;
  margin-bottom: 60px;
  
}
.sbp_desc {
  align-self: center;
  text-align: center;
  color: var(--color-text);
  max-width:400px;
  margin-top: 10px;
}

/* GRID */
.sbp_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.sbp_right {
  display: grid;
  gap: 24px;
}

/* CARD */
.sbp_card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.sbp_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* VIDEO */
.sbp_video {
  position: relative;
  height: 350px;
  background-size: cover;
  background-position: center;
}

.sbp_small .sbp_video {
  height: 350px;
}

.sbp_video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* PLAY BUTTON */
.sbp_play {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  color: black;
  padding: 10px 14px;
  border-radius: 30px;
  font-size: clamp(12px, 1vw, 14px);
  cursor: pointer;
  z-index: 9999;
}

/* CONTENT */
.sbp_content {
  padding: 24px;
}

.sbp_quote {
  font-size: clamp(15px, 1.4vw, 18px);
  margin-bottom: 20px;
  line-height: 1.5;
}

.sbp_name {
  font-weight: 600;
}

.sbp_role {
  color: #777;
  font-size: clamp(12px, 1vw, 14px);
}

/* MODAL */
.sbp_modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
}


/* Modern CSS for testimonials cards */
.card-t {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    max-width: 400px;
    position: relative;
}

.card-t:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.reviewer-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: clamp(16px, 1.6vw, 20px);
    margin-right: 12px;
    flex-shrink: 0;
}


.avatar-pg { background: #e74c3c; }
.avatar-st { background: #3498db; }
.avatar-mr { background: #2ecc71; }
.avatar-ec { background: #f39c12; }
.avatar-dp { background: #9b59b6; }
.avatar-jw { background: #1abc9c; }
.avatar-aj { background: #e67e22; }
.avatar-mg { background: #c0392b; }
.avatar-rl { background: #16a085; }
.avatar-ln { background: #8e44ad; }
.avatar-jw2 { background: #2980b9; }
.avatar-ap { background: #27ae60; }
.avatar-sm{background: #1D4ED8;}
.avatar-dk{background:#FF3722;}
.avatar-lc{background:#FF8622;}
.avatar-rh{background:#004D40;}


.reviewer-info {
    flex: 1;
}

.author-name {
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 600;
    color: #020202;
    margin-bottom: 3px;
    font-family: 'Visby', 'Open Sans', Arial, sans-serif;
}


.review-meta {
    font-size: clamp(14px, 1.2vw, 16px);
    color: #999;
    margin-bottom: 10px;
}

.stars img {
   margin-bottom: 10px;
}



.review-title {
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 600;
    color: #020202;
    margin-bottom: 8px;
    font-family: 'Visby', 'Open Sans', Arial, sans-serif;
}


.author-review {
    font-size: clamp(14px, 1.2vw, 16px);
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
    font-family: 'Visby', 'Open Sans', Arial, sans-serif;
}

.frame_1{
  position: absolute;
  transform: translate(23px, 20px);
}
.frame{
  position: absolute;
  transform: translate(40px, 20px);
  
}
.d-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.row-t{
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 20px;
    width: 200% !important;
}
.container-about-story{
    padding: 80px 0 80px 0;
}
section.process {
    padding: 100px 0 100px 0;
    background: linear-gradient(135deg, #f7f9fc, #eef3f8);
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

section.process .container {
width: 200% !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.process {
  overflow: hidden;
  padding: 60px 0;
}


.row-t {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}


.card-t {
  min-width: 450px;
  max-width: 320px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card-t:hover {
  transform: translateY(-8px);
}

/* contact us section working  */

.contact_section{
  background-image: url(../images/ebook_cover.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 100px 0;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
/* Glass Box */
.sbp-glass-box {
  width: 100%;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  
}

.sbp-glass-box  .left_content{
      width: 50%;
  padding: 40px;
  text-align: left;
  color: var(--color-white);
}

.form_content{
  width: 50%;
  background-color: var(--color-white);
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  align-content: center;
}
.form-wrapper h3{
  max-width: 80%;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 600;
  line-height: 1.3em;
  color: #1c465c;
  margin-bottom: 30px;
}
.badge{
  position:absolute;
  right: 0;
  top: 0;
  transform: translate(61%, -60%);
}

.icon_box{
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.icon_box .content{
  display: flex;
  flex-direction: column;
  
}
.icon_box .content h4{
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
}
.left_content h3{
  font-size: clamp(32px, 4.5vw, 55px);
  font-weight: 600;
  color: #fbfbfb;
}

.form_content .form-box{
  box-shadow: none;
}

/* Footer Base */
.sbp_footer {
  background: #fff;
  color: #2c2c2c;
  font-family: 'Arial', sans-serif;
  padding: 60px 0px 0px;
  border-radius: 12px 12px 0 0;
  max-width: 1520px;
  margin: 0 auto;
}

.sbp_footer a {
  color: #2c2c2c;
  text-decoration: none;
  transition: 0.3s;
}

.sbp_footer a:hover {
  color: var(--color-primary-hover);
}

/* Footer Columns */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 0px;
}

.footer-col {
  flex: 1 1 150px;
  background: #fff;
  padding: 25px 20px 0 0;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}



/* Brand column larger */
.footer-col.brand {
  flex: 2 1 320px;
}

.footer-logo {
width: 430px;
height: 101px;
margin-bottom: 30px;
}

.footer-col h3 {
  font-size: clamp(24px, 2.5vw, 32px);
  margin-bottom: 15px;
  color: #1c465c;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: clamp(16px, 1.6vw, 20px);
}


/* Social Icons */
.social-icons a {
  display: inline-block;
  margin-right: 12px;
  font-size: 1.6rem;
  color: #2c2c2c;
  transition: transform 0.3s, color 0.3s;
  margin-top: 20px;
}

.footer-bottom {
  width: 100%;
  border-top: 1px solid #ddd;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: clamp(16px, 1.6vw, 20px);
}

.payments img {
  height: 30px;
  margin-left: 10px;

}
.payments{
  display: flex;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2c2c2c;
}

.contact-list li i {
  color: var(--color-primary); 
  min-width: 20px; 
}

/* story-writing */


.story_writing{
  background-image: url('../images/storywriting.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 100px 0;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.banner-inner{
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.banner-inner .left_content, .right_content {
    width: 50%;
}
.banner-inner .left_content h1{
  font-size: clamp(32px, 4vw, 60px);
  color: var(--color-white);
  font-weight: 600;
  line-height: 1;
}
.banner-inner .left_content p{
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--color-white);
  margin: 20px 0;
  max-width: 550px;
}
.cta-section{
  padding: 100px 0 100px 0;
  
}
.cta-section .container{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cta-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

}
.cta-content .left,.cta-content .right{
  width: 50%;
}
.cta-content .right h2{
  font-size: clamp(32px, 4vw, 60px);
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 20px;
}
.cta-content .right h2 span{
      color: #1c465c;
    font-size: clamp(32px, 4vw, 60px);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.cta-content .right p{
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--color-text);
  margin-bottom: 20px;
}
.cta-content .left img{
  border-radius: 20px;
}

.book-journey {
  --green: #567F53;
  --light: #f6f8f5;
  padding: 80px 20px;
  background: var(--light);
  font-family: 'Poppins', sans-serif;
}


/* Heading */
.book-journey .bj-title {
  font-size: 36px;
  color: var(--green);
  margin-bottom: 10px;
}

.book-journey .bj-sub {
  color: #777;
  margin-bottom: 60px;
}

/* Grid */
.book-journey .bj-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Line */
.book-journey .bj-steps::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 5%;
  width: 90%;
  border-top: 2px dashed var(--green);
  z-index: 0;
}

/* Moving Dot */
.book-journey .bj-steps::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 5%;
  width: 10px;
  height: 10px;
  background: #7cff72;
  border-radius: 50%;
  box-shadow: 0 0 10px #7cff72;
  animation: bj-move 6s linear infinite;
}

/* Animation */
@keyframes bj-move {
  0% { left: 5%; }
  100% { left: 95%; }
}

/* Card */
.book-journey .bj-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1;
  transition: 0.3s;
}

.book-journey .bj-card:hover {
  transform: translateY(-6px);
}

/* Step badge */
.book-journey .bj-step {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 10px;
}

/* Text */
.book-journey .bj-card h3 {
  margin: 10px 0;
  font-size: 18px;
}

.book-journey .bj-card p {
  font-size: 14px;
  color: #666;
}

/* Responsive */
@media (max-width: 900px) {
  .book-journey .bj-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .book-journey .bj-steps::before,
  .book-journey .bj-steps::after {
    display: none;
  }
}

@media (max-width: 500px) {
  .book-journey .bj-steps {
    grid-template-columns: 1fr;
  }
}


.sb-about.sb-mvv-premium{
  padding: 100px 20px;
  background: #f6fbf7;
  font-family: Poppins, sans-serif;
  color: #1c1c1c;
}


.sb-mv-wrap{
 
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 80px;
}

.sb-mv-card{
  background: #ffffff;
  border-radius: 18px;
  padding: 35px;
  border: 1px solid #567F53;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.sb-mv-card:hover{
  transform: translateY(-6px);
}

.sb-mv-card h3{
  margin: 12px 0;
  font-size: 32px;
}

.sb-mv-card p{
  color: #666;
  line-height: 1.6;
  font-size: 18px;
}

/* ICON */
.sb-icon{
  width: 44px;
  height: 44px;
  background: #567F53;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sb-icon svg{
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
}

/* ================= VALUES ================= */
.sb-values{
  
  margin: auto;
}

.sb-title{
  text-align: center;
  margin-bottom: 40px;
}

.sb-title h2{
  
    font-size: clamp(32px, 4vw, 60px);
    color: var(--color-primary);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 20px;

}

.sb-title p{
  color: #777;
  font-size: 14px;
}

/* GRID */
.sb-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* VALUE CARD */
.sb-vcard{
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  border-top: 3px solid transparent;
}

.sb-vcard:hover{
  transform: translateY(-6px);
  border-top: 3px solid #567F53;
}

.sb-vcard h4{
  margin: 12px 0 6px;
  font-size: 32px;
}

.sb-vcard p{
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

/* ICON SMALL */
.sb-ic{
  width: 60px;
  height: 60px;
  background: rgba(86,127,83,0.12);
  border-radius: 10px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sb-ic svg{
  width: 20px;
  height: 20px;
  stroke: #567F53;
  fill: none;
  stroke-width: 1.6;
}

/* ================= RESPONSIVE ================= */
@media(max-width: 900px){
  .sb-mv-wrap{
    grid-template-columns: 1fr;
  }

  .sb-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px){
  .sb-grid{
    grid-template-columns: 1fr;
  }
}


.portfolio-section{
    padding: 100px 0;
    background: #fff;
    color: #1c1c1c;
}

/* heading */
.portfolio-section h2{
    text-align: center;
    font-size: clamp(28px, 4vw, 55px);
    margin-bottom: 30px;
}

.portfolio-section h2 span{
    color: #567F53;
}

/* tabs */
.portfolio-tabs{
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 40px;
  
}

.portfolio-tabs .tab{
    padding: 10px 18px;
    border: 1px solid #567F53;
    background: transparent;
    color: #567F53;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.portfolio-tabs .tab.active,
.portfolio-tabs .tab:hover{
    background: #567F53;
    color: #fff;
}

/* grid */
.portfolio-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* item */
.portfolio-grid .item{
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
    cursor: pointer;
}

.portfolio-grid .item img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* hover */
.portfolio-grid .item:hover img{
    transform: scale(1.08);
}

/* hide items */
.hide{
    display: none;
}

/* responsive */
@media(max-width: 1024px){
    .portfolio-grid{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 768px){
    .portfolio-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 480px){
    .portfolio-grid{
        grid-template-columns: 1fr;
    }
}


.event-section {
  padding: 80px 20px;
  background: #567F53;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.event-title {
      color: #fff;
    font-size: clamp(32px, 5vw, 65px);
    text-align: center;
    font-weight: 600;
}


.event-desc {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 50px;
  color:#fff;
  opacity: 0.9;
}

/* Slider */
.slider {
  overflow: hidden;
  margin: 25px 0;
}

.slide-track {
  display: flex;
  width: calc(250px * 8);
}

/* Slide Card */
.slide {
  position: relative;
  width: 350px;
  height: 350px;
  margin: 0 12px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Image */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Overlay Text */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  text-align: left;
}

/* Hover Effect */
.slide:hover img {
  transform: scale(1.1);
}

/* Animations */
.slider-top .slide-track {
  animation: scrollRight 25s linear infinite;
}

.slider-bottom .slide-track {
  animation: scrollLeft 25s linear infinite;
}

@keyframes scrollRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollLeft {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .event-title {
    font-size: 28px;
  }

  .slide {
    width: 180px;
    height: 130px;
  }
}
.slider:hover .slide-track {
  animation-play-state: paused;
}


    /* Popup Form Start */
    .popup-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1000;
    }

.popup-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 50%;
    /* height: 617px; */
    border-radius: 30px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12);
    /* padding: 30px 20px; */
    box-sizing: border-box;
    overflow: hidden;
}
    .close-btn {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 32px;
        cursor: pointer;
        color: #222;
        background: #fff;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        text-align: center;
        line-height: 40px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .main__container__popup {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        padding: 0px 0px 0px !important;
        gap: 40px;
    }

   .left__container_popup {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 90%;
    margin-top: 37px;
    padding: 35px;
    justify-content: center;
}

    img.popup__inner_img {
        /* height: 550px; */
        transform: scale(1.1);
    }

    .right__container__popup {
        height: 530px;
        position: relative;
        width: 80%;
        border: 5px solid #fff;
        border-radius: 30px;
        padding: 20px;
        box-sizing: border-box;
        color: #333;
        font-family: Arial, sans-serif;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        flex-direction: row;
    }

    .popup-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 25px 0px;
        border-radius: 15px;
        width: 100%;
        margin: 20px 20px 0 0px;
    }

.popup-form input, .popup-form textarea {
    width: 100%;
    padding: 16px 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 18px;
    outline: none;
    transition: border-color 0.3s;
}
    .popup-form input:focus,
    .popup-form textarea:focus {
        border-color: #4a7a4f;
    }

    .popup-form textarea {
        min-height: 130px;
        resize: vertical;
    }

    .popup-form button {
           background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
    color: var(--color-white);
        color: #fff;
        border: none;
        padding: 12px;
        font-size: 16px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        transition: background 0.3s;
        width: 100%;
}


/* ===== Heading ===== */
.left__container_popup h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 10px;
}

/* ===== Paragraph ===== */
.left__container_popup p {
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
  margin: 0;
  max-width: 90%;
  margin-bottom: 10px;
}

/* ===== Feature List ===== */
.popup-features {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.popup-features li {
  font-size: 14px;
    color: #fff;;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}
