/* Root Variables */
:root {
  --primary-black: #130a06;
  --primary-white: #ffffff;
  --accent-gold: #d4a574;
  --accent-purple: #8b5a96;
  --text-light: rgba(255, 255, 255, 0.7);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: "Lato", sans-serif; */
  /* background-color: var(--primary-black);
  color: var(--primary-white); */
  /* line-height: 1.6; */
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #130a06;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

.menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: #130A06; /* updated bg */
  color: #ffffff;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 40px;
}

.closed-btn {
  position: absolute;
  top: 30px;
    right: 17%;
  background-color: #24140E; 
  border: none;
  border-radius: 50%; 
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

/* Close icon inside */
.closed-btn img {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(78%) sepia(16%) 
          saturate(332%) hue-rotate(352deg) brightness(91%) contrast(87%);
  /* forces #C9B59C color if SVG is black */
}

.menu-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  max-width: 1200px;
}

/* Navigation links */
.menu-links {
  list-style: none;
  /*padding: 0;*/
  /*margin: 0;*/
}
.menu-links li {
   margin: 28px 0;
}
.menu-links a {
  font-family: "Cinzel", serif;
  font-size: 28px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.menu-links a:hover {
  color: #C9B59C;
}
.menu-logo {
margin-right: 60px;
    
}

@media (max-width: 991px) {
  .menu-logo img {
    max-width: 160px;  /* smaller size */
  }
}

@media (max-width: 576px) {
  .menu-overlay {
    padding: 20px 0;  /* remove side padding, only top/bottom */
  }

  .menu-content {
    flex-direction: column;
    align-items: flex-start;  
    gap: 20px;
    width: 100%;
    margin: 0;
    padding-left: 15px;   /* ðŸ”¹ small left gap */
  }

  .menu-links {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
  }

  .menu-links li {
    margin: 20px 0;
  }

  .menu-links a {
    font-size: 22px;
  }

  .menu-logo {
    margin: 0;
    padding: 0;
  }

  .menu-logo img {
    max-width: 120px;
    display: block;
    margin: 0;
  }

  .closed-btn {
    top: 20px;
    right: 20px;   /* close button stays top-right */
  }
}

.custom-navbar {
  background: transparent;
  padding: 10px 20px;
  transition: background 0.3s ease;
}


.group50-btn {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 20px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2); /* default */
  /*box-shadow: 0 0 30px rgba(0,0,0,0.6);*/
  transition: background 0.4s ease, box-shadow 0.3s ease;
}

.menu-icon:hover {
background: rgba(169, 142, 109, 0.2); /* light gold tint */
  /*box-shadow: 0 0 40px rgba(0,0,0,0.8);*/
}

p{
      font-family: 'Cairo', sans-serif;
}

h1,h2,h3 {
      font-family: 'Cinzel', serif;
}
.group50-icon {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.custom-navbar {
  background: transparent;
  padding: 10px 20px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.custom-navbar.scrolled {
  background: #1f130d;       
  box-shadow: 0 2px 10px rgba(0,0,0,0.5); 
}

.custom-navbar .container {
  padding-left: 30px;   /* space on left */
  padding-right: 30px;  /* space on right */
}

.navbar-brand img.logo {
  display: block;
}

.menu-icon {
  padding: 15px;       /* make it proportional */
}

.navbar-brand {
  margin-left: 0;
}

.menu-icon {
  margin-right: 0;
}

/* Hero Section Base */
.hero-section {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 100vh; /* ensures it spans screen */
  background:#130a06;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      #130a06 0%,            
      rgba(18,9,4,0) 15%,     
      rgba(18,9,4,0) 85%,      
     #130a06 100%         
  );
  pointer-events: none;
  z-index: 1;
}


.hero-bg-wrapper {
  position: relative; /* no absolute, so it defines natural height */
  width: 100%;
  z-index: 0;
}


/* Background image (no cropping, full width) */
.hero-bg {
  width: 100%;
  height: auto;   /* natural ratio */
  display: block;
    object-fit: cover;
}

/* Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Glyphs */
.hero-glyph-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.glyph-image,
.bottom-glyph {
  max-width: 150px;
  height: auto;
}

/* Titles */
/* Prevent title words from breaking */
.hero-title {
  white-space: nowrap;   /* keep text in one line */
  display: block;        /* each h1 on its own line */
  font-family: 'Cinzel', serif;
  font-size: 96px;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin: 0;
}


/* Subtitle */
.hero-subtitle {
  font-family: 'Cairo', sans-serif;
  font-size: 24px;
  color: #fff;
  margin-top: 10px;
}

/* Responsive Scaling */
@media (max-width: 1399px) {
  .hero-title { font-size: 72px; }
}
@media (max-width: 991px) {
  .hero-title { font-size: 56px; }
  .hero-subtitle { font-size: 20px; }
}
/* Navbar Mobile Fix */
@media (max-width: 767px) {
  .custom-navbar .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .navbar-brand img.logo {
    max-height: 40px;   /* shrink logo */
    width: auto;
    margin-left:-20px;
  }

  .menu-icon {
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: auto;  /* push to right */
    background: rgba(0,0,0,0.2);
  }

  .group50-icon {
    width: 20px;
    height: 20px;
  }
    .line-image {
        width: 150px;
        height: 6px;
    }
}



/* Hero Section Mobile Fix */
@media (max-width: 767px) {
    .hero-title {
    white-space: normal;   /* ✅ allow text wrapping */
    font-size: clamp(20px, 6vw, 28px); /* responsive scaling */
    line-height: 1.3;
    text-align: center;
    /*max-width: 90%;      */
    margin: 0 auto;
  }

  .hero-bg {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-content {
    width: 100%;
    padding: 0 10px;
    gap: 15px;
  }

  .glyph-image,
  .bottom-glyph {
    max-width: 80px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.5;
  }

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

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 600px;  
  object-fit: contain; 
}
@media (max-width: 400px) {
  .glyph-image
 {
    max-width: 30px;  /* shrink further */
  }
}

/* Sections */

.legacy-section .image-container {
  background-size: cover;
  padding: 32px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.legacy-section {
  position: relative;
  background: #130a06 url(assets/images/pattern.png) center center;
  background-size: cover;
  background-color:#130a06;
  padding: 120px 0;
  z-index: 0;
  overflow: hidden;
}

.legacy-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      #130a06 0%,            
      rgba(18,9,4,0) 15%,     
      rgba(18,9,4,0) 85%,      
     #130a06 100%         
  );
  pointer-events: none;
  z-index: 1;
}



/*.legacy-no-padding-top {*/
/*    padding-top: 0 !important;*/

/*}*/


.legacy-section .image-container img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  /*box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);*/
  display: block;
}

.legacy-section .content-wrapper {
  /*padding-left: 2rem;*/
  color: #fff; /* Text white to pop over dark background */
  /*width:500px;*/
}

.section-text {
  font-family: "Cairo", sans-serif;
  font-weight: 400; /* Regular */
  font-size: 20px;
  line-height: 150%; /* equivalent to 1.5 */
  letter-spacing: 0;
  color: #ffffff;
}

.legacy-image {
  width: 80%;        /* make it 80% of the parent container */
  max-width: 500px;  /* optional: don’t let it get too big */
  margin: 0 auto;    /* center it */
  display: block;    /* ensures centering works */
}

/* Enhanced Mobile Legacy Section */
@media (max-width: 768px) {
  .legacy-section {
      
    padding: 60px 0 !important;
     margin-left: -15px !important;
  }
  
  .legacy-section {
  position: relative; /* required for z-index layering */
  z-index: 0;
  }
  .legacy-mobile{
      padding-left:0.75rem !important;
  }


.legacy-section::after {
  z-index: -1; /* push overlay behind the text */
}
.mobile-content{
      margin-left: -10px !important;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 600px;  
  object-fit: contain; 
}
  .legacy-section .content-wrapper {
    /*padding: 0 1rem;*/
    text-align: left !important; /* ðŸ”¹ force left alignment */
    margin-top: 100px !important;
  }

  .section-heading {
    font-size: clamp(28px, 6vw, 36px) !important;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: left; /* keep headings left too */
  }

  .section-text {
    font-size: clamp(16px, 4vw, 18px) !important;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: left; /* keep paragraph left */
  }
}


/* Sections */

.legacy-section .image-container {
  background-size: cover;
  padding: 32px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legacy-section .image-container img {
  width: 100%;      
  height: auto;      
  max-height: 600px;  
  object-fit: contain; 
  border-radius: 12px;
}


.legacy-section .image-container img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}



.section-text {
  font-family: "Cairo", sans-serif;
  font-weight: 400; /* Regular */
  font-size: 20px;
  line-height: 150%; /* equivalent to 1.5 */
  letter-spacing: 0;
  color: #ffffff;
}


/* Responsive */
@media (max-width: 992px) {
  .legacy-section .content-wrapper {
    padding-left: 0;
    text-align: center;
    margin-top: 2rem;
  }

  .legacy-section .section-text {
    font-size: 1rem;
  }
  .legacy-section .content-wrapper {
  padding-left: 0.25rem !important;
  color: #fff; /* Text white to pop over dark background */
}
}

.image-container {
  position: relative;
  overflow: hidden;
}

/*.image-container img {*/
/*  transition: transform 0.3s ease;*/
/*}*/

/*.image-container:hover img {*/
/*  transform: scale(1.05);*/
/*}*/

/* Buttons */
.btn.custom-btn {
  background: #4c3126;
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 50px;
  font-family: "Cinzel", sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 2.5vw, 16px); /* ✅ auto-shrinks on small screens */
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;

  max-width: 100%;        /* ✅ button never wider than screen */
  white-space: nowrap;    /* ✅ always single-line */
  overflow: hidden;
  text-overflow: ellipsis; /* ✅ trims gracefully if still too long */
}

.btn.custom-btn:hover {
  background: #3e1300;
  color: #fff;
  border:none;
}
a.btn.custom-btn:focus,
a.btn.custom-btn:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}
a.btn.custom-btn {
  -webkit-tap-highlight-color: transparent; 
  margin-bottom: 50px;

}

/* Icon wrapper */
.icon-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.icon-wrapper img {
  width: auto;
  transition: transform 0.3s ease;
  transform: translateX(5px);
}

/* Dash moves left on hover */
.btn.custom-btn:hover .icon-wrapper img:first-child {
  transform: translateX(-5px);
}

/* Outline variant */
.btn.custom-btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-white);
  color: var(--primary-white);
  padding: 1rem 3rem;
  font-family: "Cinzel", sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 2.5vw, 16px); /* ✅ same responsive font */
  letter-spacing: 1px;
  transition: all 0.3s ease;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;

  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 50px;
}

.btn.custom-btn-outline:hover {
  background-color: var(--primary-white);
  color: var(--primary-black);
}



.intent-section {
  width: 100vw;
  min-height: auto;            /* allow content to decide height */
  display: flex;
  background: #130a06;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  padding: 100px 0;            /* â˜… add top & bottom padding */
}

.intent-container {
  display: flex;
  justify-content: space-between;
  align-items: center; /* vertically align text + image */
  width: 100%;
  max-width: 1320px; /* lock to figma width */
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;

}

.intent-left {
  flex: 0 0 45%; /* fix width portion for text */
  max-width: 680px;
}

.section-heading {
  font-family: "Cinzel", serif;
  font-size: 60px;
  font-weight: 500;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 14px;
}

.intent-tagline {
  font-family: "Cairo", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 28px;
}

.intent-tabs {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.intent-tab {
  position: relative;
  background: linear-gradient(to left, #1F130E 100%, #130A06 0%);
  height: 120px;
  padding: 0 36px;
  display: flex;
  align-items: center;
  cursor: pointer;
  box-sizing: border-box;
  /*border-radius: 8px;*/
  width: 100%;
  overflow: hidden;
  
    color: #ffffff;
}

.intent-tab::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  color:#fff;
  background: linear-gradient(to right, transparent 0%, #130A06 100%);
}

.intent-tab-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  pointer-events: none;
  color:#fff;
}

.intent-tab-title {
  font-family: "Cinzel", serif;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin-top: 16px;
  transition: transform 0.36s cubic-bezier(0.83, 0, 0.17, 1);
}

.intent-desc {
    font-family: "Cairo", sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #ffffff;              /* ensures high contrast */
    margin-top: 8px;
    opacity: 0;
    max-height: 0;
    transform: translateY(-6px);
    overflow: hidden;
    transition: opacity 0.4s, max-height 0.4s ease-in-out, transform 0.36s cubic-bezier(0.83, 0, 0.17, 1);
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6); /* subtle shadow to make text stand out */
}

.intent-tab:hover .intent-tab-title {
  transform: translateY(3px);
}
.intent-tab:hover {
  background: #18110F; /* solid background replaces gradient */
  transition: background 0.3s ease; /* smooth fade */
}


.intent-tab:hover .intent-desc {
  opacity: 1;
  max-height: 100px;  /* Sufficient height to fit the description text */
transform: translateY(-14px);
}


/* Right side image */
.intent-right {
  margin-left: -20%;
}

.intent-desk-image {
  width: 100%;
  max-width: 1200px; /* keep your exact size cap */
  min-width: 600px; /* donâ€™t shrink too small */
  height: auto;
  object-fit: contain;
}
@media (max-width: 767px) {
  .cta-section .custom-btn {
    display: inline-block !important;   /* keeps button natural size */
    margin: 0 !important;               /* reset margin */
  }
  .cta-section .container {
    text-align: left !important;        /* force align button (and inline elements) left */
  }
}
@media (min-width: 992px) {
  .custom-padding {
/*padding:30px;*/
        margin-top: -80px;
  }
}
@media (max-width: 767px) {
  .legacy-content .team-title,
  .legacy-content .section-heading,
  .legacy-content .img-fluid {
    text-align: left !important; /* left-align all text and image container */
  }

 @media (max-width: 767px) {
  .legacy-image {
    text-align: left; /* align left on mobile */
  }
}
}
@media (max-width: 767px) {
  .legacy-content .section-heading,
  .legacy-content .title-image {
    text-align: left !important; /* left-align headings and paragraphs on mobile */
  }
  .bg-split-vertical{
      align-items: flex-start;
       text-align: left !important;
       /*padding-left:20px !important;*/
               margin-left: -10px  !important;
  }
  .text-center{
        text-align: left !important;
       padding:0 !important;
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .form-layout {
    justify-content: center;   /* center align in container */
    gap: 40px;                 /* reduce big gap */
    max-width: 900px;          /* keep tighter container width */
    margin: 0 auto;            /* center the layout itself */
  }

  .form-info {
    flex: 1 1 45%;             /* smaller left side */
    max-width: 400px;          /* limit width */
    text-align: left;          /* keep text natural */
  }

  .form-content {
    flex: 1 1 55%;             /* slightly larger form side */
    max-width: 480px;          /* prevent stretching too wide */
  }

  .form-heading {
    font-size: 2.2rem;         /* smaller heading for tablet */
  }

  .form-description {
    font-size: 1rem;           /* balanced text */
  }

  .form-input,
  .form-textarea {
    font-size: 0.95rem;        /* slightly reduced inputs */
    padding: 12px;             /* smaller padding */
  }
}

/* Enhanced Mobile Intent Section */
@media (max-width: 767px) {
   .intent-section {
    padding: 10px;
  }
  .intent-container {
    flex-direction: column;     
    padding: 0 30px;       
    gap: 20px;              /* slightly tighter gap */
    align-items: flex-start;
  }

  /* Image bigger + align left */
  .intent-right {
    order: -1;                  
    width: 100%;
    text-align: left;
    margin: 0 0 16px 0;    /* ✅ reduced bottom space */
  }

.intent-desk-image {
  width: 110%;           /* zoom slightly wider than container */
  max-width: none;       /* allow expansion */
  transform: scale(1.1) translateX(-55%); /* zoom + center */
  object-fit: cover;
  position: relative;
  left: 50%;             /* shift origin */
  padding-bottom: 30px;
}


  /* Text + tabs section aligned left */
  .intent-left {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: left;
    margin-top: 0;         /* ✅ no extra spacing above text */
    margin-bottom: 0;
  }

  .section-heading {
    font-size: 24px;       /* ✅ slightly smaller */
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .intent-tagline {
    text-align: left !important;
    font-size: 15px;
    margin-bottom: 16px;   /* ✅ reduced spacing */
    width: 100%;
    display: block;
  }

  /* Tabs styling */
  .intent-tabs {
    flex-direction: column;   
    gap: 10px;              /* ✅ reduced spacing */
  }

  .intent-tab {
    width: 100%;
    padding: 12px;          /* ✅ less padding inside tab */
    text-align: left;
  }

  .intent-tab-title {
    font-size: 17px;
    margin-bottom: 5px;
    text-align: left;
  }

  .intent-desc {
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
  }
  
  .intent-tab.active .intent-desc {
    opacity: 1;
    max-height: 100px;
    transform: translateY(-14px);
  }
}


/* Tablet + Mobile */
@media (max-width: 1200px) {
  .intent-container {
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
  }
  .intent-left {
    max-width: 100%;
    text-align: center;
    flex: 1 1 auto;
  }
  .intent-right {
    justify-content: center;
    margin-top: 28px;
    flex: 1 1 auto;
  }
  .intent-desk-image {
    /*max-width: 95%;*/
    min-width: auto;
  }
}


.decades-section {
  font-family: "Cairo", sans-serif;
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 20px;
  overflow: hidden;
  text-align: center;
}

.decades-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* âœ… always fill container */
  object-position: center; /* âœ… keep center focus */
  z-index: -1;
}

.dacades-content {
  width: 100%;
  max-width: 1000px;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
  padding: 0 1rem;
}

.decades-heading {
  font-family: "Cinzel", serif;
  font-size: 60px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.4s;
}

.decades-text {
  font-size: 1.1rem;
  max-width: 950px;
  margin: 0 auto;
  color: #fff;
  line-height: 1.6;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.8s;
}
/*.decades-bg.desktop-only {*/
/*  background: url("assets/images/decision.png") no-repeat center center;*/
/*  background-size: cover;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  z-index: -1;*/
/*}*/

.decades-bg.desktop-only {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url("assets/images/decision.png") center center / cover no-repeat;

  /* Blend edges top and bottom without affecting quality */
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 7%, rgba(0,0,0,1) 93%, rgba(0,0,0,0) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;

  mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 7%, rgba(0,0,0,1) 93%, rgba(0,0,0,0) 100%);
  mask-repeat: no-repeat;
  mask-size: cover;

  background-color: #130a06; /* fallback color for fade edges */
}


.decades-bg-mobile {
  display: none;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* âœ… Responsive Tablet */
@media (max-width: 1024px) {
  .decades-section {
    min-height: 80vh;
    padding: 80px 20px;
  }
  .decades-heading {
    font-size: clamp(32px, 5vw, 48px);
  }
  .decades-text {
    font-size: clamp(15px, 2vw, 18px);
  }
}

@media (max-width: 768px) {
  .desktop-only { display: none; }  /* remove desktop bg */
  
  .decades-section {
    padding: 0;            /* ✅ remove top/bottom padding */
    min-height: auto;      /* ✅ remove forced height */
 font-size: clamp(20px, 6vw, 28px); 
   /*padding-left: 20px !important;*/
  }

  .decades-bg-mobile {
    display: block;
    width: 100%;
    margin-bottom: 20px;   /* ✅ gap between image & content */
  }

  .decades-content {
    text-align: left;
     padding:  20px !important; 
  }

  .decades-heading {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    text-align: left;
  }

  .decades-text {
    font-size: clamp(14px, 3.5vw, 16px);
    line-height: 1.6;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .decades-section {
    padding: 0;          /* still no extra space */
  }
  .decades-content {
    padding: 0 16px;     /* tighter side padding */
  }
  .decades-heading {
    font-size: 24px;
  }
  .decades-text {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media (min-width: 992px) {
 .form-wrapper .container {
        margin-right: 50px;
        margin-left: -15px;
    }
}

/* Reset margin for tablets/iPads with !important */
@media (min-width: 768px) and (max-width: 991px) {
  .form-wrapper .container {
    margin-left: 0 !important;   /* neutral for tablets/iPads */
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .decades-section {
    min-height: 100vh;   /* full height like desktop */
    padding: 100px 20px; /* same padding as desktop */
  }

  .decades-heading {
    font-size: clamp(32px, 5vw, 48px);
    text-align: center; /* keep centered */
  }

  .decades-text {
    font-size: clamp(15px, 2vw, 18px);
    text-align: center; /* keep centered */
  }

  .decades-bg.desktop-only {
    background-size: contain;   /* 🔑 show full image */
    background-repeat: no-repeat;
    background-position: center center;
  }
}

.profile-section {
  background-color: var(--primary-black);
  padding: 6rem 0;
  text-align: center; /* centers the content */
}

.profile-image {
  max-width: 100%; /* responsive image */
  height: auto; /* keeps natural aspect ratio */
  display: inline-block;
}



.profile-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* CTA Section */
/*.cta-section {*/
/*  background-color: var(--primary-black);*/
/*  min-height: 60vh;        */
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  text-align: center;*/
/*  padding: 100px 0 120px;    */
/*  margin-bottom: 60px;     */
/*  box-sizing: border-box;*/
/*}*/

.cta-section {
    background-color: var(--primary-black);
    display: flex;
    flex-direction: column;      /* stack content vertically */
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    margin-top: 100px !important;
    margin-bottom: 150px !important;
}


.cta-heading {
  font-size: 60px; /* fixed large size */
  font-family: "Cinzel", serif;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

/* Enhanced Mobile CTA Section */
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 1rem;
    min-height: auto;
  }

  .cta-heading {
    font-size: clamp(28px, 6vw, 36px) !important;
    line-height: 1.3;
    margin-bottom: 2rem;
  }
  .footer-section {
 /*padding-left: 20px;*/
}
.footer-link {
  white-space: nowrap;
}
}



.footer-section {
  background-color: #130a06;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 60px;
}

.footer-social-section {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-follow-text {
  font-family: "Cinzel", serif;
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
}


/* Divider */
.footer-divider, .footer-divider-bottom {
  border: none;
  height: 1px;
  background-color: #705B3F;
  opacity: 0.3;
  margin: 2rem 0;
}

/* Headings */
.footer-heading {
  font-family: "Cinzel", serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #ffffff;
}

/* Text */
.footer-text, .footer-link {
  font-family: "Cairo", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #959595;
}
.footer-link {
  text-decoration: none;
  transition: color 0.3s ease;
   color:  #959595;
}
.footer-link:hover {
  color: #d4a574;
}

/* Copyright */

.links-container {
  display: flex;
  flex-wrap: wrap;
  gap: 80px; /* Adjust this value for more space */
}
.credit-text a {
  color: #a59a92;          /* match your footer text color */
  text-decoration: none;   /* remove underline */
  font-size: 14px;
  transition: color 0.3s ease;
}

.credit-text a:hover {
  color: #d4a574;          /* hover color (your accent) */
}
/* âœ… Keep footer.svg aligned right on mobile */
@media (max-width: 767.98px) {
  .footer-section .row.align-items-start {
    display: flex;
    flex-direction: row;        /* force row even on mobile */
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;          /* prevent breaking under */
  }

  /* Left side takes more width */
  .footer-section .col-md-8 {
    flex: 1 1 70%;
  }

  /* Right side image stays to the right */
  .footer-section .col-md-4 {
    flex: 0 0 30%;
    text-align: right;
  }

  .footer-section img.img-fluid {
    max-height: 350px;   /* shrink */
    width: auto;
    margin: 0;
  }

 .links-container {
    flex-direction: column;   /* stack vertically */
    align-items: flex-start;  /* align left */
    gap: 4px;                 /* small spacing between links */
  }

  .links-container .footer-link {
    margin: 0;               /* remove extra margins */
    padding: 2px 0;          /* minimal vertical padding */
    display: block;          /* each link full width */
  }

}
/* Base (mobile-first) */
.footer-copyright {
  display: flex;
  flex-direction: column;     /* stacked on mobile */
  align-items: flex-start;
  padding: 10px 15px;
  margin-top: 2rem;
  background-color: #18100c;
}

.copyright-text,
.credit-text {
  width: 100%;
  margin: 0;
  font-size: 12px;
  color: #a59a92;
  text-decoration: none;
}

/* Force copyright break on mobile */
.mobile-break {
  display: block;   /* forces to next line */
}

/* Tablet and up */
@media (min-width: 768px) {
  .footer-copyright {
    flex-direction: row;          /* row layout */
    justify-content: space-between;
    align-items: center;
    padding: 1rem 60px;           /* balanced spacing */
  }

  .copyright-text,
  .credit-text {
    width: auto;
  }

  /* Remove break on larger screens */
  .mobile-break {
    display: inline;  /* inline again */
  }

  .credit-text {
    text-align: right;
  }
}


/* Desktop / Larger Screens */

@media (min-width: 768px) and (max-width: 1200px) {

  /* --- Useful Links --- */
  .links-container {
    gap: 40px;               /* smaller gap so they fit in one row */
    justify-content: flex-start;
  }

  /* --- Copyright Section --- */

}



/* Improved Focus States for Accessibility */
.navbar-nav .nav-link:focus,
.btn:focus,
.intent-tab:focus {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* Loading Animation for Images */
img {
  transition: opacity 0.3s ease;
}

img[src*="placeholder"] {
  background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */

.advisory-plain {
  background: none;
  padding: 60px 0;
  color: #fff; /* keep text white */
}

.contact-section {
  background: url("assets/images/pattern.png") repeat center center;
  background-size: cover;
  padding: 120px 0;
  color: #fff;
}

.contact-row {
  display: flex;
  gap: 0;
  align-items: flex-start; /* Changed from stretch to flex-start */
}

/* Keep left info box smaller and same height */
.contact-info-box {
width: 400px;
    height: auto;
  background-color: #4C3125;
  padding: 30px 25px;  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: flex-start;
}

.contact-info-box h4 {
  font-size: 14px;     
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: #fff;
}

.contact-info-box p {
  margin-bottom: 20px;
  font-size: 14px;     
  line-height: 1.5;
  color: #fff;
}

.contact-map {
  width: 100%;        /* Keep same width */
  height: 450px;       /* Increased from 311px to 450px */
  overflow: hidden;
}
.contact-map iframe {
  filter: 
    grayscale(85%)          /* Slightly less grayscale for clarity */
    invert(90%)             /* Lower invert for less deep black */
    sepia(30%)              /* Moderate warm tone */
    contrast(110%)          /* Lower contrast to reduce shadows */
    hue-rotate(38deg)       /* Keep yellow hue */
    saturate(140%)          /* Good saturation for vibrancy */
    brightness(0.95);       /* Increase brightness for detail */
}

/* Overlay to add subtle #2a2a2a color layer */

@media (min-width: 992px) {
  .legacy-section,
  .contact-section {
    margin-left: -15px;
  }
}


@media (max-width: 768px) {
  .contact-row {
    flex-direction: column;
  }
  .contact-info-box {
    width: 100%;
    height: 300px;
  }
  .contact-map {
    width: 100%;
    height: 300px; /* Taller on mobile too */
  }
  .form-wrapper{
      /*padding:8px;*/
  }
}
}


.form-wrapper {
  background-color: #130a06;
  padding: 60px 20px;
   padding: 100px 0; 
   margin-bottom:100px;
  color: #fff;
  padding-top: 120px;   /* increase top space */
  padding-bottom: 120px; /* increase bottom space */
}

.form-layout {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  justify-content: space-between;
  align-items: flex-start;
      margin-bottom:100px;
      margin-top:100px;
}

/* Left side: heading + paragraph */
.form-info {
  flex: 1 1 40%;
  min-width: 280px;
}

.form-heading {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.form-description {
  font-size: 1.1rem;
  color: #ccc;
}

/* Right side: form */
.form-content {
  flex: 1 1 50%;
  min-width: 320px;
}

/* Normal inputs and textarea */
.form-input,
.form-textarea {
  caret-color: #ffffff; /* make typing line white */
  color: #ffffff;       /* keep text white */
  background-color: #1F130E; /* keep your dark background */
}

/* Autofill override for Chrome, Edge, Safari */
input:-webkit-autofill,
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #1F130E inset; /* base color behind gradient */
  background: linear-gradient(to right, #1F130E 0%, #130A06 100%) !important;
  -webkit-text-fill-color: #ffffff;                 /* keep text white */
  caret-color: #ffffff;                             /* caret stays white */
  transition: background-color 5000s ease-in-out 0s;
}

/* Autofill on focus */
input:-webkit-autofill:focus,
textarea:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #1F130E inset;
  background: linear-gradient(to right, #1F130E 0%, #130A06 100%) !important;
  -webkit-text-fill-color: #ffffff;
  caret-color: #ffffff;
}

/* Firefox autofill */
input:-moz-autofill,
textarea:-moz-autofill {
  box-shadow: 0 0 0px 1000px #1F130E inset;
  background: linear-gradient(to right, #1F130E 0%, #130A06 100%) !important;
  -moz-text-fill-color: #ffffff;
  caret-color: #ffffff;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
    font-family: 'Cairo', sans-serif;
}

.form-input,
.form-textarea {
  background: linear-gradient(to right, #1F130E 0%, #130A06 100%);
  border: 1px solid transparent;
  border-right: none;
  padding: 14px;
  border-radius: 4px;
  color: #fff;
  font-size: 1rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
    font-family: 'Cairo', sans-serif;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #888;
  font-weight: 300;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  /*border: 1px solid #222;*/
  border-right: none;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

@media (max-width: 768px) {
  .form-layout {
    flex-direction: column;
    gap: 32px;
    max-width: 100%;
    padding: 0;
    align-items: stretch;
margin-bottom:0;
margin-top:0;
  }
  .form-info, .form-content {
    min-width: 0;
    width: 100%;
  }
  .form-heading {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  .form-description {
    font-size: 1rem;
  }
  .contact-form {
    gap: 16px;
  }
  .form-row {
    flex-direction: column;
    gap: 16px;
  }
  .form-group {
    width: 100%;
    margin-bottom: 0;
  }
  .form-label,
  .form-input,
  .form-textarea {
    font-size: 1rem;
    width: 100%;
  }
  .form-wrapper {
    /*padding: 24px 8px;*/
  }
}

.bg-split-vertical {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  background: #130a06; /* solid fallback background */
  max-height:400px;
}

/* Pattern with gradient fade */
.bg-split-vertical::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  background: 
    linear-gradient(to bottom, rgba(19,10,6,0) 80%, #130a06 100%), 
    url("assets/images/pattern.png") repeat center top;
  z-index: 1;
  background-size: auto;
}

/* No need for ::after anymore */
.bg-split-vertical::after {
  content: none;
}

/* Ensure content is above */
.bg-split-vertical .container {
  position: relative;
  z-index: 2;
}
.advisor-name {
    font-family: 'Cinzel', sans-serif;
    font-size: 35px;
    color: #B78F48;
}

.team-card {
    /*background-color: #130a06;*/
    padding: 30px 10px;
    /*border-radius: 12px;*/
    text-align: center;
    height: 100%;
    /*transition: transform 0.3s ease;*/
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}

/*.team-card:hover {*/
/* transform: translateY(-5px);*/
/*}*/

/* Image */
.team-image {
    width: 100%;
    /*max-width: 300px;*/
    height: auto;
    margin-bottom: 20px;
}

/* Texts */
.team-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #C29A5D;
    margin-bottom: 8px;
}

.team-title, .team-email, .team-phone {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 5px;
    font-family: 'Cairo', sans-serif;
}

/* Button */
.btn-know-more {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 30px;
    margin-top: 15px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s ease;
}

/* Team Section Responsive */
@media (max-width: 767px) {
    .team-image {
        max-width: 100%;
    }
    
    .team-card {
        padding: 20px 15px;
    }
    
    .advisor-name {
        font-size: 28px;
    }
}
.banner-section {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  color: #fff;
  width: 100%;
}

/* Background wrapper & image */
.banner-bg-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-bg {
  width: 100%;
  height: auto;
  min-height: 100vh; /* full screen height */
  object-fit: cover; /* keep natural proportions */
  display: block;
}




.founders-block {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px; /* reduced */
}

.fonders-text {
  font-family: "Cairo", sans-serif;
  font-weight: 300;
  font-size: 34px;
  line-height: 150%;
  color: #ffffff;
  margin: 0;
}

.sanskrit-heading {
  font-size: 34px;
  line-height: 1.6;
  font-family: "Tillana", cursive;
  color: #fff;
  margin: 0;
  font-weight: 300;
}

.signature img {
  max-width: 280px;
  margin: 15px 0; /* tighter */
  display: block;
}

.team-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Arial", sans-serif;
}

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

/* Tablets */
@media (max-width: 991px) {
    .banner-section {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  color: #fff;
  /*width: 100%;*/
  height:100%;
}


  .banner-content {
    left: 10%;
    max-width: 90%;
  }
  .sanskrit-heading {
    font-size: 26px;
  }
  .fonders-text {
    font-size: 22px;
  }
  .signature img {
    max-width: 200px;
  }
}

/* Mobiles */
@media (max-width: 575px) {
  .banner-content {
    left: 5%;
    right: 5%;
    max-width: 90%;
    top: 70%;
    transform: translateY(-50%);
  }
  .founders-block {
    gap: 10px;
    margin-bottom: 10px; /* less space */
  }
  .sanskrit-heading {
    font-size: 20px;
    line-height: 1.4;
  }
  .fonders-text {
    font-size: 16px;
    line-height: 1.4;
  }
  .signature img {
    max-width: 160px;
    margin: 10px 0;
  }
  .team-title {
    font-size: 12px;
    line-height: 1.4;
  }
   .founders-line {
    height: 50px;
  }
  .banner-bg-wrapper {
    position: relative;
    width: 100%;
    height: 100vh; /* keep full height */
    overflow: hidden; /* crop overflow */
  }

  /*.banner-bg {*/
  /*  height: 100%;*/
  /*  object-fit: cover;*/
  /*  object-position: 100% center; */
  /*  display: block;*/
  /*}*/
}

.foundation-section {
  font-family: "Cairo", sans-serif;
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 20px;
  overflow: hidden;
  text-align: center;
  background: transparent;
}

.foundation-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/images/foundation-background.png") no-repeat center center;
  background-size: cover;
  z-index: -1;
}

/* Logo image tweaks */
.foundation-logo {
  margin-bottom: -25pxpx; /* small space between logo and heading */
  display: block;
  height:300px;
}

/* Heading spacing tweaks */
.foundation-heading {
  margin-top: 0; /* remove space above heading */
}


.foundation-content {
  width: 100%;
  max-width: 1000px;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
  padding: 0 1rem;
}

.foundation-heading {
  font-family: "Cinzel", serif;
  font-size: 60px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.4s;
}

.foundation-text {
  font-size: 1.1rem;
  max-width: 950px;
  margin: 0 auto;
  color: #fff;
  line-height: 1.6;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.8s;
}

.foundation-bg-mobile {
  display: none;
  width: 100%;
  margin-bottom: 20px;
}

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

/* Tablet */
@media (max-width: 1024px) {
  .foundation-section {
    min-height: 80vh;
    padding: 80px 20px;
  }
  .foundation-heading {
    font-size: clamp(32px, 5vw, 48px);
  }
  .foundation-text {
    font-size: clamp(15px, 2vw, 18px);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .desktop-only { display: none; }

  .foundation-section {
    padding: 20px;
    min-height: auto;
  }

  .foundation-bg-mobile {
    display: block;
  }
  .mobile-founder{
      margin-left:-0.25rem !important ;
  }
.founder-image{
    align-items:center !important;
    margin-left:-25%;
}
  .foundation-content {
    padding: 0 10px !important;
    text-align: left;
  }

  .foundation-heading {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.3;
    margin-bottom: 0.75rem;
    text-align: left;
  }

  .foundation-text {
    font-size: clamp(14px, 3.5vw, 16px);
    line-height: 1.6;
    text-align: left;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .foundation-content {
    padding: 0 12px;
  }
  .foundation-heading {
    font-size: 24px;
  }
  .foundation-text {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Tablets Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
  .foundation-section {
    min-height: 100vh;
    padding: 100px 20px;
  }
  .foundation-heading {
    font-size: clamp(32px, 5vw, 48px);
    text-align: center;
  }
  .foundation-text {
    font-size: clamp(15px, 2vw, 18px);
    text-align: center;
  }
  .foundation-bg {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
  }
}


/* services-section*/
.services-section {
    /*padding: 100px 0;*/
    margin-top: 100px !important;
    margin-bottom: 150px !important;
}
.rotate-left {
  transform: rotate(180deg);

}


/* Responsive tweaks */
@media (max-width: 767px) {
  .services-section .row.align-items-center {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .mb-lg-6 {
    margin-bottom: 6rem !important; /* increase as needed */
  }
  .banner-content {
  position: absolute;
  top: 50%;
  /*left: 7%;*/
  transform: translateY(-50%);
  z-index: 2;
  text-align: left;
  max-width: 650px;
}
}

@media (max-width: 1024px) and (min-width: 769px) {
  .banner-content {
    margin-left: -7%;
  }
}

.cta-section {
  position: relative;
}

.cta-logo-bg {
  position: absolute;
  top: 0;                /* start from top of section */
  left: 50%;
  transform: translateX(-50%);
  max-width: 180px;      /* control size */
  opacity: 0.2;          /* fade like background */
  z-index: 0;            /* keep behind text */
}

.cta-section .container {
  position: relative;
  z-index: 1;            /* content stays above logo */
}


/* Desktop: push logo down into heading */
@media (min-width: 992px) {
  .cta-logo {
    margin-bottom: -30px; /* adjust value to control overlap */
  }
}
