* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
   font-family: "Georgia", serif;
    line-height: 1.6;
    color: #000;
    background-color: #ffffff;
}

:root {
    /* Core Brand Colors */
    --primary: #ffd118;        /* Gold */
    --primary-light: #ffd118;  /* Lighter gold highlight */
    --primary-dark: #ffe52;   /* Richer deep gold */
    --primary-foreground: rgb(0, 0, 0); /* Black text on gold */

    --black: rgb(0, 0, 0);          /* Core black */
    --white: #ffffff;          /* White base */
    
    /* Backgrounds */
    --background: #ffffff;     /* Default white background */
    --foreground: #000;     /* Default text black */
    --secondary-bg: #f8f8f8;   /* Soft white-gray section background */
    --muted: #6b7280;          /* Neutral gray for meta text */
    
    /* Shadows */
    --shadow-luxury: 0 25px 50px -12px #000;
    --shadow-card: 0 4px 6px -1px #000;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.75rem 2rem;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-luxury);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: #000;
    background-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-outline-white {
    border: 2px solid var(--primary-foreground);
    color: var(--primary-foreground);
    background-color: transparent;
}

.btn-outline-white:hover {
    background-color: var(--primary-foreground);
    color: var(--primary);
}

.btn-ghost-white {
    color: var(--primary-foreground);
    background-color: transparent;
}

.btn-ghost-white:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost-primary {
    color: var(--primary);
    background-color: transparent;
}

.btn-ghost-primary:hover {
    color: var(--primary-dark);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    background-color: var(--primary);
    padding: 6px;
    color: var(--primary-foreground);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: -0.025em;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.875rem;
    font-weight: normal;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: var(--primary-foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.header-actions button a{
  color: #000;
  text-decoration: none;
}
.nav-mobile-toggle {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('images/young-couple-talking-their-insurance-agent-while-having-consultations-office.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.hero-content {
    position: relative;
    z-index: 10;
    margin-top: 0PX !important;
}

.hero-text {
    max-width: 48rem;
}
.hero-title {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.hero-accent {
    color: var(--primary);
}

.hero-badge {
    /* background-color: rgba(255, 255, 255, 0.1); */
    /* backdrop-filter: blur(8px); */
    border-radius: 0.5rem;
    padding: 15px;
    /* margin-bottom: 2rem; */
   
}

.badge-title {
    font-size: 1rem;
    /* margin-bottom: 0.5rem; */
    color: rgba(255, 255, 255, 0.9);
}

.badge-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form {
    border-radius: 0.5rem;
    max-width: 28rem;
    box-shadow: var(--shadow-luxury);
}

.form-group {
    margin-bottom: 1rem;
}

.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: var(--foreground);
    background-color: white;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(3, 169, 247, 0.1);
}

.hero-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.nav-pills {
    display: flex;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    padding: 15px;
}

.nav-pill {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    background-color: transparent;
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-pill.active {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.nav-pill:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background-color:#000;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
}

.text-primary {
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-bottom: 2rem;
   
}

.award-card {
    width: 300px;
    background-color: white;
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.award-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-luxury);
}

.award-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.award-year {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.award-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.award-description {
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.disclaimer {
    text-align: center;
    margin-top: 2rem;
}

.disclaimer p {
    font-size: 0.875rem;
    color: var(--primary);
    max-width: 64rem;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: white;
}

.client-highlight {
    background: #000;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 64rem;
    margin: 0 auto 2rem;
    color: #fff;
}

.highlight-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    color: #ff0000;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.unified-team {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    margin: 5rem 0;
}

.team-content {
    text-align: left;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-luxury);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.bg-primary {
    background-color: var(--primary);
}

.bg-primary-light {
    background-color: var(--primary-light);
}

.bg-primary-dark {
    background-color: var(--primary-dark);
}

.service-title {
    font-weight: 600;
    color: var(--foreground);
}

.office-finder {
    background-color: var(--secondary-bg);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 32rem;
    margin: 0 auto;
}

.finder-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.finder-form {
    display: flex;
    gap: 1rem;
    max-width: 28rem;
    margin: 0 auto;
}

.finder-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 2px solid #e5e7eb;
    font-size: 1rem;
}

.finder-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px #000;
}

/* Footer */
.footer {
    background-color: var(--foreground);
    color: white;
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.footer-logo-subtitle {
    font-size: 0.875rem;
    font-weight: normal;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: white;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
.logo-text{
    font-size: 10px;
}
.logo-subtitle {
    font-size: 10px;
}
.header-actions 
{
gap: 0px;
}
.hero-nav{
    left: 52%;
   
}
.nav-pills{
     gap: 0rem;
}
}
/* Responsive Design */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .nav-mobile-toggle {
        display: none;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
        text-align: center;
    }
    
    .unified-team {
        grid-template-columns: 1fr 1fr;
    }
    
    .team-content {
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
      .hero-nav {
    /* left: 53% !important; */
}
}
@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
   
    .nav-pills {
        gap: 0;
        
    }
    
    .nav-pills {
        padding:9px;
    }
  
}
/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

    .team-section {
      text-align: center;
      padding: 30px 20px;
      background: var(--primary);
      position: relative;
      overflow: hidden;
    }

    .team-section h2 {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .team-section p {
      color: #ffff;
      margin-bottom: 40px;
    }

    .carousel {
      display: flex;
      overflow: hidden;
      position: relative;
      max-width: 1000px;
      margin: auto;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease;
    }

    .team-card {
      min-width: 250px;
      margin: 0 15px;
      background: var(--background);
      border-radius: 12px;
      padding: 20px;
      box-shadow: var(--shadow-card);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }

    /* .team-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-luxury);
    } */

    .team-card img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
      border: 3px solid var(--primary);
    }

    .team-card h3 {
      margin: 0;
      font-size: 1.1rem;
      color: var(--primary-light);
    }

    .team-card span {
      display: block;
      font-size: 0.9rem;
      color: var(--muted);
      margin: 5px 0 10px;
    }

    .team-card a {
      display: inline-block;
      margin-top: 5px;
      color: var(--primary-dark);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
    }

    .team-card a:hover {
      text-decoration: underline;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: var(--primary);
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      cursor: pointer;
      font-size: 1.5rem;
      color: var(--primary-foreground);
      box-shadow: var(--shadow-card);
    }

    .carousel-btn:hover {
      background: var(--primary-dark);
    }

    .prev { left: 10px; }
    .next { right: 10px; }

    .browse-btn {
      display: inline-block;
      margin-top: 40px;
      padding: 12px 30px;
      background: var(--primary);
      color: var(--primary-foreground);
      font-weight: bold;
      border-radius: 25px;
      text-decoration: none;
      transition: 0.3s;
    }

    .browse-btn:hover {
      background: var(--primary-dark);
    }
        .carousel-section {
      background: #fff;
      padding: 50px 10px;
      font-family: Arial, sans-serif;
    }

    .carousel-section h2 {
      font-size: 24px;
      margin-bottom: 20px;
      color: #000;
    }

    .carousel-container {
      display: flex;
      overflow: hidden;
      position: relative;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .carousel-card {
      background: #fff;
      border-radius: 4px;
      box-shadow: 0 2px 6px #000;
      margin: 0 10px;
      flex: 0 0 300px;
      overflow: hidden;
    }

    .carousel-card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
    }

    .carousel-content {
      padding: 15px;
    }

    .carousel-tag {
      font-size: 12px;
      color: #6c63ff;
      font-weight: bold;
      margin-bottom: 5px;
      display: block;
    }

    .carousel-title {
      font-size: 16px;
      font-weight: bold;
      color: #000;
      margin-bottom: 10px;
    }

    .carousel-date {
      font-size: 13px;
      color: #666;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      font-size: 22px;
      cursor: pointer;
      color: #666;
      z-index: 5;
    }

    .carousel-btn:hover {
      color: #000;
    }

    .carousel-prev {
      left: 0;
    }

    .carousel-next {
      right: 0;
    }
        .reviews-section {
      background: #000;
      padding: 50px 20px;
      text-align: center;
    }

    .reviews-header {
      margin-bottom: 30px;
    }

    .reviews-header h2 {
      font-size: 28px;
      color: #ffd118;
      margin: 0;
    }

    .reviews-header .rating {
      margin-top: 10px;
      font-size: 16px;
      color: #ffeaea;
    }

    .reviews-header .stars {
      color: #ffd118;
      font-size: 18px;
      margin-right: 5px;
    }

    .carousel-container {
      position: relative;
      overflow: hidden;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .review-card {
      background: #f9f9fb;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      margin: 0 10px;
      flex: 0 0 320px;
      padding: 20px;
      text-align: left;
    }

    .review-date {
      font-size: 12px;
      color: #777;
      margin-bottom: 10px;
    }

    .reviewer-name {
      font-weight: bold;
      margin-bottom: 5px;
      color: #000;
    }

    .review-stars {
      color: #ffd118;
      margin-bottom: 10px;
    }

    .review-text {
      font-size: 14px;
      color: #555;
      line-height: 1.4;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #fff;
      border: none;
      font-size: 22px;
      cursor: pointer;
      color: #666;
      padding: 8px 12px;
      border-radius: 50%;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      z-index: 5;
    }

    .carousel-btn:hover {
      color: #000;
    }

    .carousel-prev { left: 0; }
    .carousel-next { right: 0; }

    .carousel-dots {
      text-align: center;
      margin-top: 20px;
    }

    .carousel-dots span {
      display: inline-block;
      width: 10px;
      height: 10px;
      background: #ccc;
      border-radius: 50%;
      margin: 0 4px;
      cursor: pointer;
    }

    .carousel-dots .active {
      background: #ff4da6;
    }
    .contact-section {
      color: #ffffff;
      padding: 30px 20px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .contact-container {
      background: #000; 
      padding: 60px;
      border-radius: 16px;
      max-width: 600px;
      width: 100%;
      text-align: center;
      box-shadow: 0 10px 30px #000;
    }

    .contact-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--primary);
    }

    .contact-subtitle {
      font-size: 1rem;
      margin-bottom: 25px;
      color: #f0f0f0;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
    }

    .form-group {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .form-group input {
      flex: 1;
      padding: 12px;
      border-radius: 8px;
      border: none;
      outline: none;
      font-size: 1rem;
    }

    .step-text {
      font-size: 0.9rem;
      color: #cccccc;
      margin: 10px 0 5px;
    }

    .progress-bar {
      background: #000;
      border-radius: 10px;
      overflow: hidden;
      height: 6px;
      margin-bottom: 15px;
    }

    .progress {
      width: 15%;
      height: 100%;
      background: var(--primary);
    }

    .btn-submit {
      background: var(--primary);;
      color: #000;
      padding: 12px;
      font-size: 1rem;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-submit:hover {
      background: var(--primary);
    }
    .markets-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.markets-grid {
    display: grid;
    
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.market-card {
    background: #000;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.market-card.featured {
  box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    color: var(--white);
}

.market-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hero);
}

.market-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.market-card.featured .market-title {
    color: var(--primary);
}

.market-description {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.market-card.featured .market-description {
    color: #ffffff;
  
}

.market-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight {
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Top Highlight Bar */
.highlight-bar {
background-color:  #000; /* magenta shade */
color: white;
text-align: center;
padding: 30px 15px;
font-size: 24px;
font-style: italic;
}


/* Section container */
.advisor-section {
max-width: 1000px;
margin: 40px auto;
padding: 0 20px;
}


.advisor-block {
margin-bottom: 25px;
}


.advisor-block h3 {
color: #ffd118;
font-size: 16px;
font-weight: bold;
margin-bottom: 6px;
text-transform: uppercase;
}


.advisor-block h3 a {
color: inherit;
text-decoration: none;
}


.advisor-block p {
font-size: 17px;
line-height: 1.6;
margin: 0;
color: #444;
}
 .hero-NEW {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

/* Curved background stripe */
.hero-NEW::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    background-image: url("images/stripe.png");
  background-repeat: no-repeat, repeat;
  background-size: cover;
}

    /* Center Content */
    .hero-center-NEW {
      flex: 1;
      margin-left: 130PX;
       margin-bottom:280PX;
      text-align: center;
      transform: translateX(-150px) scale(0.5);
      opacity: 0;
      animation: leftPopupZoom 1.2s ease-out forwards;
      animation-delay: 0.3s;
    }

    .hero-center-NEW h2 {
      font-size: 40px;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .hero-center-NEW p {
      font-size: 18px;
      color: #333;
    }

    /* Right Image */
    .hero-right-NEW {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .circle-img-NEW {
      width: 300px;
      height: 470px;
      border-radius: 3%;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      transform: translateX(150px) scale(0.5); /* Start from right */
      opacity: 0;
      animation: rightPopupZoom 1.2s ease-out forwards;
    }

    .circle-img-NEW img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Text animation (from left) */
    @keyframes leftPopupZoom {
      0% {
        transform: translateX(-150px) scale(0.5);
        opacity: 0;
      }
      100% {
        transform: translateX(0) scale(1);
        opacity: 1;
      }
    }

    /* Image animation (from right) */
    @keyframes rightPopupZoom {
      0% {
        transform: translateX(150px) scale(0.5);
        opacity: 0;
      }
      100% {
        transform: translateX(0) scale(1);
        opacity: 1;
      }
    }
    .insights-section{
      text-align: center;
      padding: 20px;
    }
  .insight{
    margin-top: 15px;
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth)
  }
  /* paragrapgh style */
  .content-para-new{
    padding: 20px;
  }
  .team-content h2{
    text-align: left;
  }
  /* what do  */
     .investor-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .investor-image-box {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      padding: 20px;
    }

    .investor-image-box img {
      width: 100%;
      height: auto;
      border-radius: 20px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .investor-text-box {
      flex: 1;
      min-width: 300px;
      padding: 20px;
    }

    .investor-text-box h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: var(--primary);
    }

    .investor-text-box p {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .investor-btn {
     display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 600;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: var(--shadow-card);
    transition: 0.3s;
    }

    .investor-btn:hover {
      background: var(--primary);
    }

    @media (max-width: 768px) {
      .investor-section {
        flex-direction: column;
        text-align: center;
      }
    }