/* who we are */
.intro{
  text-align: justify;
}
/* who we are end */


/* ========== Key Highlights Section ========== */
.key-highlights-wrapper {
    margin-top: 2rem;
}

.key-highlights-wrapper .icon-circle {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background-color: var(--theme-color, #ffd700); /* fallback if theme var not defined */
    color: var(--icon-color, #000); /* fallback color for icon */
}

.key-highlights-wrapper .highlight-text {
    flex: 1;
}

.key-highlights-wrapper .highlight-text h5 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 1rem;
}

.key-highlights-wrapper .highlight-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-light, #aaa);
    margin-bottom: 0;
}

/* Responsive spacing if needed */
@media (max-width: 767px) {
    .key-highlights-wrapper .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .key-highlights-wrapper .icon-circle {
        margin-bottom: 10px;
    }
}


/* footer ========= */

.footer-social-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}

.footer-address {
  max-width: 220px;
}

@media (max-width: 767px) {
  .footer-social-wrap {
    flex-direction: column;
  }
}



/* our team card */

.team-grid {
  gap: 30px;
}

.team-card {
  display: flex;
  background: #111111;
  border-radius: 12px;
  overflow: hidden;
  min-height: 200px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

.identity-bar {
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #121212;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 1px;
}

.bg-red { background-color:var(--theme-color); color: #121212;}
.bg-blue { background-color:var(--theme-color);  color: #121212;}


.card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-content h4 {
  margin: 0;
  font-size: 20px;
  /* color: white; */
}

.card-content .role {
  margin-top: 8px;
  /* color: white; */
  font-size: 15px;
}



/* our team end */



.custom-icon-bg {
  width: 36px;
  height: 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #b3de4f, #8bc34a); 
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.custom-icon-bg i {
  color: #000 !important;
  font-size: 16px;
}



/* logo header=== */

.main-brand img, .dsnload__img img {
    width: 135px !important;
    
    /* border-radius: 12px; */
  }

  .footer .logo-wrap .logo {
    width: 135px !important;
}

/* ============  add new css */
/* Reset */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Main Wrapper / Page Content */
#dsn-scrollbar,
.wrapper {
  min-height: 100vh;  /* Full viewport height */
  height: auto;       /* Allow page to grow with content */
}

/* Footer Styling */
footer {
  position: relative;  /* Prevent fixed/absolute issues */
  bottom: 0;
  width: 100%;
  background: #111;
  padding: 20px 0;
  text-align: center;
  color: #fff;
}



/* Parent container overflow fix */
footer, .footer, .footer .container, .footer .d-grid {
    overflow: visible !important;
}

/* Dropdown Parent */
.dropdown-footer {
    position: relative;
}

/* Dropdown Menu - Drop UP instead of down */
.dropdown-footer .dropdown-menu-footer {
    display: none;
    position: absolute;
    bottom: 100%;       /* niche cut hone se bacha ke UP me open karega */
    left: 0;
    background: #0e0e0e;
    border-radius: 6px;
    padding: 10px 0;
    min-width: 220px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Dropdown Items */
.dropdown-footer .dropdown-menu-footer li {
    list-style: none;
}

.dropdown-footer .dropdown-menu-footer li a {
    display: block;
    padding: 8px 15px;
    color: #fff;
    text-transform: capitalize;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-footer .dropdown-menu-footer li a:hover {
    background: #222;
    padding-left: 20px;
}

/* Show on Hover */
.dropdown-footer:hover .dropdown-menu-footer {
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .dropdown-footer .dropdown-menu-footer {
        position: static;
        display: block;
        background: transparent;
        box-shadow: none;
        padding: 0;
        min-width: auto;
    }
    .dropdown-footer .dropdown-menu-footer li a {
        padding: 6px 0;
        background: none;
    }
}


/* coman card   */


.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-top: 40px;
}
.benefit-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.benefit-card:hover {transform: translateY(-12px);box-shadow:0 18px 45px rgba(0,0,0,0.2);}
.benefit-card .icon {width:70px;height:70px;border-radius:50%;background:linear-gradient(135deg,#007BFF,#00A86B);display:flex;align-items:center;justify-content:center;margin:0 auto 18px;font-size:30px;color:#fff;transition:transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;}
.benefit-card:hover .icon {transform: scale(1.25) rotate(10deg);box-shadow:0 8px 20px rgba(0,171,85,0.5);background:linear-gradient(135deg,#00A86B,#007BFF);}
.benefit-card h5 {font-size:20px;font-weight:700;color:#222;margin-bottom:12px;}
.benefit-card p {font-size:15px;color:#666;line-height:1.7;}
.benefit-card::after {content:"";position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,171,85,0.05);border-radius:16px;opacity:0;transition:opacity 0.35s ease;}
.benefit-card:hover::after {opacity:1;}



















