 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-gold: #ee813a;
            --primary-dark: #0a0e27;
            --secondary-dark: #1a1f3a;
            --accent-blue: #2c3e72;
            --text-light: #ffffff;
            --text-gray: #a8b2d1;
            --border-gold: rgba(212, 175, 55, 0.3);
        }

        body {
            font-family: 'Montserrat', sans-serif;
            /* background: #fff;
            color: var(--text-light); */
            overflow-x: hidden;
        }

        /* Top Info Bar */
        .top-bar {
            background: #e22739;
            border-bottom: 1px solid var(--border-gold);
            padding: 12px 0;
            position: relative;
            overflow: hidden;
        }

        .top-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                var(--primary-gold) 50%, 
                transparent 100%);
            opacity: 0.5;
        }

        .top-bar-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .top-bar-info {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--text-gray);
            font-weight: 400;
            letter-spacing: 0.3px;
        }

        .info-item i {
            color: var(--primary-gold);
            font-size: 14px;
        }

        .info-item strong {
            color: var(--text-light);
            font-weight: 600;
        }

        .top-bar-actions {
            display: flex;
            gap: 15px;
        }

        .top-btn {
            padding: 8px 24px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            border: 1px solid transparent;
        }

        .btn-login {
            background: #fff;
            color: #000;
            border-color: var(--border-gold);
        }

        .btn-login:hover {
            background: var(--primary-gold);
            color: var(--primary-dark);
            border-color: var(--primary-gold);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        .btn-signup {
            background: #fff;
            color: #000;
            border-color: var(--primary-gold);
            box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
        }

        .btn-signup:hover {
            background: linear-gradient(135deg, #f4d03f 0%, var(--primary-gold) 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
        }

        /* Main Navigation */
        .navbar {
            background: #000;
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid #e22739;
        }

        .navbar-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            padding: 20px 0;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background:#e22739;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 24px;
            color: #fff;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-text .main {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--text-light);
            letter-spacing: 1px;
        }

        .logo-text .sub {
            font-size: 11px;
            color: var(--text-gray);
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 5px;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text-gray);
            padding: 32px 20px;
            display: block;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: #e22739;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--text-light);
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 80%;
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

        .mobile-toggle span {
            width: 25px;
            height: 2px;
            background: var(--primary-gold);
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            /* background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%); */
    background: url(images/bank.jpg);

    background-position: center;
    background-size: cover;

            padding: 100px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 20px;
            background: #fff;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease;
        }

        .hero p {
            font-size: 18px;
            color: #fff;
            margin-bottom: 40px;
            line-height: 1.6;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .hero-cta {
            display: inline-block;
            padding: 18px 50px;
            background:#e22739;
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
            transition: all 0.4s ease;
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
        }

        /* Investment Plans Section */
        .plans-section {
            padding: 100px 40px;
            background: #fff;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            font-size: 13px;
            color: #000;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            font-weight: 800;
            color: #e22739;
            margin-bottom: 20px;
        }

        .plans-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .plan-card {
            background: #e22739;
            border: 1px solid var(--border-gold);
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .plan-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-gold) 0%, #f4d03f 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
            border-color: var(--primary-gold);
        }

        .plan-card:hover::before {
            transform: scaleX(1);
        }

        .plan-roi {
            font-size: 48px;
            font-weight: 800;
            color: var(--primary-gold);
            margin-bottom: 10px;
        }

        .plan-duration {
            font-size: 14px;
            color: var(--text-gray);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .plan-badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid var(--border-gold);
            border-radius: 20px;
            font-size: 11px;
            color: var(--primary-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .plan-amount {
            margin-bottom: 30px;
        }

        .plan-amount div {
            font-size: 13px;
            color: var(--text-gray);
            margin-bottom: 8px;
        }

        .plan-amount span {
            color: var(--text-light);
            font-weight: 600;
        }

        .plan-btn {
            display: block;
            width: 100%;
            padding: 14px;
            background: transparent;
            border: 2px solid var(--primary-gold);
            color: var(--primary-gold);
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: 13px;
        }

        .plan-btn:hover {
            background: var(--primary-gold);
            color: var(--primary-dark);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
         /*about us section*/
  .aboutSec{
    margin: 40px 0;
  }
  .row1{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .rowAbout{
    width: 92%;
    margin: auto;
  }
  .col1{
    flex-basis: 45%;
  }
   
  .col1 img{
    width: 85%;
  }
  .col2 h2{
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 600;
  }
  .col2 h6{
    line-height: 25px;
    margin-bottom: 25px;
  }
  .col2 p{
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 20px;
  }
  .col2 a,.rowJoin a{
    background: #204cc5;

    padding: 15px 40px;
    color: #fff;
    transition: ease-in 0.3s;
    text-transform: uppercase;
    border-radius: 8px;
    font-weight: 500;
}
.col2 a:hover,.rowJoin a:hover{
    background: #eaf3fa;
    color:#204cc5;
    text-decoration: none;
    border: 1px solid #204cc5;

}
.col2{
    flex-basis: 55%;
  }
  .col2Row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;

  }
  .col2Col h3{
    font-size: 30px;
    font-weight: 600;

  }
  .col2Col p{
    font-size: 18px;
  }
/*withdrawal*/
/*latest-withdrawal*/
   .latest-withdrawal{
            /* background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%); */
    background: url(images/bg22.jpg);
    
    background-position: center;
    background-size: cover;

            padding: 100px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

.cont7{
   
    margin-bottom: 20px;
    padding: 30px 0;
}
.rowTxt3{
    width: 85%;
    margin: auto;
    text-align: center;
    color: white;
    margin-bottom: 30px;

}

.cont7 table{
    border-collapse: collapse;
    color: white;
    
    width: 100%;

}
.cont7 table tr{
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    margin: 8px 0;
}
.cont7 table td{
    padding: 10px 5px;
}
.cont7 table tr:last-child{
    border-bottom: none;

}

.success{
    background: green;
    padding: 5px ;
    border-radius: 5px;
}
.warning{
    background: red;
    padding: 5px ;
    border-radius: 5px;
}
.certSection{
    background: url(images/bg1.jpg);
    
    background-position: center;
    background-size: cover;

    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
        }

.rowCert{
    width: 92%;
    margin:auto;
}
.rowCert img{
    width: 50%;
}
  /* FAQ Section */
        .faq-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .faq-header h2 {
            font-size: 2.5rem;
            color: #e22739;
            margin-bottom: 15px;
        }

        .faq-header p {
            font-size: 1.1rem;
            color: #666;
        }

        .faq-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            border: none;
            width: 100%;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: #e22739;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: #f8f9fa;
        }

        .faq-icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
            color: #e22739;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 25px;
            background: #fafafa;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 20px 25px;
        }

        .faq-answer p {
            color: #555;
            line-height: 1.8;
        }

         /* Footer Section */
        .footer {
            background: #010847;
            color: white;
            padding: 60px 20px 20px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #fff;
        }

        .footer-section p {
            margin-bottom: 15px;
            line-height: 1.8;
            color: #e3f2fd;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #e3f2fd;
            text-decoration: none;
            transition: color 0.3s ease, padding-left 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: #81d4fa;
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #81d4fa;
            transform: translateY(-3px);
        }

        .contact-info {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .contact-info svg {
            margin-right: 10px;
            flex-shrink: 0;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            text-align: center;
            color: #e3f2fd;
        }

        .footer-bottom p {
            margin-bottom: 10px;
        }

        .disclaimer {
            font-size: 0.85rem;
            color: #fff;
            margin-top: 20px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        /* Terms and Conditions Section */
        .terms-section {
            padding: 80px 20px;
            background: #ffffff;
        }

        .terms-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .terms-header h2 {
            font-size: 2.5rem;
            color: #e22739;
            margin-bottom: 10px;
        }

        .last-updated {
            color: #666;
            font-size: 0.95rem;
            font-style: italic;
        }

        .terms-content {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }

        .terms-intro {
            background: #f8f9fa;
            padding: 20px;
            border-left: 4px solid #e22739;
            margin-bottom: 30px;
            border-radius: 5px;
        }

        .terms-intro p {
            color: #555;
            line-height: 1.8;
            margin: 0;
        }

        .terms-item {
            margin-bottom: 35px;
            padding-bottom: 25px;
            border-bottom: 1px solid #e0e0e0;
        }

        .terms-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .terms-item h3 {
            color: #e22739;
            font-size: 1.4rem;
            margin-bottom: 15px;
        }

        .terms-item p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .terms-item ul {
            margin-left: 25px;
            margin-bottom: 15px;
        }

        .terms-item ul li {
            color: #555;
            line-height: 1.8;
            margin-bottom: 8px;
        }

        .terms-item strong {
            color: #d32f2f;
            font-weight: 600;
        }

        .contact-list {
            list-style: none;
            margin-left: 0 !important;
        }

        .contact-list li {
            margin-bottom: 10px;
        }

        .contact-list strong {
            color: #e22739;
        }

        .terms-acceptance {
            background: #fff3cd;
            border: 2px solid #ffc107;
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
            text-align: center;
        }

        .terms-acceptance p {
            color: #856404;
            margin: 0;
            font-weight: 600;
        }

             /* Contact Section */
        .contact-section {
            padding: 80px 20px;
              background: url(images/bg22.jpg);
    
    background-position: center;
    background-size: cover;

            padding: 100px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
       
        }

        .contact-header {
            text-align: center;
            margin-bottom: 60px;
            color: white;
        }

        .contact-header h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .contact-header p {
            font-size: 1.1rem;
            color: #e3f2fd;
        }

        .contact-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 40px;
            align-items: start;
        }

        .contact-info-box {
            background: rgba(255, 255, 255, 0.95);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .contact-info-box h3 {
            color: #e22739;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .contact-subtitle {
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .info-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e0e0e0;
        }

        .info-item:last-of-type {
            border-bottom: none;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: #e22739;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }

        .info-item h4 {
            color: #e22739;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }

        .info-item p {
            color: #555;
            margin-bottom: 5px;
            line-height: 1.6;
        }

        .info-note {
            font-size: 0.9rem;
            color: #999 !important;
            font-style: italic;
        }

        .contact-social {
            margin-top: 30px;
        }

        .contact-social h4 {
            color: #e22739;
            margin-bottom: 15px;
        }

        .contact-form-box {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            color: #333;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
            background: white;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: #e22739;
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 968px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--secondary-dark);
                flex-direction: column;
                gap: 0;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu a {
                padding: 20px 40px;
            }

            .mobile-toggle {
                display: flex;
            }

            .hero h1 {
                font-size: 38px;
            }

            .top-bar-content {
                padding: 0 20px;
            }

            .navbar-content {
                padding: 0 20px;
            }

            .plans-grid {
                grid-template-columns: 1fr;
            }

            .top-bar-info {
                gap: 20px;
            }
        }

        @media (max-width: 640px) {
            .info-item {
                font-size: 12px;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero p {
                font-size: 16px;
            }

            .section-title {
                font-size: 32px;
            }
              .col2Col h3{
                font-size: 20px;
                font-weight: 600;
                

            }
            .col2Col p{
                font-size: 12px;
            line-height: 15px;
            
            }
            .col1,.col2{
                flex-basis: 100%;
            }
                        .faq-header h2 {
                font-size: 2rem;
            }
              .footer {
                padding: 40px 15px 20px;
            }
               .terms-header h2 {
                font-size: 2rem;
            }

            .terms-content {
                padding: 25px 20px;
            }

            .terms-item h3 {
                font-size: 1.2rem;
            }
               .contact-header h2 {
                font-size: 2rem;
            }

            .contact-wrapper {
                grid-template-columns: 1fr;
            }

            .contact-info-box,
            .contact-form-box {
                padding: 25px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }