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

        body {
            font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: #FFF9F0;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #e5e1d8;
          
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: bold;
        }
        .logo img {
            width: 240px;
    margin-left: -60px;
        }
        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #FF6B6B, #FFD93D, #6BCF7F);
            border-radius: 8px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #FF6B6B;
            
            
        }

        .join-btn {
            background: #000;
            color: #fff !important;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            transition: background 0.3s;
        }
        
        .join-btn:hover {
            background-color: #c44569;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: #FFF9F0;
            padding: 80px 0;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero h1 {
            font-size: 54px;
            font-family: "Domine", serif;
            margin-bottom: 20px;
            line-height: 1.2;
            font-weight: 700;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            color: #666;
        }

        .hero-image {
            width: 100%;
            height: 400px;
            
           
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
        }
          /* Section Styles */
        section {
            padding: 100px 0;
        }
        
        .section-label {
            font-size: 12px;
            color: #c44569;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 16px;
        }
        
        .section-headline {
            font-size: 42px;
            line-height: 1.3;
            margin-bottom: 24px;
            color: #2a2a2a;
            font-family: "Domine", serif;
        }
        
        .section-subheading {
            font-size: 24px;
            color: #5a5a5a;
            margin-bottom: 32px;
        }
        
        .section-body {
            font-size: 18px;
            line-height: 1.8;
            color: #4a4a4a;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .section-body p {
            margin-bottom: 20px;
            font-size: 16px;
        }
 /* Hero Section */
        .hero {
            min-height: 100%;
            /* display: flex; */
            align-items: center;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
               display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
        }
        
        .hero-text {
            flex: 1;
        }
        
        .tagline {
            font-size: 14px;
            color: #c44569;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }
        
        .hero-slider {
            position: relative;
            min-height: 200px;
            max-width: 700px;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            pointer-events: none;
        }
        
        .slide.active {
            opacity: 1;
            pointer-events: auto;
        }
        
        .hero-headline {
            font-size: 52px;
            line-height: 1.15;
            margin-bottom: 24px;
            color: #2a2a2a;
            font-weight: normal;
            max-width: 650px;
        }
        
        .hero-subline {
            font-size: 18px;
            line-height: 1.7;
            color: #5a5a5a;
            margin-bottom: 40px;
            max-width: 580px;
        }
        
        .slider-dots {
            display: flex;
            gap: 12px;
            margin-bottom: 40px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #d0d0d0;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .dot:hover {
            background: #a0a0a0;
        }
        
        .dot.active {
            background: #c44569;
            width: 32px;
            border-radius: 6px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 16px;
        }
        
        .btn-primary {
            background: #2a2a2a;
            color: white;
            padding: 10px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 18px;
            line-height: 33px;
            transition: background 0.3s;
        }
        
        .btn-primary:hover {
            background: #c44569;
        }
        
        .btn-secondary {
            background: transparent;
            color: #2a2a2a;
            padding: 10px 20px;
            border: 2px solid #2a2a2a;
            border-radius: 6px;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .btn-secondary:hover {
            background: #2a2a2a;
            color: white;
        }
        
        .hero-visual {
               width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
        }
        
        .hero-image {
            width: 100%;
            max-width: 500px;
            height: 500px;
            background: linear-gradient(135deg, #ff6b9d20 0%, #c4456920 50%, #ffa72620 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .hero-image::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #ffa726 100%);
            border-radius: 50%;
            opacity: 0.3;
        }
        
      
        /* Pay Section */
        .pay-section {
            background: #E8C884;
            padding: 80px 0;
            text-align: center;
            background-image: url(../images/pattern.jpg);
        }

        .pay-section h2 {
            font-size: 36px;
            margin-bottom: 50px;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .feature-card {
           
            border-radius: 15px;
            overflow: hidden;
        }

        .feature-image {
            width: 100%;
            height: 470px;
            background: linear-gradient(135deg, #FFE5E5, #E5F0FF);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
             border-radius: 15px;
             background-size: cover;
        }
        .bg_section{
            height: 400px;
            background-size: cover;
            filter: grayscale(0);
            transition: all 0.5s ease;
               
        }
        .bg_section:hover {
           
            transition: all 0.5s ease;
             filter: grayscale(0.5);
              
        }
         .modality-section {
              background: #FFF9F0;
            text-align: center;
        }
        
        .split-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            
                margin: 80px auto 0 auto;
    max-width: 900px;
        }
        .members-section .section-body ul {
            font-size: 16px;
    line-height: 1.8;
    margin: 0 0 0 20px;
    padding: 0;
        }
        .members-section .section-body ul li
        {
            color: #666;
    margin-bottom: 20px;
        }
        .members-section .sub_text {
            font-size: 12px;
            padding: 10px ;
           
        }
        .members-section .section-body ul li span {
            font-weight: 700;
            color: #c44569;
        }
        .image-card {
            position: relative;
            background-size: cover;
            height: 600px;
            border-radius: 12px;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            transition: all 0.5s ease;
            box-shadow: none;
        }
        .image-card:hover {
                transform: translateY(-10px) !important;
    
        }
        .image-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 220px;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
        }
        
        .image-label {
           position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
    font-size: 24px;
    text-align: left;
    z-index: 1;
    font-family: "Domine", serif;
        }
        
        .life-image {
            /* background: linear-gradient(135deg, #ff6b9d40 0%, #c4456940 100%); */
        }
        
        .labor-image {
            /* background: linear-gradient(135deg, #4a4a4a40 0%, #2a2a2a40 100%); */
        }
        .logo_banner img {
           animation: beatFade 1.2s ease-in-out infinite;
        }
        @keyframes beatFade {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            10% {
                transform: scale(1.2);
                opacity: 0.3;
            }
            20% {
                transform: scale(1);
                opacity: 1;
            }
            30% {
                transform: scale(1.15);
                opacity: 0.85;
            }
            40%, 100% {
                transform: scale(1);
                opacity: 1;
            }
        }
         @keyframes beatFade1 
        {
             0% {
                transform: scale(1);
               
            }
            14% {
                transform: scale(1.15);
               
            }
            28% {
                transform: scale(1);
               
            }
            42% {
                transform: scale(1.12);
                
            }
            70% {
                transform: scale(1);
                
            }
        }
        .feature-content {
            padding: 20px;
            text-align: left;
        }

        .feature-content h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .feature-content p {
            color: #666;
            font-size: 14px;
        }

        /* Members Section */
        .members-section {
            padding: 100px 0;
            
        }

        .members-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .member-image {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, #E5F0FF, #FFE5E5);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            background-size: cover;
        }

        .members-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
            font-family: "Domine", serif;
        }

        .members-text p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.8;
            font-size: 16px;
        }

        .read-full {
            color: #FF6B6B;
            text-decoration: none;
            font-weight: bold;
        }
         /* What LifeTrade Does Section */
        .what-section {
            background: #fff;
            padding: 100px 0 0;
            text-align: center;
        }
        .line {
            border-bottom: solid 1px #d2d2d2;
            background: none;
            width: 100%;
            margin: 80px 0 0;
        }
        .what-section h2 {
            font-size: 42px;
            
            font-family: "Domine", serif;
        }
        .modality {
            font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
        display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
        }
        .modality-section p {
            color: #666;
        }
        .modality li {
            list-style: none;
        }
.modality li:before {
        content: '→';
    position: absolute;
    left: 0;
    color: #c44569;
}
 .modality-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 40px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .modality-card {
           
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 2px solid transparent;
        }

        .modality-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border-color: #FFD93D;
        }

        .modality-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .modality-card p {
            color: #666;
            line-height: 1.6;
            font-size: 16px;
        }

        .what-explainer {
            max-width: 800px;
            margin: 0 auto 50px;
            font-size: 16px;
            line-height: 1.6;
            color: #666;
        }

        .pillars {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 40px;
        }

        .pillar-card {
            background: #FFF9F0;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: left;
            
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .pillar-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .pillar-card h3 {
            font-size: 24px;
             font-family: "Domine", serif;
            margin-bottom: 15px;
            color: #000;
        }

        .pillar-card p {
            color: #666;
            line-height: 1.8;
            font-size: 16px;
        }
 /* Your Judgment Matters Section */
        .judgment-section {
            background: #f5f2ea;
        }
        
        .details-card {
           background: #f5f2ea;
   transition: all 0.3s ease;
            padding: 32px;
            border-radius: 12px;
            margin-top: 40px;
            /* box-shadow: 0 4px 20px rgba(0,0,0,0.08); */
        }
        .details-card:hover {
                transform: translateX(10px);
        }
        
        .details-card h3 {
            font-size: 20px;
            margin-bottom: 16px;
            color: #2a2a2a;
        }
        
        .details-card ul {
            list-style: none;
            margin-bottom: 24px;
        }
        
        .details-card li {
            font-size: 16px;
            line-height: 1.8;
            color: #4a4a4a;
            margin-bottom: 12px;
            padding-left: 24px;
            position: relative;
        }
        
        .details-card li::before {
            content: '➜';
            position: absolute;
            left: 0;
            color: #c44569;
        }
        /* Core Idea Section */
        .core-section {
            padding: 80px 0;
            background: #FFF9F0;
        }

        .core-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
        }

        .core-content h2 {
            font-size: 32px;
            font-weight: 400;
        }

        .core-text {
            color: #666;
            line-height: 1.8;
        }

        /* Gallery */
        .gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 50px;
        }

        .gallery-item {
            height: 250px;
            background: linear-gradient(135deg, #FFE5E5, #E5F0FF);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
        }

        /* Why Section */
        .why-section {
            padding: 80px 0 120px 0;
            text-align: center;
           background-position: 50% 0%;
           background-repeat: no-repeat;
        }

        .why-section h2 {
            font-size: 42px;
            margin-bottom: 30px;
            font-weight: 700;
            font-family: "Domine", serif;
        }

        .why-section p {
            max-width: 800px;
            margin: 0 auto 30px;
            color: #666;
            line-height: 1.8;
        }

        .cta-btn {
            background: linear-gradient(90deg, #FFD93D, #FF6B6B);
            color: #fff;
            padding: 15px 40px;
            border-radius: 8px;
            text-decoration: none;
            display: inline-block;
            font-weight: bold;
            transition: transform 0.3s;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
        }

.why-matters {
  background-color: #fbf7f2; 
  padding: 96px 24px;
background-position: 50% 100%;
background-repeat: no-repeat;
}

.why-matters .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-matters__eyebrow {
  font-size: 14px;
  font-weight: 500;
  color: #7a736c;
  max-width: 820px;
  margin: 0 auto 12px;
    margin-bottom: 56px;
}

.why-matters__title {
  font-size: 40px;
  font-weight: 700;
 font-family: "Domine", serif;
  color: #1f1f1f;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.quote-card {
  background: #ffffff;
  border-radius: 16px;
 padding: 60px 36px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.quote-card__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.quote-card__quote {
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 20px;
  color: #1f1f1f;
   font-family: "Domine", serif;
}

.quote-card__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.quote-card__meta {
  font-size: 14px;
  color: #6f6a63;
}

.why-matters__bridge {
  font-size: 18px;
  font-weight: 500;
  max-width: 760px;
  margin: 0 auto;
  color: #2a2a2a;
}

/* Responsive */
@media (max-width: 900px) {
  .quotes-grid {
    grid-template-columns: 1fr;
  }
}




 /* How It Works Section */
        .how-section {
            background: #faf8f3;
        }
        
        .steps-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 40px;
        }
        
        .step {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .step-number {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .step h3 {
            font-size: 24px;
            margin-bottom: 16px;
            color: #2a2a2a;
        }
        
        .step p {
            font-size: 16px;
            line-height: 1.8;
            color: #4a4a4a;
            margin-bottom: 12px;
        }
        
        /* Footer */
        footer {
            background: #2a2a2a;
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
           
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 16px;
            width: 100%;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links h4 {
            font-size: 16px;
            margin-bottom: 16px;
            color: #c44569;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
           
            color: #999;
            font-size: 14px;
        }
       footer {
        background-color: #1a1a1a;
        color: #ffffff;
        padding: 40px 0 20px;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
.modality-section .container {
    max-width: 900px;
}
 .footer {
            background: #1a1a1a;
            color: white;
            padding: 80px 0 40px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            margin-bottom: 60px;
            gap: 60px;
        }

        .footer-column h4 {
            margin-bottom: 24px;
            font-weight: 600;
            font-size: 16px;
        }

        .footer-column a {
            display: block;
            color: #999;
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: #ff6b9d;
        }
.hs-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
}

/* Modal Container */
.hs-modal-content {
  background: #fff;
  max-width: 640px;
  height: 80vh; /* key */
  margin: 5vh auto;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Fixed Header */
.hs-modal-header {
  padding: 6px 24px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

/* Scroll Area */
.hs-modal-body {
  
  overflow-y: auto;
  flex: 1;
}

/* Close */
.hs-close {
  font-size: 24px;
  cursor: pointer;
}

body.hs-modal-open {
  overflow: hidden;
}



    .footer-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 30px;
    }

    .footer-left {
        flex-shrink: 0;
    }

    .footer-logo {
        max-width: 150px;
        height: auto;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
    }

    .footer-links a {
        color: #ffffff;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
         color: #FF6B6B;
    }

    .footer-divider {
        height: 1px;
        background-color: #333333;
        margin: 0 0 30px 0;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

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

    .social-icons a {
        color: #ffffff;
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .social-icons a:hover {
        color: #FF6B6B;
    }

    .copyright {
        margin: 0;
        font-size: 14px;
        color: #999999;
    }
 /* Scroll Animation Styles */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

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

        .fade-in-delay {
            transition-delay: 0.2s;
        }

        .fade-in-delay-2 {
            transition-delay: 0.4s;
        }

        .fade-in-delay-3 {
            transition-delay: 0.6s;
        }



/* News Header */
        .news-header {
            padding: 80px 0 40px;
        }

        .news-header h1 {
            font-size: 42px;
            margin-bottom: 20px;
            font-family: "Domine", serif;
        }

        /* Filter Tabs */
        .filter-tabs {
            display: flex;
            gap: 30px;
            margin-bottom: 60px;
            border-bottom: 2px solid #E5E5E5;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .filter-tabs button {
            background: none;
            border: none;
            padding: 15px 5px;
            font-size: 16px;
            color: #999;
            cursor: pointer;
            white-space: nowrap;
            transition: color 0.3s;
            position: relative;
        }

        .filter-tabs button:hover,
        .filter-tabs button.active {
            color: #333;
        }

        .filter-tabs button.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 2px;
            background: #333;
        }

        /* News Grid */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding-bottom: 80px;
        }

        .news-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            text-decoration: none;
            color: #333;
            display: block;
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .news-image {
            width: 100%;
            height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #fff;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }

        .news-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.2);
        }

        .news-image span {
            position: relative;
            z-index: 1;
        }

        .gradient-1 {
            background: linear-gradient(135deg, #FFB6B6, #FFA07A);
        }

        .gradient-2 {
            background: linear-gradient(135deg, #87CEEB, #4682B4);
        }

        .gradient-3 {
            background: linear-gradient(135deg, #DDA0DD, #FF8C69, #FFB347);
        }

        .gradient-4 {
            background: linear-gradient(135deg, #E6E6FA, #D8BFD8);
        }

        .gradient-5 {
            background: linear-gradient(135deg, #FFE4B5, #FFDAB9, #F0E68C);
        }

        .gradient-6 {
            background: linear-gradient(135deg, #87CEEB, #4169E1);
        }

        .news-content {
            padding: 25px;
        }

        .news-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .news-meta {
            display: flex;
            gap: 15px;
            font-size: 14px;
            color: #999;
        }

        .news-category {
            font-weight: 500;
            color: #666;
        }

main.news {
    background-color: #FFF9F0;
}
main.single {
    background-color: #FFF9F0;
}
 .single-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 40px 20px 80px;
    }

    /* Post Header */
    .post-header {
        text-align: center;
        margin-bottom: 60px;
        padding-top: 40px;
    }

    .post-date {
        font-size: 14px;
        color: #999;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .post-title {
        font-size: 48px;
        line-height: 1.2;
        margin-bottom: 30px;
        font-weight: 600;
       font-family: "Domine", serif;
    }

    .post-meta {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        font-size: 14px;
        color: #999;
    }

    .post-category {
        background: #1a1a1a;
        padding: 8px 16px;
        border-radius: 20px;
        color: #fff;
        text-decoration: none;
        transition: background 0.3s;
    }

    .post-category:hover {
        background: #333;
    }

    .share-button {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #1a1a1a;
        padding: 8px 16px;
        border-radius: 20px;
        color: #fff;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: background 0.3s;
    }

    .share-button:hover {
        background: #333;
    }

    /* Post Content */
    .post-content {
        color: #ccc;
        font-size: 18px;
        line-height: 1.8;
    }

    .post-content p {
        margin-bottom: 24px;
        font-size: 16px;
        color: #000;
    }

    .post-content h2 {
        font-size: 32px;
        margin: 48px 0 24px;
        color: #fff;
        font-weight: 600;
    }

    .post-content h3 {
        font-size: 24px;
        margin: 36px 0 20px;
        color: #fff;
        font-weight: 600;
    }

    .post-content h4 {
        font-size: 20px;
        margin: 28px 0 16px;
        color: #fff;
        font-weight: 600;
    }

    .post-content ul,
    .post-content ol {
        margin: 24px 0 24px 24px;
        color: #ccc;
    }

    .post-content li {
        margin-bottom: 12px;
    }

    .post-content a {
        color: #c44569;
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: border-color 0.3s;
    }
    .payment {
        margin-bottom: 15px;
    }
    .post-content a:hover {
        border-bottom-color: #4A9EFF;
    }

    .post-content blockquote {
        background: #1a1a1a;
        border-left: 4px solid #4A9EFF;
        padding: 24px 32px;
        margin: 32px 0;
        font-size: 20px;
        font-style: italic;
        color: #fff;
    }

    .post-content img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 32px 0;
    }

    .post-content code {
        background: #1a1a1a;
        padding: 2px 8px;
        border-radius: 4px;
       
        font-size: 16px;
        color: #4A9EFF;
    }

    .post-content pre {
        background: #1a1a1a;
        padding: 24px;
        border-radius: 8px;
        overflow-x: auto;
        margin: 24px 0;
    }

    .post-content pre code {
        background: none;
        padding: 0;
    }

    /* Quote Section */
    .highlight-quote {
        background: #111;
        border-left: 4px solid #4A9EFF;
        padding: 40px;
        margin: 60px 0;
        font-size: 24px;
        line-height: 1.6;
        font-weight: 500;
        color: #fff;
        text-align: left;
    }

    .quote-author {
        margin-top: 20px;
        font-size: 16px;
        color: #999;
        font-weight: normal;
    }

    /* Tags */
    .post-tags {
        margin: 60px 0;
        padding: 20px 0;
        border-top: 1px solid #333;
        border-bottom: 1px solid #333;
    }

    .post-tags h3 {
        font-size: 14px;
        color: #999;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .tag-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .tag-list a {
        background: #1a1a1a;
        padding: 8px 16px;
        border-radius: 20px;
        color: #ccc;
        text-decoration: none;
        font-size: 14px;
        transition: background 0.3s;
    }

    .tag-list a:hover {
        background: #333;
        color: #fff;
    }

    /* Related Posts */
    .related-posts {
        margin-top: 80px;
    }

    .related-posts h2 {
        font-size: 28px;
        margin-bottom: 40px;
        color: #000;
        text-align: center;
        font-family: "Domine", serif;
    }

    .related-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .related-card {
        background: #fff9f0;
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s;
        text-decoration: none;
        display: block;
    }

    .related-card:hover {
        transform: translateY(-5px);
    }

    .related-image {
        width: 100%;
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        color: #fff;
        font-weight: 600;
        position: relative;
        overflow: hidden;
    }

    .related-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin: 0;
    }

    .gradient-1 { background: linear-gradient(135deg, #FFB6B6, #FFA07A); }
    .gradient-2 { background: linear-gradient(135deg, #87CEEB, #4682B4); }
    .gradient-3 { background: linear-gradient(135deg, #DDA0DD, #FF8C69, #FFB347); }

    .related-content {
        padding: 20px;
    }

    .related-title {
        font-size: 16px;
        color: #000;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .related-date {
        font-size: 13px;
        color: #999;
    }

  




.hero-second {
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


.hero-second-img img {
    border-radius: 5px;
}
.hero-second h2 {
        font-family: "Domine", serif;
        font-weight: 700;
            line-height: 46px;
    font-size: 42px;
}
.bg-yellow {
    background-color: #FFF9F0;
}


 /* How It Works Section */
        .how-it-works {
            padding: 100px 0;
            background: #FFF9F0;
        }
        .members-section h3 {
            margin-bottom: 30px;
              font-family: "Domine", serif;
        }
        .text-center {
            text-align: center;
          
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .card {
            background: white;
            padding: 40px;
            border-radius: 12px;
                transition: transform 0.3s, box-shadow 0.3s;
        }
        .card:hover {
            transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
        }

        .card h3 {
            font-family: "Domine", serif;
            font-size: 24px;
            margin-bottom: 15px;
            color: #2d2d2d;
        }

        .card p {
            font-size: 15px;
            color: #5d5d5d;
            line-height: 1.7;
        }

 /* For Partners Section */
        .for-partners {
            padding: 100px 0;
             background: #FFF9F0;
            position: relative;
            overflow: hidden;
        }

        .for-partners::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,107,157,0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .for-partners::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,213,107,0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .for-partners .container {
            position: relative;
            z-index: 1;
        }

        .for-partners .section-headline {
            color: #2d2d2d;
        }

        .for-partners .section-subheading {
            color: #5d5d5d;
            font-size: 18px;
        }

        .benefits-showcase {
            margin-top: 80px;
        }

        .benefit-featured {
            background: white;
            border: 1px solid #e8e6e1;
            border-radius: 20px;
            padding: 50px;
            margin-bottom: 30px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .benefit-featured:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            background: #fff;
            border:solid 1px #dedede;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .benefit-icon svg {
            width: 32px;
            height: 32px;
            stroke: #000;
            fill: none;
        }

        .benefit-featured h3 {
            font-family: "Domine", serif;
            font-size: 28px;
            margin-bottom: 20px;
            color: #2d2d2d;
            line-height: 1.3;
        }

        .benefit-featured p {
            font-size: 16px;
            color: #5d5d5d;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .benefit-featured ul {
            list-style: none;
            padding: 0;
            margin: 25px 0;
            display: grid;
            /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
            gap: 15px;
        }

        .benefit-featured li {
            font-size: 15px;
            color: #2d2d2d;
            padding: 15px 20px;
            background: #f5f4f1;
            border-radius: 8px;
            border-left: 3px solid #ff6b9d;
        }

        .benefit-highlight {
            background: linear-gradient(135deg, rgba(255,107,157,0.08) 0%, rgba(255,160,107,0.08) 100%);
            border: 1px solid rgba(255,107,157,0.15);
            padding: 25px 30px;
            border-radius: 12px;
            margin-top: 25px;
        }

        .benefit-highlight strong {
            color: #2d2d2d;
            font-size: 17px;
        }

        .benefits-grid-2col {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .cta-partners {
            text-align: center;
           
            padding: 40px;
            background: white;
            border: 1px solid #e8e6e1;
            border-radius: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-partners:hover {
            border-color: #ff6b9d;
            transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        .cta-partners h3 {
             font-family: "Domine", serif;
            font-size: 36px;
            color: #2d2d2d;
            margin-bottom: 0px;
        }

        .cta-partners p {
               font-size: 16px;
    color: #5d5d5d;
    margin-bottom: 30px;
    max-width: 800px;
    margin: 10px auto;
        }

        .btn-gradient {
            background: linear-gradient(135deg, #ff6b9d 0%, #ffa06b 100%);
            color: white;
            padding: 16px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            display: inline-block;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-gradient:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255,107,157,0.4);
        }
  /* Trust Signals */
        .trust-signals {
            padding: 100px 0;
            
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        .trust-item{
            border: solid 1px #dedede;
    border-radius: 8px;
    padding: 40px;
        }
        .trust-item h3 {
            font-family: "Domine", serif;
            font-size: 20px;
            margin-bottom: 15px;
            color: #2d2d2d;
        }

        .trust-item p {
            font-size: 15px;
            color: #5d5d5d;
            line-height: 1.7;
        }
          /* FAQ Section */
        .faq {
            padding: 100px 0;
           /* background: #FFF9F0; */
        }

        .faq-columns {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 60px;
            margin-top: 60px;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-column {
            max-width: 100%;
        }

        .faq-category-title {
            font-family: "Domine", serif;
            font-size: 24px;
            margin-bottom: 30px;
            color: #2d2d2d;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .faq-category-icon {
           width: 40px;
    height: 40px;
    
    border-radius: 8px;
    display: flex;
    align-items: center;
    border: solid 1px #d7d7d7;
    justify-content: center;
    flex-shrink: 0;
        }

        .faq-category-icon svg {
            width: 20px;
            height: 20px;
            stroke: #000;
            fill: none;
        }

        .faq-item {
            border: 1px solid #e8e6e1;
            border-radius: 8px;
            margin-bottom: 12px;
            overflow: hidden;
            background: white;
        }

        .faq-question {
            width: 100%;
            padding: 20px 50px 20px 24px;
            background: white;
            border: none;
            text-align: left;
            font-size: 16px;
            font-weight: 600;
            color: #2d2d2d;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
            position: relative;
        }

        .faq-question:hover {
            background: #faf9f7;
        }

        .faq-question::after {
            content: '+';
            font-size: 24px;
            font-weight: 400;
            color: #5d5d5d;
            position: absolute;
            right: 24px;
            transition: transform 0.3s;
        }

        .faq-question.active::after {
            content: '−';
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
            padding: 0 24px;
        }

        .faq-answer.active {
            max-height: 500px;
            padding: 0 24px 20px 24px;
        }

        .faq-answer p {
            font-size: 15px;
            color: #5d5d5d;
            line-height: 1.7;
            margin: 0;
        }
 /* Category Header */
    .category-header {
        padding: 80px 0 40px;
        text-align: center;
    }

    .category-label {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #999;
        margin-bottom: 15px;
    }

    .category-header h1 {
        font-size: 56px;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .category-description {
        max-width: 700px;
        margin: 0 auto;
        font-size: 18px;
        color: #666;
        line-height: 1.7;
    }

    .category-count {
        margin-top: 30px;
        font-size: 16px;
        color: #999;
    }

    /* Filter Tabs */
    .filter-tabs {
        display: flex;
        gap: 30px;
        margin-bottom: 60px;
        border-bottom: 2px solid #E5E5E5;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-top: 40px;
    }

    .filter-tabs a {
        background: none;
        border: none;
        padding: 15px 5px;
        font-size: 16px;
        color: #999;
        text-decoration: none;
        white-space: nowrap;
        transition: color 0.3s;
        position: relative;
    }

    .filter-tabs a:hover,
    .filter-tabs a.active {
        color: #333;
    }

    .filter-tabs a.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 2px;
        background: #333;
    }

    /* News Grid */
    .news-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 60px;
    }

    .news-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
        text-decoration: none;
        color: #333;
        display: block;
    }

    .news-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .news-image {
        width: 100%;
        height: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        color: #fff;
        font-weight: 600;
        position: relative;
        overflow: hidden;
        background-size: cover;
        background-position: center;
    }

    .news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .news-image.no-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.2);
    }

    .news-image span {
        position: relative;
        z-index: 1;
    }

    .gradient-1 {
        background: linear-gradient(135deg, #FFB6B6, #FFA07A);
    }

    .gradient-2 {
        background: linear-gradient(135deg, #87CEEB, #4682B4);
    }

    .gradient-3 {
        background: linear-gradient(135deg, #DDA0DD, #FF8C69, #FFB347);
    }

    .gradient-4 {
        background: linear-gradient(135deg, #E6E6FA, #D8BFD8);
    }

    .gradient-5 {
        background: linear-gradient(135deg, #FFE4B5, #FFDAB9, #F0E68C);
    }

    .gradient-6 {
        background: linear-gradient(135deg, #87CEEB, #4169E1);
    }

    .news-content {
        padding: 25px;
    }

    .news-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .news-excerpt {
        color: #666;
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .news-meta {
        display: flex;
        gap: 15px;
        font-size: 14px;
        color: #999;
    }

    .news-category {
        font-weight: 500;
        color: #666;
    }

    .no-posts {
        text-align: center;
        padding: 60px 20px;
        color: #999;
        font-size: 18px;
    }

    /* Pagination */
    .pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 60px 0 80px;
        flex-wrap: wrap;
    }

    .pagination a,
    .pagination span {
        padding: 12px 18px;
        background: #fff;
        border-radius: 8px;
        text-decoration: none;
        color: #333;
        transition: background 0.3s, transform 0.2s;
        border: 1px solid #E5E5E5;
        font-weight: 500;
    }

    .pagination a:hover {
        background: #E8C884;
        transform: translateY(-2px);
        border-color: #E8C884;
    }

    .pagination .current {
        background: #333;
        color: #fff;
        border-color: #333;
    }

    .pagination .dots {
        background: transparent;
        border: none;
        cursor: default;
    }

    /* Breadcrumbs */
    .breadcrumbs {
        padding: 20px 0;
        font-size: 14px;
        color: #999;
    }

    .breadcrumbs a {
        color: #666;
        text-decoration: none;
        transition: color 0.3s;
    }

    .breadcrumbs a:hover {
        color: #333;
    }

    .breadcrumbs span {
        margin: 0 8px;
    }

    /* Mobile Responsive */
    @media (max-width: 1024px) {
        .news-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .category-header h1 {
            font-size: 36px;
        }

        .news-grid {
            grid-template-columns: 1fr;
        }

        .filter-tabs {
            gap: 20px;
        }

        .category-description {
            font-size: 16px;
        }
        .hero-second, .pillars , .cards-grid ,.benefits-grid-2col, .trust-grid, .faq-columns{
             grid-template-columns: 1fr;
        }
        .hero-second-img img {
            max-width: 100%;
        }
        .footer-content {
            flex-direction: column;
            gap: 30px;
        }
    }


 /* Hero Section */
    .careers-hero {
        padding: 80px 0 0px;
        text-align: center;
    }

    .careers-hero h1 {
        font-size: 42px;
        margin-bottom: 20px;
        font-weight: 600;
            font-family: "Domine", serif;
            font-weight: bold;
    }

    .careers-hero p {
        font-size: 20px;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.7;
    }

    /* Values Section */
    .values-section {
        padding: 60px 0;
        background: #fff;
    }

    .values-section h2 {
        font-size: 36px;
        text-align: center;
        margin-bottom: 50px;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .value-card {
        text-align: center;
        padding: 30px;
    }

    .value-icon {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .value-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .value-card p {
        color: #666;
        line-height: 1.7;
    }

    /* Open Positions */
    .positions-section {
        padding: 80px 0;
    }

    .positions-section h2 {
        font-size: 36px;
        text-align: center;
        margin-bottom: 50px;
            font-family: "Domine", serif;
    }

    .positions-grid {
        display: grid;
        gap: 25px;
    }

    .position-card {
        background: #fff;
        border-radius: 12px;
        padding: 35px;
        transition: transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
    }

    .position-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .position-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .position-title {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .position-type {
        background: #E8C884;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 500;
    }

    .position-meta {
        display: flex;
        gap: 25px;
        color: #666;
        font-size: 15px;
        margin-bottom: 15px;
    }

    .position-meta span {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .position-description {
        color: #666;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .apply-btn {
        background: #000;
        color: #fff;
        padding: 12px 28px;
        border-radius: 6px;
        text-decoration: none;
        display: inline-block;
        transition: background 0.3s;
        border: none;
        cursor: pointer;
        font-size: 16px;
    }

    .apply-btn:hover {
        background: #333;
    }

    /* Application Form Section */
    .application-section {
        padding: 80px 0;
        background: #fff;
    }

    .application-section h2 {
        font-size: 36px;
        text-align: center;
        margin-bottom: 20px;
            font-family: "Domine", serif;
    }

    .application-section > p {
        text-align: center;
        color: #666;
        margin-bottom: 50px;
        font-size: 18px;
    }

    .application-form {
        max-width: 700px;
        margin: 0 auto;
        background: #fff;
        padding: 50px;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }

    .form-group {
        margin-bottom: 25px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #333;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 14px;
        border: 2px solid #E5E5E5;
        border-radius: 6px;
        font-size: 16px;
        transition: border-color 0.3s;
        font-family: inherit;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #E8C884;
    }

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

    .file-upload {
        position: relative;
    }

    .file-upload input[type="file"] {
        padding: 40px 14px;
        border: 2px dashed #E5E5E5;
        background: #FAFAFA;
        cursor: pointer;
    }

    .file-upload input[type="file"]:hover {
        border-color: #E8C884;
        background: #FFF9F0;
    }

    .form-note {
        font-size: 14px;
        color: #999;
        margin-top: 5px;
    }

    .submit-btn {
        width: 100%;
        background: #000;
        color: #fff;
        padding: 16px;
        border: none;
        border-radius: 6px;
        font-size: 18px;
        font-weight: 500;
        cursor: pointer;
        transition: background 0.3s;
    }

    .submit-btn:hover {
        background: #333;
    }

    .success-message {
        background: #D4EDDA;
        color: #155724;
        padding: 20px;
        border-radius: 6px;
        margin-bottom: 30px;
        border-left: 4px solid #28A745;
    }

    .error-message {
        background: #F8D7DA;
        color: #721C24;
        padding: 20px;
        border-radius: 6px;
        margin-bottom: 30px;
        border-left: 4px solid #DC3545;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .careers-hero h1 {
            font-size: 36px;
        }

        .careers-hero p {
            font-size: 18px;
        }

        .values-grid {
            grid-template-columns: 1fr;
        }

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

        .position-meta {
            flex-direction: column;
            gap: 10px;
        }

        .application-form {
            padding: 30px 20px;
        }
    }

    /* Page Header */
    .page-header {
        text-align: center;
        margin-bottom: 60px;
        padding-top: 40px;
    }

    .page-date {
        font-size: 14px;
        color: #999;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .page-title {
        font-size: 48px;
        line-height: 1.2;
        margin-bottom: 30px;
        font-weight: 700;
            font-family: "Domine", serif;
        color: #000;
    }

    .page-meta {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        font-size: 14px;
        color: #999;
    }

    .share-button {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #1a1a1a;
        padding: 8px 16px;
        border-radius: 20px;
        color: #fff;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: background 0.3s;
    }

    .share-button:hover {
        background: #333;
    }

    /* Featured Image */
    .page-featured-image {
        margin-bottom: 60px;
        border-radius: 12px;
        overflow: hidden;
    }

    .page-featured-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Page Content */
    .page-content {
        color: #ccc;
        font-size: 18px;
        line-height: 1.8;
    }

    .page-content p {
           
    font-size: 16px;
    color: #000;
    }

    .page-content h2 {
        font-size: 32px;
        margin: 48px 0 24px;
        color: #000;
        font-weight: 600;
            font-family: "Domine", serif;
    }

    .page-content h3 {
        font-size: 24px;
        margin: 36px 0 20px;
         color: #000;
        font-weight: 600;
            font-family: "Domine", serif;
    }

    .page-content h4 {
        font-size: 20px;
        margin: 28px 0 16px;
         color: #000;
        font-weight: 600;
            font-family: "Domine", serif;
    }

    .page-content ul,
    .page-content ol {
        margin: 24px 0 24px 24px;
        color: #000;
    }

    .page-content li {
        margin-bottom: 12px;
    }

    .page-content a {
        color: #4A9EFF;
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: border-color 0.3s;
    }

    .page-content a:hover {
        border-bottom-color: #4A9EFF;
    }

    .page-content blockquote {
        background: #1a1a1a;
        border-left: 4px solid #4A9EFF;
        padding: 24px 32px;
        margin: 32px 0;
        font-size: 20px;
        font-style: italic;
        color: #fff;
    }

    .page-content img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 32px 0;
    }

    .page-content code {
        background: #1a1a1a;
        padding: 2px 8px;
        border-radius: 4px;
        font-family: 'Courier New', monospace;
        font-size: 16px;
        color: #4A9EFF;
    }

    .page-content pre {
        background: #1a1a1a;
        padding: 24px;
        border-radius: 8px;
        overflow-x: auto;
        margin: 24px 0;
    }

    .page-content pre code {
        background: none;
        padding: 0;
    }

    .page-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 32px 0;
    }

    .page-content table th,
    .page-content table td {
        padding: 12px;
        text-align: left;
        border-bottom: 1px solid #333;
    }

    .page-content table th {
        background: #1a1a1a;
        font-weight: 600;
        color: #fff;
    }

    .page-content table tr:hover {
        background: #1a1a1a;
    }

    /* Call to Action Box */
    .cta-box {
        background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
        border: 2px solid #333;
        border-radius: 12px;
        padding: 40px;
        margin: 60px 0;
        text-align: center;
    }

    .cta-box h3 {
        color: #fff;
        font-size: 28px;
        margin-bottom: 15px;
    }

    .cta-box p {
        color: #ccc;
        font-size: 18px;
        margin-bottom: 25px;
    }

    .cta-button {
        display: inline-block;
        background: #4A9EFF;
        color: #fff;
        padding: 14px 32px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        transition: background 0.3s;
    }

    .cta-button:hover {
        background: #3A8EEF;
    }

    /* Breadcrumbs */
    .breadcrumbs {
        padding: 20px 0;
        font-size: 14px;
        color: #999;
        max-width: 800px;
        margin: 0 auto;
    }

    .breadcrumbs a {
        color: #666;
        text-decoration: none;
        transition: color 0.3s;
    }

    .breadcrumbs a:hover {
        color: #fff;
    }

    .breadcrumbs span {
        margin: 0 8px;
    }

    /* Child Pages */
    .child-pages {
        margin-top: 60px;
        padding-top: 60px;
        border-top: 1px solid #333;
    }

    .child-pages h2 {
        font-size: 28px;
        margin-bottom: 30px;
        color: #fff;
    }

    .child-pages-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .child-page-card {
        background: #1a1a1a;
        border-radius: 8px;
        padding: 25px;
        text-decoration: none;
        transition: background 0.3s, transform 0.3s;
        display: block;
    }

    .child-page-card:hover {
        background: #2a2a2a;
        transform: translateY(-3px);
    }

    .child-page-card h3 {
        color: #fff;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .child-page-card p {
        color: #999;
        font-size: 15px;
        line-height: 1.6;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .page-title {
            font-size: 32px;
        }

        .page-content {
            font-size: 16px;
        }

        .page-content h2 {
            font-size: 24px;
        }

        .page-content h3 {
            font-size: 20px;
        }

        .cta-box {
            padding: 30px 20px;
        }

        .child-pages-grid {
            grid-template-columns: 1fr;
        }

        .page-meta {
            flex-direction: column;
            gap: 10px;
        }
    }



.contact-form-section {
    padding: 100px 0;
    background: #faf9f7;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 42px;
    margin-bottom: 15px;
    color: #2d2d2d;
    text-align: center;
}

.contact-form-subtitle {
    font-size: 16px;
    color: #5d5d5d;
    text-align: center;
    margin-bottom: 50px;
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.wpcf7-form label {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 600;
    color: #2d2d2d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e8e6e1;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: #2d2d2d;
    background: white;
    transition: all 0.3s;
    margin-top: 8px;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form select:focus {
    outline: none;
    border-color: #ff6b9d;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.wpcf7-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%232d2d2d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

.wpcf7-form input::placeholder {
    color: #999;
}

.wpcf7-form .wpcf7-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ffa06b 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 15px;
}
.explore-close {
    cursor: pointer;
}
.wpcf7-form .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
}

.wpcf7-form .wpcf7-submit:active {
    transform: translateY(0);
}

/* Form Grid Layout for First/Last Name */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Validation Messages */
.wpcf7-not-valid-tip {
    font-size: 13px !important;
    color: #ff6b9d;
    margin-top: 5px;
    text-transform: none;
}

.wpcf7-response-output {
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 20px;
}

.wpcf7-mail-sent-ok {
    background: #e8f5e9;
    border: 1px solid #4caf50;
    color: #2e7d32;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
    background: #ffebee;
    border: 1px solid #ff6b9d;
    color: #c62828;
}

/* Spinner */
.wpcf7-spinner {
    margin-left: 10px;
}

/* ============================================
   CONTACT FORM STYLES - DARK THEME
   Add class "dark-form" to the section
   ============================================ */

.dark-form {
    background: #0a0a0a;
}

.dark-form .contact-form-title {
    color: #fff;
}

.dark-form .contact-form-subtitle {
    color: #aaa;
}

.dark-form .wpcf7-form label {
    color: #ccc;
}

.dark-form .wpcf7-form input[type="text"],
.dark-form .wpcf7-form input[type="email"],
.dark-form .wpcf7-form select {
    background: #000;
    border: 1px solid #1a1a1a;
    color: #e8e6e1;
}

.dark-form .wpcf7-form input[type="text"]:focus,
.dark-form .wpcf7-form input[type="email"]:focus,
.dark-form .wpcf7-form select:focus {
    border-color: #00d9ff;
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.dark-form .wpcf7-form select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2300d9ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.dark-form .wpcf7-form input::placeholder {
    color: #666;
}

.dark-form .wpcf7-form .wpcf7-submit {
    background: #00d9ff;
    color: #000;
}

.dark-form .wpcf7-form .wpcf7-submit:hover {
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.dark-form .wpcf7-not-valid-tip {
    color: #00d9ff;
}

.dark-form .wpcf7-mail-sent-ok {
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid #00d9ff;
    color: #00d9ff;
}

.dark-form .wpcf7-validation-errors,
.dark-form .wpcf7-mail-sent-ng {
    background: rgba(255, 107, 157, 0.1);
    border: 1px solid #ff6b9d;
    color: #ff6b9d;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-form-title {
        font-size: 32px;
    }
}



.research{
    background: #000;
  color: #e6e6e6;
}
/* .section.narrow {
  max-width: 720px;
  margin: 0 auto;
} */

.hero-research {
  padding-top: 72px;
  text-align: center;
}
.hero-research h1
{
        font-family: "Domine", serif;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, #e8e6e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-research p
{
        font-size: 16px;
    color: #b8b6b1;
    line-height: 1.8;
    margin-bottom: 25px;
}
.muted {
  color: #9aa0a6;
}

.intro {
  max-width: 720px;
}



/* Quotes */
.pull-quote {
  border-left: 3px solid #FF6B6B;
  padding-left: 16px;
  margin: 32px 0;
  font-style: italic;
  color: #cfd8dc;
}

/* LEAF */
.leaf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.leaf-card {
  border: 1px solid #1f2a30;
  padding: 24px;
  border-radius: 8px;
}

/* Data Model */
.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.data-card {
  border-top: 2px solid #FF6B6B;
  padding-top: 16px;
}

/* Monospace */
.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.95em;
  color: #FF6B6B;
}

/* Takeaways */
.takeaways {
  list-style: none;
}

.takeaways li {
  margin-bottom: 16px;
}

/* Papers */
.papers {
  border-top: 1px solid #1f2a30;
}

.paper-list {
  list-style: none;
}

.paper-list li {
  margin-bottom: 16px;
}

.tag {
  font-size: 12px;
  color: #FF6B6B;
  margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 26px;
  }

  .section {
    padding: 64px 20px;
  }
}


 /* Mobile Responsive */
        @media (max-width: 1024px) {
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }






    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            align-items: center;
            gap: 20px;
            text-align: center;
        }

        .footer-links {
            justify-content: center;
            gap: 20px;
        }
         .modality-features {
                grid-template-columns: 1fr;
            }

             .post-title {
            font-size: 32px;
        }

        .post-content {
            font-size: 16px;
        }

        .post-content h2 {
            font-size: 24px;
        }

        .post-content h3 {
            font-size: 20px;
        }

        .highlight-quote {
            font-size: 20px;
            padding: 30px 20px;
        }

        .related-grid {
            grid-template-columns: 1fr;
        }

        .post-meta {
            flex-direction: column;
            gap: 10px;
        }

    }
       
 .b_container {
            position: relative;
            width: 500px;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .beat-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            animation: heartbeat 1.2s ease-in-out infinite;
            filter: drop-shadow(0 0 20px rgba(255, 100, 150, 0.5));
        }

        @keyframes heartbeat {
            0% {
                transform: scale(1);
                filter: drop-shadow(0 0 20px rgba(255, 100, 150, 0.5));
            }
            14% {
                transform: scale(1.15);
                filter: drop-shadow(0 0 40px rgba(255, 100, 150, 0.8));
            }
            28% {
                transform: scale(1);
                filter: drop-shadow(0 0 20px rgba(255, 100, 150, 0.5));
            }
            42% {
                transform: scale(1.12);
                filter: drop-shadow(0 0 35px rgba(255, 100, 150, 0.7));
            }
            70% {
                transform: scale(1);
                filter: drop-shadow(0 0 20px rgba(255, 100, 150, 0.5));
            }
        }

        .glow-ring {
            position: absolute;
            width: 120%;
            height: 120%;
            border-radius: 50%;
            border: 2px solid rgba(255, 100, 150, 0.3);
            animation: pulse-ring 1.2s ease-in-out infinite;
        }

        @keyframes pulse-ring {
            0% {
                transform: scale(0.8);
                opacity: 0;
            }
            50% {
                opacity: 0.5;
            }
            100% {
                transform: scale(1.2);
                opacity: 0;
            }
        }

        .glow-ring:nth-child(2) {
            animation-delay: 0.3s;
        }

        .glow-ring:nth-child(3) {
            animation-delay: 0.6s;
        }
        .logo_banner {
            position: absolute;
                margin-top: -35px;
    margin-left: 35px;
        }
         @media (max-width: 1300px) {

.logo img {
    margin-left: 0;
}
         }

          @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: #FFF9F0;
                flex-direction: column;
                padding: 40px;
                transition: left 0.3s;
            }

            .nav-links.active {
                left: 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-content {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 32px;
            }

            .features {
                grid-template-columns: 1fr;
            }

            .members-content {
                grid-template-columns: 1fr;
            }

            .core-content {
                grid-template-columns: 1fr;
            }

            .gallery {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-links {
                flex-direction: column;
            }
            .glow-ring {
                width: 100%;
                height: 100%;
            }
            .b_container {
                width: 100%;
            }
            .hero-image{
                overflow: hidden;
            }
             .news-header h1 {
                font-size: 36px;
            }

            .news-grid {
                grid-template-columns: 1fr;
            }

            .filter-tabs {
                gap: 20px;
            }
        }