@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Scss Document */

:root {
    --primary-blue: #68cbe0;
    --primary-dark: #0098c0;
    --primary-light: #e1f3fa;
    --dark-gray: #2c3e50;
    --medium-gray: #5a6a7a;
    --light-gray: #f8fafc;
    --border-gray: #e1e6eb;
    --white: #ffffff;
    --shadow-sm: 0 4px 12px rgba(0, 181, 226, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 181, 226, 0.12);
    --shadow-hover: 0 12px 32px rgba(0, 181, 226, 0.16);
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  background:#fff;
  color: #333;
}


p {
  font-size: 14px;
  color: #333;
}

img { max-width: 100%; border: 0; }


a {
  text-decoration: none !important;
  transition: all 0.2s ease-in;
  color: #68cbe0; }

a:hover { color: #000; }

.img-responsive { width: 100%; height: auto; }

.pa-20{ padding: 16px 0px; }
.pt-30{ padding-top: 30px; }
.pt-50{ padding-top: 50px; }
.pb-50{ padding-bottom: 50px; }
.pt-60{ padding-top: 60px; }
.pt-70{ padding-top: 70px; }
.pt-80{ padding-top: 80px; }
.pb-80{ padding-bottom: 80px; }
.pa-80{ padding: 80px 0; }
.pa-60{ padding: 60px 0; }
.pa-50{ padding: 50px 0; }
.pa-30{ padding: 30px 0; }
.pa-120{ padding: 120px 0; }

/*------------------common-css-------------------*/

 .common-btn{
    font-size: 16px;
    background:#68cbe0;
    color: #000;
    padding: 16px 26px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid #68cbe0;
}

.common-btn:hover { background: #000; color: #fff; }

.common-btn-line{ background: transparent; border: 1px solid #333; color: #333; }

.title-col{ margin-bottom:54px; text-align: center; }

.title {
  position: relative;
  font-size:48px;
  color:#111;
  font-weight: 500;
  margin-bottom:0px;
}

.title-para{ font-size:20px; max-width: 900px; font-weight: 300; color: #5D5D5D; margin:10px auto 50px; width: 100%; }

.form-control {
    padding: 10px 15px;
    font-size: 15px;    
    color: #000;
    border-radius: 0px;
}

select.form-control { padding: 0; padding-left:15px; font-size: 15px; border-radius:0px; -webkit-appearance: none; 
  -moz-appearance: none;
  appearance: none; 
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.3em;
  color: #000 !important;
}

.form-select{ font-size: 15px; border-radius: 0px; border: 1px solid #999; }
.form-label{ font-size: 15px; margin-bottom:4px; color: #333; font-weight: 400;  }

textarea.form-control{ height:auto !important; }

.form-control:focus {
  box-shadow: none !important;
  outline: none !important;
  border: 1px solid #000 !important;
  color: #000 !important;
}

.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #666;
  opacity: 1; /* Firefox */
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #666;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: #666;
}


@media (min-width: 992px){ .dropdown:hover>.dropdown-menu { display: block; } }

/* width */
::-webkit-scrollbar {
  width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}


/*------------------end common-css-------------------*/

.marquee {
  width: 100%;
  overflow: hidden;
  background: #68CBE0;
  color: #000;
  padding: 4px 0px;
}

.marquee__inner {
  display: flex;
  width: max-content;
  animation: loop 18s linear infinite;
}

.marquee__inner span {
  white-space: nowrap;
  font-size: 18px;
}

.marquee__inner span b{ margin: 0px 20px; }

@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

header{ width: 100%; z-index: 9999; padding: 10px 0px; transition: all 0.3s ease; background: #000; }

.logo img{ height: 40px; }

.main-header.fixed-nav {
    background:#000; /* glass tint */
    padding:5px 0px;
	z-index:9;
}


.navbar-expand-xl .navbar-nav .nav-link{ font-size: 16px; color: #fff; text-transform: uppercase; font-weight: 400; padding:5px; margin: 0px 12px; position: relative; }
.navbar-expand-xl .navbar-nav .nav-link:hover{ color:#68cbe0; }

.navbar-nav .nav-item:last-child .nav-link {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    margin-right: 0px;
    border-radius: 8px;
    padding: 10px 17px;
}

.navbar-nav .nav-item:last-child:hover .nav-link { background: #333; color:#fff; }

.banner{ position: relative;  background: #FFFFFF;
background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(231, 255, 255, 1) 100%); }

.banner-container {
    max-width: 92%;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    padding:0px;
	align-items: center;
}

.banner-text {
    max-width: 55%;
    flex: 0 0 55%;
}

.banner-vector {
    max-width: 45%;
    flex: 0 0 45%;
	text-align: right;
}

.banner-tag {
    display: inline-block;
    background: #fff;
    border-radius: 40px;
    border: 1px solid #68cbe0;
    color: #298699;
    font-size: 12px;
    padding: 2px 14px;
    margin-bottom: 12px;
}

.banner-title span {
    font-weight: 300;
    font-size: 52px;
    display: block;
    color: #000;
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-title {
    font-size: 96px;
    font-weight: 700;
    margin-bottom: 10px;
    width: 100%;
    text-transform: uppercase;
    line-height: 1;
    background: linear-gradient(135deg, #68cbe0, #4bb8d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-text p {
  font-size: 20px;
  color: #5D5D5D;
  margin-bottom:20px;
  width: 100%;
  line-height: 28px;
  font-weight: 300;
}

.banner-btns a{ margin-right: 10px; }

/* Card Styling */
.custom-card{
    border-radius:20px;
    padding:30px;
    position:relative;
    overflow:hidden;
    height:100%;
}

.card-left{
    background:#fff;
    border: 1px solid #ddd;
}

.card-right{
    background:#f3f4f5;
    border: 1px solid #f3f4f5;
}

.badge-custom {
    font-size: 11px;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.badge-blue{
    background:#d9f3f6;
    color:#00bcd4;
}

.badge-white{ background: #fff; }

.custom-card h2{ margin-bottom: 20px; }

.card-text{
    color:#6c757d;
    font-size:16px;
    margin-bottom:25px;
    font-weight: 300;
}

.feature-list{
    list-style:none;
    padding:0;
    margin-bottom:30px;
}

.feature-list li{
    margin-bottom:12px;
    font-size:16px;
}

.feature-list li::before{
    content:"\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right:10px;
    color:#9BABAF;
}

/* Image Position */
.card-img {
    position: absolute;
    bottom: 0;
    right: 30px;
    width: 180px;
}


.sec2{ background: #F3F7F9; }

.rates-4cols {
    text-align: center;
    background: #fff;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 6%);
    border-radius: 16px;
    padding: 30px 25px;
    height: 100%;
}
.rates-ico {
    margin-bottom: 20px;
}
.rates-txt h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}
.rates-txt p {
    font-size: 16px;
    color: #676767;
    line-height: 24px;
    margin-bottom: 0px;
}

.join-neev{
    position: relative;
    overflow: hidden;
    background:#68cbe0;
}

.brand-text{
    color:#00B5E2;
}

.journey-img{
    max-height: 400px;
    opacity: 0.95;
}

/* Step Card */
.step-card{
    display:flex;
    align-items:flex-start;
    gap:20px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    padding:25px;
    border-radius:20px;
    margin-bottom:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s ease;
    border:1px solid rgba(255,255,255,0.4);
}

.step-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 40px rgba(0,181,226,0.15);
}

.step-icon{
    width:60px;
    height:60px;
    background:#43c0cd;
    color:#fff;
    font-size:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:15px;
    flex-shrink:0;
}

.step-card h5{
    margin-bottom:6px;
    font-weight:600;
}

.step-card p{
    margin:0;
    color:#6c757d;
}

/* Headings */
.sustainability-section h2{
    font-size:32px;
    line-height:1.3;
    margin-bottom:20px;
}

.sustainability-section p{
    color:#6c757d;
    font-size:16px;
}

/* Bottom Highlight */
.highlight-text{
    font-size:22px;
    margin-top:25px;
}

.highlight-text span{
    color:#45930D;
    font-weight:600;
}

/* Right Card */
.green-card{
    background:#f5f5f5;
    padding:30px;
    border-radius:24px;
    height:100%;
}

.green-card h3{
    font-size: 32px;
    line-height: 1.3;
    margin-bottom:30px;
}

.icon-box{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:25px;
}

.icon-circle{
    width:32px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.icon-box h6{
    font-weight:600;
    margin-bottom:4px;
}

.icon-box p{
    margin:0;
    font-size:14px;
    color:#6c757d;
}

.testimonial-wrapper{ background:#16142B; padding: 70px 0px; }
.testimonial-wrapper *{ color:#fff; }

.testi{ background:#2E2B51; border-radius:12px; overflow: hidden; padding:40px 30px;  }
.testi img{ width: auto !important; }
.user-quote { margin-bottom: 20px; }

.testi h4{ font-size:16px; font-weight: 500; margin-top:0px; margin-bottom: 0px;  } 
.testi h4 small{ font-size:13px; color:#939191; display: block; font-weight: 300; margin-top: 6px; }  
.testi p {
  font-size: 15px;
  color: #9BABAF;
  font-weight: 200;
  line-height: 22px;
}
.test-location{ color:#000; margin:10px 0px 0px;  }
.teststar { margin-bottom: 10px; }
.testuser {
    display: flex;
    align-items: center;
    justify-content: start;
}
.testuser img{ margin: 0px; margin-right: 10px; border-radius: 50%; }

.testimonial-wrapper .owl-theme .owl-nav [class*=owl-] {
    color: #000;
    font-size: 18px;
    border: 1px solid #333;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    line-height: 31px;
    margin: 10px 10px;
}

.sustainability-banner{ position: relative; }

.sustainability-banner .item:after{
    z-index: 1;
    position: absolute;
    left: 0;
    content: "";
    top: 0;
    width: 80%;
    height: 100%;
}

.sustainability-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    max-width: 900px;
    width: 100%;
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
    margin: auto;
}

.sustainability-text *{ color: #fff; }
.sustainability-text p{ font-size: 26px; margin-bottom: 0px; font-weight: 300; }
.sustainability-text h1{ font-size: 74px; font-weight: 700; }

.sustainability-banner .owl-theme .owl-nav [class*=owl-] {
    color: #fff;
    font-size: 18px;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    line-height: 31px;
    margin: 10px 10px;
    
}

.sustainability-banner .owl-nav{ position: absolute;
    bottom: 30px;
    transform: translateX(-50%);
    left: 50%; 
    z-index: 9;
  }


.cta-section{
    background: #68cbe0;
    position: relative;
}

.cta-box h2{
    font-size: 34px;
}

.cta-box p{
    font-size: 16px;
    opacity: 0.9;
}

.cta-box .btn-light{
    font-weight: 600;
    transition: 0.3s ease;
}

.cta-box .btn-light:hover{
    background: #f8f9fa;
    transform: translateY(-3px);
}

.cta-box .btn-outline-light:hover{
    background: #fff;
    color: #00B5E2;
    transform: translateY(-3px);
}

.faqs-section{
  background:#f7f9fa;
}

.section-title{
  font-size:32px;
  font-weight:700;
  color:#000;
}

.section-subtitle{
  color:#6c757d;
}

.faq-box{
  background:#fff;
  padding:30px;
  border-radius:16px;
  box-shadow:0 10px 40px rgba(0,0,0,0.05);
}

.faq-heading{
  color:#68cbe0;
  font-weight:600;
  margin-bottom:20px;
}

.accordion-button{
  font-weight:500;
  color:#000;
}

.accordion-button:not(.collapsed){
  background:#68cbe0;
  color:#fff;
  box-shadow:none;
}

.accordion-item{
  border:none;
  border-bottom:1px solid #eee;
}

.comparison-section{
  background:#fff;
}

.comparison-table{
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 40px rgba(0,0,0,0.05);
}

.comparison-table th{
  background:#000;
  color:#fff;
  padding:15px;
}

.neev-col {
    background: #68cbe0 !important;
    color: #000 !important;
}

.comparison-table td{
  padding:15px;
  background:#f9f9f9;
  vertical-align:middle;
}

.comparison-table tr:nth-child(even) td{
  background:#fff;
}

.highlight {
    font-weight: 600;
    background: #cff3fb !important;
}


.who-text{ padding-left: 50px; }
.who-text p{ font-size: 17px; color: #515151; line-height: 28px; }

.partners-section{ background:#fff; padding-bottom: 80px; }


/* Marquee Container */
.logo-marquee{
    overflow:hidden;
    position:relative;
}

/* Moving Track */
.logo-track{
    display:flex;
    width:max-content;
    animation: scroll 25s linear infinite;
}

/* Logo Item */
.logo-item{
    flex:0 0 auto;
    width:200px;
    height:120px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:20px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.3s ease;
    border: 1px solid #e1e1e1;
}

.logo-item img{
    max-height:80px;
    width:auto;
    border-radius: 12px;
    transition:0.3s ease;
}

/* Smooth Infinite Animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause on Hover */
.logo-marquee:hover .logo-track{
    animation-play-state:paused;
}


.blog-section{
    background:#f5f5f5;
}

.blog-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border: 1px solid #ddd;
    transition:0.3s ease;
    margin:0px;
}

.blog-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.blog-content{
    padding:20px;
}

.blog-tag{
    font-size:12px;
    font-weight:600;
    color:#00B5E2;
    display:inline-block;
    margin-bottom:8px;
}

.blog-content h5{
    font-weight:600;
    margin-bottom:10px;
}

.blog-content p{
    font-size:14px;
    color:#6c757d;
}

.read-more{
    text-decoration:none;
    font-weight:600;
    color:#000;
    transition:0.3s;
}

.read-more:hover{
    color:#00B5E2;
}


.blog-slider.owl-theme .owl-nav [class*=owl-] {
    color: #000;
    font-size: 18px;
    border: 1px solid #333;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    line-height: 31px;
    margin: 10px 10px;
}


footer{  padding:40px 0px 40px;
  background-color: #000;
}

.footer-name {
    color: #fff0;
    text-align: center;
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    transform: translateY(-12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 25px;
    margin-bottom: 25px;
    text-stroke: 2px #333;
    letter-spacing: 3px;
    -webkit-text-stroke: 2px #fff;
}

.footer-name img{ max-width: 400px; }



.footer-about .top-call{ text-align: left; }
.footer-about p{ color: #5F5F5F; font-size: 13px; line-height: 20px; }

.footer-title{font-size:16px; font-weight:400; color: #fff; text-transform: uppercase; margin-bottom: 20px; }
.footer-links p { margin-bottom: 15px; }
.footer-links p a { font-size: 14px; color: #999; font-weight:300; }
.footer-links p a:hover{ color: #fff; }

.innerfooter-links{ display: flex; flex-wrap: wrap; }
.innerfooter-links p{ width: 46%; }

.footer-about-text p{ color: #999; }
.contact-conten a{ color: #999; }
.contact-conten a:hover{ color: #fff; }
.contact-conten p:first-of-type{ align-items: flex-start; }
.contact-conten p{ color: #999; display: flex; line-height: 22px; margin-bottom: 16px; font-size: 14px; align-items: center; }
.footer-social a{ margin: 0px 0px; display:inline-flex; color: #999; align-items: center; }
.footer-social a i{ width:30px; }
.footer-social a:hover{ color: #fff; }

.footer-social{ padding-left: 50px; }

.footer-social i {
  font-size: 18px;
  margin: 0px 2px;
}

.contact-conten p strong{ width:40px; flex: 0 0 40px; }
.contact-conten p strong i{ font-size: 20px; margin-left: 4px; }
.contact-conten img{ max-height: 24px; filter: brightness(1) invert(1) contrast(1); }

.copyright {
  display: flex;
  justify-content: space-between;
  color: #999;
  font-size: 14px;
  margin-top: 45px;
}

.copyright a{ color: #999; }
.copyright a:hover{ color: #fff; }

.topup {
    width: 40px;
    text-align: center;
    height: 40px;
    font-size: 24px;
    line-height: 40px;
    color: #0c8da9;
    border: 1px solid #68cbe0;
    cursor: pointer;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9;
    border-radius: 8px;
}


.split-modal{
    border-radius:20px;
    border:none;
    box-shadow:0 30px 80px rgba(0,0,0,0.2);
}

/* Left Image Section */
.modal-image{
    height:100%;
    min-height:100%;
    position:relative;
    display:flex;
    align-items:flex-end;
    padding:30px;
}

.modal-image::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(0,0,0,0.1),rgba(0,0,0,0.6));
}

.overlay-content{
    position:relative;
    color:#fff;
}

.overlay-content h3{
    font-weight:700;
}

.overlay-content p{
    font-size:14px;
    color: #fff;
    opacity:0.9;
}

/* Form Side */
.modal-form{
    background:#fff;
}

.custom-input{
    border-radius:12px;
    padding:12px 15px;
    border:1px solid #ddd;
    transition:0.3s ease;
}

.custom-input:focus{
    border-color:#68cbe0;
    box-shadow:0 0 0 0.2rem rgba(104,203,224,0.2);
}

.submit-btn{
    background:#68cbe0;
    color:#fff;
    font-weight:600;
    padding:12px;
    border-radius:50px;
    transition:0.3s ease;
}

.submit-btn:hover{
    background:#57b8cc;
    transform:translateY(-2px);
}


/* Hero Section - Clean White */
.investor-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    background-color: #e1f3fa;
    color: #68cbe0;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.9rem;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 181, 226, 0.2);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-title span {
    color: #68cbe0;
    position: relative;
}

.hero-title span:after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 8px;
    background-color: rgba(0, 181, 226, 0.2);
    z-index: -1;
}

.hero-stats {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e9ecef;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #68cbe0;
    line-height: 1;
    margin-bottom: 4px;
	text-align:center;
}

.stat-label {
    font-size: 0.9rem;
    color: #5a6a7a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
	text-align:center;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #68cbe0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-desc {
    font-size: 1.1rem;
    color: #5a6a7a;
    max-width: 700px;
    margin: 0 auto;
}

/* Credibility Cards */
.credibility-section {
    padding: 60px 0;
    background-color: #fff;
}

.credibility-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.credibility-card:hover {
    border-color: #68cbe0;
    box-shadow: 0 4px 12px rgba(0, 181, 226, 0.08);
    transform: translateY(-4px);
}

.credibility-icon {
    width: 64px;
    height: 64px;
    background-color: #e1f3fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.credibility-icon i {
    font-size: 2rem;
    color: #68cbe0;
}

.credibility-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.credibility-card p {
    color: #5a6a7a;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.credibility-link {
    color: #68cbe0;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.credibility-link:hover {
    gap: 12px;
    color: #0098c0;
}

/* Fleet Partnership Model - Main Section */
.fleet-model-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.model-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 181, 226, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.model-card:hover {
    box-shadow:0 8px 24px rgba(0, 181, 226, 0.12);
    border-color: #68cbe0;
}

.model-badge {
    background-color: #e1f3fa;
    color: #68cbe0;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}

.model-icon {
    font-size: 2.5rem;
    color: #68cbe0;
    margin-bottom: 20px;
}

.model-feature-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.model-feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5a6a7a;
}

.model-feature-list li i {
    color: #68cbe0;
    font-size: 1.1rem;
}

/* Returns Section */
.returns-section {
    padding: 80px 0;
    background-color: #fff;
}

.returns-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e9ecef;
    height: 100%;
    transition: all 0.3s ease;
}

.returns-card:hover {
    border-color: #68cbe0;
    box-shadow: 0 4px 12px rgba(0, 181, 226, 0.08);
}

.returns-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.returns-icon {
    width: 56px;
    height: 56px;
    background-color: #e1f3fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.returns-icon i {
    font-size: 1.8rem;
    color: #68cbe0;
}

.returns-percentage {
    font-size: 2.5rem;
    font-weight: 700;
    color: #68cbe0;
    line-height: 1;
}

.returns-period {
    color: #5a6a7a;
    font-size: 0.9rem;
}

/* Operations Support Section */
.operations-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.ops-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.ops-item:hover {
    border-color: #68cbe0;
    box-shadow: 0 4px 12px rgba(0, 181, 226, 0.08);
}

.ops-icon {
    width: 48px;
    height: 48px;
    background-color: #e1f3fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ops-icon i {
    font-size: 1.5rem;
    color: #68cbe0;
}

.ops-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #2c3e50;
}

.ops-content p {
    color: #5a6a7a;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Investment Calculator */
.calculator-section {
    padding: 80px 0;
    background-color: #fff;
}

.calculator-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0, 181, 226, 0.08);
}

.calculator-result {
    background: linear-gradient(135deg, #68cbe0 0%, #0098c0 100%);
    border-radius: 20px;
    padding: 32px;
    color: #fff;
    height: 100%;
}

.calculator-result .result-amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.form-range::-webkit-slider-thumb {
    background: #68cbe0;
}

.form-range::-moz-range-thumb {
    background: #68cbe0;
}

.form-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 0.25rem rgba(0, 181, 226, 0.25);
}

.form-select, .form-control {
    border: 1px solid #e9ecef;
    padding: 12px 16px;
    border-radius: 8px;
}

.form-select:focus, .form-control:focus {
    border-color: #68cbe0;
    box-shadow: 0 0 0 0.25rem rgba(0, 181, 226, 0.1);
}

/* Partners Logos */
.partners-section {
    padding: 60px 0;
    background-color: #f8fafc;
}

.partner-logo {
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    border-color: #68cbe0;
    box-shadow: 0 4px 12px rgba(0, 181, 226, 0.08);
}

.partner-logo span {
    font-weight: 700;
    color: #5a6a7a;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.accordion-button {
    padding: 20px 24px;
    font-weight: 600;
    color: #2c3e50;
    background-color: #fff;
}

.accordion-button:not(.collapsed) {
    background-color: #e1f3fa;
    color: #68cbe0;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #68cbe0;
}

.accordion-button:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2300B5E2' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #68cbe0 0%, #0098c0 100%);
    color: #fff;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.bg-primary-blue {
    background-color: var(--primary-blue) !important;
}


/* Hero Section - Lead Generation Focus */
.rider-hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(0, 181, 226, 0.1);
    color: var(--primary-blue);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.hero-title span {
    color: var(--primary-blue);
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--medium-gray);
    margin-bottom: 30px;
    font-weight: 400;
}

.lead-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 181, 226, 0.1);
    border: 1px solid var(--border-gray);
}

.lead-form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.form-control, .form-select {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--border-gray);
    font-size: 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(0, 181, 226, 0.1);
}

/* Who Can Apply Section */
.who-section {
    padding: 60px 0;
    background-color: var(--white);
}

.eligibility-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.eligibility-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.eligibility-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(0, 181, 226, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.eligibility-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.eligibility-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.eligibility-card ul {
    padding-left: 0;
    list-style: none;
}

.eligibility-card ul li {
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
}

.eligibility-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

.badge-requirement {
    background-color: rgba(0, 181, 226, 0.1);
    color: var(--primary-blue);
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 15px;
}

/* How Riders Earn More */
.earn-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.earn-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.earn-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0, 181, 226, 0.1);
}

.earn-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.earn-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 181, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.earn-icon i {
    font-size: 2.2rem;
    color: var(--primary-blue);
}

.earn-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.earn-card p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

.earn-stats {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0098c0 100%);
    border-radius: 20px;
    padding: 40px;
    color: var(--white);
    margin-top: 40px;
}

.earn-stats .stat-item {
    text-align: center;
}

.earn-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    color: #fff;
}

.earn-stats .stat-label {
    font-size: 1rem;
    opacity: 0.9;
    color: #fff;
}

/* Rental/Lease Models - Simple Language */
.rental-section {
    padding: 80px 0;
    background-color: var(--white);
}

.rental-card {
    background: var(--white);
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    position: relative;
}

.rental-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0, 181, 226, 0.1);
}

.rental-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.rental-header {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-gray);
}

.rental-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.rental-period {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.rental-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.rental-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rental-features li i {
    color: var(--primary-blue);
    font-size: 1.1rem;
    width: 20px;
}

.price-note {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-top: 15px;
    text-align: center;
}

/* Simple Comparison */
.comparison-box {
    background: #f8fafc;
    border-radius: 20px;
    padding: 30px;
    margin-top: 50px;
}

.comparison-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 10px;
}

.comparison-item:last-child {
    margin-bottom: 0;
}

.comparison-item .ev {
    color: var(--primary-blue);
    font-weight: 700;
}

.comparison-item .petrol {
    color: var(--medium-gray);
    font-weight: 500;
}

/* FAQ Section - Clear & Simple */
.faq-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.faq-search {
    background: var(--white);
    border-radius: 60px;
    padding: 5px;
    display: flex;
    max-width: 500px;
    margin: 0 auto 40px;
    border: 1px solid var(--border-gray);
}

.faq-search input {
    border: none;
    background: transparent;
    padding: 15px 20px;
    flex: 1;
    outline: none;
}

.faq-search button {
    background: var(--primary-blue);
    border: none;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.faq-category {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--dark-gray);
}

.faq-category i {
    color: var(--primary-blue);
    margin-right: 10px;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 12px;
    border: 1px solid var(--border-gray);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-blue);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* large enough value */
  opacity: 1;
  padding: 0px 20px 20px;
}

.faq-answer.show {
    display: block;
}

.faq-answer p {
    margin-bottom: 0;
}

/* Quick Apply Section */
.quick-apply {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0098c0 100%);
    color: var(--white);
}

.quick-apply h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.quick-apply .lead {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.step-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    font-weight: 700;
    border: 2px solid var(--white);
}

/*-------------------inner banner------------------*/

.inner-banner{ width: 100%; position: relative; overflow: hidden;z-index:-1; }
.inner-banner img{ height: 300px; object-fit: cover; width: 100%; }

.innerbanner-text {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 9;
    background: #fff;
    padding: 20px 30px 0px;

}

.innerbanner-text h1{ color: #000; font-size:42px; margin-bottom: 0px; font-weight: 300; position: relative; }
.innerbanner-text h1:before {
    width: 0;
    height: 0;
    border-left: 0px solid transparent;
    border-right: 71px solid transparent;
    border-bottom: 91px solid #fff;
    position: absolute;
    content: "";
    right: -100px;
    top: -20px;
}

/* RIGHT SIDE - Creative Glass Card */
.creative-right {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 30px 60px rgba(0, 181, 226, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 181, 226, 0.2);
}

.creative-right:hover {
    box-shadow: var(--shadow-hover);
}

.glass-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.creative-right:hover .glass-shine {
    opacity: 1;
}

/* Creative Tabs */
.creative-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 12px 25px;
    font-weight: 700;
    color: #64748b;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    font-size: 1rem;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #68CBE0;
    transition: width 0.3s ease;
    border-radius: 3px 3px 0 0;
}

.tab-btn.active {
    color: #68CBE0;
    background: rgba(0, 181, 226, 0.1);
}

.tab-btn.active::after {
    width: 80%;
}

.tab-btn:hover:not(.active) {
    color: #0B1E33;
    background: rgba(0, 0, 0, 0.02);
}

/* Creative Form */
.creative-form {
    transition: all 0.4s ease;
}

.input-group-creative {
    position: relative;
    margin-bottom: 20px;
}

.input-group-creative i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #68CBE0;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.creative-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: #0B1E33;
    font-weight: 500;
}

.creative-input:focus {
    outline: none;
    border-color: #68CBE0;
    box-shadow: 0 0 0 5px rgba(0, 181, 226, 0.1);
    transform: translateY(-2px);
}

.creative-input:hover {
    border-color: rgba(0, 181, 226, 0.3);
    background: var(--white);
}

.floating-label {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
    padding: 0 5px;
    font-weight: 500;
}

.creative-input:focus ~ .floating-label,
.creative-input:not(:placeholder-shown) ~ .floating-label {
    top: 0;
    font-size: 0.8rem;
    background: white;
    color: #68CBE0;
    font-weight: 600;
}

.creative-input::placeholder {
    color: transparent;
}

/* Textarea specific */
.input-group-creative textarea {
    padding: 16px 20px 16px 50px;
    min-height: 100px;
    resize: vertical;
}

.input-group-creative textarea ~ .floating-label {
    top: 20px;
    transform: none;
}

.input-group-creative textarea:focus ~ .floating-label,
.input-group-creative textarea:not(:placeholder-shown) ~ .floating-label {
    top: -10px;
}

.contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 181, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom:20px;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.whatsapp-icon {
    background-color: rgba(37, 211, 102, 0.1);
}

.whatsapp-icon i {
    color:#25d366;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.contact-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.btn-whatsapp {
    background-color: #25d366;
    border-color: #25d366;
    color: #fff;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #20ba5c;
    border-color: #20ba5c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    color: #fff;
}

.btn-call {
    background-color: var(--dark-gray);
    border-color: var(--dark-gray);
    color: var(--white);
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.btn-call:hover {
    background-color: #1e2b3a;
    border-color: #1e2b3a;
    transform: translateY(-2px);
    color: #fff;
}

.location-group {
    background-color: rgba(0, 181, 226, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(0, 181, 226, 0.2);
}
.location-icon {
    width: 48px;
    height: 48px;
    font-size: 21px;
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.location-text h5 {
    font-weight: 700;
    margin-bottom: 4px;
}
.location-text p {
    color: #5a6a7a;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.delhi-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00b5e2, #0098c0);
    color: white;
    padding: 12px 25px;
    border-radius: 60px;
    font-weight: 600;
    box-shadow: 0 20px 40px rgba(0, 181, 226, 0.1);
}

.about-hero .hero-subtitle{ max-width: 600px; }

/* Story Section */
.story-section {
    background: white;
}

.story-card {
    background: #f8fafc;
    border-radius: 40px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 181, 226, 0.1);
}

.quote-mark {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 8rem;
    color: #68CBE0;
    opacity: 0.1;
    font-family: serif;
}

.story-text {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
    color: #1E2F44;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.story-highlight {
    font-size: 2rem;
    font-weight: 800;
    color: #68CBE0;
    margin: 30px 0;
}

/* Who We Serve */
.serve-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.serve-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e1e6eb;
    position: relative;
    overflow: hidden;
}

.serve-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 181, 226, 0.15);
    border-color: #68CBE0;
}

.serve-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 181, 226, 0.1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.serve-icon i {
    font-size: 2.5rem;
    color: #68CBE0;
}

.serve-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.serve-list {
    list-style: none;
    padding: 0;
}

.serve-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #64748b;
}

.serve-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #68CBE0;
    font-size: 1.2rem;
}

/* How It Works */
.how-section {
    padding-bottom: 50px;
    background: white;
}

.aboutstep-card {
    text-align: center;
    padding: 30px;
    position: relative;
}

.aboutstep-number {
    width: 60px;
    height: 60px;
    background: #68CBE0;
    color: white;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(0, 181, 226, 0.3);
}

.aboutstep-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card p {
    color: #64748b;
}

/* Why Neev */
.why-section {
    padding: 80px 0;
    background: #16142B;
    color: white;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path d="M10,50 Q30,30 50,50 T90,50" stroke="white" fill="none" stroke-width="2"/></svg>') repeat;
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-item i {
    font-size: 2rem;
    color: #68CBE0;
    margin-bottom: 15px;
}

.why-item h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.why-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Green Impact Section */
.green-section {
    padding: 80px 0;
    background: white;
}

.impact-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.impact-stat {
    flex: 1;
    min-width: 150px;
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    color: #68CBE0;
    line-height: 1;
}

.impact-label {
    color: #64748b;
    font-weight: 500;
}

.green-list {
    list-style: none;
    padding: 0;
}

.green-list li {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
}

.green-list li::before {
    content: '🌱';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.contribution-list {
    list-style: none;
    padding: 0;
}

.contribution-list li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.contribution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #68CBE0;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: #ffffff;
}

.comparison-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.comparison-col h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.ev-header {
    color: #68CBE0;
}

.petrol-header {
    color: #64748b;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.ev-value {
    color: #68CBE0;
    font-weight: 700;
}

.petrol-value {
    color: #64748b;
}

.quote-banner {
    background: linear-gradient(135deg, #68CBE0, #0098c0);
    color: white;
    padding: 30px;
    border-radius: 20px;
    margin-top: 40px;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

/* Mission Vision */
.mission-section {
    padding: 80px 0;
    background: white;
}

.mission-card, .vision-card {
    background: #f8fafc;
    border-radius: 30px;
    padding: 50px;
    height: 100%;
    border: 1px solid #e1e6eb;
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    border-color: #68CBE0;
    box-shadow: 0 20px 40px rgba(0, 181, 226, 0.1);
}

.mission-icon, .vision-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 181, 226, 0.1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mission-icon i, .vision-icon i {
    font-size: 2.5rem;
    color: #68CBE0;
}

.mission-card h3, .vision-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-grids .col-sm-6{ margin-bottom: 24px; }

/* HERO */
.blog-detail-hero{
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('../images/blog-banner.jpg') center/cover no-repeat;
  padding: 120px 0;
  color: #fff;
  text-align: center;
}

.blog-detail-hero h1{
  font-size: 42px;
  font-weight: 700;
  margin: 20px 0;
}

.blog-badge{
  background: linear-gradient(135deg, #68cbe0, #4bb8d4);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 14px;
  display: inline-block;
}

.blog-meta{
  opacity: 0.85;
  font-size: 14px;
}

/* CONTENT */
/* BLOG DETAIL SECTION */
.blog-detail {
  background: #ffffff;
  position: relative;
}

/* Improve Content Width Feel */
.blog-detail .col-lg-8 {
  max-width: 820px;
}

/* Typography Enhancement */
.blog-detail p {
  font-size: 17px;
  line-height: 1.4;
  color: #444;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.blog-detail .lead {
  font-size: 22px;
  font-weight: 500;
  color: #222;
  margin-bottom: 25px;
  line-height: 32px;
}

/* Headings Styling */
.blog-detail h4 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

/* Gradient underline for headings */
.blog-detail h4::after {
  content: "";
  width: 60%;
  height: 3px;
  position: absolute;
  bottom: -6px;
  left: 0;
  background: linear-gradient(90deg, #68cbe0, #4bb8d4);
  border-radius: 50px;
}

/* Lists Styling */
.blog-detail ul {
  padding-left: 18px;
  margin-bottom: 25px;
}

.blog-detail ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #555;
  position: relative;
  padding-left: 10px;
}

/* Image Styling */
.blog-detail img {
  border-radius: 16px;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.blog-detail img:hover {
  transform: scale(1.02);
}

/* Quote Styling */
blockquote {
  background: linear-gradient(135deg, rgba(104,203,224,0.08), rgba(104,203,224,0.15));
  border-left: 4px solid #68cbe0;
  padding: 25px;
  border-radius: 14px;
  font-size: 18px;
  font-style: italic;
  color: #333;
  position: relative;
  margin: 40px 0;
}

/* Big Quote Icon */
blockquote::before {
  content: "“";
  font-size: 60px;
  position: absolute;
  top: -15px;
  left: 15px;
  color: #68cbe0;
  opacity: 0.2;
}

/* Share Section */
.share-box {
  padding: 20px;
  border-radius: 14px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.share-box span {
  font-weight: 500;
  color: #333;
}

.share-btn {
  padding: 8px 18px;
  border-radius: 50px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  text-decoration: none;
  font-size: 14px;
  color: #333;
  transition: 0.3s ease;
}

/* Gradient hover effect */
.share-btn:hover {
  background: linear-gradient(90deg, #68cbe0, #4bb8d4);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Smooth Animations on Scroll (Optional) */
.blog-detail h4,
.blog-detail p,
.blog-detail ul,
blockquote {
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}

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

/* Responsive Improvements */
@media (max-width: 768px) {
  .blog-detail p {
    font-size: 15px;
  }

  .blog-detail .lead {
    font-size: 18px;
  }

  .blog-detail h4 {
    font-size: 20px;
  }
}

/* RELATED */
.related-posts{
  background: #f8fafb;
}


/* HERO */
.legal-hero {
  background: linear-gradient(135deg, #68cbe0, #4bb8d4);
  padding: 60px 0;
  color: #fff;
}

.legal-hero h1 {
  font-size: 40px;
  font-weight: 700;
}

.legal-hero p {
  opacity: 0.9;
  margin-top: 10px;
}

/* Wrapper */
.legal-wrapper {
  background: #ffffff;
}

/* Sidebar */
.legal-sidebar {
  position: sticky;
  top: 100px;
  background: #f8fafc;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.legal-sidebar a {
  display: block;
  padding: 8px 0;
  text-decoration: none;
  color: #333;
  font-size: 15px;
  transition: 0.3s ease;
}

.legal-sidebar a:hover {
  color: #68cbe0;
  padding-left: 6px;
}

/* Content */
.legal-content section {
  margin-bottom: 40px;
}

.legal-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
}

.legal-content h3::after {
  content: "";
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #68cbe0, #4bb8d4);
  position: absolute;
  bottom: -6px;
  left: 0;
  border-radius: 50px;
}

.legal-content p,
.legal-content li {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

.legal-content ul {
  padding-left: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .legal-sidebar {
    position: relative;
    top: 0;
  }
}


/*------------------media css------------------*/

@media (max-width:1180px){
.navbar-toggler{ color: #fff; }
.navbar-expand-xl .navbar-nav .nav-item{ width: 100%; }
.navbar-expand-xl .navbar-nav .nav-link{ width: 100%; text-align: left; padding: 10px 0; }
.navbar-nav .nav-item:last-child .nav-link{ width: auto; display: inline-block; }
.modal-lg, .modal-xl { --bs-modal-width: 90%; }
.banner-title{ font-size: 66px; }
.banner-text p{ max-width: 100%; }
.container{ max-width: 96%; }
.common-btn{ padding: 16px 20px; font-size: 15px; }
.ops-grid{ gap: 10px; }
footer .container{ max-width: 96%; }

}

@media (max-width:1024px){
.banner-title span{ font-size: 42px; }
.banner-title { font-size: 56px; }
.title{ font-size: 42px; }
.title-col{ margin-bottom: 40px; }
.cta-section a {
    width: 100%;
    text-align: center;
    margin: 5px 0px !important;
}
.who-text { padding-left: 0px; }
.pa-80 { padding: 50px 0; }
.pb-80 { padding-bottom: 50px; }
.pt-80 { padding-bottom: 50px; }
.footer-name img { max-width: 300px; }
.hero-title{ font-size: 3rem; }
.why-grid{ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
#sustainability-slider img{ height: 500px; object-fit: cover; }
.ops-grid{ grid-template-columns: repeat(1, 1fr); }


}

@media (max-width:953px){
.banner-text p{ font-size: 16px; line-height: 24px; }
.rates-4cols{ height: auto; margin-bottom: 24px; }
.green-card{ height: auto; margin-top: 24px; }
.cta-section a{ width: auto; text-align: center; margin: 0px 5px !important; }
.contact-conten {
    padding-left: 0px;
    padding-right: 0px;
}
.about-hero .hero-subtitle { max-width: 100%; }
.about-hero img{ width: 100%; margin-top: 28px; }
.story-card{ padding: 30px; }
.aboutstep-card{ padding: 0px; }
.mission-card, .vision-card{ padding: 30px; }
.investor-hero{ padding: 80px 0 0px; }
.ops-grid{ grid-template-columns: repeat(2, 1fr); }
.model-card{ margin-top: 24px; height: auto !important; }
.innerfooter-links{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px;}
.innerfooter-links p { width: 100%; }
.legal-hero{ padding: 30px 0 20px; }



}

@media (max-width:768px){
.banner-title { font-size: 42px; }
.banner-title span { font-size: 30px; }
.banner-text p {
    font-size: 14px;
    line-height: 20px;
}
.common-btn {
    padding: 13px 20px;
    font-size: 13px;
}
.title { font-size: 36px; }
.title-para { font-size: 17px; }
.rates-txt h3 { font-size: 20px; }
.rates-txt p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
}
.sustainability-section h2 { font-size: 28px; }
.modal-form.p-4.p-md-5 {
    padding: 2rem !important;
}
.sustainability-text h1{ font-size: 62px; }
.innerbanner-pic img{ height: 500px !important; object-fit: cover; }


}


@media (max-width:570px){
.banner-text {
    max-width: 100%;
    flex: 0 0 100%;
    order: 2;
    text-align: center;
}
.banner-vector{  max-width: 100%; flex: 0 0 100%; order: 1; margin-bottom: 20px; }
.banner{ padding-bottom: 40px; }
.card-img{ display: none; }
.custom-card h2{ max-width: 100%; }
.card-text{ max-width: 100%; }
.title-para{ margin: 10px auto 5px; }
.green-card h3{ font-size:26px; }
.sustainability-text h1 { font-size: 34px; }
.sustainability-text p{ font-size: 20px; margin-bottom: 5px; }
#sustainability-slider img{ height: 250px; }
.who-text{ margin-top: 30px; }
.accordion-item{ border: 1px solid #ccc !important; border-radius: 12px !important; }
.faq-box{ background: none; padding: 0px; box-shadow: none; }
footer .col-6 {
    flex: 0 0 auto;
    width: 100%;
}
	.footer-links{
		    margin: 20px 0px;
    border-top: 1px solid;
    padding-top: 20px;
	}
.footer-social { padding-left: 0px; }
.contact-conten {
    margin: 20px 0px;
    border-top: 1px solid;
    padding-top: 20px;
    border-bottom: 1px solid;
}
.footer-links p { margin-bottom: 7px; }
.copyright{ flex-direction: column; line-height: 29px; margin-top: 0px; }
.innerbanner-pic img{ height: 300px !important; }
.innerbanner-text{ position: static; background: #eee; padding: 10px 20px; }
.innerbanner-text h1:before{ display: none; }
.hero-title { font-size: 2.3rem; }
.hero-subtitle { font-size: 1rem; }
.story-text{ font-size: 1.2rem; }
.story-card { padding: 20px; }
.story-highlight{ font-size: 1.4rem; }
.serve-card p{ font-size: 18px; }
.serve-card{ padding: 24px; }
.aboutstep-card p{ font-size: 16px; }
.stat-number{ font-size: 1.5rem; }
.stat-label{ font-size: 0.8rem; letter-spacing: 0px; }
.ops-grid { grid-template-columns: repeat(1, 1fr); }
.model-card{ padding: 30px; }
.calculator-result .result-amount{ font-size: 2.6rem; }
.section-title{ font-size: 2rem; font-weight: 600; }
.creative-right{ padding: 30px; }
.tab-btn i {
    display: block;
    font-size: 24px;
}
.tab-btn{ border-radius: 20px; }
.innerbanner-pic { display: none; }
.blog-detail-hero h1 {
    font-size: 37px;
    font-weight: 600;
}
.blog-detail-hero{ padding: 80px 0; }
.marquee__inner span{ font-size: 14px; }


}


