/* Index Page Custom Styles */

/* Header Styles */
.top-header .col-lg-5.col-md-6 {
    padding-right: 26px;
}

/* Logo Styles */
.logo img,
.mobile-nav .logo img {
    width: 15rem;
}

/* Navigation Styles */
.dropdown-menu {
    min-width: 260px;
    border-radius: 10px;
}

.dropdown-menu > a {
    font-weight: 600;
    color: #007bff;
    padding: 10px 20px;
    display: block;
}

.dropdown-menu .nav-link {
    padding-left: 30px;
}

/* ICEBERG Featured Area */
.iceberg-featured-area {
    background-color: #FFFFFF;
}

.iceberg-logo {
    height: 4.1rem;
   width: 413px;
}

.iceberg-tagline {
    font-size: 22px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

/* Featured Solutions Section */
.featured-solutions-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 50px;
}

.featured-solution-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 350px;
    box-shadow: 0px 0px 15px rgba(10, 71, 226, 0.35);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.solution-badge {
    /* background: #FE9465; */
    color: #222;
    border-radius: 25px;
    font-weight: 600;
    font-size: 2rem;
    padding: 10px 25px;
    display: inline-block;
    margin-bottom: 25px;
}

.featured-solution-card h4 {
    color: #000;
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 1.2rem;
    line-height: 1.3;
}

.featured-solution-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 1.1rem;
    text-align: center;
}

.learn-more-btn {
    background: #E8F4FF;
    color: #2196F3;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

/* Services Cards Section */
.services-cards-area {
    background-color: #f8f8f8fa;
}

.services-badge {
    background: #B3D4FC;
    color: #333;
    padding: 8px 40px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.service-card {
    position: relative;
    width: 417px;
    height: 346px;
    background: #FFFFFF;
    box-shadow: 0px 0px 15px rgba(10, 71, 226, 0.35);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;
}

.service-card.smartsourcing {
    text-align: center;
}

.service-card.development {
    text-align: center;
}

.service-logo img {
    max-width: 280px;
    height: auto;
}

.service-header h3 {
    color: #0E5ED4;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.1;
    text-align:center
}

.service-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 1.1rem;
    margin-top:15px;
}

.contact-sales-btn {
    background: #FE9465;
    color: #222;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 25px;
    display: inline-block;
    text-decoration: none;
    border: none;
}

/* Brand Area */
.brand-area-container {
    margin-bottom: -50px;
    margin-top: -30px;
}

.brand-section-title {
    padding-bottom: 30px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logo img,
    .mobile-nav .logo img {
        width: 12rem;
    }
    
    .featured-solution-card,
    .service-card {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }
    
    .iceberg-logo {
        max-width: 250px;
    }
    
    .service-logo img {
        max-width: 200px;
    }
}

.header_logo {
    font-size: 28px;
    font-family: inherit;
    font-weight: 900;
}

/* Contact Options Styling */
.contact-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-sales-btn {
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
}

.email-btn {
    background-color: #0071dc;
    color: white;
}

.email-btn:hover {
    background-color: #005bb5;
    color: white;
    transform: translateY(-2px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .contact-options {
        flex-direction: column;
    }
    
    .contact-sales-btn {
        width: 100%;
        margin-bottom: 10px;
    }
}