:root {
  --logo-red: #e53935; /* Primary red from logo */
  --accent-gradient: linear-gradient(90deg, #e53935 0%, #f87171 100%);
  --accent: #e53935;
  --card-bg: rgba(255,255,255,0.03);
  --glass: rgba(255,255,255,0.04);
  --text: #e6eef8;
  --muted: rgba(255,255,255,0.7);
  --radius: 14px;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

body {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  /* ...other styling... */
}

/* Buttons and accent spans */
.btn-primary {
  background: var(--accent-gradient);
  border: none;
  color: white;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: var(--radius);
}
.btn-primary:hover {
  background: linear-gradient(90deg,#f87171,var(--logo-red));
}

.number_counts p{
color:#ffffff59;
}
.number_counts h2{
    font-size:3rem;
    font-weight:500;
}

.accent-line, .brand-accent {
  background: var(--accent-gradient);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}


/* General resets */
* { box-sizing: border-box; margin:0; padding:0; }

body {
    background: linear-gradient(180deg, var(--bg-from), var(--bg-to));
    color: var(--text);
    min-height: 100vh;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
}

/* Navbar */
header,
footer {
    background: rgba(30,41,59,0.8);
    color: var(--muted);
}
header {
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar-brand { font-weight: 800; color: #fff !important; }
.nav-link { color: var(--muted) !important; font-weight: 500; }
.nav-link:hover, .navbar-brand:hover { color: var(--accent) !important; }

/* muskan_hero and Sections */
.muskan_hero {
    padding: 80px 0 50px 0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.m_logo{
max-width: 235px;
width: 130px;
}

.muskan_hero h1{
    font-size:3rem;
    font-weight: bold;
}
.muskan_hero .accent-line {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.muskan_hero .lead, .section .muted-text {
    color: var(--muted);
    font-size: 1.1rem;
}

/* Card, Feature and Stats Styles */
.card, .feature, .advantage, .industry, .case, .mock {
    background: var(--glass);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.03);
    box-shadow: 0 8px 20px rgba(3,7,18,0.12);
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 130px;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgb(191 27 69 / 25%);
}

.card p{
    color: #ffffff82;
}
.card_muskan p{
      color: #ffffff82;
}
.card svg {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    fill: var(--accent);
    transition: fill 0.3s;
}
.card:hover svg { fill: var(--accent-2); }

/* Feature/Advantage/Service/Industry Layouts */
.features, .advantages, .services, .industries, .case-studies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
    margin-top: 40px;
}
.card_muskan{
    background: var(--glass);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.03);
    box-shadow: 0 8px 20px rgba(3,7,18,0.12);
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}
.card_muskan:hover svg { fill: var(--accent-2); }
.card_muskan svg {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    fill: var(--accent);
    transition: fill 0.3s;
}
/* Stats */
.stats { display: flex; gap: 12px; margin-top: 18px; }
.stat {
    flex: 1;
    background: var(--card-bg);
    padding: 14px;
    border-radius: 12px;
    text-align: center;
}
.stat b { color: #fff; font-size: 18px; }
.stat small { color: var(--muted); }

/* Buttons */
.theme_button {
    background:transparent;
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 12px 18px;
    border-radius:6px;
    box-shadow: none;
    font-weight: 500;
    border: 1px solid #eee;
}
.theme_button:hover {
    background: linear-gradient(90deg,var(--accent-2),var(--accent));
    /* transform: translateY(-2px); */
    box-shadow: 0 6px 18px rgba(204, 15, 47, 0.12);
    background-color:#e53935;
     border: 1px solid #e53935;
}
.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.16);
    color: var(--muted);
    font-weight: 500;
    border-radius: var(--radius);
    padding: 10px 16px;
}
.btn-secondary:hover {
    border-color: #7c3aed;
    color: #fff;
}

/* Kicker, Tag, Pill helpers */
.kicker, .pill, .tag {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--glass);
    color: var(--muted);
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 10px;
}

.accent-line { background: var(--accent-gradient); color: transparent; background-clip: text; -webkit-background-clip: text; }

.mock { margin-bottom: 18px; }
.pulse { animation: pulse 3s infinite; }
@keyframes pulse {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

/* Contact Form */
form input, form textarea {
    background: var(--card-bg);
    border-radius: var(--radius);
    border: none;
    color: var(--text);
    padding: 12px;
    margin-bottom: 12px;
}
form textarea { resize: vertical; min-height: 120px; }

/* Footer */

footer {
    background: #000;
    color: #fff;
    padding: 50px 60px !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* font-size: 14px; */
} 

footer h5 {
          font-size: 18px;
          font-weight: 500;
          margin-bottom: 20px;
          position: relative;
          
      }

      footer ul {
          list-style: none;
          padding: 0;
      }

      footer ul li {
          margin-bottom: 8px;
      }

      footer ul li a {
          color: #ffffff80;
          text-decoration: none;
          transition: 0.3s;

      }

      footer ul li a:hover {
          color: #fff;
      }

      .newsletter input {
          border-radius: 5px 0 0 5px;
          border: none;
          padding: 10px;
          width: 100%;
      }

      .newsletter button {
          border: none;
          background: #444;
          color: #fff;
          padding: 10px 15px;
          border-radius: 0 5px 5px 0;
          transition: 0.3s;
      }

      .newsletter button:hover {
          background: #ff4d00;
      }

      .footer-logo img {
          max-width: 150px;
          margin-bottom: 20px;
      }

      footer p {
          color: #ffffff80;
          font-size: 16px !important;
      }

      footer p {
          margin-bottom: 0px;
      }

/* Responsive Overrides */
@media (max-width:980px){
    .features, .advantages, .services, .industries, .case-studies { grid-template-columns: 1fr 1fr; }
    .muskan_hero { padding: 60px 0 40px 0; }
}
@media (max-width:640px){
    .features, .advantages, .services, .industries, .case-studies { grid-template-columns: 1fr; }
    .muskan_hero { padding: 40px 0 20px 0; }
    .muskan_hero h1 { font-size: 26px; }
}
   .footer {
    background: #000;
    color: #fff;
    padding: 50px 16px !important;
}
.contact-section {
    position: relative;
    background: url(images/form-bg.webp) no-repeat center center / cover;
    padding: 50px 0px !important;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.overlay-text {
  
    text-align: center;
    color: #fff;
    padding: 20px;
 
    width: 100%;
}
.contact-form {
    background: #fff;
    border-radius: 32px;
    padding: 32px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }
}

.btn-custom {
    width: 100% !important;
    background: #222 !important;
    color: #fff !important;
    font-weight: 500 !important;
    border-radius: 50px !important;
    padding: 12px !important;
    transition: 0.3s;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 49px !important;
}
.btn-custom:hover {
    background: #ff4d00 !important;
}


.icon-large {
  font-size: 2.5rem;       /* large size for all icons */
  color: #e53935;          /* your logo red accent color */
  margin-bottom: 12px;
  display: inline-block;
  transition: color 0.3s ease;
}

.icon-large:hover {
  color: #f87171;          /* lighter accent color on hover */
  cursor: pointer;
}

.btn-wrap{
    max-width: 240px;
    margin: auto;
}
.footer-logo{
display: flex;
align-items: center;
height: 100%;
}