/* Custom extracted CSS for Home page (resources/views/front/home.blade.php)
   Moved from inline <style> blocks to keep Blade clean.
*/

/* 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; }

/* Owl nav and dots styling (tighter) */
.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); }

/* Keep slides slightly tighter on mobile */
@media (max-width:767px){
    .technologies-area .tech-slider .tech-item{ padding:12px; min-height:92px; }
    .technologies-area .tech-item img{ max-width:48px; max-height:48px; }
}

/* Industries grid / cards - tightened and scaled down */
.industries-section { padding-top: 40px; padding-bottom: 40px; }
.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; }
}

/* Reduce spacing around each technologies heading */
.technologies-area h3.text-center { margin-top: 10px; margin-bottom: 10px; }

/* Thank You Modal - Lightweight Toast */
.thank-you-modal {
    position: fixed;
    z-index: 9999;
    right: 18px;
    top: 18px;
    width: auto;
    height: auto;
    background: transparent;
    display: none;
    padding: 0;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.thank-you-modal.is-open {
    opacity: 1;
    transform: translateY(0);
}

.thank-you-modal .modal-content {
    pointer-events: auto;
    background: #ffffff;
    padding: 14px 14px;
    border-radius: 12px;
    text-align: left;
    max-width: 360px;
    width: 360px;
    position: relative;
    box-shadow: 0 14px 40px rgba(17, 24, 39, 0.18);
    border: 1px solid rgba(17, 24, 39, 0.08);
    animation: toastIn 0.22s ease;
}

@keyframes toastIn {
    from { transform: translateY(-8px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.thank-you-modal .modal-close {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 22px;
    font-weight: 400;
    color: #6b7280;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.thank-you-modal .modal-close:hover {
    color: #111827;
    background: rgba(17, 24, 39, 0.06);
}

.thank-you-modal .success-icon { margin-bottom: 0; }

.thank-you-modal .success-icon i {
    font-size: 34px;
    color: #10b981;
    animation: none;
}

.thank-you-modal h2 {
    font-size: 18px;
    margin: 0 0 2px 0;
    font-weight: 800;
    color: #1f2937;
}

.thank-you-modal .modal-text {
    font-size: 13px;
    margin-bottom: 2px;
    color: #374151;
    line-height: 1.55;
}

.thank-you-modal .sub-text {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 0;
}

.thank-you-modal .modal-btn {
    position: absolute;
    right: 38px;
    top: 10px;
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    border: none;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 0;
    transition: all 0.2s ease;
}

.thank-you-modal .modal-btn:hover {
    background: rgba(16, 185, 129, 0.18);
}

@media (max-width: 576px) {
    .thank-you-modal .modal-content {
        width: calc(100vw - 28px);
        max-width: calc(100vw - 28px);
    }

    .thank-you-modal h2 { font-size: 16px; }
    .thank-you-modal .success-icon i { font-size: 32px; }
    .thank-you-modal .modal-text { font-size: 14px; }
}

/* Hero Enquiry / Lead Form Section */
.hero-enquiry.simple-banner {
    background: linear-gradient(135deg, #0b66d1 0%, #0952a5 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

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

.hero-copy h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #ffffff;
}

.hero-copy p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.eyebrow-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.hero-metrics {
    display: flex;
    gap: 25px;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.metric-card {
    text-align: center;
}

.metric-card h4 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.metric-card span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-breadcrumb {
    margin-top: 15px;
}

.hero-breadcrumb ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
    align-items: center;
}

.hero-breadcrumb ol li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.hero-breadcrumb ol li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.hero-breadcrumb ol li a:hover {
    text-decoration: underline;
}

.banner-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.form-title {
    margin-bottom: 25px;
}

.eyebrow-muted {
    display: inline-block;
    background: #f0f7ff;
    color: #0b66d1;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.form-title h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.lead-form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.lead-form .form-control,
.lead-form .form-select {
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.lead-form .form-control:focus,
.lead-form .form-select:focus {
    border-color: #0b66d1;
    box-shadow: 0 0 0 3px rgba(11, 102, 209, 0.1);
    outline: none;
}

.lead-form .btn-primary {
    background: #0b66d1;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lead-form .btn-primary:hover {
    background: #0952a5;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(11, 102, 209, 0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-enquiry.simple-banner {
        padding: 40px 0;
    }

    .hero-copy h1 {
        font-size: 28px;
    }

    .hero-metrics {
        gap: 15px;
    }

    .metric-card h4 {
        font-size: 26px;
    }

    .banner-form-wrapper {
        padding: 25px;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .hero-enquiry.simple-banner {
        padding: 30px 0;
    }

    .hero-copy h1 {
        font-size: 24px;
    }

    .hero-copy p {
        font-size: 14px;
    }

    .hero-metrics {
        gap: 12px;
    }

    .metric-card h4 {
        font-size: 22px;
    }

    .metric-card span {
        font-size: 11px;
    }

    .banner-form-wrapper {
        padding: 20px 16px;
        border-radius: 15px;
    }

    .form-title h4 {
        font-size: 18px;
    }
}

/* Location Card 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:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1) !important;
    border-color: #00d4ff !important;
}

.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;
}

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

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

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

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

/* Pricing Section 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 */
@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;
    }
}

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

.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;
}

.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;
}

@media (max-width: 576px) {
    .cta-buttons { 
        justify-content: center; 
    }
}

.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 */
@media (max-width: 991px) {
    .growth-area {
        padding-top: 40px;
        padding-bottom: 40px;
    }

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

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

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

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

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

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

    .cta-buttons {
        margin-top: 20px;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .growth-card {
        padding: 30px 20px;
        min-height: auto;
    }

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

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

    .cta-card {
        padding: 30px 20px;
        min-height: auto;
    }

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

    .cta-content p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .cta-buttons {
        margin-top: 15px;
        flex-direction: column;
        gap: 10px;
    }

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

/* Case Details Area Styles */
.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; }

.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); }

.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; }

.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; }

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

@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 Grid 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); } 
}

/* Hero Enquiry Section */
.hero-enquiry.simple-banner {
    margin-top: 20px;
}

/* Thank You Modal */
.thank-you-modal {
    display: none;
}

.modal-flex-content {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding-right: 84px;
}
