﻿




   :root {
            --primary-color: #00A6B5;
            --secondary-color: #0066FF;
            --dark-blue: #1a1d4d;
            --light-bg: #f8f9fa;
            --text-dark: #2c3e50;
        }

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

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

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .slide-in-left {
            animation: slideInLeft 0.8s ease-out forwards;
        }

        .slide-in-right {
            animation: slideInRight 0.8s ease-out forwards;
        }

        /* Navbar */
        .navbar {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color) !important;
        }

        .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .btn-primary {
            /* background: #9b9045 !important; */
            border: none;
            color: #ffffff !important;
            /* padding: 0.6rem 1.8rem; */
            border-radius: 8px;
            box-shadow: none;
            /* font-weight: 500 !important; */
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: #0052cc;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,102,255,0.3);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #f5f7fa 0%, #e3f2fd 100%);
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            /* background: radial-gradient(circle, rgba(0,166,181,0.1) 0%, transparent 70%); */
            border-radius: 50%;
        }

        .hero-content h1 {
            /* font-size: 44px; */
            /* font-weight: 800; */
            color: #5d5d8f;
            /* margin-bottom: 1.5rem; */
            /* line-height: 1.2; */
        }

        .hero-content .highlight {
            color: #9b9045;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 0px;
        }
       .hero-content .p2 {    font-size: 33px;
    line-height: 44px;
    margin-bottom: 15px;
       }

        .hero-image {
            position: relative;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .hero-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        /* Stats Section */
        .stats-section {
            background: white;
            padding: 60px 0;
        }

        .stat-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 8px 20px rgb(0 0 0 / 8%);
            transition: all 0.3s ease;
            height: 100%;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .stat-number {
            font-size: 36px;
            font-weight: 800;00; */
            color: #9b9045;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #ffe55f;
            font-size: 16px;
        }

        /* Investment Options */
        .investment-section {
            padding: 28px 0;
            background: var(--light-bg);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: #4b4b8c;
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 3rem;
        }

        .investment-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 100%;
            border: 2px solid transparent;
        }

        .investment-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            border-color: var(--primary-color);
        }

        .investment-card h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-blue);
        }

        .investment-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(173deg, #9b9045, #3262d1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.8rem;
        }

        .return-badge {
            display: inline-block;
            background: linear-gradient(135deg, #4CAF50, #81C784);
            color: white;
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        /* Returns Comparison */
        .comparison-section {
            padding: 80px 0;
            background: white;
        }

        .comparison-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }

        .comparison-card:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .chart-placeholder {
            height: 200px;
            background: white;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 1.5rem 0;
            position: relative;
            overflow: hidden;
        }

        .bar-chart {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            height: 100%;
            gap: 20px;
            padding: 20px;
        }

        .bar {
            width: 60px;
            background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
            border-radius: 10px 10px 0 0;
            position: relative;
            animation: barGrow 1s ease-out forwards;
            transform-origin: bottom;
        }

        @keyframes barGrow {
            from { transform: scaleY(0); }
            to { transform: scaleY(1); }
        }

        /* Testimonials */
        .testimonial-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .testimonial-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
            height: 100%;
        }

        .testimonial-card:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }

        .testimonial-text {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
.bond-card {
    padding: 20px;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.bond-card:hover {
    transform: translateY(-5px);
}
        .author-avatar {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-weight: 700;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-color) 100%);
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .btn-light {
            background: white;
            color: var(--secondary-color);
            padding: 1rem 3rem;
            font-weight: 600;
            border-radius: 50px;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-light:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(255,255,255,0.3);
        }

        /* Footer */
        footer {
            background: var(--dark-blue);
            color: white;
            padding: 40px 0 20px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        /* Scroll Animation Trigger */
        .animate-on-scroll {
            opacity: 1;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        
        /***********************section plan*****************************************/
        
          .filter-btn {
            padding: 12px 24px;
            border-radius: 50px;
            border: none;
            font-weight: 600;
            font-size: 14px;
            margin: 5px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .filter-btn.active {
            background: #7fa03e;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(127, 160, 62, 0.3);
        }

        .filter-btn:not(.active) {
            background: white;
            color: #666;
        }

        .filter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .bond-card {
            background: linear-gradient(175deg, rgb(44, 140, 252) -75%, rgb(255, 255, 255) 28%);
            border-radius: 20px;
            padding: 12px;
            margin-bottom: 10px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 0.6s forwards;
        }

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

        .bond-card:nth-child(1) { animation-delay: 0.1s; }
        .bond-card:nth-child(2) { animation-delay: 0.2s; }
        .bond-card:nth-child(3) { animation-delay: 0.3s; }

        .bond-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }

        .bond-header {
            /* background: linear-gradient(180deg, #667eea 0%, #764ba2 100%); */
            padding: 4px 5px;
            position: relative;
            overflow: hidden;
        }

        .bond-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 200px;
            height: 200px;
            /* background: rgba(255,255,255,0.1); */
            border-radius: 50%;
            transition: all 0.6s ease;
        }

        .bond-card:hover .bond-header::before {
            transform: scale(1.5);
        }

        .company-logo {
            width: 70px;
            height: 56px;
            /* background: white; */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            /* box-shadow: 0 4px 15px rgba(0,0,0,0.1); */
            transition: all 0.3s ease;
        }

        .bond-card:hover .company-logo {
            transform:scale(1.2);
        }

        .company-logo img {
            width: 45px;
            height: 45px;
            object-fit: contain;
            border-radius: 12px;
            padding: 2px;
            background: white;
        }

        .rating-badge {
            position: absolute;
            top: 8px;
            right: 6px;
            background: #5d5d8f;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 13px;
            box-shadow: 0 4px 12px rgba(255, 159, 67, 0.4);
            /* animation: pulse 2s infinite; */
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .company-name {
            color: #454444;
            font-size: 15px;
            font-weight: 700;
            margin: 0;
            /* text-shadow: 0 2px 4px rgba(0,0,0,0.1); */
        }

        .bond-details {
            padding: 0px 16px;
            text-align: center;
        }

        .detail-row {
            display: flex;
            justify-content: space-between;
            padding: 7px 0;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }

        .detail-row:last-child {
            border-bottom: none;
        }

        .detail-row:hover {
            background: #f8f9fa;
            padding-left: 12px;
            padding-right: 10px;
            border-radius: 8px;
        }

        .detail-label {
            color: #888;
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .detail-value {
            color: #333;
            font-weight: 700;
            font-size: 15px;
        }

        .detail-value.highlight {
            color: #7fa03e;
            font-size: 18px;
        }
.col-md-6 {
    flex: none;
    max-width: 50%;
   
}
.btn-theme2 {
    padding: 10px !important;
    background: #9b9045 !important;
    color: var(--light_color) !important;
    border: none !important;
    border-radius: 2rem !important;
    padding: 10px 19px !important;
    transition: all 0.3s !important;
    text-decoration: none !important;
    display: inline-block !important;
    box-shadow: none;
    border-radius: 10px !important;
    margin-bottom: 12px;
}
        .know-more-btn {
            background: #ffffff;
            color: #49488b;
            border: none;
            padding: 7px 6px;
            text-align: center;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            /* padding-top: 18px; */
            width: -webkit-fill-available;
            margin-top: 10px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            /* box-shadow: 0 4px 15px rgba(255, 159, 67, 0.3); */
            position: relative;
            overflow: hidden;
            margin: auto;
            line-height: 41px;
            justify-content: CENTER;
        }

        .know-more-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .know-more-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .know-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 159, 67, 0.4);
        }

        .know-more-btn:active {
            transform: translateY(0);
        }

        .see-all-btn {
            background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c2f 100%);
            color: white;
            border: none;
            padding: 16px 50px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            margin: 40px auto;
            display: block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(255, 159, 67, 0.3);
        }

        .see-all-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(255, 159, 67, 0.4);
        }

        .filter-container {
            text-align: center;
            margin-bottom: 50px;
            animation: fadeIn 0.8s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .info-icon {
            color: #7fa03e;
            margin-right: 8px;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .bond-card {
                margin-bottom: 20px;
            }
            
            .filter-btn {
                padding: 10px 18px;
                font-size: 12px;
            }
            
            .company-name {
                font-size: 16px;
            }
        }
        /******************************************************************/
        
        /****************slider*************************/
        
         .hero-sliderr {
            height: 85vh;
            min-height: 600px;
            position: relative;
            overflow: hidden;
        }

        .carousel-item {
            height: 84vh;
            min-height: 600px;
        }
/* Video = background image */
.slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 650px;
  object-fit: cover; /* image jaisa behave kare */
  z-index: 0;
}
       .hero-slider .slide-1 {
            background:url(images/slidervideo1.mp4);
           background-size: cover;
        }

       .hero-slider .slide-2 {
           background:url(images/slidervideo1.mp4);
         background-size: cover;
        }

        .hero-slider .slide-3 {
             background:url(images/slidervideo1.mp4);
              background-size: cover;
        }

      .hero-slider  .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            width: 90%;
            max-width: 1200px;
            padding: 13px;
            border-radius: 20px;
            /* background: linear-gradient(135deg, rgb(60 64 88) 0%, rgba(255, 150, 42, 0.4) 100%); */
        }

        .hero-slider .main-title {
            font-size: 55px;
            font-weight: 800;
            margin-bottom: 1px;
            line-height: 1.2;
            /* text-shadow: 2px 2px 8px rgba(0,0,0,0.3); */
            background: linear-gradient(to right, #ffffff, #f8f9fa);
            -webkit-background-clip: text;
            background-clip: text;
            color: #ffffff;
            letter-spacing: -0.5px;
        }

      .hero-slider  .subtitle {
            font-size: 23px;
            font-weight: 400;
            margin-bottom: 11px;
            line-height: 1.6;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.95;
            color: #ff962a;
        }

       .hero-slider  .highlight-box {
            background: none;
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 10px 19px;
            display: inline-block;
            border: 1px solid #494988;
            box-shadow: none;
            margin-top: 20px;
        }

       .hero-slider  .highlight-text {
            font-size: 1.8rem;
            font-weight: 600;
            margin: 0;
            color: #ffffff;
        }

       .hero-slider  .highlight-text span {
            color: #ffe55f;
            font-weight: 700;
        }

       .hero-slider .cta-button {
            background: rgb(155 144 69);
            color: #fff;
            border: none;
            padding: 16px 45px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            margin-top: 40px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .hero-slider .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            background: white;
            color: #764ba2;
        }

       .hero-slider .cta-button:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

       .hero-slider .cta-button:hover:before {
            opacity: 1;
        }

        .cta-button:hover span {
            color: white;
        }

       .hero-slider .stats-container {
            display: flex;
            justify-content: center;
            gap: 42px;
            margin-top: 21px;
            flex-wrap: wrap;
        }

        .hero-slider .stat-item {
            text-align: center;
        }

        .hero-slider .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            display: block;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

       .hero-slider .stat-label {
            font-size: 1rem;
            opacity: 1;
            margin-top: 5px;
            text-shadow: 14px 3px 9px #001;
        }

        .hero-slider .carousel-control-prev,
       .hero-slider  .carousel-control-next {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            margin: 0 30px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .hero-slider .carousel-control-prev-icon,
       .hero-slider  .carousel-control-next-icon {
            width: 25px;
            height: 25px;
            filter: brightness(0) invert(1);
        }

       .hero-slider .carousel-indicators {
            bottom: 40px;
        }

       .hero-slider .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 8px;
            border: 2px solid white;
            background: transparent;
        }

       .hero-slider .carousel-indicators button.active {
            background: white;
        }

        /* Animation classes */
        .hero-slider .animate-text {
            animation: fadeInUp 1s ease-out;
        }

       .hero-slider .animate-delay-1 {
            animation-delay: 0.3s;
            /* text-shadow: 14px 3px 9px #000; */
        }

       .hero-slider .animate-delay-2 {
            animation-delay: 0.6s;
        }

       .hero-slider .animate-delay-3 {
            animation-delay: 0.9s;
        }

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

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-sliderr, .carousel-item {
                height: 70vh;
                min-height: 500px;
            }

            .main-title {
                font-size: 2.5rem;
            }

            .subtitle {
                font-size: 1.2rem;
            }

            .highlight-text {
                font-size: 1.4rem;
            }

            .highlight-box {
                padding: 20px;
            }

            .stats-container {
                gap: 30px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .cta-button {
                padding: 14px 35px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 576px) {
            .main-title {
                font-size: 2rem;
            }

            .subtitle {
                font-size: 1rem;
            }

            .stats-container {
                flex-direction: column;
                gap: 20px;
            }

            .carousel-control-prev,
            .carousel-control-next {
                width: 50px;
                height: 50px;
                margin: 0 15px;
            }
        }

       .hero-slider .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

       .hero-slider .shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        .hero-slider.shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

       .hero-slider .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            bottom: 15%;
            right: 10%;
            animation-delay: -5s;
        }

       .hero-slider .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 40%;
            right: 20%;
            animation-delay: -10s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }
        
        /*****************end***/
        
        /***********************************/
                .hero-section1 {
            background: linear-gradient(135deg, #5d5d8f 0%, #2e58a1 100%);
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }

        .hero-section1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.5;
        }

        .hero-title1 {
            color: white;
            font-size: 41px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            margin-bottom: 27px;
            margin-left: 44px;
        }

        .hero-subtitle1 {
            color: rgba(255,255,255,0.95);
            font-size: 1.3rem;
            line-height: 1.8;
            max-width: 600px;
            margin: 0 auto;
        }

        .building-illustration {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }

        .building-illustration:hover {
            transform: translateY(-10px);
        }

        .building {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }

        .how-it-works {
            padding: 33px 0;
            background: #f8f9fa;
        }

        .section-title {
            color: #4a5f8f;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 60px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: #f39c12;
            border-radius: 2px;
        }

        .step-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #8b9f3e;, #f39c12;);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .step-card:hover::before {
            transform: scaleX(1);
        }

        .step-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            border-color: #8b9f3e;
        }

        .step-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #3c72be, #764ba2);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            margin: 0 auto 25px;
            box-shadow: 0 8px 20px rgba(139, 159, 62, 0.3);
            transition: all 0.3s ease;
        }

        .step-card:hover .step-number {
            transform: rotate(360deg) scale(1.1);
        }

        .step-title {
            color: #454444;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .step-description {
            color: #666;
            font-size: 1rem;
            line-height: 1.6;
        }

        .cta-button {
            box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #776c24 0%, #9b9045 100%);
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 16px;
            font-weight: 500;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            border-radius: 15px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(243, 156, 18, 0.4);
            background: linear-gradient(135deg, #e67e22, #f39c12;);
        }

        .fade-in {
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

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

        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }

        @media (max-width: 768px) {
               .hero-title1 {
        font-size: 30px;
        padding-left: 0px;
        margin-left: 0px;
        margin-bottom: 30px;
    }
    .hero-section1 {
   padding: 16px 0 10px;
    }
    .faq-tab {
    padding: 9px 5px;
   border-radius: 8px;
    font-size: 10px;
   }
            .section-title1 {
                font-size: 2rem;
            }
        }

        /* Pulse animation for CTA */
        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
            }
            50% {
                box-shadow: 0 8px 30px rgba(243, 156, 18, 0.5);
            }
        }

        .cta-button {
            /* animation: pulse 2s infinite; */
        }
        /************************************/
        
        /***********************************/
              .offers-section {
            padding: 14px 0;
        }

        .section-title {
            color: #4a5f8f;
            font-size: 35px;
            font-weight: 700;
            margin-bottom: 19px;
            position: relative;
            display: inline-block;
            letter-spacing: 2px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 5px;
            background: linear-gradient(90deg, #f39c12, #e67e22);
            border-radius: 3px;
        }

        .offer-card {
            background: white;
            border-radius: 25px;
            padding: 18px 10px;
            height: 100%;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 3px solid transparent;
            position: relative;
            overflow: hidden;
            text-align: CENTER;
        }

        .offer-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(139, 159, 62, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .offer-card:hover::before {
            left: 100%;
        }

        .offer-card:hover {
            transform: translateY(-20px) scale(1.03);
            box-shadow: 0 25px 60px rgba(74, 95, 143, 0.25);
            border-color: #8b9f3e;
        }

        .icon-wrapper {
            width: 70px;
            height: 70px;
            margin: 0 auto 30px;
            background: linear-gradient(135deg, #3c72be, #764ba2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(139, 159, 62, 0.3);
            transition: all 0.5s ease;
            position: relative;
        }

        .offer-card:hover .icon-wrapper {
            transform: rotateY(360deg);
            box-shadow: 0 15px 40px rgba(139, 159, 62, 0.5);
        }

        .icon-wrapper::after {
            content: '';
            position: absolute;
            width: 120%;
            height: 120%;
            border: 3px solid #9b9045;
            border-radius: 50%;
            opacity: 0;
            transition: all 0.5s ease;
        }

        .offer-card:hover .icon-wrapper::after {
            opacity: 1;
            animation: pulse-ring 1.5s infinite;
        }

        @keyframes pulse-ring {
            0%, 100% {
                transform: scale(1);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.1);
                opacity: 0;
            }
        }

        .icon-wrapper svg {
            width: 40px;
            height: 40px;
            fill: white;
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
        }

        .offer-title {
            color: #454444;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            /* text-transform: uppercase; */
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }

        .offer-card:hover .offer-title {
            color:#8b9f3e;
        }

        .offer-description {
            color: #666;
            font-size: 1.05rem;
            line-height: 1.7;
            margin: 0;
        }

        .fade-in-up {
            opacity: 0;
            transform: translateY(50px);
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }
            .offer-card {
                margin-bottom: 30px;
            }
        }

        /* Staggered animation delays */
        .offer-card:nth-child(1) { animation-delay: 0.1s; }
        .offer-card:nth-child(2) { animation-delay: 0.2s; }
        .offer-card:nth-child(3) { animation-delay: 0.3s; }
        .offer-card:nth-child(4) { animation-delay: 0.4s; }
        .offer-card:nth-child(5) { animation-delay: 0.5s; }

        /* Floating animation */
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .offer-card.animate {
            animation: float 3s ease-in-out infinite;
        }

        .offer-card:nth-child(2).animate {
            animation-delay: 0.5s;
        }

        .offer-card:nth-child(3).animate {
            animation-delay: 1s;
        }

        .offer-card:nth-child(4).animate {
            animation-delay: 1.5s;
        }

        .offer-card:nth-child(5).animate {
            animation-delay: 2s;
        }
        /*******************************************************************/
        
        /********************************************************************/
        
        
             .main-title {
            color: white;
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 15px;
            /* text-shadow: 2px 2px 4px rgba(0,0,0,0.2); */
            animation: fadeInDown 0.8s ease-out;
        }

        .main-subtitle {
            color: rgb(133 133 133);
            font-size: 20px;
            margin-bottom: 50px;
            animation: fadeInDown 0.8s ease-out 0.2s both;
        }

        .bond-card1 {
            background: white;
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            overflow: hidden;
            animation: fadeInUp 0.8s ease-out both;
        }

        .bond-card1:nth-child(1) {
            animation-delay: 0.2s;
        }

        .bond-card1:nth-child(2) {
            animation-delay: 0.4s;
        }

        .bond-card1:nth-child(3) {
            animation-delay: 0.6s;
        }

        .bond-card1:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0,0,0,0.25);
        }

        .card-header-custom {
            background: linear-gradient(175deg, rgb(44, 140, 252) -75%, rgb(255, 255, 255) 28%);
            padding: 10px 10px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .card-header-custom::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 3s ease-in-out infinite;
        }

        .icon-wrapperr {
            width: 70px;
            height: 70px;
            background: linear-gradient(175deg, rgb(44, 140, 252) -75%, rgb(74 95 143) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
            backdrop-filter: blur(10px);
            animation: bounce 2s ease-in-out infinite;
        }

        .icon-wrapperr i {
            font-size: 2rem;
            color: white;
        }

        .card-title-custom {
            color: #454444;
            font-weight: 700;
            font-size: 1.5rem;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        .card-body-custom {
            padding: 11px 13px;
        }

        .card-description {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .key-points-title {
            color: #004A8F;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .key-points-title i {
            margin-right: 10px;
            color: #FFB347;
        }

        .key-points {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .key-points li {
            padding: 8px 0;
            padding-left: 30px;
            position: relative;
            color: #2C3E50;
            transition: all 0.3s ease;
        }

        .key-points li:hover {
            padding-left: 35px;
            color: #0066CC;
        }

        .key-points li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 10px;
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: bold;
        }

        .badge-custom {
            /* background: linear-gradient(135deg, #FFB347 0%, #FF8C42 100%); */
            color: #7f742b;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            border: 1px solid #7e732b;
            font-weight: 600;
            margin-top: 20px;
            display: inline-block;
            animation: slideInRight 1s ease-out;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.3;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.5);
                opacity: 0;
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @media (max-width: 768px) {
            .main-title {
                font-size: 2rem;
            }
            .main-subtitle {
                font-size: 1rem;
            }
        }
        
        
        
        
        /*****************************************************************************************/
        
        /******************************risk css start here*********************************************************/
               .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 6px 52px;
        }

        .risk-row {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            gap: 12px;
        }

        .risk-label {
            min-width: 150px;
            font-size: 16px;
            font-weight: normal;
            color: #b9b9b9;
            text-align: right;
            padding-right: 0px;
            line-height: 17px;
            padding-bottom: 5px;
        }

        .arrow-container {
            position: relative;
            display: flex;
            align-items: center;
        }

        .arrow-line {
            height: 1px;
            background: #b9b9b9;
            border-radius: 3px;
        }

        .arrow-head {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #b9b9b9;
            /* border-top: 7px solid transparent; */
            /* border-bottom: 7px solid transparent; */
            /* border-left: 20px solid #b9b9b9; */
        }

        .category-box {
            color: white;
            padding: 1px 0px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 14px;
            text-align: center;
            min-height: 54px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            opacity: 0.95;
        }

        .content-box {
            flex: 1;
            background: white;
            padding: 12px 29px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .content-title {
            font-size: 20px;
            font-weight: 700;
            color: #747474;
            margin-bottom: 10px;
        }

        .content-text {
            font-size: 15px;
            color: #6b7280;
            line-height: 1.6;
        }

        /* Box widths - ascending */
        .box-1 { width: 100px; background: linear-gradient(135deg, #ef4444, #dc2626); }
        .box-2 { width: 140px; background: linear-gradient(135deg, #f97316, #ea580c); }
        .box-3 { width: 180px; background: linear-gradient(135deg, #f59e0b, #d97706); }
        .box-4 { width: 220px; background: linear-gradient(135deg, #10b981, #059669); }
        .box-5 { width: 260px; background: linear-gradient(135deg, #3b82f6, #2563eb); }

        /* Arrow line widths */
        .arrow-1 { width: 150px; }
        .arrow-2 { width: 180px; }
        .arrow-3 { width: 200px; }
        .arrow-4 { width: 220px; }
        .arrow-5 { width: 240px; }

        @media (max-width: 1200px) {
            .risk-label {
                min-width: 120px;
                font-size: 24px;
            }

            .arrow-1, .arrow-2, .arrow-3, .arrow-4, .arrow-5 {
                width: 100px;
            }

            .box-1, .box-2, .box-3, .box-4, .box-5 {
                width: 120px;
                font-size: 14px;
                padding: 15px 20px;
            }
        }

        @media (max-width: 992px) {
            .risk-row {
                flex-wrap: wrap;
            }

            .risk-label {
                width: 100%;
                text-align: left;
                padding: 0 0 10px 0;
                font-size: 20px;
            }

            .arrow-container {
                display: none;
            }

            .category-box {
                width: 100% !important;
                margin-bottom: 15px;
            }

            .content-box {
                width: 100%;
            }
        }
        .card1{
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.gradient-text {
    background: linear-gradient(135deg, #4a5f8f, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 30px;
    padding-top: 20px;
}
        
        /****************************************************************************/
        
        /***********************************************************************************/
         .faq-container {
            /* max-width: 1000px; */
            margin: 0 auto;
            background: white;
            border-radius: 24px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.09);
        }

        .faq-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .faq-title {
            font-size: 42px;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            animation: fadeInDown 0.8s ease-out;
        }

        .faq-subtitle {
            font-size: 18px;
            color: #6b7280;
            animation: fadeInUp 0.8s ease-out;
        }

        .faq-tabs {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeIn 1s ease-out;
        }

        .faq-tab {
            padding: 12px 30px;
            border: 2px solid #e5e7eb;
            border-radius: 50px;
            background: white;
            color: #6b7280;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-tab:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .faq-tab.active {
            background: linear-gradient(135deg, #4b6191 0%, #764ba2 100%);
            color: white;
            border-color: transparent;
            transform: scale(1.05);
        }

        .accordion-item {
            border: 2px solid #f3f4f6;
            border-radius: 16px !important;
            margin-bottom: 20px;
            /* overflow: hidden; */
            transition: all 0.3s ease;
            animation: slideInUp 0.5s ease-out backwards;
        }

        .accordion-item:nth-child(1) { animation-delay: 0.1s; }
        .accordion-item:nth-child(2) { animation-delay: 0.2s; }
        .accordion-item:nth-child(3) { animation-delay: 0.3s; }
        .accordion-item:nth-child(4) { animation-delay: 0.4s; }
        .accordion-item:nth-child(5) { animation-delay: 0.5s; }

        .accordion-item:hover {
            border-color: #667eea;
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.15);
        }

        .accordion-button {
            padding: 9px 26px;
            font-size: 18px;
            font-weight: 600;
            color: #1f2937;
            background: white;
            border: none;
            transition: all 0.3s ease;
        }

        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }

        .accordion-button::after {
            background-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
            filter: brightness(0) invert(1);
        }

        .accordion-body {
            padding: 25px 30px;
            font-size: 16px;
            line-height: 1.8;
            color: #4b5563;
            background: #f9fafb;
            animation: fadeInContent 0.4s ease-out;
        }

        .bond-tag {
            display: inline-block;
            padding: 5px 15px;
            background: linear-gradient(135deg, #776c24 0%, #9b9045 100%);
            color: white;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-right: 10px;
            margin-bottom: 10px;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

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

        @keyframes fadeInContent {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .faq-container {
                padding: 0px 0px;
                border-radius: 16px;
            }

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

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

               .accordion-button {
        padding: 4px;
        font-size: 13px;
    }
    .bond-tag {
   
    padding: 5px 8px;
    border-radius: 14px;
    font-size: 10px;
    text-align: center;
    margin-right: 7px;
    margin-bottom: 0px;
}
.bond-benefits {
   padding: 5px 10px;
   margin-top: 0px;
}
            .accordion-body {
                padding: 20px;
                font-size: 15px;
            }
        }

        .highlight {
            color: #667eea;
            font-weight: 800;
        }
        
        /******************************************************/
        
        .knowmorebtn
        {
            color: #416db1;
            padding: 6px 16px;
            /* background: #416db1; */
            box-shadow: none;
            border: 1px solid #416db1;
        }
        .knowmorebtn:hover
        {
            background:#416db1;
        }
        .investbtn
        {
            color: #9b9045;
            background: none;
            text-shadow: none;
            box-shadow: none;
            padding: 6px 16px;
            border: 1px solid #9b9045;
        }
        .investbtn:hover
        {
            background:#9b9045;
        }
        
        /****************************************/
        
        
        .bond-benefits {
            background-color: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.09);
            margin-top: 2rem;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 1.5rem;
        }
        .benefit-item h5
        {
            font-size:1.25rem;
            font-weight: 500;
        }
.pyramid-title {
    color: #2c3e50;
    border-bottom: 3px solid #abaadb;
    padding-bottom: 10px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size:2rem;
}
        .benefit-icon {
            background: linear-gradient(135deg, #3c72be, #764ba2);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        /* Button base style */
.see-more-btn {
  display: inline-block;
  border-radius: 6px;
  cursor: pointer;
  background: linear-gradient(135deg, #776c24 0%, #9b9045 100%);
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #ffffff;
  margin-bottom: 12px;
}

/* Hover animation */
.see-more-btn:hover {
  background-color: #877b2e;
  transform: scale(1.05);
  color:#ffffff;
}

/* Ripple effect on click */
.see-more-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-45deg);
  transition: left 0.5s;
}

.see-more-btn:hover::after {
  left: 200%;
}
/*************************/
   /* Add these styles to your existing CSS */
  

      /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            padding: 80px 0 60px;
            overflow: hidden;
            background: white;
        }

        /* Animated Background Grid */
        .bg-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background-image: 
                linear-gradient(to right, rgba(99, 102, 241, 0.03) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(99, 102, 241, 0.03) 1px, transparent 1px); */
            /* background-size: 60px 60px; */
            z-index: 1;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }

        /* Floating Shapes */
        .shape {
            position: absolute;
            opacity: 0.1;
            z-index: 1;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            /* background: linear-gradient(135deg, #ffffff 0%, #b5b2b9 100%); */
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            top: 10%;
            right: 5%;
            animation: morphing 15s ease-in-out infinite;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            /* background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); */
            border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
            bottom: 20%;
            left: 10%;
            animation: morphing 12s ease-in-out infinite reverse;
        }

        @keyframes morphing {
            0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
            25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
            50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
            75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        /* SEBI Badge - New Style */
        .sebi-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #fff5f5 0%, #fef3f8 100%);
            border: 2px solid #b9b9c5;
            padding: 8px 17px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 3px;
            animation: slideDown 0.8s ease-out;
            position: relative;
            overflow: hidden;
        }

        .sebi-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }

        .sebi-badge i {
            font-size: 18px;
            color: #83782f;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .sebi-badge span {
            background: linear-gradient(135deg, #7e732b 0%, #ec4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Main Title - New Style */
        .main-title {
            font-size: 64px;
            font-weight: 900;
            color: var(--text-dark);
            line-height: 1.15;
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease-out 0.2s both;
            letter-spacing: -0.02em;
        }

        .main-title .highlight {
            position: relative;
            display: inline-block;
            background: linear-gradient(135deg, #776c24 0%, #9b9045 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .main-title .highlight::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #776c24 0%, #9b9045 100%);
            border-radius: 2px;
            animation: expandWidth 1s ease-out 1s both;
        }

        @keyframes expandWidth {
            from { width: 0; }
            to { width: 100%; }
        }

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

        /* Subtitle - Enhanced */
        .subtitle {
            font-size: 19px;
            color: #475569;
            line-height: 1.8;
            margin-bottom: 16px;
            animation: fadeInUp 0.8s ease-out 0.4s both;
            font-weight: 400;
        }

        .subtitle strong {
            color: var(--text-dark);
            font-weight: 600;
        }

        /* Feature Cards - Card Style */
        .feature-cards {
            margin: 31px 0;
            animation: fadeInUp 0.8s ease-out 0.6s both;
            margin-bottom: 7px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border: 2px solid transparent;
            padding: 20px;
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: auto;
            position: relative;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        .feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 18px;
            padding: 2px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-item:hover::before {
            opacity: 1;
        }

        .feature-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
            background: white;
        }

        .icon-left {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            font-size: 24px;
            flex-shrink: 0;
            position: relative;
            transition: all 0.4s ease;
        }

        .feature-item:hover .icon-left {
            transform: rotateY(360deg);
        }

        .c-1 {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        }

        .c-2 {
            background: linear-gradient(135deg, #7f742c 0%, #ff962a 100%);
            color: white;
            box-shadow: 0 8px 20px rgba(240, 147, 251, 0.3);
        }

        .c-3 {
            background: linear-gradient(135deg, #4facfe 0%, #569b9f 100%);
            color: white;
            box-shadow: 0 8px 20px rgba(79, 172, 254, 0.3);
        }

        .c-4 {
            background: linear-gradient(135deg, #43e97b 0%, #7e917d 100%);
            color: white;
            box-shadow: 0 8px 20px rgba(67, 233, 123, 0.3);
        }

        .feature-text h6 {
            color: var(--text-dark);
            font-size: 16px;
            font-weight: 700;
            margin: 0 0 4px 0;
            letter-spacing: -0.01em;
        }

        .feature-text p {
            color: var(--text-light);
            font-size: 13px;
            margin: 0;
            line-height: 1.5;
        }

        /* CTA Buttons - New Design */
        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin: 26px 0 28px;
            animation: fadeInUp 0.8s ease-out 0.8s both;
        }

        .btn-custom {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 14px 48px;
            font-size: 22px;
            font-weight: 500;
            border-radius: 14px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            letter-spacing: -0.01em;
        }

        .btn-custom i {
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .btn-custom:hover i {
            transform: translateX(4px);
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, #776c24 0%, #9b9045 100%);
            color: white;
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
        }

        .btn-primary-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
        }

        .btn-primary-custom:hover::before {
            left: 100%;
        }

        .btn-secondary-custom {
            background: white;
            color: #667eea;
            border: 2px solid #667eea;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .btn-secondary-custom:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
        }

        /* Stats Counter */
        .stats-row {
            display: flex;
            gap: 48px;
            margin: 20px 0 32px;
            animation: fadeInUp 0.8s ease-out 0.9s both;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-size: 36px;
            font-weight: 900;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-light);
            font-weight: 500;
        }

        /* Disclaimer */
        .disclaimer {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-light);
            font-size: 13px;
            animation: fadeInUp 0.8s ease-out 1s both;
            font-style: italic;
        }

        .disclaimer i {
            color: #f59e0b;
            font-size: 14px;
        }

        /* Decorative Elements */
        .decorative-circle {
            position: absolute;
            border-radius: 50%;
          
            animation: rotate 20s linear infinite;
        }

        .circle-1 {
            width: 400px;
            height: 400px;
            top: -100px;
            right: -100px;
        }

        .circle-2 {
            width: 300px;
            height: 300px;
            bottom: -80px;
            left: -80px;
            animation-direction: reverse;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-section {
                min-height: auto;
                padding: 60px 0 40px;
            }

            .main-title {
                font-size: 48px;
            }

            .stats-row {
                gap: 32px;
            }

            .stat-number {
                font-size: 28px;
            }
        }

        @media (max-width: 768px) {
            .main-title {
                font-size: 40px;
            }

            .subtitle {
                font-size: 17px;
            }

            .feature-item {
                padding: 18px;
            }

            .icon-left {
                width: 48px;
                height: 48px;
                font-size: 20px;
            }

            .feature-text h6 {
                font-size: 15px;
            }

            .btn-custom {
                padding: 16px 28px;
                font-size: 15px;
            }

            .stats-row {
                gap: 24px;
            }

            .stat-number {
                font-size: 24px;
            }
        }

        @media (max-width: 576px) {
            .main-title {
                font-size: 34px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn-custom {
                width: 100%;
                justify-content: center;
            }

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

            .feature-cards .row > * {
                margin-bottom: 12px;
            }
        }
        
        
        
        /* Responsive */
        @media (max-width: 991px) {
            .illustration-section {
                margin-top: 4rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.8rem;
            }
               .hero {
        min-height: auto;
        align-items: center;
        padding-top: 16px;
    }
    .main-container
    {
           padding: 6px 10px;
    }
    .content-box {
    padding: 2px 9px;
    }
        .category-box {
        width: 100% !important;
        margin-bottom: 0px;
        min-height: 41px;
        padding: 7px 0px;
        font-size: 17px;
    }
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .stats-card {
                padding: 1.2rem 2rem;
            }
            
            .stats-num {
                font-size: 2.5rem;
            }
            
            .central-circle {
                width: 220px;
                height: 220px;
            }
            
            .central-icon {
                font-size: 3.5rem;
            }
            
            .orbit-icon {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
            
            @keyframes orbit {
                from { transform: rotate(0deg) translateX(120px) rotate(0deg); }
                to { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
            }
            
            .float-card {
                display: none;
            }
                .hero-content h1 {
        font-size: 49px;
        text-align: center;
    }
        .hero-content p {
        text-align: center;
        margin-bottom: 0px;
    }
    .section-title {
        font-size: 25px;
        padding-bottom: 0px;
    }
    .bonds-category-section h2 
    {
        border-bottom:0px solid #ccc !important;
    }
    .risk-row {
  
    border: 1px solid #e3dfdf;
    padding: 10px;
    border-radius: 8px;
    }
        }