/* 
    Theme Name: Portfolio
    Theme author: Siddharth
    Version: 1.0
*/

/* Header Background */
body {
    font-family: 'Cabin', sans-serif;
}
.block{
    border-radius: 50px !important;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #f2f2f2;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    opacity: 0.85;
}

/* Container Layout */
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Section */
.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

/* Navigation */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav-menu li a:hover {
    color: #000;
}


/* HERO SECTION */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-section {
    /* background: linear-gradient(135deg, #0d1f2d, #12344a); */
    padding: 100px 0;
    color: #000000;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    max-width: 733px;
    padding: 15px;
    padding-left: 40px;
    padding-right: 21px;
    padding-bottom: 25px;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content h1 span {
    color: #000000; /* soft green */
}

.hero-text {
    margin-top: 25px;
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 20px;
}

/* Buttons */
.btn-primary {
    background: #a8c9a2;
    color: #0d1f2d;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline {
    border: 1px solid #a8c9a2;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    color: #a8c9a2;
}

/* Image */
.hero-image img {
   max-height: 600px;
    border-radius: 10px; 
}
/* responsive design */
/* ============================= */
/* RESPONSIVE STYLES */
/* ============================= */

/* Tablets */
@media (max-width: 1024px) {

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
        padding: 0;
    }

    .hero-image img {
        width: 280px;
        margin: 0;
        padding: 0;
    }

    .hero-content h1 {
        font-size: 48px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .hero-section {
        padding: 60px 0;
    }

    .hero-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .hero-image img {
        width: 220px;
        border-radius: 30px;
    }
}

/* headerresponsive */
@media (max-width: 768px) {

    .header-inner {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================= */
/* FOOTER */
/* ============================= */

.site-footer {
    background: #13394b;
    color: #dce7ed;
    padding: 80px 0 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.footer-left {
    max-width: 600px;
}

.footer-left h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-left p {
    line-height: 1.7;
    margin-bottom: 30px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-btn {
    background: #a8c9a2;
    color: #0d1f2d;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.footer-numbers {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.footer-right h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-right p {
    font-size: 14px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #1e4d62;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background: #a8c9a2;
    color: #0d1f2d;
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 50px 0 30px;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
}
@media (max-width: 992px) {

    .footer-top {
        flex-direction: column;
        gap: 50px;
    }

    .footer-contact {
        flex-direction: column;
        align-items: flex-start;
    }
}
.btn-primary{
    background-color: #9EBCA0 !important;
}
a{
    color: #000000 !important;
}

/* casestudy image */
.casestudy-img {
    width: 65%;
    border-radius: 20px;
    margin-top: 20px;
    margin-left: 230px;
}
.casestudy-img2 {
    width: 65%;
    border-radius: 20px;
    margin-top: 20px;
    margin-right: 100%;
    
}
.badge{
    background-color: #F8F6EA !important;  /*tags */
    
}
/* testimony */
/* ================================
   Testimonials Section
================================ */

.testimonials {
    background: #f8f9fa;
    padding: 80px 0;
   
}

/* Testimonial Card */
.testimonials .carousel-item > div {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 50px;
    background: #ffffff;
    border-radius: 24px;
    height: 400px;

    /* Premium Soft Shadow */
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 30px 60px rgba(0, 0, 0, 0.08);

    transition: all 0.4s ease;
}

/* Subtle hover lift */
.testimonials .carousel-item > div:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 40px 80px rgba(0, 0, 0, 0.12);
}

/* Quote Text */
.testimonials p {
    vertical-align: middle;
    font-size: 20px;
    line-height: 1.9;
    font-style: italic;
    color: #2c2c2c;
}

/* Name */
.testimonials h6 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 30px;
}

/* Role */
.testimonials small {
    font-size: 14px;
    color: #777;
}

/* ================================
   Carousel Controls
================================ */

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #000;
    border-radius: 50%;
    padding: 18px;
}

/* ================================
   Carousel Indicators
================================ */

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #bbb;
    border: none;
}

.carousel-indicators .active {
    background-color: #000;
}

/* responsive css for front page */


/* -----------------------------
TABLETS (iPad / iPad Pro)
------------------------------*/

@media (max-width: 1024px) {

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-image {
        text-align: center;
    }

    .hero-image img {
        max-width: 360px;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .case-study-row {
        display: flex;
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .case-study-row img {
        margin: auto;
    }
}


/* -----------------------------
MOBILE (Large Phones)
------------------------------*/

@media (max-width: 768px) {

    .hero-section {
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }

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

    .case-study-row {
        margin-bottom: 50px;
    }

    .badge {
        font-size: 13px;
        padding: 10px 16px;
    }

    .carousel-item p {
        font-size: 15px;
    }
}


/* -----------------------------
SMALL PHONES (iPhone SE etc)
------------------------------*/

@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-text {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .badge {
        font-size: 12px;
        padding: 8px 12px;
    }

    .carousel-item {
        padding: 10px;
    }

    .carousel-item p {
        font-size: 14px;
    }

}

/* front page ends here */
/* philosophy-section */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

/* Big circle background */
.icon-circle {
    width: 65px;
    height: 65px;
    background: #1D2C35;
;   /* dark blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Small centered icon */
.icon-circle img {
    width: 38px;
    height: auto;
    object-fit: contain;
}

/* Text styling */
.feature-list .text strong {
    font-size: 20px;
    display: block;
    margin-bottom: 8px;
}

.feature-list .text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* ------------------- */
/* Responsive */
/* ------------------- */

@media (max-width: 768px) {

    .feature-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 50px;
    }

    .icon-circle {
        width: 110px;
        height: 110px;
    }

    .icon-circle img {
        width: 32px;
    }
}
p{
    text-align: justify;
}

/* -----------------------------
   GLOBAL PAGE RHYTHM
--------------------------------*/
section {
  max-width: 1267px;
  margin: 0 auto;
  padding: 80px 24px;
}



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

/* -----------------------------
   TYPOGRAPHY (MATCH FIGMA)
--------------------------------*/
h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
}

h2 {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 24px;
}

h3 {
  font-size: 28px;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 16px;
}

h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

p {
  font-size: 18px;
  line-height: 1.65;
  color: #2b2b2b;
  max-width: 900px;
}

.subtitle {
  font-size: 18px;
  color: #555;
}

/* -----------------------------
   HERO SECTION
--------------------------------*/
.hero-section {
  max-width: none;
  background: transparent;
  padding: 120px 24px 80px;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content h1 span {
  color: #5f8f73;
}

.hero-text {
  margin: 24px 0;
  max-width: 520px;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  display: block;
}

/* -----------------------------
   PM QUOTE (PRIMARY CALLOUT)
--------------------------------*/
.pm-quote {
  background: #e9eef2;
  padding: 48px 56px;
  border-radius: 10px;
  position: relative;
  margin: 40px 0;
}

.pm-quote::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 70%;
  background: #1d2c35;
  border-radius: 4px;
}

.pm-quote p {
  font-size: 20px;
  line-height: 1.6;
  padding-left: 36px;
  margin: 0;
}

.pm-highlight {
  color: #1f6f8b;
  font-weight: 600;
}

/* -----------------------------
   REALITY CHECK IMAGE
--------------------------------*/
.reality img {
  width: 100%;
  max-width: 1000px;
  margin-top: 32px;
  display: block;
}

/* -----------------------------
   PIVOTAL SECTION
--------------------------------*/
.pivotal {
  padding-top: 40px;
}

.pivotal-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.pivotal-icon {
  width: 72px;
  height: 72px;
  background: #1d2c35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pivotal-icon img {
  width: 36px;
}

.pivotal-text .subtitle {
  font-size: 14px;
  color: #6b7280;
}

.pivotal-text .title {
  font-size: 20px;
  font-weight: 600;
  color: #1d2c35;
}

.pivotal-quote {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
  font-style: italic;
  max-width: 880px;
  padding-left: 32px;
  position: relative;
}

.pivotal-quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 56px;
  opacity: 0.25;
}

/* -----------------------------
   IMAGE SECTIONS
--------------------------------*/
section img {
  width: 100%;
  max-width: 1100px;
  margin: 32px auto 0;
  display: block;
}

.notify {
  background: #e8f1f4;
  padding: 24px;
  border-radius: 12px;
}

.state-img {
  background: #9ebca0;
  padding: 20px;
  border-radius: 12px;
}

/* -----------------------------
   FINDINGS BLOCKS
--------------------------------*/
.finding {
  background: #e8f1f4;
  padding: 48px;
  border-radius: 16px;
  display: grid;
  gap: 32px;
  margin: 40px 0;
}

/* -----------------------------
   THANK YOU SECTION
--------------------------------*/

.thank {
  text-align: center;
  padding: 140px 24px 120px;   /* more breathing room like Figma */
  max-width: 1200px;
  margin: 0 auto;
}

.thank img {
  width: 40px;              /* small heart like design */
  margin-bottom: 24px;
}

.thank h4 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

.thankyou {
  font-size: 20px;
  font-weight: 400;
  margin-top: 18px;
  max-width: 620px;         /* control line width */
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  color: #444;
}
/* -----------------------------
   RESPONSIVE — TABLET
--------------------------------*/
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  section {
    padding: 64px 24px;
  }

  h1 {
    font-size: 40px;
  }
}

/* -----------------------------
   RESPONSIVE — MOBILE
--------------------------------*/
@media (max-width: 640px) {
  section {
    padding: 56px 20px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  p {
    font-size: 16px;
  }

  .pm-quote {
    padding: 32px 28px;
  }

  .pm-quote p {
    font-size: 18px;
    padding-left: 28px;
  }

  .pivotal-box {
    gap: 16px;
  }

  .pivotal-icon {
    width: 60px;
    height: 60px;
  }

  .pivotal-icon img {
    width: 30px;
  }
}
.outcome {
    opacity: 1;
}

/* gradient for span */
.gradient-text {
  background: linear-gradient(
    -45deg,
    #6a5acd,
    #00c6ff,
    #ffd700,
    #ff6b6b,
    #6a5acd
  );

  background-size: 400% 400%;
  animation: gradientMove 6s ease infinite;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/*BIGDIX SELF SERVICE PAGE*?
/* =========================
   GLOBAL SECTION ALIGNMENT
========================= */

.self-hero,
.the-situation{
    max-width:1200px;
    margin:0 auto;
    padding:80px 24px;
}

/* =========================
   HERO SECTION
========================= */

.self-hero{
    text-align:center;
}

.self-banner{
    width:100%;
    max-width:700px;
    margin:0 auto 30px auto;
    display:block;
}

.self-hero .heading{
    font-size:40px;
    font-weight:700;
    margin-bottom:10px;
    color:#1d2c35;
}

.self-hero h6{
    font-size:16px;
    font-weight:400;
    color:#444;
}

.self-hero span{
    margin-left:20px;
}


/* =========================
   SITUATION SECTION
========================= */

.the-situation h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:20px;
}

.situation-text{
    font-size:18px;
    line-height:1.7;
    color:#333;
    max-width:820px;
}

/* spacing before quote */
.the-situation .pm-quote{
    margin-top:40px;
    margin-bottom:40px;
}

/* description under quote */
.the-situation h6{
    font-size:16px;
    margin-top:10px;
    margin-bottom:30px;
    font-weight:500;
    color:#333;
}

/* image block */

.the-situation img{
    width:100%;
    max-width:900px;
    display:block;
    margin:0 auto;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* caption under image */

.the-situation img{
    text-align:center;
    margin-top:12px;
    color:#666;
    font-size:14px;
}


/* =========================
   TABLET RESPONSIVE
========================= */

@media (max-width:1024px){

.self-hero,
.the-situation{
    padding:60px 20px;
}

.self-banner{
    max-width:600px;
}

.self-hero .heading{
    font-size:34px;
}

.situation-text{
    font-size:17px;
}

}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width:640px){

.self-hero,
.the-situation{
    padding:50px 18px;
}

.self-banner{
    max-width:100%;
}

.self-hero .heading{
    font-size:28px;
}

.self-hero h6{
    font-size:14px;
}

.self-hero span{
    display:block;
    margin-left:0;
    margin-top:4px;
}

.the-situation h2{
    font-size:24px;
}

.situation-text{
    font-size:16px;
}

.the-situation img{
    border-radius:6px;
}

}


