@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

.custom-logo {
  height: 70px;
  width: auto;
}
.nav-link.active {
  color: #3a86ff;
  font-weight: 500;
}
.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

/* Hover */
.nav-link:hover {
  color: #3a86ff;
}

/* Active */
.nav-link.active {
  color: #3a86ff;
  font-weight: 500;
}

/* Underline animation (premium look 🔥) */
/* .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #3a86ff;
  transition: 0.3s;
} */

/* .nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
} */
body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}

/* Agar admin bar nahi hai tabhi margin 0 ho */
html {
    margin-top: 0 !important;
}
.services-section{
	padding: 48px 0;
}
.category-filter-btn.active {
    background: black;
    color: white;
}
/* Jab admin bar ho, to WordPress ko space lene do */
* html body { margin-top: 0 !important; }
@media screen and (max-width: 600px) {
    #wpadminbar { position: fixed !important; }
}




/* Contact Form 7 Custom Styling */
.contact-form-7-custom input[type="text"],
.contact-form-7-custom input[type="email"],
.contact-form-7-custom input[type="tel"],
.contact-form-7-custom textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    background-color: #FFFFFF;
    font-size: 1rem;
    color: #1e293b;
    transition: all 0.3s ease;
    outline: none;
    margin-bottom: 5px;
}

.contact-form-7-custom input:focus,
.contact-form-7-custom textarea:focus {
    border-color: #3b82f6;
    border-width: 2px;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

/* Validation Error Styles */
.wpcf7-not-valid-tip {
    color: #ef4444 !important;
    font-size: 0.875rem !important;
    margin-top: 4px;
    margin-left: 14px;
}

/* Privacy Policy Checkbox Style */
.contact-form-7-custom .wpcf7-list-item {
    margin-left: 0;
}

.contact-form-7-custom input[type="checkbox"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    accent-color: #3a86ff;
}

/* Submit Button Base Style */
.contact-form-7-custom input[type="submit"].shine-btn {
    width: 100%;
    max-width: fit-content;
    height: 3rem;
    padding: 0 2.5rem;
    background-color: #3a86ff !important;
    color: white !important;
    font-weight: 500;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .contact-form-7-custom input[type="submit"].shine-btn {
        width: auto;
    }
}

/* Shine Effect Animation */
.custom-submit-wrapper {
    position: relative;
    display: inline-block;
}

.contact-form-7-custom input[type="submit"].shine-btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 2rem;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-12deg);
    transition: none;
}

.contact-form-7-custom input[type="submit"].shine-btn:hover:after {
    left: 150%;
    transition: all 1s ease;
}

.contact-form-7-custom input[type="submit"].shine-btn:hover {
    background-color: #2563eb !important;
    box-shadow: 0 4px 15px rgba(58, 134, 255, 0.4);
}




/* Container */
.anaxistech-form-clean {
    max-width: 100%;
    padding: 6px;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.field-container {
    flex: 1;
    margin-bottom: 26px;
    position: relative;
}

.full-width {
    width: 100%;
}

/* ── ALL INPUTS & TEXTAREA & SELECT ── */
.clean-input,
.anaxistech-form-clean select,
.anaxistech-form-clean textarea {
    width: 100% !important;
    height: 56px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 12px !important;
    padding: 0 16px !important;
    font-size: 15px !important;
    background: #ffffff !important;
    color: #1f2937 !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    outline: none !important;
    box-sizing: border-box !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

.anaxistech-form-clean textarea {
    height: auto !important;
    padding: 14px 16px !important;
    resize: vertical !important;
}

.clean-input:focus,
.anaxistech-form-clean select:focus,
.anaxistech-form-clean textarea:focus {
    border-color: #3b82f6 !important;
    border-width: 2px !important;
    box-shadow: none !important;
}

/* Placeholder color */
.clean-input::placeholder,
.anaxistech-form-clean textarea::placeholder {
    color: #94a3b8 !important;
    font-size: 15px !important;
}

/* ── DROPDOWN ── */
.dropdown-group {
    position: relative;
    margin-bottom: 4px;  /* Reduced bottom space after label+select */
}

.dropdown-group select.clean-input {
    color: #64748b !important;
    cursor: pointer;
}

/* Custom dropdown arrow */
.dropdown-group::after {
    content: '';
    position: absolute;
    right: 16px;
    bottom: 24px;        /* Changed from top:50% to bottom to sit inside select */
    transform: none;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #64748b;
    pointer-events: none;
}


.dropdown-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #3b82f6;
    margin-bottom: 4px;   /* Reduced gap */
    margin-left: 4px;
}

/* ── SPACING FIX ── */
.field-container {
    flex: 1;
    margin-bottom: 12px;  /* Reduced from 16px */
    position: relative;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 0;     /* Row itself has no margin, field-container handles it */
}

/* ── FILE UPLOAD ── */
.resume-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 8px;
    margin-left: 2px;
}

.file-box {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    min-height: 56px;
    transition: border-color 0.2s;
}

.file-box:hover {
    border-color: #94a3b8;
}

.file-box input[type="file"],
.clean-file-input {
    font-size: 14px !important;
    color: #64748b !important;
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    padding: 0 !important;
    height: auto !important;
}

.clean-file-input::-webkit-file-upload-button {
    background: #3a86ff;
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    margin-right: 12px;
    transition: background 0.2s;
}

.clean-file-input::-webkit-file-upload-button:hover {
    background: #2563eb;
}

/* ── RECAPTCHA ── */
.styled-input-wrapper {
    margin: 8px 0 16px 0;
}

/* ── SUBMIT BUTTON ── */
.custom-submit-wrapper input[type="submit"],
.anaxistech-form-clean input[type="submit"].shine-btn {
    background: #3a86ff !important;
    color: white !important;
    padding: 13px 40px !important;
    border-radius: 50px !important;
    border: none !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: auto !important;
    height: auto !important;
    letter-spacing: 0.3px !important;
}

.custom-submit-wrapper input[type="submit"]:hover,
.anaxistech-form-clean input[type="submit"].shine-btn:hover {
    background: #2563eb !important;
    box-shadow: 0 8px 20px rgba(58, 134, 255, 0.35) !important;
    transform: translateY(-1px) !important;
}

/* ── VALIDATION ERRORS ── */
.wpcf7-not-valid-tip {
    color: #ef4444 !important;
    font-size: 12px !important;
    margin-top: 4px !important;
    margin-left: 4px !important;
}

.wpcf7-not-valid.clean-input {
    border-color: #ef4444 !important;
    border-width: 2px !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}


.portfolio-section {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.portfolio-text {
    width: 50%;
}

.portfolio-image {
    width: 50%;
}

.portfolio-image img {
    width: 100%;
    border-radius: 10px;
}

.swiper {
    width: 100%;
    margin-top: 30px;
}

.card {
    background: linear-gradient(180deg,#EAF2FF,#F8FAFC);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}






.blog-content-pro h1 {
  font-size: 32px;
  font-weight: 700;
  margin-top: 20px;
}

.blog-content-pro h2 {
  font-size: 26px;
  font-weight: 600;
  margin-top: 18px;
}

.blog-content-pro h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 16px;
}

.blog-content-pro p {
  margin-bottom: 14px;
  line-height: 1.7;
}

.blog-content-pro ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 14px;
}

.blog-content-pro ol {
  list-style: decimal;
  padding-left: 20px;
  margin-bottom: 14px;
}

.blog-content-pro li {
  margin-bottom: 6px;
}


/* Tab Buttons Styling */
.tab-btn {
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: #f1f5f9;
  color: #64748b;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
  white-space: nowrap; /* Mobile scroll ke liye zaroori */
  cursor: pointer;
}

.tab-btn:hover {
  background: #0f172a;
  color: white;
  border-color: #0f172a;
}

.tab-btn.active {
  background: #3a86ff; /* Primary Blue */
  color: white;
  border-color: #3a86ff;
  box-shadow: 0 4px 15px rgba(58, 134, 255, 0.3);
}

/* Hidden class override taaki flex restore ho sake */
.tech-group.hidden {
  display: none !important;
}

/* Mobile Scrollbar Hide */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}




.service-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  transition: 0.3s;
  font-weight: 500;
}

.service-btn.active {
  background: #3a86ff;
  color: #fff;
}

.service-btn:hover {
  color: #3a86ff;
}

/* MOBILE CARD */
.service-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
}

.service-content.active {
  max-height: 1000px;
  margin-top: 10px;
}

.mobile-card {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.mobile-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
}


.valuscape {
  filter: brightness(0) saturate(100%) invert(48%) sepia(83%) saturate(2783%) hue-rotate(204deg)
    brightness(101%) contrast(101%);
}
.valuscape-white {
  filter: brightness(0) saturate(100%) invert(100%);
}


.calling {
  filter: brightness(0) saturate(100%) invert(100%);
}

/* Pagination Wrapper Styling */
.pagination-wrapper ul.page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
}

/* Common style for all buttons */
.pagination-wrapper ul.page-numbers li a, 
.pagination-wrapper ul.page-numbers li span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px; /* Full Round */
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Inactive / Numbers Style (React: bg-[#F8FAFC]) */
.pagination-wrapper ul.page-numbers li a {
    background-color: #F8FAFC;
    color: #374151; /* gray-700 */
}

/* Hover Effect */
.pagination-wrapper ul.page-numbers li a:hover {
    background-color: #f1f5f9; /* gray-100 */
}

/* Active Page Style (React: bg-[#3a86ff]) */
.pagination-wrapper ul.page-numbers li span.current {
    background-color: #3a86ff;
    color: white;
}

/* Prev/Next Buttons (React Style) */
.pagination-wrapper ul.page-numbers li a.prev,
.pagination-wrapper ul.page-numbers li a.next {
    background-color: #3a86ff;
    color: white;
}

.pagination-wrapper ul.page-numbers li a.prev:hover,
.pagination-wrapper ul.page-numbers li a.next:hover {
    opacity: 0.9;
}


/* Inquiry Specific Styles */
.inquiry-form-container .inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

@media (max-width: 600px) {
    .inquiry-form-container .inquiry-grid { grid-template-columns: 1fr; }
}

.inquiry-form-container input, 
.inquiry-form-container select, 
.inquiry-form-container textarea {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    background-color: #fff !important;
    color: #374151 !important;
    outline: none !important;
}

.inquiry-form-container input:focus, 
.inquiry-form-container select:focus {
    border-color: #3a86ff !important;
    box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.1) !important;
}

.inquiry-form-container textarea {
    height: 110px !important;
}

/* Submit Button Black Style as per Image */
.inquiry-form-container .inquiry-submit-btn input {
    width: 100% !important;
    background-color: #000 !important;
    color: #fff !important;
    padding: 14px !important;
    border-radius: 9999px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    cursor: pointer !important;
    border: none !important;
    margin-top: 10px !important;
    transition: all 0.3s ease;
}

.inquiry-form-container .inquiry-submit-btn input:hover {
    background-color: #222 !important;
    transform: translateY(-1px);
}

/* Form success message handle */
.wpcf7-response-output {
    margin: 15px 0 0 0 !important;
    padding: 10px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
}