/* Custom extracted styles for seo/seo-services-in-india.blade.php
   Loaded after vendor CSS to preserve UI.
*/

/* Location grid: show up to 3 rows on larger screens, then make it scrollable. On small screens allow natural flow. */
.location-area .locations-wrapper{ overflow-y:auto; overflow-x:hidden; padding-right:12px; padding-bottom:8px; box-sizing:content-box; }

/* Desktop / Laptop: limit to 3 rows */
@media (min-width: 992px){
    .location-area .locations-wrapper{ --loc-row-height: 84px; max-height: calc(var(--loc-row-height) * 3 + 1rem); }
}
/* Tablet */
@media (min-width: 768px) and (max-width: 991px){
    .location-area .locations-wrapper{ --loc-row-height: 92px; max-height: calc(var(--loc-row-height) * 3 + 1rem); }
}
/* Mobile: allow full flow */
@media (max-width: 767px){
    /* Mobile: show 5 rows then enable scrolling */
    .location-area .locations-wrapper{ --loc-row-height-mobile: 86px; max-height: calc(var(--loc-row-height-mobile) * 5 + 1rem); overflow-y:auto; }
    /* add a subtle fade at bottom to hint more content */
    .location-area .locations-wrapper{ position:relative; }
    .location-area .locations-fade{ position:absolute; left:0; right:0; bottom:0; height:48px; pointer-events:none; background:linear-gradient(rgba(255,255,255,0), rgba(255,255,255,0.95)); }

    /* Make sure long names wrap and cards can shrink to avoid horizontal scroll */
    .location-area .location-name{ word-break:break-word; white-space:normal; overflow-wrap:break-word; }
}

/* Themed, thin scrollbar and cross-browser thinness */
.location-area .locations-wrapper{ scrollbar-width:thin; scrollbar-color: rgba(18,176,232,0.95) transparent; }
.location-area .locations-wrapper::-webkit-scrollbar{ width:6px; }
.location-area .locations-wrapper::-webkit-scrollbar-track{ background: transparent; }
.location-area .locations-wrapper::-webkit-scrollbar-thumb{ background: rgba(18,176,232,0.95); border-radius:6px; }
.location-area .locations-wrapper::-webkit-scrollbar-thumb:hover{ background: rgba(18,176,232,1); }

/* Technologies area visual polish */
.technologies-area { padding-top: 28px; padding-bottom: 28px; }
.technologies-area .section-title h2 { font-size: 1.9rem; margin-bottom: 6px; }
.technologies-area .tech-slider .tech-item{
    background:#ffffff;
    border-radius:12px;
    padding:18px 16px;
    box-shadow:0 10px 30px rgba(20,24,28,0.06);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    transition:transform .18s ease, box-shadow .18s ease;
    min-height:110px;
}
.technologies-area .tech-slider .tech-item:hover{ transform:translateY(-8px); box-shadow:0 22px 48px rgba(20,24,28,0.10); }
.technologies-area .tech-item img{ max-width:64px; max-height:64px; margin-bottom:10px; }
.technologies-area .tech-item h6{ font-size:14px; color:#153049; margin:0; font-weight:700; }
.technologies-area .owl-nav{ display:flex; justify-content:flex-end; gap:8px; margin-bottom:6px; }
.technologies-area .owl-nav button{ background:#eef6fb; border:0; width:40px; height:40px; border-radius:10px; color:#0b5174; font-weight:700; }
.technologies-area .owl-dots{ text-align:center; margin-top:10px; }
.technologies-area .owl-dots .owl-dot{ display:inline-block; margin:0 6px; }
.technologies-area .owl-dots .owl-dot span{ width:10px; height:10px; display:inline-block; border-radius:50%; background:#d6e8f3; }
.technologies-area .owl-dots .owl-dot.active span{ background:#0b88bd; box-shadow:0 4px 12px rgba(11,136,189,0.18); }

@media (max-width: 768px){
    .technologies-area .tech-slider .tech-item{ padding:12px; min-height:92px; }
    .technologies-area .tech-item img{ max-width:48px; max-height:48px; }
    .technologies-area{ padding-top:30px; padding-bottom:30px; }
}

/* Industries grid / cards - tightened and scaled down */
.industries-section { padding-top: 40px; padding-bottom: 40px; }
.industries-header { text-align:center; max-width:820px; margin:0 auto; }
.industries-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px 26px;
    margin-top: 22px;
    align-items: stretch;
}
.industries-grid .industry-card{
    background: rgba(255,255,255,0.03);
    border-radius: 14px;
    padding: 20px 14px;
    min-height: 170px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    transition: transform .15s ease, box-shadow .15s ease;
}
.industries-grid .industry-card:hover{ transform: translateY(-6px); box-shadow: 0 18px 36px rgba(0,0,0,0.25); }
.industries-grid .industry-card img{ width:72px; height:72px; object-fit:contain; margin-bottom:14px; }
.industries-grid .industry-card h3{ font-size:18px; color:#fff; margin:0; font-weight:700; line-height:1.2; }

@media (max-width:767px){
    .industries-grid{ grid-template-columns: repeat(2, 1fr); gap:14px; }
    .industries-grid .industry-card{ padding:14px; min-height:140px; }
    .industries-grid .industry-card img{ width:56px; height:56px; margin-bottom:10px; }
    .industries-grid .industry-card h3{ font-size:15px; }
}

/* Hero Banner + Enquiry Form */
.hero-enquiry.simple-banner{ 
    position: relative;
    /* reduced vertical padding to make the hero shorter */
    padding: 26px 0;
    background: radial-gradient(110% 140% at 15% 20%, #1c32a8 0%, #02093c 55%, #01021d 100%);
    overflow: hidden;
}
.hero-enquiry.simple-banner:before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 15%, rgba(255,255,255,0.12), transparent 55%);
    opacity: 0.9;
    z-index: 1;
}
.hero-enquiry .container, .hero-enquiry .row, .hero-enquiry .col-lg-7, .hero-enquiry .col-lg-5 {
    position: relative;
    z-index: 2;
}
.hero-copy{ max-width: 520px; }
.hero-copy h1{
    /* slightly larger and more responsive heading for better readability */
    color: #ffffff;
    font-size: clamp(2.15rem, 3.2vw, 2.9rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 10px;
}
.hero-copy p{ font-size:1.02rem; color:#dbe9ff; margin-bottom:10px; }
.eyebrow-pill{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:6px 16px;
    border-radius:999px;
    background:rgba(255,255,255,0.06);
    color:#aebfff;
    letter-spacing:0.12em;
    font-size:0.8rem;
    text-transform:uppercase;
}
.hero-metrics{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin:12px 0 6px;
}
.metric-card{
    flex:1 1 140px;
    min-width:120px;
    background:rgba(4,11,56,0.55);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:10px;
    padding:10px 12px;
    text-align:left;
}
.metric-card h4{ font-size:1.6rem; font-weight:800; margin-bottom:2px; color:#fff; }
.metric-card span{ color:#c9d8ff; font-size:0.85rem; }
.hero-breadcrumb ol{
    list-style:none;
    display:flex;
    align-items:center;
    gap:10px;
    padding:0;
    margin:10px 0 0;
    color:#fff;
}
.hero-breadcrumb a{ color:#aebfff; text-decoration:none; }
.hero-breadcrumb i{ font-size:1.2rem; color:#5f73ff; }

/* Form UI improvements */
.banner-form-wrapper { max-width: 410px; margin: 0 auto; border-radius: 20px; border:1px solid rgba(21,48,73,0.08); box-shadow: 0 16px 36px rgba(7,18,64,0.22); padding: 1.6rem 1.7rem 1.2rem; }
.form-title h4 { font-size:1.35rem; font-weight:800; color:#153049; letter-spacing:0.3px; margin-bottom:4px; }
.form-title p{ color:#5b6c83; font-size:0.9rem; }
.eyebrow-muted{
    display:inline-block;
    font-size:0.78rem;
    letter-spacing:0.18em;
    text-transform:uppercase;
    color:#2563a6;
    margin-bottom:6px;
}
.lead-form .form-control, .lead-form .form-select { border-radius: 9px; font-size:0.95rem; border:1.2px solid #dfe7ef; background:#f8fafc; transition:box-shadow .18s, border-color .18s; box-shadow:0 1px 5px rgba(20,24,28,0.04); }
.lead-form .form-control:focus, .lead-form .form-select:focus { box-shadow:0 0 0 2px #2563a633; border-color:#2563a6; background:#fff; }
.lead-form textarea.form-control { min-height: 85px; }
.lead-form .btn-primary { background: linear-gradient(135deg,#2563a6,#1b4e8c); border: none; border-radius: 12px; font-weight: 700; letter-spacing:0.2px; font-size:1rem; padding:0.78rem 1rem; box-shadow:0 10px 20px rgba(29,79,138,0.2); }
.lead-form .btn-primary:hover { background: linear-gradient(135deg,#1b4e8c,#163563); }
.lead-form .row.g-2 > [class^='col'] { margin-bottom: 0.4rem; }
.lead-form .form-label{ font-size:0.85rem; font-weight:600; color:#5d6c83; margin-bottom:4px; }
.lead-form .alert { font-size:0.9rem; border-radius:9px; }

@media (max-width: 991px) {
    .hero-copy h1{ font-size:1.85rem; }
    .banner-form-wrapper { padding: 1.5rem; margin-top: 1rem; }
}
@media (max-width: 767px) {
    .hero-enquiry.simple-banner{ padding: 38px 0; }
    .hero-metrics{ gap:10px; }
    .metric-card{ min-width: 44%; }
    .banner-form-wrapper { max-width: 100%; box-shadow: 0 12px 32px rgba(7,18,64,0.18); }
}

/* ==========================
   Pricing Area Styles
   ========================== */
.pricing-area {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.pricing-table-wrapper {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.pricing-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.pricing-table thead th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    border: none;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.pricing-table tbody tr:hover {
    background-color: #f8f9ff;
    transform: scale(1.01);
}

.pricing-table tbody tr.featured-row {
    background: linear-gradient(135deg, #fff9e6 0%, #ffe8cc 100%);
    border-left: 5px solid #ffa500;
}

.pricing-table tbody tr.featured-row:hover {
    background: linear-gradient(135deg, #fff5cc 0%, #ffd999 100%);
}

.pricing-table tbody td {
    padding: 18px 15px;
    font-size: 14px;
    color: #333;
    vertical-align: middle;
}

.pricing-table tbody td strong {
    color: #667eea;
    font-weight: 600;
}

.pricing-note {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 15px 20px;
    margin-top: 30px;
}

.pricing-note p {
    margin: 0;
    color: #856404;
    font-size: 15px;
}

/* Responsive Design for Pricing Table */
@media (max-width: 991px) {
    .pricing-table-wrapper {
        overflow-x: auto;
        padding: 20px;
    }
    
    .pricing-table {
        min-width: 700px;
    }
    
    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 12px 10px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .pricing-table-wrapper {
        padding: 15px;
    }
    
    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .pricing-note p {
        font-size: 13px;
    }
}

/* ==========================
   Location Card Styles - Additional Inline Styles
   ========================== */
.location-card {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.location-card .location-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    border-radius: 6px;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.location-card .location-icon i {
    color: #fff;
    font-size: 14px;
}

.location-card .location-name {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1) !important;
    border-color: #00d4ff !important;
}

.location-card:hover .location-icon {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .location-card {
        padding: 10px 14px !important;
    }
    .location-card .location-name {
        font-size: 13px !important;
    }
}

/* ==========================
   Growth Area Styles
   ========================== */
.growth-area { 
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%); 
    position: relative; 
    overflow: hidden; 
}

/* First Card - Growth Message */
.growth-card-wrapper {
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

.growth-card {
    background: linear-gradient(135deg, #fffbea 0%, #fef3c7 100%);
    width: 100%;
    box-sizing: border-box;
    padding: 60px;
    min-height: 360px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(245, 158, 11, 0.2);
    border: 2px solid #fde68a;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.growth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.growth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 60px rgba(245, 158, 11, 0.3);
}

.growth-header {
    margin-bottom: 30px;
}

.growth-header span {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #d97706;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.growth-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #78350f;
    line-height: 1.3;
    margin-bottom: 0;
}

.growth-content-text {
    text-align: left;
    max-width: 900px;
    margin: 0;
}

.growth-content-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #92400e;
    margin-bottom: 20px;
}

/* Second Card - CTA Section */
.cta-card-wrapper {
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

.cta-card {
    background: linear-gradient(135deg, #0b66d1 0%, #0952a5 100%);
    padding: 60px;
    min-height: 360px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(11, 102, 209, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(6,168,77,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-card-inner {
    position: relative;
    z-index: 2;
    text-align: left;
}

.cta-content {
    width: 100%;
    max-width: 900px;
    margin: 0;
}

.cta-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.25;
}

.cta-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 12px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.cta-buttons .default-btn {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    text-decoration: none;
}

.cta-buttons .default-btn i {
    font-size: 18px;
}

.cta-buttons .btn-bg-two {
    background: #ffffff;
    color: #0b66d1;
}

.cta-buttons .btn-bg-two:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-bg-one {
    background: #ffc107;
    color: #000000;
}

.cta-buttons .btn-bg-one:hover {
    background: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

/* Growth Area Responsive Design */
@media (max-width: 991px) {
    .growth-area {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .growth-card {
        padding: 40px 30px;
    }

    .growth-header h2 {
        font-size: 28px;
    }

    .growth-content-text p {
        font-size: 16px;
    }

    .cta-card {
        padding: 40px 30px;
    }

    .cta-content h3 {
        font-size: 26px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cta-buttons { 
        justify-content: center; 
    }
    
    .growth-card {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .growth-header h2 {
        font-size: 24px;
    }

    .growth-content-text p {
        font-size: 15px;
    }

    .cta-card {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .cta-content h3 {
        font-size: 22px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .default-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ==========================
   Case Details Area Styles
   ========================== */
/* Layout + typography tweaks */
.case-article h2 { 
    font-size: 32px; 
    font-weight: 700; 
    color: #0f1724; 
    margin-bottom: 18px; 
    line-height: 1.3; 
}
.case-article h3 { 
    font-size: 24px; 
    font-weight: 700; 
    color: #0f1724; 
}
.case-article h5 { 
    font-size: 18px; 
    font-weight: 600; 
    color: #0f1724; 
}
.case-article .lead { 
    color: #374151; 
    font-size: 1.1rem; 
    line-height: 1.85; 
    margin-bottom: 0; 
}
.case-article p { 
    color: #4b5563; 
    line-height: 1.8; 
}
.case-article .font-weight-semibold { 
    font-weight: 600; 
    color: #1f2937; 
}

/* Background colors for sections */
.case-article-another { 
    border-radius: 16px; 
    transition: all 0.3s ease; 
}
.bg-light-blue { 
    background: #f0f7ff; 
    border-left: 4px solid #0b66d1; 
}
.bg-light-green { 
    background: #f0fdf4; 
    border-left: 4px solid #06a84d; 
}
.case-article-another:hover { 
    box-shadow: 0 8px 24px rgba(0,0,0,0.08); 
    transform: translateY(-2px); 
}

/* About list styling - First section (filled circle) */
.case-article .about-list { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}
.case-article .about-list li { 
    display: flex; 
    align-items: flex-start; 
    margin-bottom: 16px; 
    color: #374151; 
    font-size: 15.5px; 
    line-height: 1.65; 
}
.case-article .about-list li i { 
    color: #0b66d1; 
    font-size: 24px; 
    margin-right: 14px; 
    flex-shrink: 0; 
    margin-top: 1px; 
}
.case-article .about-list-2 li i { 
    color: #06a84d; 
}

/* Design list styling - Second section (double check) */
.case-article .design-list li i { 
    color: #06a84d; 
    font-size: 26px; 
    font-weight: 700; 
}
.case-article .design-list-2 li i { 
    color: #10b981; 
    font-weight: 700; 
}

/* Card styling */
.case-work-process.card { 
    background: #ffffff; 
    border-radius: 12px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
}

/* SEO Feature Box Inline Styles */
.seo-feature-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.seo-feature-box h5 {
    color: #06a84d;
    margin-bottom: 12px;
    font-size: 18px;
}

.seo-feature-box p {
    margin: 0;
    color: #4b5563;
    line-height: 1.7;
}

/* Responsive adjustments for Case Article */
@media (max-width: 991px) {
    .case-article h2 { 
        font-size: 26px; 
    }
    .case-article h3 { 
        font-size: 20px; 
    }
    .case-article .lead { 
        font-size: 1rem; 
    }
    .case-article-another { 
        padding: 24px !important; 
    }
    .case-work-process.card { 
        padding: 28px !important; 
    }
}

@media (max-width: 576px) {
    .case-article h2 { 
        font-size: 22px; 
    }
    .case-article-another { 
        padding: 20px !important; 
        border-left-width: 3px; 
    }
}

/* ==========================
   Choose Area - Grid Box Styles
   ========================== */
.choose-grid { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 18px; 
    margin-top: 22px; 
    margin-bottom: 40px; 
}

.choose-box { 
    background: #fff; 
    padding: 22px; 
    border-radius: 10px; 
    box-shadow: 0 6px 20px rgba(11,22,50,0.06); 
    flex: 1 1 100%; 
    min-width: 220px; 
}

.choose-box .icon { 
    font-size: 26px; 
    color: #0b66d1; 
    margin-right: 12px; 
}

.choose-box h4 { 
    margin: 0 0 8px; 
    font-size: 18px; 
}

.choose-box p { 
    margin: 0; 
    color: #586270; 
}

@media (min-width: 576px) { 
    .choose-box { 
        flex: 1 1 calc(50% - 18px); 
    } 
}

@media (min-width: 992px) { 
    .choose-box { 
        flex: 1 1 calc(33.333% - 18px); 
    } 
}

@media (min-width: 1400px) { 
    .choose-box { 
        flex: 1 1 calc(20% - 18px); 
    } 
}

/* Service List Styles */
.service-list {
    margin-left: 1.2rem;
    color: #374151;
}

/* SEO Feature Box Styles */
.seo-feature-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.seo-feature-box h5 {
    color: #06a84d;
    margin-bottom: 12px;
    font-size: 18px;
}

.seo-feature-box p {
    margin: 0;
    color: #4b5563;
    line-height: 1.7;
}

/* FAQ List Styles */
.faq-list {
    margin: 0 0 12px 1.2rem;
    padding: 0;
    color: #374151;
}
