﻿body {
    /* Use system fonts as a bridge while Poppins loads */
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-display: swap;
}
.text-justify {
  text-align: justify !important;
}
a{
    text-decoration:none;
}
/* HOME PAGE CSS */
/* Clean Permanent White Nav */
.navbar {
    border-bottom: 1px solid #eee;
}

.navbar .nav-link {
    color: #333 !important;
    transition: color 0.2s ease;
}

.navbar .nav-link:hover {
    color: #4c3ce2 !important; /* Brand Blue on hover */
}
/* Hero Container */

.hero-directory {
    min-height: 450px;
    background-image: url('https://www.whatisfileextension.com/new/img/bg-banner-home-2.jpg');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% auto; /* Forces width to match, but lets height be natural */
}
@media (max-width: 991px) {
    .hero-directory {
        background-image: none !important;
        min-height: 400px; /* Reducing height for mobile so it's not too empty */
        padding: 60px 0;
    }
}

/* Search Bar Styling */
.search-wrapper-directory {
    max-width: 800px;
    margin: 0 auto;
}

.btn-search-main {
    background-color: #ff5a5f; /* The Coral/Red from your screenshot */
    border: none;
    letter-spacing: 1px;
}

.btn-search-main:hover {
    background-color: #e34b50;
    transform: scale(1.02);
}

/* Round Category Icons */
.icon-circle-link {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4c3ce2; /* Brand Blue */
    text-decoration: none;
    transition: all 0.2s ease;
}

.icon-circle-link:hover {
    background: #4c3ce2;
    color: #fff;
    transform: translateY(-3px);
}

/* Mobile Fixes for CWV */
@media (max-width: 768px) {
    .hero-directory {
        clip-path: none; /* Better LCP score on mobile */
        min-height: 500px;
        background-size: 250%; /* Focus on characters */
    }
    .hero-title-main { font-size: 2rem; }
    .search-wrapper-directory { flex-direction: column; }
    .btn-search-main { width: 100%; margin-top: 10px; }
}
/* Card Container Base */
.icon-list-card {
    background-color: #fbfcfe !important; /* Extremely light blue-tinted white */
    
    /* Full 4-sided border by default */
    border: 1px solid #e2e8f0; 
    
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Icon Box Styles */
.icon-box-left {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Specific Soft Colors for Icons */
.bg-soft-blue { background-color: #eef2ff; }
.bg-soft-purple { background-color: #f5f3ff; }
.bg-soft-red { background-color: #fff1f2; }

/* Status Badges */
.bg-success-soft { background-color: #ecfdf5; }
.bg-info-soft { background-color: #eff6ff; }
.bg-danger-soft { background-color: #fef2f2; }

/* HOVER EFFECT: Lift, Border Color, and Icon Pop */
.icon-list-card:hover {
    background-color: #ffffff !important; /* Card turns pure white on hover */
    transform: translateY(-8px);
    
    /* Change the color of all 4 sides on hover */
    border-color: #4c3ce2; 
    
    /* Making the border slightly more prominent on hover (optional) */
    /* border-width: 1px;  Keep this 1px for a sleek look, or 2px for a bold look */
    
    box-shadow: 0 15px 35px rgba(0,0,0,0.08) !important;
}

.icon-list-card:hover .icon-box-left {
    transform: scale(1.1) rotate(5deg);
    background-color: #4c3ce2;
    color: #ffffff !important;
}

/* Responsive Padding */
@media (max-width: 991px) {
    .icon-list-card {
        margin-bottom: 10px;
    }
}
/* Vibrant Gradient Background */
.expert-cta-section {
    /* Using a deep Navy-to-Blue gradient to match your tech theme */
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    min-height: 450px;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 3D Mockup Styling */
.mockup-container {
    position: relative;
    perspective: 1000px;
    height: 500px;
    z-index: 1; /* Keep mockup below the text column */
}

.mockup-img-1, .mockup-img-2 {
    position: absolute;
    width: 280px;
    height: 400px;
    object-fit: cover;
    border: 8px solid white;
    border-radius: 30px;
    transform: rotateY(-20deg) rotateX(10deg);
    transition: transform 0.5s ease;
    filter: hue-rotate(-1deg) saturate(1.2); /* This will shift purples toward blue */
}

.mockup-img-1 {
    top: 0;
    left: 0;
    z-index: 2;
}

.mockup-img-2 {
    top: 40px;
    left: 120px;
    z-index: 1;
    opacity: 0.8;
}

/* Silhouette Background */
.cta-bg-city-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background: url('https://www.whatisfileextension.com/new/img/city-bg.jpg');
    background-size: cover;
    opacity: 0.1;
    mix-blend-mode: overlay;
    z-index: 0;
    pointer-events: none; /* CRITICAL: Allows clicks to pass through this layer */
}
.z-index-content {
    position: relative; /* z-index only works if position is set */
    z-index: 5 !important;
}
/* Guide Card Styling */
.guide-card {
    transition: all 0.3s ease;
}

/* 1. Image Zoom Effect */
.guide-img-wrapper img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.guide-card:hover .guide-img-wrapper img {
    transform: scale(1.1);
}

/* 2. Title Slide Underline Effect */
.guide-title {
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.guide-title::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: #ff5a5f; /* Coral from your theme */
    transition: width 0.3s ease;
}

.guide-card:hover .guide-title::after {
    width: 100%;
}

.guide-card:hover .guide-title {
    color: #ff5a5f;
}

/* 3. Subtle Content Lift */
.guide-card:hover .guide-content {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Performance Fix: Prevent Layout Shifts */
@media (max-width: 991px) {
    .guide-img-wrapper img {
        height: 200px;
    }
}
/* Minimal Footer Styles */
.footer-area {
    background-color: #1a1b1e !important; /* Professional dark gray/black */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-area .opacity-75 {
    transition: opacity 0.2s ease;
}

.footer-area a:hover {
    opacity: 1 !important;
    color: #9a8fff !important; /* Subtle brand hint on hover */
}

/* Mobile centering fix */
@media (max-width: 768px) {
    .footer-area {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}
.select2-results__options {
    max-height: 200px !important; /* Adjust this value to make it shorter */
    overflow-y: auto;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    text-align: left !important;
    padding-left: 10px !important; /* Adjust this to give space for your search icon */
}

/* If you need to nudge the placeholder specifically */
.select2-selection__placeholder {
    margin-left: 0;
}
/* HOME PAGE CSS ENDS HERE */

/*CONTACT US PAGE CSS*/
    .form-control:focus, .form-select:focus {
        background-color: #fff !important;
        box-shadow: 0 0 0 4px rgba(0, 97, 242, 0.1);
        border: 1px solid #0061f2 !important;
    }

    .modern-form label {
        padding-left: 1.25rem;
    }

    .modern-form .form-control, .modern-form .form-select {
        padding: 1.25rem;
        transition: all 0.3s ease;
    }
/*CONTACT US PAGE CSS ENDS HERE*/

/*SUPPORT PAGE CSS*/
    /* Slight animation to make the card feel "Intriguing" */
    .animate-float {
        animation: floating 4s ease-in-out infinite;
    }
    @keyframes floating {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-15px); }
        100% { transform: translateY(0px); }
    }
    .ms-n3 { margin-left: -1rem !important; }
    .bg-primary-subtle { background-color: rgba(0, 97, 242, 0.1) !important; }
    /* Minimal Custom CSS for the 'Intriguing' part */
    .transition-hover {
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    .transition-hover:hover {
        transform: translateY(-10px);
        box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
        border-color: rgba(0, 97, 242, 0.2) !important;
    }
/*SUPPORT PAGE CSS ENDS HERE*/

/* INTERNAL PAGES CSS */
/* Custom CSS to elevate the 'Eye Catchy' factor */  
    /* Custom Styling for the Image Highlight */
    .border-dashed {
        border: 2px dashed #dee2e6 !important;
    }
    
    .hover-lift-img {
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .hover-lift-img:hover {
        transform: scale(1.1) translateY(-10px);
    }

    .tracking-widest {
        letter-spacing: 2px;
    }
        /* Custom CSS to elevate the 'Eye Catchy' factor */
    .letter-spacing-1 { letter-spacing: 1px; }
    .tracking-wider { letter-spacing: 1.5px; }
    
    .shadow-hover { transition: all 0.3s ease; }
    .shadow-hover:hover { 
        box-shadow: 0 1rem 3rem rgba(0,0,0,0.1) !important; 
        border-color: #0d6efd !important;
    }

    .transition-up { transition: transform 0.3s ease; }
    .transition-up:hover { transform: translateY(-8px); }

    /* Make the hex code easy to read */
    code { font-size: 1.1rem; }
    /* Premium Styling for Tabs */
    .nav-pills .nav-link {
        color: #6c757d;
        border-radius: 0;
        transition: all 0.3s ease;
    }

    .nav-pills .nav-link.active {
        background-color: white !important;
        color: #0d6efd !important;
        border-bottom: 3px solid #0d6efd;
    }

    .rounded-top-5 { border-radius: 2.5rem 2.5rem 0 0 !important; }
    .rounded-bottom-5 { border-radius: 0 0 2.5rem 2.5rem !important; }
    .rounded-4 { border-radius: 1.5rem !important; }