
   /* ================= INTERNATIONAL SOFTWARE CATEGORY UI ================= */
/* ================= SaaS LEVEL SOFTWARE CATEGORY UI ================= */

.software-category-section {
    padding: 110px 0;
    background:
        radial-gradient(circle at top, #f1f5ff 0%, #ffffff 55%);
}

/* ===== TITLE ===== */

.audio-solution-title h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    color: #0f172a;
    margin-bottom: 80px;
    letter-spacing: -0.5px;
    position: relative;
}

.audio-solution-title h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
    display: block;
    margin: 18px auto 0;
    border-radius: 10px;
}

/* ===== CARD ===== */

.audio-solution-blk {
    position: relative;
    height: 100%;
    padding: 48px 34px;
    border-radius: 32px;

    background:
        linear-gradient(180deg, #ffffff, #f8fafc);

    box-shadow:
        0 40px 80px rgba(15,23,42,0.18),
        inset 0 0 0 1px rgba(255,255,255,0.8);

    transition: all 0.45s ease;
    overflow: hidden;
}

/* glass depth layer */
.audio-solution-blk::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top left, rgba(37,99,235,0.18), transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* gradient border */
.gradient-border::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 32px;
    background: linear-gradient(
        120deg,
        #2563eb,
        #06b6d4,
        #60a5fa,
        #2563eb
    );
    background-size: 400% 400%;
    animation: borderFlow 9s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

/* hover card */
.audio-solution-blk:hover {
    transform: translateY(-18px) scale(1.02);
    box-shadow:
        0 70px 140px rgba(15,23,42,0.32);
}

.audio-solution-blk:hover::after {
    opacity: 1;
}

/* ===== LIST ===== */

.audio-solution-blk ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audio-solution-blk ul li {
    margin-bottom: 18px;
}

.audio-solution-blk ul li:last-child {
    margin-bottom: 0;
}

/* ROW ITEM */
.audio-solution-blk ul li a {
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 14px 18px;
    border-radius: 14px;

    font-size: 16px;
    font-weight: 500;
    color: #1e293b;
    text-decoration: none;

    transition: all 0.3s ease;
    position: relative;
}

/* icon bubble */
.audio-solution-blk ul li a::before {
    content: "➜";
    min-width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(37,99,235,0.12);
    color: #2563eb;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    transition: all 0.35s ease;
}

/* hover row */
.audio-solution-blk ul li a:hover {
    background: linear-gradient(90deg, rgba(37,99,235,0.12), transparent);
    color: #2563eb;
    padding-left: 24px;
}

/* hover icon */
.audio-solution-blk ul li a:hover::before {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #ffffff;
    transform: scale(1.15);
}

/* ===== ANIMATION ===== */

@keyframes borderFlow {
    0%   { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 991px) {
    .audio-solution-title h2 {
        font-size: 30px;
        margin-bottom: 50px;
    }

    .audio-solution-blk {
        margin-bottom: 36px;
        padding: 36px 26px;
    }

    .audio-solution-blk ul li a {
        font-size: 15px;
        padding: 12px 16px;
    }
}

.software-grid {
  max-width: 320px !important;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr) !important;
  gap: 14px 60px;
}

.email-details{
  display: flex;  
}
    .email-idd{
       margin: 0 37px 5px ;
    }
       .team-card {
        margin-top: 20px;
      background: #fff;
      padding: 20px;
      border-radius: 18px;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .team-card:hover {
      transform: translateY(-10px) scale(1.05);
      box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    }

    .team-card img {
      width: 110px;
      height: 60px;
      object-fit: contain;
      /* margin-bottom: 15px; */
    }

    .team-card h3 {
      font-size: 15px;
      color: #222;
    }

    .team-card p {
      font-size: 14px;
      color: #777;
    }

    .social-icons {
      margin-top: 15px;
    }

    .social-icons i {
      font-size: 18px;
      margin: 0 8px;
      padding: 8px;
      background: #eee;
      border-radius: 50%;
      cursor: pointer;
      transition: 0.3s;
    }

    .social-icons i:hover {
      background: #111;
      color: #fff;
    }
.software-section {
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
  background: #fff;
}

.software-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.software-grid-1 {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 60px;
}

.software-item {
  border-bottom: 1px solid #eee;
  padding: 12px 0;
  cursor: pointer;
}

.software-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
}

.software-head i {
  color: #0a3cff;
  transition: transform .3s;
}

.software-sub {
  list-style: none;
  padding-left: 14px;
  margin-top: 8px;
  display: none;
}

.software-sub li {
  font-size: 14px;
  color: #555;
  padding: 4px 0;
}

.software-item.active .software-sub {
  display: block;
}

.software-item.active .software-head i {
  transform: rotate(90deg);
}

/* Show More logic */
.software-item.extra {
  display: none;
}

.software-grid.show-all .software-item.extra {
  display: block;
}

.toggle-btn {
  display: block;
  margin: 40px auto 0;
  background: #0a2d80;
  color: #fff;
  border: none;
  padding: 12px 26px;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
}
.software-item{
  position: relative;
  margin-bottom: 16px;
}

/* TOP ROW */
.software-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 16px;
  border:1px solid #444646;
  border-radius:10px;
  font-size:16px;
  cursor:pointer;
  background:#fff;
}

.software-head i{
  color:#53545b;
  transition:0.3s;
}

/* DROPDOWN BOX */
.software-sub{
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  background:#fff;
  border:1px solid #ddd;
  margin-top:6px;
  z-index:99;
  display:none;
}

/* SHOW */
.software-item.active .software-sub{
  display:block;
}

/* ARROW ROTATE */
.software-item.active .software-head i{
  transform:rotate(180deg);
}

/* LIST ITEMS */
.software-sub li{
  padding:12px 16px;
  border-bottom:1px solid #eee;
  font-size:15px;
  color:#5a5b61;
  cursor:pointer;
}

.software-sub li:last-child{
  border-bottom:none;
}

/* FIRST TITLE (BOLD) */
.software-sub-title{
  font-weight:600;
  color:#1e40ff;
  background:#fff;
}
/* =====================================================
   FEATURED ICON – FINAL PREMIUM VERSION
   ===================================================== */

.zero-padding-section {
    background: #f8fafc;
}

/* Section wrapper */
.featured-icon-box-style1-row {
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* ================= CARD ================= */

.featured-icon-box.style1 {
    height: 100%;
    padding: 38px 32px;
    position: relative;
    overflow: hidden;
    border-right: 1px solid #eef1f6;
    transition: all 0.45s ease;
    background: #ffffff;

    box-shadow:
        0 8px 24px rgba(0,0,0,0.06),
        inset 0 0 0 1px rgba(37,99,235,0.04);
}

/* Remove last border */
.featured-icon-box.style1:last-child {
    border-right: none;
}

/* ================= FRONT ACCENT BAR ================= */

.featured-icon-box.style1::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
    transition: width 0.4s ease;
}

.featured-icon-box.style1:hover::before {
    width: 100%;
}

/* ================= HOVER ================= */

.featured-icon-box.style1:hover {
    transform: translateY(-6px);
    background: #f9fbff;
}

/* ================= ICON ================= */

.featured-icon .ttm-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1f2937, #111827);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.45s ease;
}

/* Icon glow ring (always visible) */
.featured-icon .ttm-icon::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 20px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    opacity: 0.22;
    z-index: -1;
    animation: iconPulse 2.8s ease-in-out infinite;
}

@keyframes iconPulse {
    0% { opacity: 0.22; }
    50% { opacity: 0.4; }
    100% { opacity: 0.22; }
}

/* Icon hover */
.featured-icon-box.style1:hover .ttm-icon {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    transform: scale(1.08);
}

/* ================= TITLE ================= */

.featured-title h5 {
    font-size: 19px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 8px;
}

/* Title underline */
.featured-title h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
}

/* ================= DESCRIPTION ================= */

.featured-desc p {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.65;
}

/* Contact badges */
.featured-desc a {
    display: inline-block;
    font-size: 14px;
    color: #2563eb;
    background: #eef4ff;
    padding: 6px 12px;
    border-radius: 8px;
    margin-top: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.featured-desc a:hover {
    background: #2563eb;
    color: #ffffff;
}

/* ================= PRIMARY CARD (24/7 SUPPORT) ================= */

.featured-icon-box-style1-row .col-lg-3:nth-child(2) .featured-icon-box {
    background: linear-gradient(180deg, #f0f6ff, #ffffff);
    /* border-bottom: 4px solid #2563eb; */
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .featured-icon-box.style1 {
        border-right: none;
        border-bottom: 1px solid #eef1f6;
    }
}
/* ================= SOFTWARE ECOSYSTEM FINAL ================= */
.process-section {
    background: #f9fafb;
    padding: 80px 0;
}

/* ---------- SECTION HEADER ---------- */

.process-section .title-header h5 {
    color: #2563eb;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.process-section .title {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
}

.process-section .title span {
    color: #2563eb;
}

/* ---------- MAIN WRAPPER ---------- */

.accordion-contantt {
    background: #ffffff !important;
    border-radius: 22px;
    padding: 34px !important;
    box-shadow: 0 30px 70px rgba(0,0,0,0.06);
}

/* ---------- LEFT CATEGORY PANEL ---------- */
.product-blk {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fafc, #eef2ff);
}

.product-blk h1 {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
}

.our-client-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc, #eef2ff);
}

/* Section Heading */
.slider-brand h2 {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 40px;
    position: relative;
}

.slider-brand h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* ================= LOGO CARD ================= */
/* ================= WRAPPER ================= */

.client-box {
    padding: 15px;
    display: flex;
    justify-content: center;
}

/* ================= CLIENT CARD (LOCKED SIZE) ================= */

.client {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;

    width: 170px;                 /* 🔒 FIX WIDTH */
    height: 120px;                /* 🔒 FIX HEIGHT */
    aspect-ratio: 17 / 12;        /* 🔒 FORCE SAME SHAPE */

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 14px 32px rgba(0,0,0,0.12),
        0 6px 14px rgba(0,0,0,0.06);

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* hover – same width, only lift */
.client:hover {
    transform: translateY(-6px);
    box-shadow:
        0 22px 48px rgba(37,99,235,0.25),
        0 8px 18px rgba(0,0,0,0.1);
}

/* ================= LOGO IMAGE NORMALIZATION ================= */

.ttm-client-logo-tooltip {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ttm-client-logo-tooltip img {
    max-width: 120px;      /* ALL LOGOS SAME WIDTH */
    max-height: 52px;      /* ALL LOGOS SAME HEIGHT */

    width: auto;
    height: auto;
    object-fit: contain;

    filter: grayscale(100%);
    opacity: 0.85;
    transition: all 0.35s ease;
}

.client:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* ================= OWL SLIDER HARD FIX ================= */

.clients-slide .owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.clients-slide .owl-stage {
    display: flex;
    align-items: center;
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {

    .client {
        width: 145px;
        height: 100px;
    }

    .ttm-client-logo-tooltip img {
        max-width: 100px;
        max-height: 44px;
    }
}

.soft-container{
  
  margin:auto;
  padding:20px;
}

/* =============== SEO TEXT =============== */
.soft-seo-wrap{
  background:#fff;
  font-size:14px;
  line-height:1.7;
  color:#555;
}

/* =============== TITLE =============== */
.soft-title{
  text-align:center;
  font-size:30px;
  margin:40px 0 30px;
  color:#1f2937;
  
}

/* =============== GRID =============== */
.soft-grid{
  display:grid;
    grid-template-columns: repeat(4, 1fr);

  gap:25px;
}

/* =============== CARD =============== */
.soft-card{
  background:#fff;
  border-radius:16px;
  padding:20px;
  text-align:center;
  position:relative;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
  transition:.35s ease;
}

.soft-card:hover{
  transform:translateY(-6px);
  box-shadow:0 25px 60px rgba(37,99,235,0.25);
}

/* IMAGE */
.soft-card img{
  width:100%;
  height:150px;
  object-fit:contain;
  margin-bottom:15px;
}

/* TEXT */
.soft-card h3{
  font-size:18px;
  margin-bottom:8px;
}
.soft-card p{
  font-size:14px;
  color:#666;
  min-height:42px;
}

/* BUTTON */
.soft-btn{
  display:inline-block;
  margin-top:14px;
  padding:9px 22px;
  border-radius:8px;
  border:1px solid #2563eb;
  color:#2563eb;
  font-size:14px;
  transition:.3s;
}
.soft-btn:hover{
  background:#2563eb;
  color:#fff;
}

/* BADGE */
.soft-badge{
  position:absolute;
  top:14px;
  left:14px;
  background:#22c55e;
  color:#fff;
  font-size:11px;
  padding:4px 9px;
  border-radius:6px;
}
.zigzag-wrapper{
  
  margin:auto;
  padding:60px 20px;
}

.zigzag-row{
  display:flex;
  align-items:center;
  gap:50px;
  margin-bottom:80px;
}

.zigzag-row.reverse{
  flex-direction:row-reverse;
}

.zigzag-content{
  flex:1;
}

.zigzag-content h2{
  font-size:32px;
  margin-bottom:16px;
  color:#1f2937;
}

.zigzag-content p{
  font-size:16px;
  line-height:1.8;
  color:#555;
  margin-bottom:14px;
}

.zigzag-image{
  flex:1;
}

.zigzag-image img{
  width:100%;
  border-radius:18px;
  box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media(max-width:900px){
  .zigzag-row,
  .zigzag-row.reverse{
    flex-direction:column;
  }

  .zigzag-content h2{
    font-size:26px;
  }
}
/* ================= SECTION HEIGHT CONTROL ================= */
.ttm-row.zero-padding-section {
    padding: 0 !important;
    margin: 0 !important;
}

/* ================= CONTAINER GAP REMOVE ================= */
.zero-padding-section .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ================= ROW RESET ================= */
.featured-icon-box-style1-row {
    margin: 0 !important;
}

/* ================= COLUMN COMPACT ================= */
.featured-icon-box-style1-row .col-lg-3 {
    padding: 15px !important;
}

/* ================= CARD COMPACT ================= */
.featured-icon-box.left-icon.style1 {
    padding: 18px 20px !important;
    min-height: auto !important;
    display: flex;
    align-items: center;
}

/* ================= ICON SIZE PERFECT ================= */
.featured-icon .ttm-icon {
    width: 54px;
    height: 54px;
    line-height: 54px;
    border-radius: 12px;
}

/* ================= ICON + CONTENT GAP ================= */
.featured-icon {
    margin-right: 14px;
}

/* ================= CONTENT GAP REMOVE ================= */
.featured-content {
    padding: 0 !important;
}

/* ================= HEADING GAP FIX ================= */
.featured-title h5 {
    margin-bottom: 6px;
    font-size: 16px;
}

/* ================= BLUE LINE GAP FIX ================= */
.featured-title h5::after {
    margin-top: 6px;
}

/* ================= TEXT COMPACT ================= */
.featured-desc p,
.featured-desc a {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
}

/* ================= REMOVE EXTRA LINE BREAK SPACE ================= */
.featured-desc br {
    display: none;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 767px) {
    .featured-icon-box.left-icon.style1 {
        padding: 15px !important;
    }
}

.about{
  padding:70px 20px;
}

.about-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:50px;
  align-items:center;
}

/* text side */
.about-content h2{
  font-size:32px;
  color:#0a3d62;
  margin-bottom:20px;
}

.about-content p{
  font-size:16px;
  line-height:1.7;
  margin-bottom:15px;
  color:#444;
}

/* image side */
.about-image{
  width:100%;
}

.about-image img{
  width:100%;
  height:auto;
  border-radius:12px;
  box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .about-container{
    grid-template-columns:1fr;
  }
  .about-content{
    order:2;
  }
  .about-image{
    order:1;
  }
  .hero h1{
    font-size:34px;
  }
}

@media(max-width:480px){
  .hero{
    padding:60px 15px;
  }
  .about{
    padding:50px 15px;
  }
  .about-content h2{
    font-size:26px;
  }
}



.whyPlus{
  padding:90px 20px;
  background:#f4f7fb;
}

.whyContainer{
  max-width:1200px;
  margin:auto;
}

/* header */
.whyHeader{
  text-align:center;
  margin-bottom:60px;
}

.whyTag{
  display:inline-block;
  font-size:13px;
  letter-spacing:1px;
  font-weight:600;
  color:#1e6fa8;
  margin-bottom:10px;
}

.whyHeader h2{
  font-size:36px;
  color:#0a3d62;
  margin-bottom:12px;
}

.whyHeader p{
  max-width:720px;
  margin:auto;
  color:#555;
  font-size:16px;
  line-height:1.6;
}

/* cards */
.whyCards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.whyBox{
  background:#fff;
  padding:35px 28px;
  border-radius:16px;
  position:relative;
  box-shadow:0 20px 40px rgba(0,0,0,.08);
  transition:.35s;
}

.whyBox:hover{
  transform:translateY(-8px);
  box-shadow:0 30px 55px rgba(0,0,0,.15);
}

.whyNum{
  position:absolute;
  top:-18px;
  right:20px;
  font-size:40px;
  font-weight:700;
  color:#177add;
}

.whyBox h3{
  font-size:20px;
  color:#0a3d62;
  margin-bottom:12px;
}

.whyBox p{
  font-size:15px;
  color:#555;
  line-height:1.6;
}

/* responsive */
@media(max-width:600px){
  .whyHeader h2{
    font-size:28px;
  }
}




.industrySec{
  padding:90px 20px;
  background:#f4f7fb;
}

.industryWrap{
  max-width:1200px;
  margin:auto;
}

/* header */
.industryHead{
  text-align:center;
  margin-bottom:60px;
}

.industryTag{
  display:inline-block;
  font-size:13px;
  font-weight:600;
  letter-spacing:1px;
  color:#1e6fa8;
  margin-bottom:10px;
}

.industryHead h2{
  font-size:36px;
  color:#0a3d62;
  margin-bottom:12px;
}

.industryHead p{
  max-width:760px;
  margin:auto;
  font-size:16px;
  color:#555;
  line-height:1.6;
}

/* grid */
.industryGrid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

/* card */
.industryCard{
  background:#ffffff;
  padding:35px 28px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 20px 40px rgba(0,0,0,.08);
  transition:.35s;
}

.industryCard:hover{
  transform:translateY(-10px);
  box-shadow:0 32px 60px rgba(0,0,0,.15);
}

/* image */
.industryCard img{
  width: 100%;
  margin-bottom:20px;
  object-fit:contain;
  border-radius: 10px;
}

/* text */
.industryCard h3{
  font-size:20px;
  color:#0a3d62;
  margin-bottom:12px;
}

.industryCard p{
  font-size:15px;
  color:#555;
  line-height:1.6;
}

/* responsive */
@media(max-width:600px){
  .industryHead h2{
    font-size:28px;
  }
}



.trustSec{
  padding:90px 20px;
  background:#ffffff;
}

.trustWrap{
  max-width:1200px;
  margin:auto;
}

/* header */
.trustHead{
  text-align:center;
  margin-bottom:60px;
}

.trustTag{
  display:inline-block;
  font-size:13px;
  font-weight:600;
  letter-spacing:1px;
  color:#1e6fa8;
  margin-bottom:10px;
}

.trustHead h2{
  font-size:36px;
  color:#0a3d62;
  margin-bottom:12px;
}

.trustHead p{
  max-width:760px;
  margin:auto;
  font-size:16px;
  color:#555;
  line-height:1.6;
}

/* grid */
.trustGrid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

/* card */
.trustCard{
  background:#f7f9fc;
  padding:40px 28px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 18px 35px rgba(0,0,0,.08);
  transition:.35s;
}

.trustCard:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 55px rgba(0,0,0,.15);
}

/* image */
.trustCard img{
  
  margin-bottom:20px;
  object-fit:contain;
}

/* text */
.trustCard h3{
  font-size:20px;
  color:#0a3d62;
  margin-bottom:12px;
}

.trustCard p{
  font-size:15px;
  color:#555;
  line-height:1.6;
}

/* responsive */
@media(max-width:600px){
  .trustHead h2{
    font-size:28px;
  }
}


.processSec{
  padding:90px 20px;
  background:#f4f7fb;
}

.processWrap{
  max-width:1200px;
  margin:auto;
}

/* header */
.processHead{
  text-align:center;
  margin-bottom:60px;
}

.processTag{
  display:inline-block;
  font-size:13px;
  font-weight:600;
  letter-spacing:1px;
  color:#1e6fa8;
  margin-bottom:10px;
}

.processHead h2{
  font-size:36px;
  color:#0a3d62;
  margin-bottom:12px;
}

.processHead p{
  max-width:760px;
  margin:auto;
  font-size:16px;
  color:#555;
  line-height:1.6;
}

/* grid */
.processGrid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

/* card */
.processCard{
  background:#ffffff;
  padding:45px 28px;
  border-radius:18px;
  text-align:center;
  position:relative;
  box-shadow:0 20px 40px rgba(0,0,0,.08);
  transition:.35s;
}

.processCard:hover{
  transform:translateY(-10px);
  box-shadow:0 32px 60px rgba(0,0,0,.15);
}

/* step number */
.processStep{
  position:absolute;
  top:-18px;
  left:20px;
  font-size:38px;
  font-weight:700;
  color:#0e75db;
}

/* image */
.processCard img{
 width: 100%;
 border-radius: 10px;
  margin-bottom:20px;
  object-fit:contain;
}

/* text */
.processCard h3{
  font-size:20px;
  color:#0a3d62;
  margin-bottom:12px;
}

.processCard p{
  font-size:15px;
  color:#555;
  line-height:1.6;
}

/* responsive */
@media(max-width:600px){
  .processHead h2{
    font-size:28px;
  }
}

.ctaPro{
  padding:80px 20px;
  background:#0a3d62;
}

.ctaBox{
  max-width:1200px;
  margin:auto;
  background:#ffffff;
  border-radius:20px;
  padding:60px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:40px;
  align-items:center;
  box-shadow:0 40px 80px rgba(0,0,0,.18);
}

.ctaTag{
  font-size:13px;
  font-weight:600;
  letter-spacing:1px;
  color:#1e6fa8;
}

.ctaLeft h2{
  font-size:34px;
  margin:12px 0;
  color:#0a3d62;
}

.ctaLeft p{
  font-size:16px;
  line-height:1.7;
  color:#555;
}

.ctaRight{
  display:flex;
  gap:18px;
  justify-content:flex-end;
  flex-wrap:wrap;
}

.ctaBtn{
  padding:14px 30px;
  border-radius:30px;
  font-size:15px;
  text-decoration:none;
  transition:.3s;
}

.ctaBtn.solid{
  background:#1e6fa8;
  color:#fff;
}

.ctaBtn.solid:hover{
  background:#155a8a;
}

.ctaBtn.ghost{
  border:2px solid #1e6fa8;
  color:#1e6fa8;
}

.ctaBtn.ghost:hover{
  background:#1e6fa8;
  color:#fff;
}

@media(max-width:900px){
  .ctaBox{
    grid-template-columns:1fr;
    text-align:center;
  }
  .ctaRight{
    justify-content:center;
  }
}




/* ===============================
   BASIC MENU (demo only)
   =============================== */
.main-menu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
}

.main-menu .menu-item{
  position: relative;
}

.main-menu .menu-item > a{
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #0c3387;
  padding: 12px 0;
  display: inline-block;
}

/* ===============================
   ABOUT DROPDOWN (FINAL & SAFE)
   =============================== */

.about-dd-custom{
  position: relative;
}


.about-dd-custom .about-dd-list{
  position: absolute;
  top: 100%;
  left: 0;                    
  width: 230px;
  background: #ffffff;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
  display: none;
  z-index: 9999;
}


.about-dd-custom:hover .about-dd-list{
  display: block;
}


.about-dd-custom .about-dd-list li{
  margin: 0;
  padding: 0;
  width: 100%;
}

.about-dd-custom .about-dd-list li a{
  text-align: right;   
}


.about-dd-custom .about-dd-list li a{
  display: block;
  width: 100%;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #0c3387;
  text-decoration: none;
  line-height: 1.3;
  white-space: nowrap;
  transition: background 0.2s ease;
  text-align: justify;
}


.about-dd-custom .about-dd-list li a:hover{
  background: #4871f8;
}


.about-dd-custom .about-dd-list li:empty{
  display: none;
}
.certificate-section{
  padding:60px 6%;
}

/* Grid */
.certificate-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:25px;
}

/* Card */
.certificate-card{
  background:#fff;
  padding:12px;
  border-radius:14px;
  box-shadow:0 8px 22px rgba(0,0,0,.08);
  cursor:pointer;
  transition:.35s ease;
}

.certificate-card:hover{
  transform:translateY(-6px) scale(1.02);
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

/* Image */
.certificate-card img{
  width:100%;
  height:300px;
  object-fit:contain;
}

/* Modal */
.cert-modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.85);
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.cert-modal img{
  max-width:92%;
  max-height:92%;
  background:#fff;
  padding:12px;
  border-radius:12px;
}

.cert-close{
  position:absolute;
  top:20px;
  right:30px;
  font-size:42px;
  color:#fff;
  cursor:pointer;
}

/* Mobile */
@media(max-width:600px){
  .certificate-card img{
    height:220px;
  }
}



/* ==========================================
   INVESTOR HERO – SUNLITE SYSTEMS
=========================================== */

.investor-hero{
  position: relative;
  width: 100%;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(244,248,255,.96) 35%, rgba(244,248,255,.75) 60%, rgba(244,248,255,.2) 100%),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a") center right / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
}

.investor-hero-container{
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: clamp(20px, 4vw, 60px) 20px;
}

.investor-hero-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}

/* LEFT CONTENT */
.investor-hero-content{
  color:#0b1b3f;
}

.investor-tagline{
  display:inline-block;
  padding:6px 16px;
  background:#e3edff;
  color:#1a56db;
  font-size:13px;
  border-radius:50px;
  margin-bottom:16px;
  font-weight:600;
}

.investor-hero-content h1{
  font-size: clamp(30px, 5vw, 52px);
  line-height:1.15;
  margin-bottom:20px;
  font-weight:700;
}

.investor-hero-content p{
  font-size: clamp(15px, 2vw, 18px);
  line-height:1.6;
  color:#4b5f8c;
  max-width:600px;
}

/* =====================================
   INVESTOR FORM
====================================== */

.investor-form-box{
  background:#ffffff;
  border-radius:20px;
  padding: clamp(22px, 4vw, 36px);
  box-shadow:0 30px 70px rgba(20,40,120,.18);
  width:100%;
}

.investor-form-box h3{
  margin-bottom:20px;
  font-size:22px;
  color:#0b1b3f;
  text-align:center;
}

.investor-form{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.investor-form input,
.investor-form select,
.investor-form textarea{
  width:100%;
  padding:14px 14px;
  border-radius:10px;
  border:1px solid #d0d8f0;
  font-size:15px;
  background:#ffffff;
  color:#0b1b3f;
  transition:.25s;
}

.investor-form input::placeholder,
.investor-form textarea::placeholder{
  color:#6b7aa8;
}

.investor-form input:focus,
.investor-form select:focus,
.investor-form textarea:focus{
  outline:none;
  border-color:#1a56db;
  box-shadow:0 0 0 3px rgba(26,86,219,.12);
}

/* Autofill Fix */
.investor-form input:-webkit-autofill{
  -webkit-text-fill-color:#0b1b3f;
  box-shadow:0 0 0 1000px #fff inset !important;
}

/* Button */
.investor-btn-primary{
  margin-top:10px;
  background:linear-gradient(135deg,#1a56db,#0d6efd);
  border:none;
  padding:14px;
  border-radius:12px;
  font-weight:600;
  font-size:15px;
  color:#fff;
  cursor:pointer;
  transition:.3s;
}

.investor-btn-primary:hover{
  transform: translateY(-2px);
  box-shadow:0 10px 25px rgba(26,86,219,.35);
}

/* =====================================
   RESPONSIVE BREAKPOINTS
====================================== */

@media (max-width: 992px){
  .investor-hero{
    background:
      linear-gradient(180deg, rgba(244,248,255,.98), rgba(244,248,255,.9)),
      url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a") center / cover no-repeat;
  }
}

@media (max-width: 768px){
  .investor-hero-grid{
    grid-template-columns: 1fr;
  }

  .investor-hero-content{
    text-align:center;
  }

  .investor-hero-content p{
    margin: 0 auto;
  }
}

@media (max-width: 480px){
  .investor-form-box{
    border-radius:14px;
  }
  .investor-form input,
  .investor-form select,
  .investor-form textarea{
    font-size:14px;
  }
}


/* ===================================================
   INVESTOR – WHY SUNLITE SYSTEMS (3D PREMIUM)
=================================================== */

.investor-growth{
  padding:120px 0;
  background:
    radial-gradient(circle at top right, rgba(26,86,219,.06), transparent 40%),
    radial-gradient(circle at bottom left, rgba(0,0,0,.04), transparent 40%),
    #ffffff;
}

.investor-container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

.investor-growth-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:80px;
  align-items:center;
}

/* ---------------- LEFT CONTENT ---------------- */

.investor-growth-content{
  background:
    radial-gradient(circle at top left, rgba(26,86,219,.08), transparent 55%);
  padding:30px;
  border-radius:30px;
}

.investor-pill{
  display:inline-block;
  background:linear-gradient(135deg,#e6efff,#f2f6ff);
  color:#1a56db;
  padding:8px 18px;
  border-radius:50px;
  font-size:13px;
  font-weight:600;
  margin-bottom:18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.investor-growth-content h2{
  font-size:44px;
  line-height:1.2;
  margin-bottom:25px;
  background: linear-gradient(90deg,#0b1b3f,#1a56db);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  text-shadow: 0 10px 30px rgba(26,86,219,.15);
}

.investor-growth-content p{
  font-size:17px;
  color:#4b5f8c;
  line-height:1.7;
  margin-bottom:18px;
}

/* Growth Points */
.investor-growth-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:25px;
}

.investor-growth-points div{
  background: linear-gradient(180deg,#ffffff,#eef3ff);
  padding:16px 18px;
  border-radius:14px;
  font-weight:600;
  color:#0b1b3f;
  box-shadow:
    0 12px 25px rgba(20,40,120,.12),
    inset 0 1px 0 rgba(255,255,255,.9);
}

/* ---------------- RIGHT CARD CLUSTER ---------------- */

.investor-growth-cards{
  background: linear-gradient(135deg,#eef4ff,#f9fbff);
  padding:40px;
  border-radius:35px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 35px 80px rgba(20,40,120,.18);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

/* 3D Floating Cards */
.investor-growth-card{
  background: linear-gradient(180deg,#ffffff,#f4f7ff);
  padding:28px 24px;
  border-radius:22px;
  position:relative;
  border:1px solid rgba(0,0,0,.04);
  box-shadow:
    0 20px 40px rgba(20,40,120,.18),
    inset 0 1px 0 rgba(255,255,255,.8);
  transition:.35s ease;
}

.investor-growth-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:22px;
  background: linear-gradient(120deg, rgba(255,255,255,.7), rgba(255,255,255,0) 60%);
  opacity:.7;
  pointer-events:none;
}

.investor-growth-card:hover{
  transform: translateY(-12px) scale(1.03);
  box-shadow:
    0 40px 80px rgba(20,40,120,.28),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.investor-growth-card h3{
  color:#1a56db;
  font-size:18px;
  margin-bottom:12px;
}

.investor-growth-card p{
  color:#4b5f8c;
  font-size:15px;
  line-height:1.6;
}

/* ---------------- RESPONSIVE ---------------- */

@media(max-width:1000px){
  .investor-growth-grid{
    grid-template-columns:1fr;
    gap:60px;
  }

  .investor-growth-cards{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .investor-growth-content h2{
    font-size:32px;
  }

  .investor-growth-cards{
    grid-template-columns:1fr;
    padding:25px;
  }

  .investor-growth-points{
    grid-template-columns:1fr;
  }
}

/* =====================================
   INVESTOR – GROWTH PLAN / USE OF FUNDS
===================================== */

.investor-funds{
  padding:100px 0;
  background:linear-gradient(180deg,#ffffff,#f6f9ff);
}

.investor-funds-head{
  max-width:720px;
  margin-bottom:70px;
}

.investor-funds-head h2{
  font-size:42px;
  color:#0b1b3f;
  margin:18px 0;
  line-height:1.2;
}

.investor-funds-head p{
  color:#4b5f8c;
  font-size:17px;
  line-height:1.6;
}

/* Layout */
.investor-funds-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:80px;
}

/* Timeline */
.investor-funds-timeline{
  position:relative;
  border-left:3px solid #1a56db;
  padding-left:40px;
}

.investor-funds-step{
  position:relative;
  background:#ffffff;
  padding:22px 22px 22px 35px;
  border-radius:14px;
  margin-bottom:35px;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
  transition:.3s ease;
}

.investor-funds-step:hover{
  box-shadow:0 18px 40px rgba(0,0,0,.10);
}

.investor-funds-step span{
  position:absolute;
  left:-55px;
  top:20px;
  width:40px;
  height:40px;
  background:#1a56db;
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-weight:700;
  box-shadow:0 6px 16px rgba(26,86,219,.35);
}

.investor-funds-step h4{
  font-size:18px;
  color:#0b1b3f;
  margin-bottom:8px;
}

.investor-funds-step p{
  color:#4b5f8c;
  line-height:1.6;
  font-size:15px;
}

/* Percentage Cards */
.investor-funds-usage{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.investor-funds-box{
  background:#ffffff;
  border-radius:16px;
  padding:40px 30px;
  text-align:center;
  box-shadow:0 12px 28px rgba(0,0,0,.08);
  transition:.3s;
}

.investor-funds-box:hover{
  box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.investor-funds-box h3{
  font-size:42px;
  color:#1a56db;
  margin-bottom:10px;
}

.investor-funds-box p{
  color:#4b5f8c;
  font-weight:600;
  font-size:15px;
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width:900px){
  .investor-funds-grid{
    grid-template-columns:1fr;
    gap:60px;
  }
  .investor-funds-usage{
    grid-template-columns:1fr;
  }
}

@media(max-width:480px){
  .investor-funds-head h2{
    font-size:30px;
  }
  .investor-funds-step{
    padding:20px;
  }
}
/* FIX overall section width & center */
.investor-funds{
  padding:80px 0;
}

.investor-funds-grid{
  max-width:1100px;
  margin:auto;
  align-items:flex-start;
}

/* Make timeline area tighter */
.investor-funds-timeline{
  padding-left:30px;
}

/* Reduce unnecessary white space on left */
.investor-funds-step{
  margin-bottom:25px;
}

/* Align right percentage cards vertically */
.investor-funds-usage{
  align-content:flex-start;
}

/* Make percentage cards equal height */
.investor-funds-box{
  min-height:180px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* Mobile spacing fix */
@media(max-width:900px){
  .investor-funds{
    padding:60px 0;
  }
}
/* Stretch the right side vertically */
.investor-funds-grid{
  align-items:stretch;
}

/* Make both columns same height */
.investor-funds-timeline,
.investor-funds-usage{
  height:100%;
}

/* Push percentage cards to fill space */
.investor-funds-usage{
  display:grid;
  grid-template-rows:1fr 1fr;
}

/* Make each card fill grid cell */
.investor-funds-box{
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.investor-benefits{
  padding:100px 0;
  background:#ffffff;
}

.investor-benefits-head{
  max-width:700px;
  margin-bottom:60px;
}

.investor-benefits-head h2{
  font-size:40px;
  color:#0b1b3f;
  margin:20px 0;
}

.investor-benefits-head p{
  color:#4b5f8c;
  font-size:17px;
}

/* Cards */
.investor-benefits-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.investor-benefit-card{
  background:#f8fbff;
  padding:30px 25px;
  border-radius:18px;
  box-shadow:0 15px 40px rgba(20,40,120,.08);
  transition:.3s;
}

.investor-benefit-card:hover{
  transform: translateY(-6px);
  box-shadow:0 25px 60px rgba(20,40,120,.15);
}

.investor-benefit-card h3{
  color:#1a56db;
  margin-bottom:12px;
}

.investor-benefit-card p{
  color:#4b5f8c;
  line-height:1.6;
}

/* Responsive */
@media(max-width:1000px){
  .investor-benefits-grid{
    grid-template-columns:1fr 1fr;
  }
}
@media(max-width:600px){
  .investor-benefits-grid{
    grid-template-columns:1fr;
  }
}
/* Section soft depth */
.investor-benefits{
  background:
    radial-gradient(circle at top right, rgba(26,86,219,.06), transparent 40%),
    radial-gradient(circle at bottom left, rgba(0,0,0,.04), transparent 40%),
    #ffffff;
}

/* Cards container perspective */
.investor-benefits-grid{
  perspective:1200px;
}

/* Floating glass cards */
.investor-benefit-card{
  background: linear-gradient(180deg,#ffffff,#f4f7ff);
  position:relative;
  transform-style:preserve-3d;
  box-shadow:
    0 25px 60px rgba(20,40,120,.18),
    inset 0 1px 0 rgba(255,255,255,.9);
  transition:.35s ease;
}

/* Light reflection */
.investor-benefit-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:18px;
  background: linear-gradient(120deg, rgba(255,255,255,.6), rgba(255,255,255,0) 60%);
  opacity:.6;
  pointer-events:none;
}

/* 3D hover tilt */
.investor-benefit-card:hover{
  transform: rotateX(6deg) rotateY(-6deg) translateY(-10px);
  box-shadow:0 40px 90px rgba(20,40,120,.28);
}

/* Titles pop */
.investor-benefit-card h3{
  text-shadow:0 6px 20px rgba(26,86,219,.35);
}
.investor-trust{
  padding:100px 0;
  background:#f8fbff;
}

.investor-trust-head{
  max-width:700px;
  margin-bottom:60px;
}

.investor-trust-head h2{
  font-size:40px;
  color:#0b1b3f;
  margin:20px 0;
}

.investor-trust-head p{
  color:#4b5f8c;
  font-size:17px;
}

/* Grid */
.investor-trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

/* Cards */
.investor-trust-card{
  background:#ffffff;
  padding:35px 28px;
  border-radius:18px;
  box-shadow:0 15px 40px rgba(20,40,120,.08);
  transition:.3s;
}

.investor-trust-card:hover{
  transform: translateY(-6px);
  box-shadow:0 25px 60px rgba(20,40,120,.15);
}

.investor-trust-card h3{
  color:#1a56db;
  margin-bottom:12px;
}

.investor-trust-card p{
  color:#4b5f8c;
  line-height:1.6;
  margin-bottom:15px;
}

.investor-trust-link{
  color:#1a56db;
  font-weight:600;
  text-decoration:none;
}

/* Responsive */
@media(max-width:1000px){
  .investor-trust-grid{
    grid-template-columns:1fr 1fr;
  }
}
@media(max-width:600px){
  .investor-trust-grid{
    grid-template-columns:1fr;
  }
}
/* Trust section depth */
.investor-trust{
  background:
    radial-gradient(circle at top right, rgba(26,86,219,.06), transparent 40%),
    radial-gradient(circle at bottom left, rgba(0,0,0,.04), transparent 40%),
    linear-gradient(180deg,#ffffff,#f4f7ff);
}

/* Cards container */
.investor-trust-grid{
  perspective:1200px;
}

/* Glass cards */
.investor-trust-card{
  background: linear-gradient(180deg,#ffffff,#f1f5ff);
  position:relative;
  transform-style:preserve-3d;
  box-shadow:
    0 25px 60px rgba(20,40,120,.18),
    inset 0 1px 0 rgba(255,255,255,.9);
  transition:.35s ease;
}

/* Light reflection */
.investor-trust-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:18px;
  background: linear-gradient(120deg, rgba(255,255,255,.6), rgba(255,255,255,0) 60%);
  opacity:.6;
  pointer-events:none;
}

/* 3D hover */
.investor-trust-card:hover{
  transform: rotateX(6deg) rotateY(-6deg) translateY(-8px);
  box-shadow:0 40px 90px rgba(20,40,120,.28);
}

/* Headline glow */
.investor-trust-head h2{
  background: linear-gradient(90deg,#0b1b3f,#1a56db);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  text-shadow:0 10px 30px rgba(26,86,219,.18);
}
.investor-cta{
  padding:100px 0;
  background:
    radial-gradient(circle at top left, rgba(26,86,219,.08), transparent 50%),
    linear-gradient(135deg,#0b1b3f,#1a56db);
}

.investor-cta-box{
  max-width:1000px;
  margin:auto;
  background:rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  padding:60px;
  border-radius:30px;
  display:grid;
  grid-template-columns:1.5fr 1fr;
  gap:50px;
  color:#ffffff;
  box-shadow:0 30px 80px rgba(0,0,0,.4);
}

.investor-cta-content h2{
  font-size:40px;
  margin-bottom:20px;
}

.investor-cta-content p{
  font-size:18px;
  line-height:1.6;
  color:#e0e8ff;
}

.investor-cta-points{
  margin-top:25px;
  list-style:none;
  padding:0;
}

.investor-cta-points li{
  margin-bottom:10px;
  font-weight:600;
}

/* Buttons */
.investor-cta-actions{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:20px;
}

.investor-btn-secondary{
  border:2px solid rgba(255,255,255,.5);
  color:#ffffff;
  padding:14px 24px;
  border-radius:10px;
  text-decoration:none;
  text-align:center;
  font-weight:600;
  transition:.3s;
}

.investor-btn-secondary:hover{
  background:rgba(255,255,255,.15);
}

/* Mobile */
@media(max-width:900px){
  .investor-cta-box{
    grid-template-columns:1fr;
    text-align:center;
  }
}
.investor-faq{
  padding:100px 0;
  background:#ffffff;
}

.investor-faq-head{
  max-width:700px;
  margin-bottom:60px;
}

.investor-faq-head h2{
  font-size:38px;
  color:#0b1b3f;
  margin:20px 0;
}

.investor-faq-head p{
  color:#4b5f8c;
}

/* FAQ Items */
.investor-faq-list{
  max-width:900px;
}

.investor-faq-item{
  background:#f8fbff;
  padding:30px;
  border-radius:16px;
  margin-bottom:20px;
  box-shadow:0 10px 25px rgba(20,40,120,.08);
}

.investor-faq-item h4{
  color:#1a56db;
  margin-bottom:10px;
}

.investor-faq-item p{
  color:#4b5f8c;
  line-height:1.6;
}
.investor-faq-v2{
  padding:100px 0;
  background:linear-gradient(180deg,#ffffff,#f5f8ff);
}

.investor-faq-layout{
  display:grid;
  grid-template-columns:1.5fr 1fr;
  gap:60px;
  margin-top:50px;
}

/* FAQ boxes */
.investor-faq-box{
  background:#ffffff;
  padding:25px 30px;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(20,40,120,.08);
  margin-bottom:25px;
  cursor:pointer;
  transition:.3s;
}

.investor-faq-box.active{
  box-shadow:0 20px 50px rgba(20,40,120,.18);
  border-left:6px solid #1a56db;
}

/* Title */
.investor-faq-title{
  display:flex;
  align-items:center;
  gap:15px;
}

.investor-faq-title span{
  background:#1a56db;
  color:#fff;
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-weight:700;
}

.investor-faq-title h4{
  color:#0b1b3f;
  font-size:18px;
}

/* Body */
.investor-faq-body{
  margin-top:15px;
  line-height:1.6;
  color:#4b5f8c;
  display:none;
}

.investor-faq-box.active .investor-faq-body{
  display:block;
}

/* Right panel */
.investor-faq-info{
  background:linear-gradient(135deg,#0b1b3f,#1a56db);
  border-radius:24px;
  padding:40px;
  color:#fff;
  box-shadow:0 30px 60px rgba(0,0,0,.35);
}

.investor-faq-info h3{
  font-size:26px;
  margin-bottom:20px;
}

.investor-faq-info ul{
  list-style:none;
  padding:0;
}

.investor-faq-info li{
  margin-bottom:12px;
  font-weight:600;
}

/* Mobile */
@media(max-width:900px){
  .investor-faq-layout{
    grid-template-columns:1fr;
  }
}
