/* ---------- GLOBAL ---------- */

/* Global Font */
body, p, a, li, span, button {
    font-family: "Poppins", sans-serif;
    color:white;
    line-height: 1.6;
    font-weight: 400;
}
a {
    color: rgb(255 255 255) !important;
    text-decoration: none !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Recommended Heading Sizes */
h1 { font-size: 42px; }
h2 { font-size: 34px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

/* Optional – Slightly bigger section titles */
.section-title, .offer-title, .solutions-title {
    font-size: 36px;
    font-weight: 700;
}

/* ---------- COLORS ---------- */
:root {
    --primary-color: #E30613;
    --secondary-color: #222222;
    --bg-light: #F8F9FA;
    --accent-color: #F1F1F1;
}
p#memo {
    color: black!important;
}
/* ---------- HEADER ---------- */
.header {
    height: 80px;
    background: white;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-logo {
    width: 149px;
    
}

/* Desktop Menu */
.navbar-expand-lg .navbar-nav {
    flex-direction: row;
    gap: 13px;
}



 
/* Nav Links */
.nav-link {
    font-weight: 500;
    color: var(--secondary-color) !important;
    padding: 10px 15px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.order-btn {
    background: #e32239;
    color: white;
    padding: 10px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    margin-right: 108px;
}

.order-btn:hover {
    background: #e32239;
}

/* Desktop collapse: remove forced flex */
.navbar-expand-lg .navbar-collapse {
    flex-basis: auto;
    font-size: 17px;
    font-weight: 500;
}
a {
    color: rgb(255 255 255);
    text-decoration: none;
}
.shadow {
    box-shadow: none!important;
}
.solution-icon {
    width: 46px;
    height: 46px;
}

@media (max-width: 768px) {
    .solution-icon {
        width: 46px;  
        height: 38px; 
    }
}
@media (max-width: 991px) {

    /* Sirf logo ko left rakho */
    .navbar-brand {
        margin-right: auto !important;
        margin-left: 0 !important;
        text-align: left;
    }

    .header-logo {
        margin-left: 0 !important;
    }

}@media (max-width: 991px) {

    /* Navbar ko stable rakho */
    .navbar {
        position: relative;
    }

    /* Logo hamesha LEFT & FIX rahe */
    .navbar-brand {
        position: relative;
        z-index: 1100;
        margin-right: auto !important;
        margin-left: 0 !important;
    }

    .header-logo {
        margin-left: 0 !important;
    }

    /* Toggle button RIGHT me hi rahe */
    .navbar-toggler {
        margin-left: auto;
        z-index: 1100;
    }

    /* Toggle click par menu LEFT se open ho,
       logo ko push na kare */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 15px 20px;
        z-index: 1000;
    }

    /* Menu items LEFT aligned */
    .navbar-nav {
        text-align: left;
    }
}
.navbar-toggler-icon.open {
  background-image: none;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
.navbar-toggler-icon.open::after {
  content: '×';
}
@media (max-width: 991px) {
  #closeMenu {
    display: block;
  }
}
.content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: black;
}
p.demo {
    color: black;
}
p#demo {
    line-height: 31px;
}


/* ---------- MOBILE FIXES ---------- */
@media (max-width: 991px) {
    /* Align mobile menu items */
    .navbar-nav {
        text-align: left;
        margin: 0;
        padding-left: 0;
    }

    .navbar-nav .nav-link {
        padding: 10px 15px;
        display: block;
    }

    /* Hide desktop Inquiry button */
    .order-btn {
        display: none;
    }

    /* Show Inquiry inside mobile menu */
    .navbar-collapse.show .order-btn {
        display: block;
        margin-top: 10px;
        text-align: left;
    }

   
   
}
@media (max-width: 991px) {
    .navbar-expand-lg .navbar-nav {
        background: white;       /* White background */
        flex-direction: column;  /* Stack links vertically */
        gap: 0 !important;       /* Remove gaps between links */
        width: 100%;             /* Full width menu */
        padding: 10px 0;         /* Optional padding */
   

    }
 
    /* Optional: make menu items full width */
    .navbar-nav .nav-link {
        display: block;
        width: 100%;
        padding: 10px 20px;
    }
}
a.navbar-brand {
    margin-left: 94px;
}


/* ---------- FULL WIDTH BANNER ---------- */
.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #b2040f;
    border-color: #b2040f;
    color: #fff;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        height: auto;
        max-height: 300px;
        width: 100%;
    }

    .about-text h2 {
        font-size: 28px;
    }
}

/* START: OFFER SECTION CSS */

@media (max-width: 768px) {
    .offer-title { font-size: 28px; line-height: 1.3; }
    .offer-description { font-size: 14px; padding: 0 10px; }
    .icon-box { width: 70px; height: 70px; font-size: 30px; }
    .offer-card { padding: 20px; }
    .offer-card h4 { font-size: 18px; }
    .offer-card p { font-size: 14px; }
}

.offer-section {
    padding: 40px 0px 60px 0px;
    background: #f7f7f7;
}

.offer-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.offer-description {
    max-width: 850px;
    margin: 0 auto 25px auto;
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}

.offer-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
   
    transition: 0.3s;
    text-align: center;
    height: 100%;
}

.offer-card:hover { transform: translateY(-6px); }

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 38px;
}

.pink { background: #ffe3ec; }
.yellow { background: #fff3cd; }
.green { background: #d4edda; }

/* END: OFFER SECTION CSS */

/* START: MOBILITY & DIGITAL SOLUTIONS CSS */
.solutions-section {
    background: #ffffff;
    padding: 60px 0;
    border-radius: 12px;
}
.solutions-title {
    font-size: 32px;
    font-weight: 700;
    color: black;
    margin-bottom: 40px;
}
.solution-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}
.solution-icon {
  
    background: #b2040f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
}
.solution-item h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}
.solution-item p {
    font-size: 15px;
    color: #555;
    margin: 0;
}
@media (max-width: 768px) {
    .solutions-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
}
/* END MOBILITY */
.logo-slider {
    background: var(--bg-light);
}

.logo-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.logo-slider img {
    max-height: 60px; /* Adjust logo size */
    object-fit: contain;
    transition: transform 0.3s;
}

.logo-slider img:hover {
    transform: scale(1.1);
}


/* SUCCESS SECTION (unchanged) */
.wrap {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}
.success-container {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 30px;
    align-items: center;
}
.success-img img {
    width: 100%;
    border-radius: 15px;
}
.success-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}
.success-item {
    padding: 14px 18px;
    margin-bottom: 12px;
    background: #f9fafc;
    border-radius: 10px;
    border-left: 5px solid #EA2038;
    font-size: 16px;
}
.success-item:hover {
    background: #fff;
    
    transform: translateX(3px);
}
@media (max-width: 900px) {
    .success-container {
        grid-template-columns: 1fr;
    }
}
.section-area {
		padding: 55px 0;
		background: #ededed;
	}
    /* BOX */
    .info-box {
      background: #ffffff;
      padding: 30px;
      border-radius: 12px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s ease-in-out;
      z-index: 1;
    }

    /* Hover lift */
    .info-box:hover {
      transform: translateY(-5px);
    }

    /* HEADING BAR */
    .heading-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
    }

    .left-border {
      width: 5px;
      height: 40px;
      background: red; /* RED COLOR */
    }

    .title {
      font-size: 26px;
      margin: 0;
      font-weight: 700;
      color: #000; /* BLACK COLOR */
    }

    .content p {
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 12px;
    }

    @media(max-width:768px) {
      .heading-wrap { justify-content: flex-start; }
    }
/* Full section with background image */
.contact-area {
  width: 100%;
  padding: 50px 0;
  background-image: url('assets/img/background.jpg'); /* Your background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
}

/* Centered form container */
.contact-section {
  width: 600px; /* Fixed width form */
  background: rgba(255, 255, 255, 0.95); /* Slightly transparent to see background */
  padding: 35px 30px;
  border-radius: 12px;
  box-sizing: border-box;
  text-align: center;
}

/* Logo styling */
.logo-container img {
  max-width: 150px;
  margin-bottom: 20px;
}

/* Heading */
.contact-section h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #333;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.error {
  border-color: red !important;
}

.error-text {
  color: red;
  font-size: 13px;
  margin-top: -8px;
  margin-bottom: 10px;
  display: none;
}

.contact-section button {
  background: #EA2038;
  border: none;
  padding: 13px 30px;
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  display: block;
  width: 100%;
}

/* Horizontal rows for two inputs */
.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.form-group {
  flex: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-section {
    width: 90%;
    padding: 25px 20px;
  }
  .form-row {
    flex-direction: column;
  }
  .logo-container img {
    max-width: 120px;
  }
}

.footer-heading { font-size: 18px; color: #fff; }
.footer-menu li { list-style: none; margin-bottom: 8px; }
.footer-menu a { color: #ffffff; text-decoration: none; }
.footer-menu a:hover { color: #fff; padding-left: 5px; transition: 0.2s; }
.footer-text { color: #ffffff; line-height: 1.7; }
.social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid #555;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}
.social-icon:hover {
    border-color: #e30613;
    color: #e30613;
}
p#demo {
    line-height: 28px;
    margin-top: 16px;
}
a.footer {
    color: #E32239!important;
}
footer .bi-geo-alt-fill,
footer .bi-envelope-fill,
footer .bi-telephone-fill {
    border: 1px solid #ffffff;
    padding: 6px 10px;
    border-radius: 30px;
    font-size: 14px;
    margin-right: 8px;
}
ul.footer-menu.mt-3 {
    margin-left: -30px;
}

























