/* Hero Section */

.banner-section .carousel-item {
    min-height: 850px;
    
}
		.bg-slide-1 {
    background: #be1622;
}

.bg-slide-2 {
    background: #7f2a90;
}
@media only screen and (max-width: 767px) {
		.banner-section .carousel-item {
    min-height: 530px !important;
    
}
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-card { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px; padding: 2rem; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(220, 39, 67, 0.35);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(
        135deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}


.feature-icon-box i {
    font-size: 1.8rem;
    color: #fff;
}

.feature-title {
    color: white;
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-align: left;
}

.feature-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
    letter-spacing: 0.5px;
}

.connection-badge {
    /* background: rgba(255, 8, 68, 0.1);
            border: 1px solid rgba(255, 8, 68, 0.3);
            border-radius: 50px;
            padding: 1rem 2rem;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem; */
    margin-bottom: 1.5rem;
    /* backdrop-filter: blur(10px); */
}

.connection-badge i {
    font-size: 1.5rem;
    color: #FFD700;
}

.connection-text {
    color: white;
    font-size: 1.35rem;
    font-weight: 600;
}

.cta-button {
    background: #fff;
    color: #000;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* box-shadow: 0 12px 40px rgba(255, 8, 68, 0.4); */
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    /* box-shadow: 0 16px 50px rgba(255, 8, 68, 0.5); */
    color: #fff;
    background: #000;
}

/* Enquiry Form */

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .enquiry-form {
        margin-top: 4rem;
        padding: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.5em;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 4rem 0;
    }

    .badge-premium {
        font-size: 0.75rem;
        padding: 0.5rem 1.2rem;
    }

    .enquiry-form {
        padding: 1.5rem;
    }

    .form-title {
        font-size: 1.5rem;
    }
}
.feature-card {
  display: block; /* default stacked layout */
}

.feature-icon-box {
  margin-bottom: 1.25rem;
}

.feature-content {
  display: block;
}

/* Mobile layout */
@media (max-width: 767px) {
  .feature-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.5rem;
    border-radius: 10px;
  }

  .feature-icon-box {
    width: 32px;
    height: 32px;
    margin-bottom: 0; /* remove desktop spacing */
    flex-shrink: 0;
    border-radius: 6px;
  }
.feature-icon-box i {
    font-size: 1.25rem;
    color: #fff;
}
  .feature-content {
    display: flex;
    flex-direction: column;
  }

  .feature-title {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    line-height: 1;
  }

  .feature-text {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.85;
    display: none;
  }
  .connection-badge{
    margin-bottom: 0 !important;
    margin-top: 10px;
  }
  .connection-text {
    color: white;
    font-size: 1rem;
    font-weight: 500;
}
.banner-section .content-box .title {
        font-size: 26px !important;
}
}
@media (min-width: 768px) {
.banner-section .content-box .title{
    font-size: 65px !important;
}}
