/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e86300;
    --primary-light: #fff2e9;
    --secondary-color: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --border-color: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-primary: 'TT Firs Neue Trl', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}


.container {
  padding: 0 1.25rem;
  max-width: 88.5rem;
  width: 100%;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
}

.nav-brand .logo {
    height: 70px;
    width: 150px;
    transition: var(--transition);
}

.nav-brand .logo:hover {
    transform: scale(1.05);
}
.nav-list {
    display: flex;
    list-style: none;
    gap: 2.4rem;
    margin: 0;
    padding: 0;
    position: relative;
}
.menu-item {
  align-items: center;
   display: flex;
    list-style: none;
    gap: 2.4rem;
    margin: 18px 0 0 0;
        position: relative;
}


.menu-item a{
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 22px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}
.menu-item a:active{
color: var(--primary-color);
}



.menu-item a:hover {
  color: var(--primary-color);
}

.menu-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.menu-item a:hover::after,
.menu-item a.active::after {
  width: 100%;
}

.menu-item a.active {
  color: var(--primary-color);
}

/* === MEGA DROPDOWN === */
.sub-menu {
  display: none;
  position: absolute;
  top: 53px;
  left: 0;
  background: #fff;
  border: 1px solid #e86300;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
  width: 400px;
  z-index: 100;
  justify-content: column;
}

.menu-item.menu-item-has-children:hover > .sub-menu {
      display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
ul li.menu-item ul.sub-menu li{width: 48%;margin:0 0 10px;}
ul li.menu-item ul.sub-menu li a{font-size: 1rem;}
.dropdown-column {
  width: 100%;
}

.dropdown-link {
  display: block;
  text-decoration: none;
  color: var(--text-dark);
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  transition: all 0.3s ease;
}

.dropdown-link:last-child {
  border-bottom: none;
}

.dropdown-link a {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.dropdown-link:hover a {
  color: var(--primary-color);
}

.nav-contact {
    display: flex;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 1.5rem;
    background: var(--primary-light);
    border-radius: 50px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.contact-info:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-icon {
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.contact-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

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

.contact-number {
    font-size: 16px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-number:hover {
    color: var(--secondary-color);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 2rem;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-logo {
    height: 40px;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    margin-bottom: 2rem;
}

.mobile-nav-list li {
    margin-bottom: 1rem;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    padding-left: 1rem;
}

.mobile-contact h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 18px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
}

.mobile-contact-item i {
    color: var(--primary-color);
}

/* Responsive Design */



/* Utility Classes */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #d55400;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(232, 99, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 8px;
}
/* footer */
.footer-section {
    background: var(--primary-light);
    color: var(--text-dark);
    padding: 40px 0 120px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 80px;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links .menu {
    list-style: none;
    padding: 0;
	margin: 0;
}

.footer-links .menu .menu-item {
    margin-bottom: 0.8rem;
}

.footer-links .menu .menu-item a {
    color: var(--text-light);
	font-size: 15px;
	font-weight: 400;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links .menu .menu-item a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    margin: 0;
}

/* footer */
/* testing- make a new css  */

/* Hero Section */
.hero {
    padding: 160px 0 60px;
    background: var(--white);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-text {
    margin-left: 0px;
}

.hero-desc h1 {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero-desc b {
    color: var(--primary-color);
    display: block;
    font-size: 2.4rem;
    margin-top: 0.5rem;
}

.hero-desc p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 95%;
}

.hero-highlights {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--white);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid transparent;
    flex: 1;
    min-width: 0;
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.highlight-icon {
    background: var(--primary-color);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.highlight-text {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.85rem;
    white-space: nowrap;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    margin: 0 auto;
    display: block;
}

.hero-img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 8px;
}

.calculator-section {
    padding: 40px 0;
    background: var(--white);
}

.calculator-section .container {
    max-width: 1400px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

.section-header p {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

.calculator-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

/* .calculator-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
} */


.calculator-body {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    padding: 2rem;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.input-control {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.amount-input {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    background: #fafafa;
}

.amount-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(232, 99, 0, 0.1);
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-light) 100%);
    outline: none;
    transition: var(--transition);
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(232, 99, 0, 0.3);
    transition: var(--transition);
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 12px rgba(232, 99, 0, 0.4);
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 8px rgba(232, 99, 0, 0.3);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.range-labels span:nth-child(2) {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.emi-result {
    background: linear-gradient(135deg, var(--primary-color), #ff7a00);
    color: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(232, 99, 0, 0.3);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.emi-result::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}


.emi-label {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.emi-amount {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.result-details {
    width: 100%;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-item:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.1rem;
}

.detail-label {
    color: var(--text-light);
    font-weight: 500;
}

.detail-value {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.apply-btn {
    width: 100%;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

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

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

/* coose us */

/* .why-choose-section::after {
    content: '';
    position: absolute;
    bottom: -240%;
    left: -30%;
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(232, 99, 0, 0.15) 0%, rgba(232, 99, 0, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.why-choose-section::before {
    content: '';
    position: absolute;
    top: 170%;
    right: -30%;
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(46, 204, 113, 0.15) 0%, rgba(46, 204, 113, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
} */
.why-choose-section .section-header h5{
        font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}
.why-choose-section .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}
.why-choose-section .section-header p {
    text-align: center;
    max-width: 800px;
    margin: 1rem auto 0;
    line-height: 1.6;
}
.features-slider-container {
    position: relative;
    margin-top: 3rem;
    overflow: hidden;
    padding: 0 1rem 4rem 1rem;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

/* Keep your original .feature-card styling */
.feature-card {
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: 250px;
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-light) 0%, #e9fff2 100%);
    transition: left 0.4s ease;
    z-index: 0;
}

.feature-card:hover::before {
    left: 0;
}

.feature-card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--primary-color);
}

.feature-icon img {
    width: 80px;
    height: 80px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon img {
    transform: scale(1.1);
}

.feature-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

.feature-card p {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.feature-card:hover p {
    color: var(--text-dark);
}

/* Swiper Pagination */
.swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    position: static;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
    border-radius: 50%;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* testimoniels */
.testimonials-section {
    padding: 50px 0;
    background: var(--white);
}

.testimonials-section .section-header h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.testimonials-section .section-header h2 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-color);
}

/* ================================
   SWIPER CONTAINER
================================= */
.testimonials-slider-container {
    position: relative;
    margin-top: 3rem;
    padding: 0 2rem 4rem 2rem;
    overflow: hidden;
}

.testimonials-slider.swiper-wrapper {
    display: flex;
}

.testimonial-slide.swiper-slide {
    flex-shrink: 0;
    width: 350px;
}

/* ================================
   TESTIMONIAL CARD
================================= */
.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    text-align: center;
    height: 490px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-quote {
     position: absolute;
    top: 15px; /* 👈 moved INSIDE the card */
    right: 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-light);
}

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

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ================================
   SWIPER PAGINATION
================================= */
.swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    position: static;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
    border-radius: 50%;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
}


/* how to apply */
.section-container {
    padding: 70px 0;
    background: var(--primary-light);
    position: relative;
}

.section-container .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-container .section-header h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-container .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-top: 4rem;
    min-height: 100vh;
}

.steps-content {
    position: sticky;
    top: 150px;
    display: flex;
    justify-content: center;
}

.steps-list {
    max-width: 500px;
    position: relative;
}

/* Connecting line between dots */
.steps-list::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0.5rem;
    width: 2px;
    height: calc(100% - 1rem);
    background: #ddd;
    z-index: 1;
    transition: var(--transition);
}

.step {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 4rem;
    cursor: pointer;
    transition: all 0.5s ease;
    opacity: 0.4;
    transform: translateY(20px);
}

.step:last-child {
    margin-bottom: 0;
}

.step.active {
    opacity: 1;
    transform: translateY(0);
}

.step.active .step-dot {
    background: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 0 10px rgba(232, 99, 0, 0.15);
    z-index: 2;
}

.step.active h3 {
    color: var(--primary-color);
}

.step.active p {
    color: var(--text-dark);
}

/* Inactive steps styling */
.step:not(.active) {
    opacity: 0.7;
}

.step:not(.active) h3 {
    color: #888;
}

.step:not(.active) p {
    color: #999;
}

.step:not(.active) .step-dot {
    background: #ddd;
}

.step-dot {
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.5s ease;
    z-index: 2;
    border: 3px solid var(--primary-light);
}

.step h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 600;
    color: #bbb;
    margin-bottom: 0.8rem;
    transition: all 0.5s ease;
}

.step p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    transition: all 0.5s ease;
}

.image-container {
    position: sticky;
    top: 150px;
    text-align: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-image {
    max-width: 100%;
    max-height: 100%;
    opacity: 0;
    position: absolute;
    transition: all 0.6s ease;
    transform: scale(0.9);
}

.step-image.active {
    opacity: 1;
    transform: scale(1);
}

/* Progress line animation */
.steps-progress {
    position: absolute;
    left: 10px;
    top: 0.5rem;
    width: 2px;
    height: 0%;
    background: linear-gradient(to bottom, var(--primary-color), #ff7a00);
    z-index: 2;
    transition: height 0.6s ease;
}

/* Add progress line element */
.steps-list {
    position: relative;
}

.steps-list::after {
    content: '';
    position: absolute;
    left: 10px;
    top: 0.5rem;
    width: 2px;
    height: var(--progress-height, 0%);
    background: linear-gradient(to bottom, var(--primary-color), #ff7a00);
    z-index: 2;
    transition: height 0.6s ease;
}

/* blog section */
.blog-section {
    padding: 50px 0;
    background: var(--white);
}

.blog-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-section .section-header h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.blog-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 0 auto;
}

.blog-featured {
    display: flex;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid #cccccc;
    padding: 10px;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

/* Featured Card (Left Side) - Vertical Layout */
.featured-card {
    width: 100%;
}

.featured-card .blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light), #e3f2fd);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.featured-card .blog-image img {
    width: 220px;
    height: 220px;
    object-fit: contain;
}

/* Small Cards (Right Side) - Horizontal Layout */
.small-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex: 1;
}

.small-card .blog-image {
    width: 160px;
    height: 230px;
    flex-shrink: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light), #e3f2fd);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.small-card .blog-image img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.blog-content {
    padding: 1.5rem;
}

.small-card .blog-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-category {
    background: #00bcd4;
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-content h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.small-card .blog-content h3 {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.blog-card:hover .blog-content h3 {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.small-card .blog-content h3 {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    -webkit-line-clamp: 2;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.small-card .blog-footer {
    margin-top: auto;
}

.read-more {
    color: #00bcd4;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00bcd4;
    transition: width 0.3s ease;
}

.read-more:hover::after {
    width: 100%;
}

.reading-time {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

/* cta bar */
.cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333333;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--primary-color);
    min-height: 50px;
}

.cta-bar.show {
    transform: translateY(0);
}


.cta-bar-content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 0.7rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.cta-bar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}


.cta-bar-text-content {
    color: var(--white);
}

.cta-bar-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    background: linear-gradient(45deg, var(--primary-color), #ffd700, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-bar-subtitle {
    font-size: 0.9rem;
    color: #cccccc;
    margin: 0;
}

.cta-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-bar-form {
    display: flex;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.cta-bar-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.cta-bar-input {
    padding: 1rem 1.5rem;
    border: none;
    background: var(--white);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    outline: none;
    min-width: 250px;
}

.cta-bar-input::placeholder {
    color: #666;
}

.cta-bar-button {
    background: linear-gradient(135deg, var(--primary-color), #ff7a00);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.cta-bar-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cta-bar-button:hover::before {
    left: 100%;
}

.cta-bar-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(232, 99, 0, 0.4);
}

.cta-bar-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #cccccc;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.cta-bar-close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}
.cta-privacy-message {
    display: none;
    background: #222;
    color: #fff;
    font-size: 0.85rem;
    padding: 0.8rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.cta-privacy-message.show {
    display: block;
}

.cta-privacy-message label {
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
    justify-content: center;
}

.cta-privacy-message input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.cta-privacy-message a {
    color: var(--primary-color);
    text-decoration: none;
}

.cta-privacy-message a:hover {
    text-decoration: underline;
}


/* About us page */
.about-hero {
    background: transparent;
    padding-top: 100px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 60%;
    left: 5%;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, rgba(232, 99, 0, 0.15), rgba(255, 122, 0, 0.08));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
    animation: float 8s ease-in-out infinite reverse;
}

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

/* Typography */
.about-hero-title h1 {
    font-family: var(--font-primary);
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-hero-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Image */
.about-hero-img {
    max-width: 450px;
    width: 100%;
    height: auto;
    margin-top: 60px;
}

/* Statistics Section */
.stats-section {
    padding: 40px 0 60px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 0;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.25), transparent);
}
/* Number style */
.stat-number {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1;
}

/* Label style */
.stat-label {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
    text-transform: capitalize;
    letter-spacing: 0.3px;
    line-height: 1;
}


.about-section {
    padding: 50px 0;
    background: var(--white);
}

.about-section-text .section-header {
    margin-bottom: 2rem;
}

.about-section-text .section-header h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

.about-text-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-text-content p:last-child {
    margin-bottom: 0;
}

.about-section-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-sec-img {
    width: 100%;
    height: auto;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.about-sec-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
/* Vision & Mission Section */
.vision-mission-section {
    padding: 50px 0;
    background: var(--primary-light);
}

.section-header-vision h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

.vision-mission-box {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
}

.vision-mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary-color);
}

.icon-circle img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.vision-mission-box h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.vision-mission-box p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Core Values Section */
.core-values-section {
  background: var(--white, #fff);
}

.core-values-section .section-header h2 {
  font-family: var(--font-primary, 'Poppins', sans-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
}

.value-item {
  background: var(--white, #fff);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid var(--border-color, #eee);
  position: relative;
  text-align: left;
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color, #0056b3);
}

.value-item-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.value-item-icon{
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffcc80, #a5d6a7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-item-content h3 {
  font-family: var(--font-primary, 'Poppins', sans-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color, #0056b3);
  margin: 0;
}

.value-item > p {
  font-size: 0.95rem;
  color: var(--text-light, #555);
  line-height: 1.5;
  margin: 0;
}

.center-image {
  margin-bottom: 2rem;
}

.center-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 15px;
}

.value-item-center {
  background: var(--primary-light, #f3f8ff);
  padding: 1.8rem 2rem;
  border-radius: 12px;
  border: 2px solid var(--primary-color, #0056b3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.value-item-center h3 {
  font-family: var(--font-primary, 'Poppins', sans-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color, #0056b3);
  margin-bottom: 0.8rem;
}

.value-item-center p {
  font-size: 1rem;
  color: var(--text-dark, #333);
  line-height: 1.5;
  margin: 0;
}

/* =======================
   Founders Section
======================= */
.founders-section {
  background: var(--white, #fff);
}

.founders-section-title h2 {
 font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
}

.founders-section-title p {
  font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
  max-width: 700px;
}

.founder-card {
  background: #000;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.founder-card img {
  transition: transform 0.6s ease;
}

.founder-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  color: #fff;
  background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.9) 100%);
  height: 80px;
  overflow: hidden;
  transition: all 0.5s ease;
}

.founder-info h3 {
  font-size: 20px;
  font-weight: 600;
  text-align: left;
}

.founder-info p {
  font-size: 13px;
  color: #ccc;
  margin-top: 10px;
  text-align: left;
}

/* ✨ Hover Effects */
.founder-card:hover .founder-info {
  height: 80%;
  padding: 40px 20px;
  background: #0000008a;
}

/* service page css */

    .service-apply-btn {
    margin-top: 30px;
}

.service-apply-btn a {
    background: var(--primary-color);
    color: #fff;
    padding: 14px 46px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none; /* removes underline */
    display: inline-block; /* makes padding apply correctly */
}
.service-apply-btn a:hover{
    background: #d55400;
   box-shadow: 0 10px 25px rgba(232, 99, 0, 0.3); 
}


 .benefits-section {
  padding: 70px 0;
  /* background: #f8fafc; */
}

.benefits-section h2 {
font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
  text-align: center;
  margin-bottom: 45px;
}

.benefit-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  height: 100%;
  border: 1px solid #e7e9ec;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 20px rgba(0,0,0,0.06);
}

.benefit-icon img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.benefit-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.benefit-card span {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
  display: block;
}






    .documents-section {
      padding: 80px 0;
      text-align: center;
    }

    .documents-section h2 {
         font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
      margin-bottom: 15px;
    }

    .document-card {
      /* background: var(--primary-light, #f3f8ff);
      border-radius: 10px;
      border: 1px solid var(--primary-color);;
      padding: 30px 20px;
      text-align: center;
      transition: all 0.3s ease;
      height: 100%; */
          background: var(--white);
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: 250px;
    width: 100%;
    max-width: 320px;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    }
.document-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-light) 0%, #e9fff2 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.document-card:hover::before {
    left: 0;
}
    .document-card:hover {
      /* transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); */
          box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--primary-color);
    }

    .document-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px auto;
    }

    .document-icon img {
      width: 85px;
      height: auto;
/*       object-fit: contain; */
    }
    .document-card:hover .document-icon img {
    transform: scale(1.1);
}

    .document-card h5 {
          font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 600;
       color: var(--primary-color);
      margin-bottom: 10px;
    }

    .document-card p {
     font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
      margin: 0;
    }


    /* contact us page css */

.contact-section-eca {
      padding: 60px 0;
      text-align: center;
    }

    .contact-section-eca h2 {
      font-weight: 600;
      color: #000;
      margin-bottom: 10px;
    }

    .contact-section-eca p {
      color: #555;
      font-size: 16px;
      margin-bottom: 50px;
    }

    .contact-card {
      border-radius: 16px;
      padding: 40px 20px 0px 20px;
      background: #fff;
      box-shadow: 0 2px 15px rgba(0,0,0,0.05);
      height: 100%;
      transition: all 0.3s ease;
    }

    .contact-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

    .bg-yellow { background-color: #fff8e5; }
    .bg-pink { background-color: #ffeeef; }
    .bg-blue { background-color: #ebf9ff; }

    .contact-card h5 {
      font-weight: 600;
      color: #333;
      margin-bottom: 10px;
    }

    .contact-card a {
      display: inline-block;
      font-weight: 500;
      color: #000;
      text-decoration: none;
      margin-bottom: 20px;
    }

    .contact-card a:hover {
      color: #007bff;
      text-decoration: underline;
    }

    .contact-card img {
      width: 250px;
      height: 250px;
      margin-top: 10px;
    }


  .contact-section {
  background: #fafafa;
  perspective: 1000px;
}

/* === 3D STYLE BOX === */
.shadow-3d {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  transform-style: preserve-3d;
}

.shadow-3d:hover {
  transform: translateY(-10px) rotateX(4deg) rotateY(-3deg);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* === MAP BOX === */
.map-box {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* === FORM STYLE === */
.company-card {
  border: none;
  background: #fff;
  transition: all 0.3s ease;
  height: 100%;
}
.company-card:hover {
  transform: translateY(-5px);
}

/* Header */
.company-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
}
.company-header h2{
  font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.company-heading-tag {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
}
.company-para-tag {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
}

/* Icon Box */
.icon-box {
  width: 50px;
  height: 50px;
  background: var(--light-bg);
  color: var(--primary-color);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.detail-items:hover .icon-box {
  background: var(--primary-color);
  color: #fff;
  transform: rotate(10deg);
}

/* Detail Box */
.detail-items {
  background: #fff;
  transition: all 0.3s ease;
}
.detail-items:hover {
  background: #fffaf5;
  box-shadow: 0 4px 10px rgba(245, 130, 32, 0.15);
}

/* Social Links */
.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.social-link-contact {
  color: #fff;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
/* loan calculator page */
.emi-section {
      padding: 10px 0;
    }

    .emi-content h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    }

    .emi-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    }

    .emi-content ul {
      padding-left: 1.2rem;
      margin-top: 20px;
    }

    .emi-content ul li {
      font-size: 1.1rem;
    color: var(--text-light);
      line-height: 1.8;
      margin-bottom: 8px;
    }
     .emi-content ul li::marker {
        font-size: 1.3rem;
   color: var(--text-light);
      line-height: 1.8;
    }
    .emi-content ul li b{
      font-size: 1.1rem;
   color: var(--text-light);
      line-height: 1.8;
    }

    .emi-image img {
      width: 100%;
      max-width: 400px;
    }


/* career page css */

.career-section {
      padding: 0px 0 60px 0;
      text-align: center;
    }


    .career-section h2 {
   font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
      margin-bottom: 50px;
    }

    .career-card {
     background: #fff8f3; /* soft light blue/green tone */
      /* border: 1px solid var(--primary-color); */
      border-radius: 15px;
      transition: all 0.3s ease-in-out;
      padding: 30px 20px;
      height: 100%;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    }

    .career-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

    .career-card h5 {
    font-family: var(--font-primary);
    font-weight: 600;
        color: var(--primary-color);
    margin-bottom: 15px;
    }

    .career-card p {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
      margin-bottom: 25px;
    }

    .career-card .btn-outline-primary {
      color: #00b6b7;
      border-color: #00b6b7;
      font-weight: 500;
      border-radius: 6px;
      transition: all 0.3s;
    }

    .career-card .btn-outline-primary:hover {
      background-color: #00b6b7;
      color: #fff;
    }

    .rewards-section {
    background: var(--primary-light); /* soft pink */
    padding: 70px 0;
    text-align: center;
    }

    .rewards-section h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
      margin-bottom: 15px;
    }

    .rewards-section p {
      font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
      max-width: 750px;
      margin: 0 auto 50px;
    }

    .reward-logo {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      padding: 15px;
      transition: all 0.3s ease;
      height: 100%;
    }

    .reward-logo:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

    .reward-logo img {
      max-width: 100%;
      height: 70px;
      object-fit: contain;
    }

    .why-join-section {
      background-color: #f7fbff;
      padding: 80px 0;
    }

    .why-join-section h2 {
      font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
      margin-bottom: 30px;
    }

    .progress-dots {
      display: flex;
      gap: 10px;
      margin-bottom: 25px;
    }

    .progress-dots span {
      display: inline-block;
      width: 50px;
      height: 6px;
      border-radius: 3px;
      background-color: #dcdcdc;
      transition: all 0.3s ease;
    }

    .progress-dots span.active {
      background-color: #d55400;
      width: 60px;
    }

    .why-join-section .content h5 {
        font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
      margin-bottom: 15px;
    }

    .why-join-section .content p {
      font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
      margin-bottom: 0;
    }

    .prev-btn {
        background: #fff;
      border: 1px solid #ddd;
      border-radius: 30px;
      padding: 20px 30px;
      font-weight: 500;
      color: #000;
      margin-top: 30px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
     .prev-btn:hover {
    background: #d55400;
      color: #fff;
      box-shadow: 0 6px 14px rgba(0,0,0,0.15);
    }

    .next-btn {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 30px;
      padding: 20px 30px;
      font-weight: 500;
      color: #000;
      margin-top: 30px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .next-btn:hover {
    background: #d55400;
      color: #fff;
      box-shadow: 0 6px 14px rgba(0,0,0,0.15);
    }

    .why-join-section img {
      width: 100%;
      max-width: 450px;
      height: auto;
    }

    .content-item {
      display: none;
    }

    .content-item.active {
      display: block;
      animation: fadeIn 0.6s ease;
    }

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

    .recruiting-section {
      padding: 100px 0;
      background-color: #fff;
    }

    .recruiting-section h2 {
      font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
      margin-bottom: 25px;
    }

    .recruiting-section p {
      font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
      max-width: 95%;
    }

    .recruiting-section img {
      width: 100%;
      max-width: 450px;
      height: auto;
    }

    /* apply form */

    /* .form-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      padding: 40px 30px;
      margin: 140px auto 40px;
      max-width: 1200px;
    }

    .form-card h4 {
      font-weight: 600;
      margin-bottom: 25px;
    }

    .form-control {
      border-radius: 10px;
      padding: 12px 15px;
      font-size: 15px;
    }

    .employment-btn {
      border: 1px solid #ccc;
      border-radius: 50px;
      padding: 8px 25px;
      margin-right: 10px;
      background-color: #fff;
      transition: 0.3s;
    }

    .employment-btn.active, .employment-btn:hover {
      background: var(--primary-color);
      color: #fff;
    }

    .submit-btn {
      background: var(--primary-color);
      color: #fff;
      font-weight: 600;
      border: none;
      padding: 12px 30px;
      border-radius: 8px;
      width: 180px;
      transition: 0.3s;
      font-size: 20px;
    }

    .submit-btn:hover {
      background-color: #00796b;
    }

    .footer-note {
      font-size: 14px;
      margin-top: 30px;
      color: #666;
      text-align: center;
    }

    .footer-note a {
      color: #000;
      text-decoration: none;
      font-weight: 500;
    } */
     /* Card wrapper */
.form-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 40px 30px !important;
  max-width: 1200px;
  margin: 120px auto;
}

/* Title */
.form-card h4 {
  font-weight: 600;
  margin-bottom: 25px;
}

/* Form layout center & fit inside card */

.form-card .forminator-row {
  width: 100%;
  display: flex;
  gap: 20px;
  margin-bottom: 18px !important;
}

/* Make two-column layout like your original form */
.form-card .forminator-col {
  width: 50% !important;
}

/* If one field row, make it full width automatically */
.form-card .forminator-col:only-child {
  width: 100% !important;
}

/* Inputs */
.form-card .forminator-input,
.form-card .forminator-input-with-icon input {
  border-radius: 10px !important;
  padding: 12px 15px !important;
  font-size: 15px !important;
  border: 1px solid #ccc !important;
  background: #fff !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Labels */
.form-card .forminator-label {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

/* Employment Button Style (checkbox converted to button look) */
.form-card .forminator-checkbox-inline {
  border: 1px solid #ccc !important;
  padding: 8px 25px !important;
  border-radius: 50px;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
}

/* Hide checkbox square */
.form-card .forminator-checkbox-box {
  display: none !important;
}

/* Active / Hover state */
.form-card input[type="checkbox"]:checked + span + .forminator-checkbox-label,
.form-card .forminator-checkbox-inline:hover {
  background: var(--primary-color) !important;
  color: #fff !important;
  border-color: var(--primary-color) !important;
}

/* Submit button */
.form-card .forminator-button-submit {
  background: var(--primary-color) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border: none !important;
  padding: 12px 30px !important;
  border-radius: 8px !important;
  font-size: 20px !important;
  width: 180px !important;
  transition: .3s;
}

.form-card .forminator-button-submit:hover {
  background: #00796b !important;
}

/* Remove Forminator wrapper styling */
.form-card .forminator-ui {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  display: block !important;
}

/* Fix Date picker icon */
.form-card .forminator-input-with-icon span {
  top: 50% !important;
  transform: translateY(-50%);
  right: 12px;
}

/* Required star */
.form-card .forminator-required {
  color: #e63b3b;
}
.forminator-ui
 {
    display: block !important;
}

/* Wrapper styling for your card */


/* Label styling */
.contact-form .forminator-label {
    font-weight: 600;
    font-size: 15px;
    color: #2a2a2a;
    margin-bottom: 6px;
}

/* Input field design */
.contact-form .forminator-input,
.contact-form .forminator-input input,
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form input[type="url"] {
    width: 100%;
    padding: 14px 18px !important;
    border-radius: 10px !important;
    border: 1px solid #e6e6e6 !important;
    background: #fafafa !important;
    font-size: 15px;
    outline: none;
    transition: all .2s ease-in-out;
}

/* Input hover & focus */
.contact-form .forminator-input:focus,
.contact-form input:focus {
    border-color: #ff8a00 !important;
    background: #fff !important;
    box-shadow: 0 0 0 2px rgba(255,138,0,0.15);
}

/* Placeholder text */
.contact-form input::placeholder {
    color: #b3b3b3;
}

/* Button style */
.contact-form .forminator-button-submit {
    width: 100%;
    padding: 14px !important;
    border-radius: 10px !important;
    background: #ff8a00 !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    transition: all .25s ease-in-out;
}

/* Button Hover */
.contact-form .forminator-button-submit:hover {
    background: #e67600 !important;
}

/* Spacing between fields */
.contact-form .forminator-field {
    margin-bottom: 18px !important;
}

/* Remove unwanted old Forminator styling (optional) */
.contact-form .forminator-col {
    padding: 0 !important;
}

/* Faq */

.faq-section {
    padding: 80px 0;
    background: transparent; /* removed bg */
}

.faq-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
}

/* Accordion container */
.accordion-item {
    border: none !important;
    border-radius: 12px;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0px 4px 18px rgba(0,0,0,0.08); /* soft premium shadow */
    transition: all 0.3s ease;
}

/* Hover lift effect */
.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 22px rgba(0,0,0,0.12);
}

.accordion-button {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    font-weight: 600;
    padding: 20px 14px;
    color: var(--text-light);
    background: #fff !important;
    box-shadow: none !important;
    transition: all 0.25s ease-in-out;
}

/* Hover effect on header only */
.accordion-button:hover {
    background: rgba(0,0,0,0.04) !important;
    color: var(--primary-color);
}

/* Arrow icon */
.accordion-button::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    background-image: none !important;
    font-size: 15px;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

/* Active icon rotation */
.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

/* Active title color */
.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: #fff !important;
}

/* Panel body */
.accordion-body {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--text-light);
    padding: 0 14px 22px 14px;
    background: #fff;
    animation: fadeIn 0.3s ease;
}
.hero-cta a{
	color: #fff;
}
.calculator-results a {
	color: #fff;
}
.hero-cta .btn-primary:hover {
      background-color: #d96b16;
	color: #fff;
    transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(232, 99, 0, 0.3);}

/* Smooth open animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}
.footer-links .menu-item.menu-item-has-children:hover > .sub-menu{
	display: none;
}
.cta-bar-form a{
	color: #fff;
	text-decoration: none;
}

.translated-ltr .VIpgJd-ZVi9od-ORHb-OEVmcd {
	visibility: hidden;
    display: none;
}
.navbar #google_translate_element {
    display: inline-block;
    position: relative;
    z-index: 999;
}

.navbar .goog-te-gadget {
    font-family: var(--font-primary, "Poppins", sans-serif) !important;
}

.navbar .goog-te-gadget-simple {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e86300, #ff9800);
/*     border-radius: 10px !important; */
    padding: 12px 20px !important;
    border: none !important;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.navbar .goog-te-gadget-simple span {
    color: #fff !important;
    text-decoration: none !important;
	display: none;
}

.navbar .goog-te-gadget-simple:hover {
    background: linear-gradient(135deg, #ff9800, #e86300);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(232, 99, 0, 0.4);
}

.navbar .goog-te-gadget-simple img {
    display: none !important;
}

/* -------------------------------
   DROPDOWN MENU (INSIDE IFRAME)
----------------------------------*/

/* Reset iframe styles */
.navbar .goog-te-menu-frame {
    box-shadow: none !important;
    border: none !important;
}

/* Apply your own dropdown style */
.navbar .goog-te-menu2 {
    background-color: #ffffff !important;
    border-radius: 10px !important;
    border: 1px solid #f0f0f0 !important;
    padding: 6px 0 !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
    font-family: var(--font-primary, "Poppins", sans-serif) !important;
}

/* Dropdown item style */
.navbar .goog-te-menu2-item div {
    color: #333 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 10px 20px !important;
    border: none !important;
    background: transparent !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease !important;
}

/* Remove link blue color */
.navbar .goog-te-menu2-item:link div,
.navbar .goog-te-menu2-item:visited div {
    color: #333 !important;
    text-decoration: none !important;
}

/* Hover effect */
.navbar .goog-te-menu2-item:hover div {
    background-color: #fff3e0 !important;
    color: #e86300 !important;
    transform: translateX(5px);
}

.navbar .goog-te-menu2-item-selected div {
    background-color: #ffe0b2 !important;
    color: #e86300 !important;
    font-weight: 600 !important;
}

/* Indicator (› icon) style */
.navbar .goog-te-menu2-item div .indicator {
    color: #e86300 !important;
    font-size: 15px;
    transition: transform 0.3s ease;
}

.navbar .goog-te-menu2-item:hover .indicator {
    transform: translateX(3px);
}

/* Remove blue focus outlines */
.navbar .goog-te-menu2-item div:focus {
    outline: none !important;
}

/* Dropdown scrollbar style */
.navbar .goog-te-menu2::-webkit-scrollbar {
    width: 8px;
}

.navbar .goog-te-menu2::-webkit-scrollbar-thumb {
    background: #e86300;
    border-radius: 8px;
}

.navbar .goog-te-menu2::-webkit-scrollbar-track {
    background: #f9f9f9;
}

/* icon goolge language */
.navbar .goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed span {
  display: none !important;
}

/* Add a globe icon instead */
.navbar .goog-te-gadget-simple::before {
  content: "\1F310"; /* Unicode globe 🌐 */
  font-size: 20px;
  margin-right: 0px;
}

/* Optional: Style the button */
.navbar .goog-te-gadget-simple {
  background: linear-gradient(135deg, #ff9800, #e86300);
	box-shadow: 0 6px 14px rgba(232, 99, 0, 0.4);
  border: 1px solid #ccc !important;
  border-radius: 50px !important;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
/*   position: absolute;
  left: 60px;
  bottom: -27px; */
} 

.navbar .goog-te-gadget-simple:hover {
     background: linear-gradient(135deg, #ff9800, #e86300);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(232, 99, 0, 0.4);
}


/* === Validation Popup === */
.validation-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.validation-popup-box {
  background: #fff;
  border-radius: 14px;
  padding: 1.8rem 2rem;
  width: 300px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0,0,0,0.25);
  animation: popupFade 0.3s ease-out;
}

.validation-popup-box p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.validation-popup-box button {
  background: var(--primary-color, #e86300);
  color: #fff;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.validation-popup-box button:hover {
  background: #c75500;
  transform: scale(1.05);
}

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



.form-card .forminator-edit-module {
	display: none;
}

.form-card .forminator-error ul li + li {
    display: none !important;
}

/* team member section */

 .team-section {
      background-color: #fff;
      padding: 50px 0;
    }
.team-header h2 {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary-color);
}

.team-header p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem !important;
}

    .team-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background-color: #000;
		height: 690px;
    }

    .team-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

    .team-card img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .team-info {
      padding: 20px;
      color: #fff;
      text-align: left;
    }

    .team-info h5 {
      font-weight: 700;
      margin-bottom: 5px;
    }

    .team-info p {
      font-size: 16px;
    color: #ccc;
    margin-top: 10px;
    text-align: left;
    }


.navbar .goog-te-gadget {
    font-family: var(--font-primary, "Poppins", sans-serif) !important;
    position: relative;
}
*

/* 📱 Responsive Breakpoints */


@media (max-width: 1600px) {
    .container{
        max-width: 88.0rem;
    }
  .hero {
    padding: 150px 0 60px;
  }
  .hero-desc h1 
  {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
  .hero-desc b { 
    color: var(--primary-color);
    display: block;
    font-size: 2.4rem;
    margin-top: 0.5rem;
}
.btn-lg {
   padding: 16px 32px;
    font-size: 18px;
    border-radius: 8px;
}
.about-hero{
    height: 580px;
}
.about-hero-title {
    margin-top: 105px;
}
}

@media (max-width: 1200px) {
  .hero-text { margin-left: 0; }
  .hero-desc h1 { font-size: 2.2rem; }
  .testimonial-slide {
        flex: 0 0 300px;
    }
    .cta-bar-content {
        gap: 2rem;
        padding: 1rem 1.5rem;
    }

    .cta-bar-input {
        min-width: 200px;
    }
}

@media (max-width: 991px) {
  .hero {
    padding: 120px 0 40px;
    text-align: center;
  }
  .hero-highlights {
    justify-content: center;
  }
  .hero-desc h1 { font-size: 2rem; }
  .hero-desc b { font-size: 1.8rem; }
  .steps-container {
        gap: 3rem;
    }
    .cta-bar-content {
        gap: 2rem;
        padding: 1rem 1.5rem;
    }

    .cta-bar-input {
        min-width: 200px;
    }
    .about-hero {
        padding: 80px 0 40px;
		
    }

    .about-hero-title h1 {
        font-size: 2.5rem;
    }

    .about-hero-img {
        max-width: 350px;
    }
    .stat-number {
        font-size: 2rem;
    }
    .about-section {
        padding: 40px 0;
        text-align: center;
    }

    .about-sec-img {
        max-width: 400px;
    }

    .about-section-text .section-header h2 {
        font-size: 2rem;
    }
    .section-header-vision h2 {
        font-size: 2rem;
    }
     .benefit-card {
        margin-bottom: 20px;
      }
      .document-card {
        margin-bottom: 20px;
      }
      .shadow-3d:hover {
    transform: none;
  }
  .map-container iframe {
    height: 300px;
  }
   .emi-section {
        padding: 60px 20px;
      }

      .emi-title {
        font-size: 1.6rem;
        text-align: center;
      }

      .emi-content {
        text-align: center;
      }

      .emi-image {
        text-align: center;
        margin-top: 30px;
      }
      .recruiting-section {
        text-align: center;
      }
      .recruiting-section img {
        margin-top: 40px;
      }
}

@media (max-width: 768px) {
	.mobile-nav-list{
		margin: 0;
		padding: 0;
	}
	.mobile-nav-link{
		color :var(--text-dark) !important;
	}
	
	.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    border: 1px solid #e86300;
    padding: 12px;
    border-radius: 20px;
    background: #ffe6d3;
	}
	.mobile-contact-item a {
		text-decoration: none !important;
		color: #6c757d;
	}
  .hero {
    padding: 100px 0 40px;
  }
  .hero-desc h1 { font-size: 1.8rem; }
  .hero-desc b { font-size: 1.5rem; }
  .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }

    .footer-social {
        justify-content: start;
    }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .nav-brand .logo {
       width: 80px;
		height: auto;
    }
	.nav-list{
	display: none;
	}
    .nav-contact {
    display: flex;
    align-items: center;
    display: none
}
.hero-highlights {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    flex-direction: column;
}
.calculator-body {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 1.5rem;
    }

    .calculator-header h2 {
        font-size: 2rem;
    }

    .calculator-header p {
        font-size: 1rem;
    }

    .emi-amount {
        font-size: 2.5rem;
    }

    .calculator-inputs {
        gap: 2rem;
    }
    .testimonial-slide {
        flex: 0 0 100%;
    }
    .testimonials-slider-container {
        padding: 0 1rem 3rem 1rem;
    }
    .section-container {
        padding: 40px 0;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        min-height: auto;
    }

    .steps-content {
        order: 2;
        position: static;
    }

    .image-container {
        order: 1;
        margin-bottom: 2rem;
        position: static;
        height: 300px;
    }

    .steps-list::before,
    .steps-list::after {
        display: none;
    }

    .step {
        opacity: 1;
        transform: translateY(0);
        margin-bottom: 2rem;
    }

    .step h3 {
        color: var(--text-dark);
    }

    .step p {
        color: var(--text-light);
    }

    .step.active h3 {
        color: var(--primary-color);
    }

    .step-dot {
        border: none;
    }
    .blog-section {
        padding: 40px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: none;
    }

    .blog-sidebar {
        gap: 1.5rem;
    }

    .small-card {
        flex-direction: column;
    }

    .small-card .blog-image {
        width: 100%;
        height: 160px;
    }

    .small-card .blog-image img {
        width: 100px;
        height: 100px;
    }

    .small-card .blog-content {
        padding: 1.2rem;
    }

    .featured-card .blog-image {
        height: 200px;
    }

    .featured-card .blog-image img {
        width: 120px;
        height: 120px;
    }

    .blog-section .section-header h2 {
        font-size: 2rem;
    }

    .blog-title {
        font-size: 1.1rem;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .cta-bar {
        min-height: 70px;
    }

    .cta-bar-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
        text-align: center;
    }

    .cta-bar-left {
        justify-content: center;
    }

    .cta-bar-right {
        justify-content: center;
        flex-wrap: wrap;
    }
	.cta-privacy-message label{
		align-items: flex-start;
		gap: 8px;
		line-height: 1.4;
		justify-content: center;

	}

    .cta-bar-form {
        width: 80%;
        max-width: 300px;
    }

    .cta-bar-input {
        min-width: 160px;
        flex: 1;
    }

    .cta-bar-title {
        font-size: 15px;
    }
	.cta-bar-subtitle {
        font-size: 10px;
    }
    .about-hero {
        text-align: center;
        padding: 60px 0 30px;
		margin: 80px 0;
    }

    .about-hero-title h1 {
        font-size: 2rem;
    }

    .about-hero-img {
        margin-top: 30px;
        max-width: 300px;
    }
    .stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 2px;
        height: 60px;
        background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.25), transparent);
    }
     .stat-item:not(:last-child)::after {
        display: none;
    }

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

    .stat-label {
        font-size: 0.95rem;
    }
    .about-sec-img {
        max-width: 350px;
    }

    .about-section-text .section-header h2 {
        font-size: 1.8rem;
    }
    .icon-circle {
        width: 70px;
        height: 70px;
    }

    .icon-circle img {
        width: 35px;
        height: 35px;
    }

    .vision-mission-box h3 {
        font-size: 1.3rem;
    }

    .vision-mission-box p {
        font-size: 0.95rem;
    }
    .contact-card {
        margin-bottom: 20px;
      }
    .reward-logo img {
        height: 60px;
      }
    .why-join-section {
        text-align: center;
      }

      .why-join-section img {
        margin-bottom: 40px;
      }
      .documents-section::before{
        display: none;
      }
      .documents-section::after{
        display: none;
      }
        .form-card .forminator-row {
    flex-direction: column;
  }

  .form-card .forminator-col {
    width: 100% !important;
  }
	.why-choose-section::before{
		display: none;
	}
	.why-choose-section::after{
		display: none;
	}
	.about-hero-text{
		margin-top: 40px;
	}
	.navbar .goog-te-gadget-simple {
        font-size: 14px !important;
        padding: 8px 14px !important;
    }

    body .goog-te-menu2-item div {
        font-size: 13px !important;
        padding: 8px 14px !important;
    }
	.team-card{
		height: 590px;
	}
}

@media (max-width: 414px) {
	.mobile-nav-link{
		color :var(--text-dark) !important;
	}
  .hero {
    padding: 80px 0 30px;
  }
  .hero-desc h1 { font-size: 1.6rem; }
  .hero-desc b { font-size: 1.3rem; }
  .hero-desc p { font-size: 1rem; }
  .highlight-item {
    flex: 1 1 100%;
    justify-content: start;
  }
	.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    border: 1px solid #e86300;
    padding: 12px;
    border-radius: 20px;
    background: #ffe6d3;
	}
	.mobile-contact-item a {
		text-decoration: none;
		color: #6c757d;
	}
}

.comment-respond {
  background: #f9fafc;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  margin-top: 40px;
}

.comment-respond h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #111827;
}

.comment-form-comment textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 15px;
  font-size: 15px;
  transition: border-color 0.2s;
}

.comment-form-comment textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37,99,235,0.1);
}

.comment-form input[type="submit"] {
  background-color: #2563eb;
  color: #fff;
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s;
}

.comment-form input[type="submit"]:hover {
  background-color: #1e40af;
}

.comment-form label {
  font-weight: 600;
  margin-bottom: 6px;
  display: inline-block;
  color: #374151;
}

/* blog css */

.single-post-area {
  background-color: #fff;
  padding: 60px 0;
}

.post-container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}

.single-post {
  background: #fff;
  line-height: 1.8;
  color: #1f2937;
  font-size: 18px;
}

.post-header {
  margin-bottom: 25px;
}

.post-title {
  font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
  margin-bottom: 8px;
}

.post-meta {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
}

.post-meta .author a {
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
}
.post-meta .author a:hover {
  text-decoration: underline;
}

.post-meta span {
  margin-right: 12px;
}

.post-featured img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 25px;
}

.post-content {
  font-size: 17px;
  color: #111827;
}

.post-content p {
  margin-bottom: 1.4em;
}

.post-content h2,
.post-content h3 {
  color: #0f172a;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 700;
}


.blog-banner {
  background: var(--primary-light);
  color: #fff;
  padding: 120px 0;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}

.blog-banner .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.banner-title {
    font-family: var(--font-primary);
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-color);
  margin-bottom: 10px;
}
.banner-subtitle{
	display: none;
}


/* Add soft fade overlay (optional) */
.blog-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}

.blog-banner * {
  position: relative;
  z-index: 1;
}



ul li.menu-item ul.sub-menu li.menu-qr-code a {
    background: url('../images/pahalpe-QR2.png');
	width: 100px;
	height: 100px;
	text-indent: -9999px;
	border: none;
	
}
ul li.menu-item ul.sub-menu li.menu-qr-code a:hover{
	border: none;
}
.su-menu-qr-code .sub-menu{width:240px;}
ul li.menu-item.su-menu-qr-code ul.sub-menu li {width: 100%; margin: 10px 5px;}
/* .su-menu-qr-code{
	width: 200px;
	height: 200px;
} */



.help-section {
    background-color: #ffffff;
}

/* Main Box */
.help-box {
    background: linear-gradient(90deg, #e9fffd 0%, #feeef3 100%);
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* Button Styling */
.btn-teal {
    background-color: #e86300;
    color: #fff !important;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-teal:hover {
    background-color: #e86300;
    color: #fff;
}

/* Decorative Dots */
.dot {
    width: 14px;
    height: 14px;
    position: absolute;
    border-radius: 50%;
}

.dot-top-left {
    top: 20px;
    left: 20px;
    background-color: #00b3a4;
}

.dot-top-right {
    top: 20px;
    right: 20px;
    background-color: #ff3d7f;
}

.dot-bottom-left {
    bottom: 20px;
    left: 20px;
    background-color: #ff3d7f;
}

.dot-bottom-right {
    bottom: 20px;
    right: 20px;
    background-color: #ffa726;
}

/* ===== Responsive Text ===== */
.responsive-title {
    font-size: 32px;
}

.responsive-text {
    font-size: 18px;
    color: #555;
}

.responsive-email {
    font-size: 20px;
}
/* ===== Tablet View ===== */
@media (max-width: 991px) {
    .responsive-title {
        font-size: 26px;
    }

    .responsive-text {
        font-size: 16px;
    }

    .responsive-email {
        font-size: 18px;
    }
}

/* ===== Mobile View ===== */
@media (max-width: 576px) {
    .help-box {
        border-radius: 18px;
        padding: 30px 15px !important;
    }

    .responsive-title {
        font-size: 20px;
        line-height: 28px;
    }

    .responsive-text {
        font-size: 15px;
    }

    .responsive-email {
        font-size: 17px;
    }

    /* Adjust dots for mobile */
    .dot {
        width: 10px;
        height: 10px;
    }

    .dot-top-left,
    .dot-top-right,
    .dot-bottom-left,
    .dot-bottom-right {
        inset: 10px;
    }
}

.privacy-policy {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
	margin-top: 120px;
}

.privacy-policy h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-policy h3 {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.privacy-policy p {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.privacy-policy ul {
    padding-left: 18px;
}

.privacy-policy li {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 6px;
}
.footer-menu-pahal ul li {
	margin: 0 !important;
}
