.box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.box:hover {
    transform: translateY(-5px);
}

.single_marketing h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.single_marketing ul {
    padding-left: 18px;
}

.single_marketing ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.first-padding
{
    padding: 40px 0 0 0;
}

/* CONTACT PAGE */
.contact_wrapper {
    background: #0e5ca6;
    padding: 50px 0;
}

/* Text white karna padega */
.contact_wrapper h2,
.contact_wrapper p {
    color: #fff;
}

.map_card,
.form_card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.map_card iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    border-radius: 10px;
}

.custom_input {
    height: 45px;
    border-radius: 6px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

textarea.custom_input {
    height: auto;
}

.custom_input:focus {
    border-color: #30aa66 ;
    box-shadow: none;
}

.btn_submit {
    background: #30aa66 ;
    color: #fff;
    padding: 10px 30px;
    border: none;
    border-radius: 6px;
    transition: 0.3s;
}

.btn_submit:hover {
    background: #0e311e ;
}

.section-title h2 {
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
}

/* SECTION BG */
.address_area {
    background: #f8f9fb;
}

/* LEFT TEXT */
.contact_text h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.contact_text p {
    color: #555;
    line-height: 1.8;
}

/* RIGHT CARD */
.location_card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* ITEM */
.location_item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

/* ICON */
.location_item i {
    font-size: 20px;
    color: #ff6a00;
    margin-right: 12px;
    margin-top: 5px;
}

/* TEXT */
.location_item h5 {
    margin: 0;
    font-weight: 600;
}

.location_item p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.contact_info {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.contact_info p {
    margin: 5px 0;
    font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact_text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .map_card iframe {
        min-height: 300px;
    }
}

/*  */
.single_feature img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 15px;
}
.feature_bg {
  display: flex;
  flex-wrap: wrap;
}

.single_feature {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.single_feature img {
  width: 100%;
  height: 200px;       /* fixed image height */
  object-fit: cover;   /* image crop properly */
  margin-bottom: 15px;
}

.feature_bg > div {
  display: flex;
}
/* =============================
   PREMIUM ABOUT PAGE DESIGN
=============================*/

/* Section Titles */
.section-title h2{
    font-weight:700;
    font-size:36px;
    margin-bottom:15px;
}

.section-title p{
    color:#777;
    font-size:17px;
}

/* ABOUT INTRO */
.about_intro{
    background:#ffffff;
}

.about_image img{
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.about_content h2{
    font-weight:700;
    margin-bottom:20px;
}

.about_content p{
    color:#666;
    line-height:1.8;
}

/* CARD DESIGN */
.info-box{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
    transition:all 0.4s ease;
    height:100%;
}

.info-box:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.info-box h4{
    font-weight:600;
    margin-bottom:12px;
}

.info-box p{
    color:#777;
}

/* BENEFITS */
.benefits{
    background:linear-gradient(135deg,#f8faf9,#eef7f2);
}

/* PROCESS */
.process{
    background:#ffffff;
}

/* GLOBAL */
.global{
    background:linear-gradient(135deg,#1e7c4f,#2e9d6f);
    color:#fff;
}

.global h2,
.global p{
    color:#fff;
}

/* Footer Enhancement */
.footer_bg{
    background:rgba(0,0,0,0.75);
    padding:30px;
    border-radius:20px;
}

.footer_logo p{
    color:#ccc;
}

.single_footer h4{
    color:#fff;
}

.single_footer ul li a{
    color:#ccc;
}

.single_footer ul li a:hover{
    color:#2e9d6f;
}