﻿/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* General Styles */
:root {
    --primary-color: #0095d8;
    --secondary-color: #3f3f3f;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --white-color: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --navbar-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--secondary-color);
    line-height: 1.7;
    overflow-x: hidden;
}



.blue-bg {
    background: linear-gradient(135deg, #667eea, #764ba2);
}
.green-bg {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}
.teal-bg {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}
.purple-bg {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}
.orange-bg {
    background: linear-gradient(135deg, #fa709a, #fee140);
}
.red-bg {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
}
.cyan-bg {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
}
.pink-bg {
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
}

.service-item span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Contact Section in Dropdown */
.contact-section {
    border-top: 2px solid #f0f0f0;
    padding-top: 25px;
    margin-top: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: var(--transition);
    margin-bottom: 10px;
}

.contact-item:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #007bb5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 18px;
    color: white;
}

.contact-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark-color);
}

.contact-info p {
    margin-bottom: 0;
    color: var(--gray-color);
    font-size: 0.85rem;
}

/* Backdrop */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: none;
}

.menu-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white-color);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
}

.hero-buttons {
    margin-top: 2rem;
}

.trusted-by {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

/* About Section */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

/* Services Section */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon-wrapper {
    margin-bottom: 1.5rem;
}

.service-card .service-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 24px;
    color: white;
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 149, 216, 0.25);
}



/* Footer Section */
/* CSS Variables for Professional Theme */
:root {
  --primary-color: #0095d8;
  --secondary-color: #6c757d;
  --success-color: #198754;
  --info-color: #0dcaf0;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --white-color: #ffffff;

  --text-color: #495057;
  --text-muted: #6c757d;
  --heading-color: #212529;
  --border-color: #dee2e6;
  --hover-bg: rgba(0, 149, 216, 0.1);

  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-size-base: 1rem;
  --line-height-base: 1.5;

  --border-radius: 0.375rem;
  --box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);

  --transition-base: all 0.3s ease;
}

/* Professional Footer Styles */
.footer {
  background-color: #f8f9fa;
  border-top: 1px solid var(--border-color);
  font-family: var(--font-family-sans-serif);
  color: var(--text-color);
  margin-top: -27px !important;
}

/* Social Media Section */
.footer-social-section {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
}

.footer-follow-text {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.025em;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--text-color);
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: var(--transition-base);
  font-size: 1.25rem;
  border: 1px solid transparent;
}

.social-icon:hover {
  color: var(--primary-color);
  background-color: var(--hover-bg);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

/* Footer Columns */
.footer-column {
  padding: 1.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition-base);
  border: 1px solid transparent;
}

.footer-column:hover {
  background-color: var(--hover-bg);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-lg);
}

.footer-heading {
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  position: relative;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: var(--transition-base);
}

.footer-column:hover .footer-heading {
  color: var(--primary-color);
}

.footer-column:hover .footer-heading::after {
  width: 50px;
}

/* Footer Links */
.footer-links {
  margin: 0;
  padding: 0;
}

.footer-link {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: var(--transition-base);
  display: inline-block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--border-radius);
  width: 100%;
  position: relative;
  font-weight: 500;
}

.footer-link:hover {
  color: var(--primary-color);
  background-color: var(--hover-bg);
  transform: translateX(8px);
  padding-left: 1rem;
}

.footer-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-base);
}

.footer-link:hover::before {
  width: 4px;
}

/* Footer Divider */
.footer-divider {
  border-color: var(--border-color);
  opacity: 1;
  border-width: 2px;
}

/* Footer Bottom */
.footer-bottom {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}

.google-logo-text {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--heading-color);
  font-family: "Product Sans", var(--font-family-sans-serif);
  background: linear-gradient(45deg, #4285f4, #ea4335, #fbbc05, #34a853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-bottom-links {
  align-items: center;
}

.footer-bottom-link {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-base);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  border: 1px solid transparent;
}

.footer-bottom-link:hover {
  color: var(--primary-color);
  background-color: var(--hover-bg);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.footer-help-link {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-base);
  padding: 0.75rem 1.25rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  border: 2px solid var(--border-color);
  background-color: var(--white-color);
}

.footer-help-link:hover {
  color: var(--primary-color);
  background-color: var(--hover-bg);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.footer-help-link i {
  font-size: 1.2rem;
  transition: var(--transition-base);
}

.footer-help-link:hover i {
  transform: scale(1.1);
}

/* Professional Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-column {
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: calc(var(--animation-order, 0) * 0.1s);
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-social-section {
    text-align: center;
  }

  .footer-social-section .d-flex {
    flex-direction: row;
    gap: 1.5rem;
  }

  .footer-social-icons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-column {
    margin-bottom: 2rem;
    padding: 1rem;
  }

  .footer-bottom {
    text-align: center;
    padding: 1rem;
  }

  .footer-bottom .d-flex {
    flex-direction: column;
    align-items: center !important;
    gap: 1.5rem;
  }

  .footer-bottom-links {
    flex-direction: column;
    align-items: center !important;
    gap: 0.75rem !important;
  }

  .footer-help-link {
    justify-content: center !important;
  }

  .google-logo-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 2rem 0;
  }

  .footer-column {
    margin-bottom: 1.5rem;
    padding: 0.75rem;
  }

  .footer-heading {
    font-size: 1.1rem;
  }

  .footer-link {
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus States for Accessibility - Remove unwanted borders on click */
.footer-link:focus:not(:focus-visible),
.footer-bottom-link:focus:not(:focus-visible),
.footer-help-link:focus:not(:focus-visible),
.social-icon:focus:not(:focus-visible) {
  outline: none !important;
  border: none !important;
}

/* Keep focus-visible for keyboard navigation */
.footer-link:focus-visible,
.footer-bottom-link:focus-visible,
.footer-help-link:focus-visible,
.social-icon:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: var(--border-radius);
}

/* Loading States */
.footer-column {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.footer-column:nth-child(1) {
  animation-delay: 0.1s;
}
.footer-column:nth-child(2) {
  animation-delay: 0.2s;
}
.footer-column:nth-child(3) {
  animation-delay: 0.3s;
}
.footer-column:nth-child(4) {
  animation-delay: 0.4s;
}
.footer-column:nth-child(5) {
  animation-delay: 0.5s;
}

/* Professional Enhancements */
.footer-column::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  opacity: 0;
  transition: var(--transition-base);
}

.footer-column:hover::before {
  opacity: 1;
}

.footer-column {
  position: relative;
  overflow: hidden;
}

/* Print Styles */
@media print {
  .footer {
    background-color: white !important;
    color: black !important;
  }

  .footer-link,
  .footer-bottom-link,
  .footer-help-link {
    color: black !important;
  }

}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .footer {
    border-top: 3px solid var(--heading-color);
  }

  .footer-link:hover,
  .footer-bottom-link:hover {
    background-color: var(--heading-color);
    color: var(--white-color);
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}



/* Website Slider */
        .hero-slider {
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1e3a8a 100%);
            height: 100vh;
            position: relative;
        }

        .hero-slider::before {
          padding-top: 100px;
          padding-bottom: 100px;
          padding-left: 30px;
          padding-right: 30px;
          display: none;
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, rgba(30, 58, 138, 0.8) 0%, transparent 100%);
            z-index: 1;
        }

        .carousel-item {
            position: relative;
            z-index: 2;
        }

        .slide-content {
            display: flex;
            align-items: center;
        }

        .tagline {
            color: #06b6d4;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            color: white;
            margin-bottom: 2rem;
        }

        .hero-description {
            font-size: 1.125rem;
            color: #bfdbfe;
            line-height: 1.7;
            margin-bottom: 3rem;
        }

        .cta-form {
            max-width: 500px;
        }

        .form-control {
            padding-left: 2.5rem !important;
            height: 50px;
            border: none;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            border-right: none;
        }

        .btn-proposal {
            height: 50px;
            background: #2563eb;
            border: none;
            border-radius: 0 8px 8px 0;
            font-weight: 600;
            font-size: 1rem;
            padding: 0 2rem;
            transition: all 0.3s ease;
            color: white;
        }

        .btn-proposal:hover {
            background: #1d4ed8;
            color: white;
            transform: translateY(-2px);
        }

        .flow-diagram {
            position: relative;
            padding: 2rem 0;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .diagram-image {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        /* Custom Carousel Controls */
        .carousel-indicators {
            bottom: 30px;
            z-index: 15;
        }

        .carousel-indicators [data-bs-target] {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            border: none;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-indicators .active {
            background-color: #06b6d4;
            transform: scale(1.2);
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            z-index: 15;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-control-prev {
            left: 30px;
        }

        .carousel-control-next {
            right: 30px;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 24px;
            height: 24px;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .slide-content {
                padding: 0px 0px;
            }
            
            .flow-diagram {
                margin-top: 3rem;
            }

            .form-control,
            .btn-proposal {
                border-radius: 8px;
                margin-bottom: 10px;
            }

            .carousel-control-prev,
            .carousel-control-next {
                width: 50px;
                height: 50px;
            }

            .carousel-control-prev {
                left: 15px;
            }

            .carousel-control-next {
                right: 15px;
            }
        }

        .fade-in {
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slide-animation {
            animation: slideIn 0.8s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }


        /* Website home Services Section*/
        .services-section {
            background-color: #EDF9FF;
            padding: 80px 0;
            min-height: 100vh;
        }
        
        .service-card {
            border-radius: 12px;
            padding: 40px 25px;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
            position: relative;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            border: 1px solid #d1d5db;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }
        
        .service-card img {
            width: 180px;
            height: 140px;
            object-fit: contain;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        
        .service-card:hover img {
            transform: scale(1.05);
        }
        
        /* Different Background Colors for Each Service */
        .web-dev-card {
            background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
        }
        
        .ecommerce-card {
            background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
        }
        
        .digital-marketing-card {
            background: linear-gradient(135deg, #fffbeb 0%, #fed7aa 100%);
        }
        
        .ui-ux-card {
            background: linear-gradient(135deg, #eff6ff 0%, #bfdbfe 100%);
        }
        
        .mobile-app-card {
            background: linear-gradient(135deg, #f0fdf4 0%, #bbf7d0 100%);
        }
        
        .hire-dev-card {
            background: linear-gradient(135deg, #fdf2f8 0%, #fbcfe8 100%);
        }
        
        /* Professional Learn More Button */
        .learn-more-btn {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
            margin-top: 20px;
            background-color: #3b82f6;
            border: none;
            padding: 10px 24px;
            border-radius: 6px;
            color: white;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
        }
        
        .service-card:hover .learn-more-btn {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
        
        .learn-more-btn:hover {
            background-color: #2563eb;
            color: white;
            transform: translateX(-50%) translateY(-2px);
            box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
        }
        
        /* Service Card Hover Border Colors */
        .web-dev-card:hover {
            border-color: #a855f7;
        }
        
        .ecommerce-card:hover {
            border-color: #f87171;
        }
        
        .digital-marketing-card:hover {
            border-color: #fb923c;
        }
        
        .ui-ux-card:hover {
            border-color: #60a5fa;
        }
        
        .mobile-app-card:hover {
            border-color: #4ade80;
        }
        
        .hire-dev-card:hover {
            border-color: #f472b6;
        }
        
        /* Professional All Services Button */
        .all-services-btn {
            background-color: #3b82f6;
            border: none;
            padding: 14px 36px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(59, 130, 246, 0.2);
            color: white;
        }
        
        .all-services-btn:hover {
            background-color: #2563eb;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(59, 130, 246, 0.3);
            color: white;
        }
        
        .service-title {
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1.25rem;
        }
        
        .web-dev-title { color: #7c3aed; }
        .ecommerce-title { color: #ef4444; }
        .digital-marketing-title { color: #f59e0b; }
        .ui-ux-title { color: #3b82f6; }
        .mobile-app-title { color: #10b981; }
        .hire-dev-title { color: #ec4899; }
        
        .services-title {
            font-size: 2.2rem;
            line-height: 1.3;
            color: #1f2937;
            font-weight: 700;
        }
        
        .services-description {
            color: #6b7280;
            font-size: 1.1rem;
        }
        
        .service-description {
            color: #6b7280;
            line-height: 1.6;
            font-size: 0.95rem;
            margin-bottom: 40px;
        }
        
        @media (max-width: 768px) {
            .services-title {
                font-size: 1.8rem;
            }
            
            .service-card {
                padding: 30px 20px;
                margin-bottom: 20px;
            }
            
            .services-section {
                padding: 60px 0;
            }
            
            .learn-more-btn {
                position: relative;
                bottom: auto;
                left: auto;
                transform: translateY(20px);
                margin-top: 15px;
            }
            
            .service-card:hover .learn-more-btn {
                transform: translateY(0);
            }
        }
        
        /* Card content wrapper */
        .card-content {
            transition: all 0.3s ease;
            position: relative;
            padding-bottom: 60px;
        }
        
        .service-card:hover .card-content {
            transform: translateY(-3px);
        }
        
        /* Learn more button icon animation */
        .btn-icon {
            transition: transform 0.3s ease;
        }
        
        .learn-more-btn:hover .btn-icon {
            transform: translateX(3px);
        }
        
        /* Smooth entrance animation */
        .service-card {
            opacity: 0;
            transform: translateY(20px);
        }
        
        .service-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Card body positioning */
        .card-body {
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        /* ----- About Us ----*/
         .about-section {
            background-color: #ffffff;
            padding: 80px 0;
            position: relative;
        }
        
        .about-title {
            font-size: 30px;
            line-height: 1.2;
            color: #1f2937;
            font-weight: 700;
            margin-bottom: 30px;
        }
        
        .about-description {
            color: #6b7280;
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 25px;
        }
        
        .tech-link {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s ease;
            position: relative;
        }
        
        .tech-link:hover {
            color: #2563eb;
            text-decoration: underline;
        }
        
        .tech-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            transition: width 0.3s ease;
        }
        
        .tech-link:hover::after {
            width: 100%;
        }
        
        .cta-btn {
            background: linear-gradient(45deg, #3b82f6 0%, #1d4ed8 100%);
            border: none;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .cta-btn:hover {
            background: linear-gradient(45deg, #2563eb 0%, #1e40af 100%);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
            color: white;
        }
        
        .cta-btn:active {
            transform: translateY(-1px);
        }
        
        .hero-illustration {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
            transition: transform 0.3s ease;
        }
        
        .hero-illustration:hover {
            transform: scale(1.02);
        }
        
        .illustration-container {
            position: relative;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }
        
        .illustration-container::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
        }
        
        @media (max-width: 768px) {
            .about-title {
                font-size: 24px;
            }
            
            .about-section {
                padding: 60px 0;
            }
            
            .about-description {
                font-size: 16px;
            }
            
            .cta-btn {
                padding: 12px 28px;
                font-size: 1rem;
            }
        }
        
        /* Smooth entrance animations */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .fade-in-up.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .fade-in-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.8s ease;
        }
        
        .fade-in-left.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        /* Professional styling */
        .content-wrapper {
            position: relative;
            z-index: 2;
        }
        

/* ============================================
   Header Styles (Extracted from header.blade.php)
   ============================================ */

html, body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, 'Liberation Sans', 'sans-serif' !important;
}

/* Fix for page load margin issue - ensure no extra margin/padding */
html {
    margin: 0 !important;
    padding: 0 !important;
}
body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Global fix for fixed header - Add padding to main content areas */
body > .page-wrapper,
body > .services-hero-bg,
body > .login-main-bg {
    padding-top: 0; /* Removed top padding */
}

/* Solution pages need padding for fixed header */
body > .solution-main-bg,
body > .solution-detail-main-bg {
    padding-top: 120px !important; /* Account for fixed header (40px mini-header + 80px navbar) */
}

/* Blog and Case Studies pages need padding for fixed header */
body > .blog-main-bg,
body > .case-main-bg,
body > .case-detail-wrapper {
    padding-top: 120px !important; /* Account for fixed header (40px mini-header + 80px navbar) */
}

/* Portfolio pages need padding for fixed header */
body > .portfolio-main-bg {
    padding-top: 120px !important; /* Account for fixed header (40px mini-header + 80px navbar) */
}

@media (max-width: 991.98px) {
    body > .page-wrapper,
    body > .services-hero-bg,
    body > .login-main-bg {
        padding-top: 0; /* Removed top padding */
    }
    body > .solution-main-bg,
    body > .solution-detail-main-bg {
        padding-top: 110px !important; /* Slightly less on tablets */
    }
    body > .blog-main-bg,
    body > .case-main-bg,
    body > .case-detail-wrapper {
        padding-top: 110px !important; /* Slightly less on tablets */
    }
    body > .portfolio-main-bg {
        padding-top: 110px !important; /* Slightly less on tablets */
    }
}

@media (max-width: 767.98px) {
    /* Mobile header height: mini-header (~32-50px auto) + navbar (~80px) = ~112-130px */
    /* Using 120px for consistent spacing across all pages */
    body > .page-wrapper,
    body > .services-hero-bg,
    body > .login-main-bg,
    body > .solution-main-bg,
    body > .solution-detail-main-bg,
    body > .blog-main-bg,
    body > .case-main-bg,
    body > .case-detail-wrapper,
    body > .portfolio-main-bg,
    body > .about-wrapper,
    body > .contact-wrapper,
    body > .privacy-wrapper,
    body > .terms-wrapper,
    body > .refund-wrapper,
    body > .disclaimer-wrapper,
    body > .cookie-wrapper,
    body > .career-wrapper,
    body > .career-detail-wrapper,
    body > .career-form-wrapper,
    body > .leadership-wrapper {
        padding-top: 120px !important; /* Account for mobile header (mini-header ~32-50px + navbar ~80px) */
    }
    
    /* Home page hero slider - ensure proper spacing on mobile */
    .hero-slider {
        margin-top: 120px !important;
    }
}

/* Add font-family: sans-serif to all major nav/header/menu elements */
.mini-header,
.mini-header *,
.navbar,
.navbar *,
.company-mega-menu-pro,
.company-mega-menu-pro *,
.services-mega-menu,
.services-mega-menu *,
.technologies-mega-menu,
.technologies-mega-menu *,
.solutions-mega-menu-custom,
.solutions-mega-menu-custom *,
.resources-mega-menu-pro,
.resources-mega-menu-pro *,
.mobile-menu,
.mobile-menu *,
.custom-contact-btn {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, 'Liberation Sans', 'sans-serif' !important;
}

/* ============================================
    Professional Header Enhancements
============================================ */

/* ---------------------------------------------
    Mini Header Styles - Enhanced
    comment: Mini header ke layout, background, fonts, flex, etc (top blue bar)
---------------------------------------------- */
.mini-header {
    position: sticky;
    margin-top: -80px;
    top: 0;
    z-index: 1050;
    width: 100%;
    background: linear-gradient(135deg, #f8fbff 0%, #e3edfa 100%);
    border-bottom: 1px solid rgba(23, 96, 187, 0.1);
    padding: 0;
    font-size: 15px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(23, 96, 187, 0.05);
    transition: all 0.3s ease;
}
.mini-header .container-fluid {
    width: 100%;
    max-width: 1640px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}
.mini-header-inner {
    width: 100%;
    max-width: 1640px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Container fluid wrapper for consistent max-width */
.navbar .container-fluid {
    max-width: 1640px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
}
/* Ensure navbar inner wrapper also respects max-width */
.navbar .container-fluid > .d-flex {
    width: 100%;
}
/* Ensure mega menu inner containers also respect max-width */
.company-mega-menu-pro-inner,
.services-mega-menu-inner,
.technologies-mega-menu-inner,
.solutions-mega-menu-inner-custom,
.resources-mega-menu-pro-inner,
.industry-mega-menu-inner-custom {
    max-width: 1640px;
    margin: 0 auto;
}
.mini-header-left {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #28405a;
    font-weight: 500;
    font-size: 15px;
}
.mini-header-left .mini-header-icon {
    margin-right: 5px;
    color: #1760bb;
    transition: all 0.3s ease;
}
.mini-header-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mini-header-link:hover {
    color: #1760bb;
    transform: translateY(-1px);
}
.mini-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.mini-header-free-listing {
    display: flex;
    align-items: center;
    gap: 10px;
}
.mini-header-free-listing-link {
    float: right;
    color: #1760bb;
    font-weight: 600;
    border: none;
    background: rgba(23, 96, 187, 0.08);
    text-decoration: none !important;
    padding: 5px 12px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(23, 96, 187, 0.15);
}
.mini-header-free-listing-link:hover {
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    color: #ffffff;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(23, 96, 187, 0.3);
    border-color: #1760bb;
}
.mini-header-support-link, .mini-header-login-btn {
    color: #1760bb;
    font-weight: 600;
    border: 1px solid rgba(23, 96, 187, 0.2);
    background: rgba(255, 255, 255, 0.6);
    text-decoration: none !important;
    padding: 5px 14px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
}
.mini-header-support-link:hover, .mini-header-login-btn:hover {
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    color: #ffffff;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(23, 96, 187, 0.3);
    border-color: #1760bb;
}

/* 
    Responsive Mini header 
    comment: mini header/mobile me height, font, left/right control karta hai
*/
@media (max-width: 767px) {
    .mini-header .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }
    .mini-header, .mini-header-inner {
        height: auto;
        min-height: 32px;
        padding: 0 6px;
        font-size: 15px;
    }
    .mini-header-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 1px 4vw;
    }
    .mini-header-left {
        display: none !important;
    }
    .mini-header-right {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        padding: 1.5px 0;
        font-size: 15px;
        width: 100%;
    }
}

/* ============================================
    Professional Navbar Enhancements
============================================ */
.navbar-bg,
.navbar.navbar-bg,
.navbar.fixed-top.navbar-bg,
.navbar-bg.fixed-top {
    background: #ffffff !important;
    position: fixed !important;
    top: 40px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1040 !important;
    box-shadow: 0 4px 20px rgba(23, 96, 187, 0.08) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}
.navbar-bg:hover {
    box-shadow: 0 6px 30px rgba(23, 96, 187, 0.12) !important;
}
.navbar-brand {
    transition: all 0.3s ease;
}
.navbar-brand:hover {
    transform: scale(1.05);
}
.navbar-brand .logo {
    height: 44px;
    width: auto;
    transition: all 0.3s ease;
}
.navbar-brand:hover .logo {
    filter: brightness(1.1);
}

/* ============================================
    LOGO SPECIAL EFFECTS MODULE
============================================ */
.logo-wrapper {
    position: relative;
    display: inline-block;
}

.logo-decoration {
    position: absolute;
    display: none;
    pointer-events: none;
    z-index: 10;
}

/* Christmas Hat Decoration */
.logo-decoration.christmas-hat {
    display: block;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    animation: logoHatBounce 2s ease-in-out infinite;
}

@keyframes logoHatBounce {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
    50% { transform: translateX(-50%) translateY(-3px) rotate(2deg); }
}

/* Flower Rain Container */
.flower-rain-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}

.flower-petal {
    position: absolute;
    font-size: 16px;
    color: #ff6b9d;
    opacity: 0.7;
    animation: flowerFall linear infinite;
    pointer-events: none;
}

@keyframes flowerFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Fireworks Effect */
.firework {
    position: fixed;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: fireworkBurst 1s ease-out forwards;
}

@keyframes fireworkBurst {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(20);
        opacity: 0;
    }
}

/* Confetti Effect */
.confetti {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #ff6b9d;
    position: absolute;
    pointer-events: none;
    z-index: 9999;
    animation: confettiFall linear infinite;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}
.nav-link {
    color: #2c3e50 !important;
    font-weight: 600 !important;
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.nav-link:hover {
    color: #1760bb !important;
    background: rgba(23, 96, 187, 0.08);
    transform: translateY(-2px);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-link:hover::after {
    width: 80%;
    transform: translateX(-50%) scaleX(1);
}
.navbar-toggler {
    border: 2px solid rgba(23, 96, 187, 0.2);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}
.navbar-toggler:hover {
    border-color: #1760bb;
    background: rgba(23, 96, 187, 0.08);
}
.navbar-toggler-icon {
    transition: all 0.3s ease;
}

/* --------- 
    Mega Menu Company styles 
    comment: Company mega menu drop-down, left list and right content etc. 
------------ */
.company-mega-menu-pro { /* Company ka dropdown mega-menu */
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 100%;
    max-width: 1640px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 15px 50px rgba(23, 96, 187, 0.15);
    z-index: 2100;
    padding: 0;
    animation: fadeInDownCentered 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
    border-image: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    border-image-slice: 1;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInDownCentered {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}
.nav-item-company.position-static:hover .company-mega-menu-pro,
.nav-item-company.position-static:focus-within .company-mega-menu-pro {
    display: flex;
}
.company-mega-menu-pro-inner {
    display: flex;
    width: 100%;
    min-width: 710px;
    align-items: stretch;
}
.company-categories-list { /* left sidebar */
    width: 260px;
    min-width: 220px;
    max-width: 340px;
    padding: 36px 18px 36px 22px;
    border-right: 1.5px solid #e3eaf2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fafdff;
}
.company-category-item { /* left items */
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 13px 10px 13px 10px;
    border-radius: 12px;
    font-weight: 600;
    color: #2c3e50;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    outline: none;
    border: none;
    position: relative;
    min-width: 0;
}
.company-category-item:hover,
.company-category-item.active {
    background: linear-gradient(135deg, rgba(23, 96, 187, 0.1) 0%, rgba(16, 80, 158, 0.08) 100%);
    color: #1760bb;
    transform: translateX(4px);
}
.company-category-item .icon-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #e3edfa 0%, #d8e0f8 100%);
    border-radius: 12px;
    color: #1760bb;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(23, 96, 187, 0.1);
    margin-right: 8px;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.company-category-item.active .icon-bg,
.company-category-item:hover .icon-bg {
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(23, 96, 187, 0.3);
    transform: scale(1.05);
}

/* 
    Company overview/career/leadership padding 
    comment: Overview panel sections me left padding
*/
.company-mega-category-overview-full .about-flex-row-main,
.company-mega-category-overview-full .career-flex-row-main,
.company-mega-category-overview-full .leadership-flex-row-main {
    padding-left: 10px;
}

/* 
    Company right-side section, row layouts and cards 
*/
.company-mega-category-overview-wrapper {
    flex: 1 1 0;
    min-width: 360px;
    max-width: 900px;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.company-mega-category-overview-full {
    width: 100%;
    max-width: 9999px;
    min-width: 320px;
    box-sizing: border-box;
    padding: 30px 32px 18px 34px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: transparent;
}
.company-mega-category-overview-row {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 4px 20px rgba(23, 96, 187, 0.1);
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 13px;
    border: 1px solid rgba(23, 96, 187, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.company-mega-category-overview-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(23, 96, 187, 0.15);
    border-color: rgba(23, 96, 187, 0.2);
}
.about-flex-row-main,
.career-flex-row-main,
.leadership-flex-row-main {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-width: 0;
}
.aboutus-content-block, .career-content-block, .leadership-content-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}
.company-mega-category-overview-full .category-icon-bg,
.company-mega-category-overview-full .career-icon-bg,
.company-mega-category-overview-full .leadership-icon-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #1167c4 60%, #3985db 100%);
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    box-shadow: 0 2px 14px #0965e425;
    margin-right: 21px;
}
.company-mega-category-overview-full .category-title,
.company-mega-category-overview-full .career-title,
.company-mega-category-overview-full .leadership-title {
    font-size: 15px;
    font-weight: 500;
    color: #21407A;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.company-mega-category-overview-full .category-desc,
.company-mega-category-overview-full .career-desc,
.company-mega-category-overview-full .leadership-desc {
    color: #607094;
    font-size: 14px;
    margin-bottom: 2px;
    max-width: 470px;
}
.company-mega-category-overview-full .overview-explore-btn-cell {
    display: flex;
    align-items: center;
    min-width: 120px;
    margin-left: 8px;
}
.company-mega-category-overview-full .explore-btn {
    padding: 10px 26px;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(23, 96, 187, 0.25);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 9px;
}
.company-mega-category-overview-full .explore-btn:hover {
    background: linear-gradient(135deg, #10509e 0%, #1760bb 100%);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 96, 187, 0.35);
}
.company-mega-category-detail-professional-fullwidth,
.company-mega-category-detail-career-fullwidth,
.company-mega-category-detail-leadership-fullwidth {
    width: 100%;
    background: #F9FBFF;
    border-radius: 11px;
    margin-top: 16px;
    padding: 18px 15px 14px 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
/* About Us Section - Professional Design */
.company-detail-header {
    margin-bottom: 20px;
}
/* Dynamic content containers */
#companyCategoryDynamicContent,
#resourcesCategoryDynamicContent {
    width: 100%;
}
.company-detail-slogan,
.career-slogan,
.leadership-slogan {
    font-weight: 700;
    font-size: 18px;
    color: #1e3873;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.3;
}
.company-detail-slogan i {
    font-size: 22px;
    color: #1760bb;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(23, 96, 187, 0.1) 0%, rgba(23, 96, 187, 0.05) 100%);
    border-radius: 10px;
    flex-shrink: 0;
}
.company-detail-desc,
.career-desc-detail,
.leadership-desc-detail {
    color: #5a6c7d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}
.company-detail-stats-row,
.career-stats-row,
.leadership-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
}
.company-detail-stat-card,
.career-stat-card,
.leadership-stat-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(23, 96, 187, 0.1);
    box-shadow: 0 2px 10px rgba(23, 96, 187, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.company-detail-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.company-detail-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(23, 96, 187, 0.15);
    border-color: rgba(23, 96, 187, 0.25);
}
.company-detail-stat-card:hover::before {
    opacity: 1;
}
.stat-card-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(23, 96, 187, 0.12) 0%, rgba(23, 96, 187, 0.08) 100%);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.company-detail-stat-card:hover .stat-card-icon-wrapper {
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    transform: scale(1.1) rotate(5deg);
}
.stat-card-icon-wrapper i {
    font-size: 22px;
    color: #1760bb;
    transition: color 0.3s ease;
}
.company-detail-stat-card:hover .stat-card-icon-wrapper i {
    color: #ffffff;
}
.stat-card-content {
    flex: 1;
    min-width: 0;
}
.company-detail-stat-value,
.career-stat-value,
.leadership-stat-value {
    font-weight: 700;
    font-size: 24px;
    color: #1760bb;
    margin-bottom: 4px;
    line-height: 1.2;
    transition: color 0.3s ease;
}
.company-detail-stat-card:hover .company-detail-stat-value {
    color: #10509e;
}
.company-detail-stat-label,
.career-stat-label,
.leadership-stat-label {
    color: #5a6c7d;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive breakpoints for stats */
@media (max-width: 1400px) {
    .company-detail-stats-row,
    .career-stats-row,
    .leadership-stats-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    .company-detail-stat-card {
        padding: 14px;
    }
    .stat-card-icon-wrapper {
        width: 45px;
        height: 45px;
    }
    .stat-card-icon-wrapper i {
        font-size: 20px;
    }
    .company-detail-stat-value {
        font-size: 22px;
    }
}

@media (max-width: 1200px) {
    .company-detail-stats-row,
    .career-stats-row,
    .leadership-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Career Job Openings Section */
.career-job-openings-title {
    font-weight: 700;
    color: #1e3873;
    font-size: 16px;
    margin: 0 0 18px 0;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
}
.career-job-openings-title i {
    font-size: 18px;
    color: #1760bb;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(23, 96, 187, 0.1) 0%, rgba(23, 96, 187, 0.05) 100%);
    border-radius: 8px;
}
.career-job-list-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 0;
    padding: 0;
}
.career-job-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(23, 96, 187, 0.1);
    box-shadow: 0 2px 8px rgba(23, 96, 187, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.career-job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(23, 96, 187, 0.05), transparent);
    transition: left 0.5s ease;
}
.career-job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(23, 96, 187, 0.15);
    border-color: rgba(23, 96, 187, 0.25);
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}
.career-job-card:hover::before {
    left: 100%;
}
.career-job-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(23, 96, 187, 0.12) 0%, rgba(23, 96, 187, 0.08) 100%);
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.career-job-card:hover .career-job-icon-wrapper {
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    transform: scale(1.1) rotate(5deg);
}
.career-job-icon-wrapper i {
    font-size: 20px;
    color: #1760bb;
    transition: color 0.3s ease;
}
.career-job-card:hover .career-job-icon-wrapper i {
    color: #ffffff;
}
.career-job-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 12px;
    min-width: 0;
}
.career-job-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e3873;
    line-height: 1.4;
    transition: color 0.3s ease;
    flex: 1;
}
.career-job-card:hover .career-job-title {
    color: #1760bb;
}
.career-job-arrow {
    font-size: 16px;
    color: #5a6c7d;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}
.career-job-card:hover .career-job-arrow {
    opacity: 1;
    transform: translateX(0);
    color: #1760bb;
}
/* Leadership Team Scrollable Container */
.leadership-team-scroll-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 8px;
    margin-bottom: 8px;
}
.leadership-team-scroll-wrapper.has-scroll {
    padding-right: 20px;
}
.leadership-team-scroll-wrapper.has-scroll .leadership-team-row {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(23, 96, 187, 0.3) transparent;
    padding-bottom: 8px;
    margin-right: -20px;
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
}
.leadership-team-scroll-wrapper.has-scroll .leadership-team-row::-webkit-scrollbar {
    height: 6px;
}
.leadership-team-scroll-wrapper.has-scroll .leadership-team-row::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}
.leadership-team-scroll-wrapper.has-scroll .leadership-team-row::-webkit-scrollbar-thumb {
    background: rgba(23, 96, 187, 0.3);
    border-radius: 10px;
    transition: background 0.3s ease;
}
.leadership-team-scroll-wrapper.has-scroll .leadership-team-row::-webkit-scrollbar-thumb:hover {
    background: rgba(23, 96, 187, 0.5);
}
.leadership-team-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: stretch;
    margin: 0;
}
.leadership-member-card {
    flex: 0 0 auto;
    width: 200px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(23, 96, 187, 0.1);
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(23, 96, 187, 0.08);
    position: relative;
    overflow: hidden;
}
.leadership-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(23, 96, 187, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.leadership-member-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(23, 96, 187, 0.2);
    border-color: rgba(23, 96, 187, 0.2);
}
.leadership-member-card:hover::before {
    opacity: 1;
}
.leadership-member-img-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 16px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    transition: transform 0.3s ease;
}
.leadership-member-card:hover .leadership-member-img-wrapper {
    transform: scale(1.05);
}
.leadership-member-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(23, 96, 187, 0.15);
    transition: transform 0.3s ease;
}
.leadership-member-card:hover .leadership-member-img {
    transform: scale(1.02);
}
.leadership-member-overlay {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(23, 96, 187, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.leadership-member-card:hover .leadership-member-overlay {
    opacity: 1;
}
.leadership-member-info {
    text-align: center;
    width: 100%;
}
.leadership-member-name {
    font-size: 15px;
    font-weight: 700;
    color: #1e3873;
    margin-bottom: 6px;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.leadership-member-card:hover .leadership-member-name {
    color: #1760bb;
}
.leadership-member-designation {
    font-size: 12px;
    color: #5a6c7d;
    font-weight: 500;
    line-height: 1.4;
    padding: 0 8px;
}
/* Scroll Indicator */
.leadership-scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 16px;
    background: rgba(23, 96, 187, 0.05);
    border-radius: 20px;
    font-size: 12px;
    color: #5a6c7d;
    font-weight: 500;
}
.leadership-scroll-indicator i {
    font-size: 14px;
    color: #1760bb;
    animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}
/* 
    Mega menu company responsive (mobile)
    comment: Company ka dropdown mobile pe kaisa dikhega 
*/
@media (max-width: 991px) {
    .company-mega-menu-pro, .company-mega-menu-pro-inner, .company-mega-category-overview-wrapper,
    .company-mega-category-overview, .company-categories-list, .company-mega-category-detail-professional-fullwidth,
    .company-mega-category-overview-full, .company-mega-category-detail-career-fullwidth,
    .company-mega-category-detail-leadership-fullwidth {
        min-width: unset !important;
        width: 100% !important;
        padding: 7px 4px 7px 4px !important;
        flex-direction: column !important;
        border-radius: 0 0 15px 15px !important;
    }
    .company-categories-list {
        padding: 11px 0 11px 7px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .company-mega-category-overview-full {
        padding: 12px 0 7px 7px !important;
        padding-right: 0 !important;
    }
    .company-mega-category-detail-professional-fullwidth,
    .company-mega-category-detail-career-fullwidth,
    .company-mega-category-detail-leadership-fullwidth {
        padding-left: 6px !important;
        padding-right: 0 !important;
    }
    .company-mega-category-overview-row {
        flex-direction: column !important;
        gap: 7px !important;
        align-items: flex-start !important;
    }
    .about-flex-row-main,
    .career-flex-row-main,
    .leadership-flex-row-main {
        flex-direction: column !important;
        gap: 10px !important;
        align-items: flex-start !important;
        padding-left: 0 !important; /* Remove extra padding from mobile */
    }
    .company-detail-stats-row,
    .career-stats-row,
    .leadership-stats-row {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    .company-detail-stat-card {
        padding: 14px !important;
    }
    .stat-card-icon-wrapper {
        width: 45px !important;
        height: 45px !important;
    }
    .stat-card-icon-wrapper i {
        font-size: 20px !important;
    }
    .company-detail-stat-value {
        font-size: 22px !important;
    }
    .company-detail-stat-label {
        font-size: 12px !important;
    }
    .company-detail-slogan {
        font-size: 16px !important;
    }
    .company-detail-slogan i {
        width: 36px !important;
        height: 36px !important;
        font-size: 20px !important;
    }
    .career-job-list-wrapper {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    
/* Tablet responsive - 2 columns */
@media (max-width: 1200px) and (min-width: 992px) {
    .career-job-list-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
    .career-job-card {
        padding: 12px 14px !important;
    }
    .career-job-icon-wrapper {
        width: 40px !important;
        height: 40px !important;
    }
    .career-job-icon-wrapper i {
        font-size: 18px !important;
    }
    .career-job-title {
        font-size: 13px !important;
    }
    .leadership-team-scroll-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-right: 0 !important;
    }
    .leadership-team-row {
        flex-direction: row !important;
        gap: 16px !important;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        padding-bottom: 8px;
    }
    .leadership-member-card {
        min-width: 180px !important;
        max-width: 180px !important;
        width: 180px !important;
        flex-shrink: 0;
    }
    .leadership-member-img-wrapper {
        width: 75px;
        height: 75px;
    }
    .leadership-scroll-indicator {
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* -----------------------------------
    Services Mega Menu
    comment: services mega menu ke liye grid, cards, hover styles, etc
------------------------------------ */
.services-mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 100%;
    max-width: 1640px;
    background: #FFFFFF;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 10px 34px rgba(42,62,82,0.15);
    z-index: 2020;
    padding: 0;
    animation: fadeInDownCentered 0.18s;
}
.nav-item-services.position-static:hover .services-mega-menu,
.nav-item-services.position-static:focus-within .services-mega-menu {
    display: flex;
}
.services-mega-menu-inner {
    display: flex;
    min-width: 650px;
    width: 100%;
}
.services-category-list {
    background: #F7F9FC;
    padding: 48px 32px 48px 42px;
    min-width: 320px;
    max-width: 350px;
    border-right: 1.5px solid #e0e7f6;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.services-category-item {
    display: flex;
    align-items: center;
    padding: 10px 10px 10px 10px;
    font-weight: 550;
    color: #20315a;
    border-radius: 8px;
    background: transparent;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    border: none;
    outline: none;
    transition: background 0.17s, color 0.13s;
}
.services-category-item.active,
.services-category-item:hover {
    background: #e3f1ff;
    color: #0d6efd;
    box-shadow: 0 2px 10px #cde5ff40;
}
.services-category-item .icon-bg {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: linear-gradient(120deg, #e6eefc 60%, #dce7fd 100%);
    color: #1662b9;
    font-size: 15px;
    margin-right: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 7px #b6cdf71a;
}
.services-category-item.active .icon-bg,
.services-category-item:hover .icon-bg {
    background: linear-gradient(120deg, #1561db 60%, #3195fa 100%);
    color: #fff;
    box-shadow: 0 2px 13px #3195fa36;
}
.services-subcategory-list-wrapper {
    flex: 1 1 0;
    min-width: 400px;
    padding: 35px 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
/* --- PROFESSIONAL 2x2 ROW GRID --- */
.services-subcategory-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px; /* row x col */
}
.services-subcategory-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f7fafd;
    border-radius: 13px;
    padding: 16px 18px 16px 15px;
    box-shadow: 0 1.5px 10px #d0e0f933;
    transition: background 0.15s, box-shadow 0.15s, transform 0.13s;
    cursor: pointer;
    position: relative;
    border: 1.5px solid transparent;
    text-decoration: none !important;
    color: inherit !important;
}
.services-subcategory-block:hover {
    background: #e8f0fa;
    box-shadow: 0 6px 22px #a2cfff27;
    border: 1.5px solid #1268DC25;
    transform: translateY(-2px) scale(1.024);
    text-decoration: none !important;
    color: inherit !important;
}
.services-subcategory-block .icon {
    font-size: 2.1em;
    color: #1662b9;
    background: #e6eefc;
    border-radius: 7px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 7px;
    box-shadow: 0 1.5px 8px #b6cdf71a;
}
.services-subcategory-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.services-subcategory-title {
    font-weight: 670;
    font-size: 15px;
    color: #143059;
    margin-bottom: 3px;
    letter-spacing: 0.02em;
}
.services-subcategory-desc {
    color: #466586;
    font-size: 14px;
    margin-top: 2px;
    line-height: 1.35;
}

/* 
    Technologies Mega Menu (same style as services)
    comment: Technologies ka mega menu
*/
.technologies-mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 100%;
    max-width: 1640px;
    background: #FFFFFF;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 10px 34px rgba(42,62,82,0.15);
    z-index: 2050;
    padding: 0;
    animation: fadeInDownCentered 0.18s;
}
.nav-item-technologies.position-static:hover .technologies-mega-menu,
.nav-item-technologies.position-static:focus-within .technologies-mega-menu {
    display: flex;
}
.technologies-mega-menu-inner {
    display: flex;
    min-width: 650px;
    width: 100%;
}
.technologies-category-list {
    background: #F7F9FC;
    padding: 48px 32px 48px 42px;
    min-width: 320px;
    max-width: 350px;
    border-right: 1.5px solid #e0e7f6;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.technologies-category-item {
    display: flex;
    align-items: center;
    padding: 10px 10px 10px 10px;
    font-weight: 550;
    color: #20315a;
    border-radius: 8px;
    background: transparent;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    border: none;
    outline: none;
    transition: background 0.17s, color 0.13s;
}
.technologies-category-item.active,
.technologies-category-item:hover {
    background: #e3f1ff;
    color: #0d6efd;
    box-shadow: 0 2px 10px #cde5ff40;
}
.technologies-category-item .icon-bg {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: linear-gradient(120deg, #e6eefc 60%, #dce7fd 100%);
    color: #1662b9;
    font-size: 15px;
    margin-right: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 7px #b6cdf71a;
}
.technologies-category-item.active .icon-bg,
.technologies-category-item:hover .icon-bg {
    background: linear-gradient(120deg, #1561db 60%, #3195fa 100%);
    color: #fff;
    box-shadow: 0 2px 13px #3195fa36;
}
.technologies-subcategory-list-wrapper {
    flex: 1 1 0;
    min-width: 400px;
    padding: 35px 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.technologies-subcategory-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px; /* row x col */
}
.technologies-subcategory-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f7fafd;
    border-radius: 13px;
    padding: 16px 18px 16px 15px;
    box-shadow: 0 1.5px 10px #d0e0f933;
    transition: background 0.15s, box-shadow 0.15s, transform 0.13s;
    cursor: pointer;
    position: relative;
    border: 1.5px solid transparent;
    text-decoration: none !important;
    color: inherit !important;
}
.technologies-subcategory-block:hover {
    background: #e8f0fa;
    box-shadow: 0 6px 22px #a2cfff27;
    border: 1.5px solid #1268DC25;
    transform: translateY(-2px) scale(1.024);
    text-decoration: none !important;
    color: inherit !important;
}
.technologies-subcategory-block .icon {
    font-size: 2.1em;
    color: #1662b9;
    background: #e6eefc;
    border-radius: 7px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 7px;
    box-shadow: 0 1.5px 8px #b6cdf71a;
}
.technologies-subcategory-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.technologies-subcategory-title {
    font-weight: 670;
    font-size: 15px;
    color: #143059;
    margin-bottom: 3px;
    letter-spacing: 0.02em;
}
.technologies-subcategory-desc {
    color: #466586;
    font-size: 14px;
    margin-top: 2px;
    line-height: 1.35;
}
/*
    Responsive for services & technologies menus
*/
@media (max-width: 991px) {
    .services-mega-menu, .technologies-mega-menu { min-width: unset !important; width: 100% !important; flex-direction: column !important; border-radius: 0 0 15px 15px !important; }
    .services-mega-menu-inner, .technologies-mega-menu-inner { flex-direction: column !important; min-width: unset !important; width: 100% !important; }
    .services-category-list, .services-subcategory-list-wrapper,
    .technologies-category-list, .technologies-subcategory-list-wrapper { padding: 13px 8px 13px 11px !important; min-width: unset !important; max-width: 100% !important; }
    .services-subcategory-list, .technologies-subcategory-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
    }
    .services-subcategory-block, .technologies-subcategory-block {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
}
/* 
    Solutions Mega Menu 
    comment: solutions mega menu (same style jaise services)
*/
.solutions-mega-menu-custom {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 100%;
    max-width: 1640px;
    background: #fff;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 10px 34px rgba(42,62,82,0.14);
    z-index: 2005;
    padding: 0;
    animation: fadeInDownCentered 0.18s;
}
.nav-item-solutions.position-static:hover .solutions-mega-menu-custom,
.nav-item-solutions.position-static:focus-within .solutions-mega-menu-custom {
    display: flex;
}
.solutions-mega-menu-inner-custom {
    display: flex;
    min-width: 650px;
    width: 100%;
}
.solutions-category-list-custom {
    background: #F8FCFF;
    padding: 44px 30px 44px 38px;
    min-width: 290px;
    max-width: 340px;
    border-right: 1.5px solid #e3edf6;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.solutions-category-item-custom {
    display: flex;
    align-items: center;
    padding: 10px 10px 10px 10px;
    font-weight: 550;
    color: #193970;
    border-radius: 8px;
    background: transparent;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    border: none;
    outline: none;
    transition: background 0.17s, color 0.13s;
}
.solutions-category-item-custom.active,
.solutions-category-item-custom:hover {
    background: #e6f0fe;
    color: #0d6efd;
    box-shadow: 0 2px 11px #b9def940;
}
.solutions-category-item-custom .solutions-icon-bg-custom {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: linear-gradient(120deg, #e9f1fc 55%, #deebfa 100%);
    color: #1877d8;
    font-size: 15px;
    margin-right: 9px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px #b6cdf71a;
}
.solutions-category-item-custom.active .solutions-icon-bg-custom,
.solutions-category-item-custom:hover .solutions-icon-bg-custom {
    background: linear-gradient(120deg, #1561db 65%, #40a0f9 100%);
    color: #fff;
    box-shadow: 0 2px 14px #40a0f93a;
}
.solutions-subcategory-list-wrapper-custom {
    flex: 1 1 0;
    min-width: 400px;
    padding: 33px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.solutions-subcategory-list-custom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 28px;
}
.solutions-subcategory-block-custom {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f7fafd;
    border-radius: 13px;
    padding: 15px 16px 15px 13px;
    box-shadow: 0 1.2px 8px #d0e0f931;
    transition: background 0.15s, box-shadow 0.15s, transform 0.13s;
    cursor: pointer;
    position: relative;
    border: 1.3px solid transparent;
}
.solutions-subcategory-block-custom:hover {
    background: #e6eefb;
    box-shadow: 0 6px 18px #a2cfff21;
    border: 1.3px solid #1069bc22;
    transform: translateY(-2px) scale(1.018);
}
.solutions-subcategory-block-custom .solutions-sub-icon-custom {
    font-size: 2em;
    color: #1662b9;
    background: #e6eefc;
    border-radius: 7px;
    width: 41px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 7px;
    box-shadow: 0 1.5px 8px #b6cdf71a;
}
.solutions-subcategory-info-custom {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.solutions-subcategory-title-custom-link {
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
.solutions-subcategory-title-custom-link:hover {
    transform: translateX(2px);
}
.solutions-subcategory-title-custom-link:hover .solutions-subcategory-title-custom {
    color: #1760bb;
}
.solutions-subcategory-title-custom {
    font-weight: 670;
    font-size: 15px;
    color: #154069;
    margin-bottom: 2px;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: color 0.3s ease;
}
.solutions-subcategory-desc-custom {
    color: #466586;
    font-size: 14px;
    margin-top: 2px;
    line-height: 1.34;
}
/* 
    Responsive: solutions mega menu
*/
@media (max-width: 991px) {
    .solutions-mega-menu-custom {
        min-width: unset !important;
        width: 100% !important;
        flex-direction: column !important;
        border-radius: 0 0 15px 15px !important;
    }
    .solutions-mega-menu-inner-custom { flex-direction: column !important; min-width: unset !important; width: 100% !important; }
    .solutions-category-list-custom, .solutions-subcategory-list-wrapper-custom { padding: 12px 7px 8px 10px !important; min-width: unset !important; max-width: 100% !important; }
    .solutions-subcategory-list-custom { display: flex !important; flex-direction: column !important; gap: 14px !important; }
    .solutions-subcategory-block-custom { flex: 1 1 100% !important; max-width: 100% !important; min-width: 0 !important; }
}

/* --------------------------------
    Industry Mega menu 
    comment: Industry dropdown - similar to Solutions layout
---------------------------------- */
.industry-mega-menu-custom {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 100%;
    max-width: 1640px;
    background: #fff;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 10px 34px rgba(42,62,82,0.14);
    z-index: 2005;
    padding: 0;
    animation: fadeInDownCentered 0.18s;
}
.nav-item-industry.position-static:hover .industry-mega-menu-custom,
.nav-item-industry.position-static:focus-within .industry-mega-menu-custom {
    display: flex;
}
.industry-mega-menu-inner-custom {
    display: flex;
    min-width: 650px;
    width: 100%;
}
.industry-category-list-custom {
    background: #F8FCFF;
    padding: 44px 30px 44px 38px;
    min-width: 290px;
    max-width: 340px;
    border-right: 1.5px solid #e3edf6;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.industry-category-item-custom {
    display: flex;
    align-items: center;
    padding: 10px 10px 10px 10px;
    font-weight: 550;
    color: #193970;
    border-radius: 8px;
    background: transparent;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    border: none;
    transition: all 0.15s ease;
}
.industry-category-item-custom.active,
.industry-category-item-custom:hover {
    background: #e6f0fe;
    color: #0d6efd;
    box-shadow: 0 2px 11px #b9def940;
}
.industry-category-item-custom .industry-icon-bg-custom {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: linear-gradient(120deg, #e9f1fc 55%, #deebfa 100%);
    color: #1877d8;
    font-size: 15px;
    margin-right: 9px;
    transition: all 0.15s ease;
}
.industry-category-item-custom.active .industry-icon-bg-custom,
.industry-category-item-custom:hover .industry-icon-bg-custom {
    background: linear-gradient(120deg, #1561db 65%, #40a0f9 100%);
    color: #fff;
    box-shadow: 0 2px 14px #40a0f93a;
}
.industry-subcategory-list-wrapper-custom {
    flex: 1 1 0;
    min-width: 400px;
    padding: 33px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.industry-subcategory-list-custom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 28px;
}
.industry-subcategory-block-custom {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f7fafd;
    border-radius: 13px;
    padding: 15px 16px 15px 13px;
    box-shadow: 0 1.2px 8px #d0e0f931;
    transition: background 0.15s, box-shadow 0.15s, transform 0.13s;
    cursor: pointer;
    position: relative;
    border: 1.3px solid transparent;
}
.industry-subcategory-block-custom:hover {
    background: #e6eefb;
    box-shadow: 0 6px 18px #a2cfff21;
    border: 1.3px solid #1069bc22;
    transform: translateY(-2px) scale(1.018);
}
.industry-subcategory-block-custom .industry-sub-icon-custom {
    font-size: 2em;
    color: #1662b9;
    background: #e6eefc;
    border-radius: 7px;
    width: 41px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 7px;
    transition: all 0.15s ease;
}
.industry-subcategory-block-custom:hover .industry-sub-icon-custom {
    background: linear-gradient(120deg, #1561db 65%, #40a0f9 100%);
    color: #fff;
    transform: scale(1.05);
}
.industry-subcategory-info-custom {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.industry-subcategory-title-custom-link {
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
.industry-subcategory-title-custom-link:hover {
    transform: translateX(2px);
}
.industry-subcategory-title-custom-link:hover .industry-subcategory-title-custom {
    color: #1760bb;
}
.industry-subcategory-title-custom {
    font-weight: 670;
    font-size: 15px;
    color: #154069;
    margin-bottom: 2px;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: color 0.3s ease;
}
.industry-subcategory-desc-custom {
    color: #466586;
    font-size: 14px;
    margin-top: 2px;
    line-height: 1.34;
}
/* 
    Responsive: industry mega menu
*/
@media (max-width: 991px) {
    .industry-mega-menu-custom {
        min-width: unset !important;
        width: 100% !important;
        flex-direction: column !important;
        border-radius: 0 0 15px 15px !important;
    }
    .industry-mega-menu-inner-custom { flex-direction: column !important; min-width: unset !important; width: 100% !important; }
    .industry-category-list-custom, .industry-subcategory-list-wrapper-custom { padding: 12px 7px 8px 10px !important; min-width: unset !important; max-width: 100% !important; }
    .industry-subcategory-list-custom { display: flex !important; flex-direction: column !important; gap: 14px !important; }
    .industry-subcategory-block-custom { flex: 1 1 100% !important; max-width: 100% !important; min-width: 0 !important; }
}

/* --------------------------------
    Resources Mega menu 
    comment: Resources dropdown - grid, card layout, titles etc.
---------------------------------- */
.resources-mega-menu-pro {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 100%;
    max-width: 1640px;
    background: #F5F8FE;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 10px 34px rgba(42,58,95,0.13);
    z-index: 2111;
    padding: 0;
    animation: fadeInDownCentered 0.18s;
    transition: box-shadow 0.15s;
}
.nav-item-resources.position-static:hover .resources-mega-menu-pro,
.nav-item-resources.position-static:focus-within .resources-mega-menu-pro {
    display: flex;
}
.resources-mega-menu-pro-inner {
    display: flex;
    width: 100%;
    min-width: 650px;
    align-items: stretch;
}
.resources-categories-list {
    width: 260px;
    min-width: 210px;
    max-width: 340px;
    padding: 34px 17px 34px 22px;
    border-right: 1.5px solid #e3eaf2;
    display: flex;
    flex-direction: column;
    gap: 11px;
    background: #fafdff;
}
.resources-category-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 10px 12px 10px;
    border-radius: 8px;
    font-weight: 550;
    color: #203147;
    background: transparent;
    cursor: pointer;
    transition: background 0.19s, color 0.13s;
    font-size: 15px;
    outline: none;
    border: none;
    position: relative;
    min-width: 0;
}
.resources-category-item:hover,
.resources-category-item.active {
    background: #e2ecfc;
    color: #1660BA;
}
.resources-category-item .icon-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #e5eefd, #d8e0f8 80%);
    border-radius: 10px;
    color: #1a73e8;
    font-size: 15px;
    margin-right: 7px;
    flex-shrink: 0;
    box-shadow: 0 2px 7px #b6cdf71b;
}
.resources-category-item.active .icon-bg,
.resources-category-item:hover .icon-bg {
    background: linear-gradient(135deg, #1167c4 60%, #3985db 100%);
    color: #fff;
    box-shadow: 0 2px 11px #4084e328;
}
.resources-mega-category-overview-wrapper {
    flex: 1 1 0;
    min-width: 340px;
    max-width: 900px;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.resources-mega-category-overview-full {
    width: 100%;
    max-width: 9999px;
    min-width: 314px;
    box-sizing: border-box;
    padding: 27px 28px 16px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: transparent;
}
.resources-mega-category-overview-row {
    background: #F9FBFF;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 12px #1655c624;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 26px;
    margin-bottom: 10px;
}
.resources-flex-row-main {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-width: 0;
}
.resources-content-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}
.resources-mega-category-overview-full .resources-icon-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #1167c4 60%, #3985db 100%);
    border-radius: 13px;
    color: #fff;
    font-size: 1.8rem;
    margin-right: 19px;
    box-shadow: 0 2px 13px #2979ea22;
}
.resources-mega-category-overview-full .resources-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e3873;
    margin-bottom: 1.5px;
    display: flex;
    align-items: center;
    gap: 7px;
    line-height: 1.4;
}
.resources-mega-category-overview-full .resources-desc {
    color: #607094;
    font-size: 14px;
    margin-bottom: 2px;
    max-width: 470px;
}
.resources-mega-category-overview-full .overview-explore-btn-cell {
    display: flex;
    align-items: center;
    min-width: 110px;
    margin-left: 7px;
}
.resources-mega-category-overview-full .explore-btn {
    padding: 9px 23px;
    background: linear-gradient(90deg, #1761E1 60%, #2391f5 100%);
    color: #fff;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
    border: none;
    transition: background 0.13s;
    box-shadow: 0 2px 8px #0865ca14;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-left: 7px;
}
.resources-mega-category-overview-full .explore-btn:hover {
    background: linear-gradient(90deg, #1254b7 40%, #1b7fd2 100%);
    color: #fff;
    text-decoration: none;
}
.resources-list-block {
    width: 100%;
    background: #F9FBFF;
    border-radius: 10px;
    margin-top: 15px;
    padding: 16px 15px 13px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.resources-list-category-title {
    font-weight: 600;
    color: #1167c4;
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
}

/* 
    Resources card list/grid
    comment: resources-list block ke cards etc.
*/
.resources-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 5px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 18px;
    /* Increased gap for card look */
}
.resources-list li {
    background: #f1f4fb;
    border-radius: 9px;
    box-shadow: 0 2px 12px #1655c624;
    transition: box-shadow 0.18s, background 0.13s;
    width: 185px;
    min-height: 160px;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    gap: 0;
    border: 1px solid #e3eaf3;
    font-size: 1em;
}
.resources-list li:hover {
    background: #e2ecfc;
    box-shadow: 0 5px 20px #156dd357;
}
.resource-card-img-wrap {
    width: 100%;
    height: 94px;
    overflow: hidden;
    background: #daecff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.resource-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.resource-card-link {
    display: block;
    width: 100%;
    text-decoration: none;
}
.resource-card-title {
    color: #1e3873;
    font-weight: 600;
    padding: 12px 14px 11px 14px;
    font-size: 12px;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Blog Cards Specific Styles */
.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 10px 0;
}
.blog-card-item {
    width: 100% !important;
    min-height: auto !important;
    background: #ffffff !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 12px rgba(23, 96, 187, 0.1) !important;
    border: 1px solid rgba(23, 96, 187, 0.1) !important;
    padding: 0 !important;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(23, 96, 187, 0.2) !important;
    border-color: rgba(23, 96, 187, 0.3) !important;
}
.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}
.blog-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 110px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f9ff 0%, #e8f2ff 100%);
}
.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(23, 96, 187, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.blog-card-item:hover .blog-card-image {
    transform: scale(1.08);
}
.blog-card-item:hover .blog-card-overlay {
    opacity: 1;
}
.blog-card-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 8px;
}
.blog-card-title {
    color: #1e3873;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 36px;
}
.blog-card-description {
    color: #5a6c7d;
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}
.blog-card-learn-more {
    color: #1760bb;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
    transition: all 0.3s ease;
    width: fit-content;
}
.blog-card-learn-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}
.blog-card-learn-more:hover {
    color: #10509e;
    gap: 7px;
}
.blog-card-learn-more:hover i {
    transform: translateX(3px);
}

/* Tablet/Medium Screen Responsive */
@media (max-width: 1400px) {
    .blog-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    .blog-card-img-wrapper {
        height: 100px;
    }
    .blog-card-content {
        padding: 10px;
    }
    .blog-card-title {
        font-size: 12px;
        min-height: 32px;
    }
    .blog-card-description {
        font-size: 11px;
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 1200px) {
    .blog-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    .blog-card-img-wrapper {
        height: 95px;
    }
}

/* 
    Resources/mobile responsive 
*/
@media (max-width: 991px) {
    .resources-mega-menu-pro, .resources-mega-menu-pro-inner, .resources-mega-category-overview-wrapper, .resources-mega-category-overview-full, .resources-list-block {
        min-width: unset !important;
        width: 100% !important;
        padding: 7px 4px 7px 4px !important;
        flex-direction: column !important;
        border-radius: 0 0 15px 15px !important;
    }
    .resources-categories-list {
        padding: 9px 0 9px 7px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .resources-mega-category-overview-full {
        padding: 11px 0 6px 6px !important;
        padding-right: 0 !important;
    }
    .resources-list-block {
        padding-left: 6px !important;
        padding-right: 0 !important;
    }
    .resources-mega-category-overview-row {
        flex-direction: column !important;
        gap: 7px !important;
        align-items: flex-start !important;
    }
    .resources-flex-row-main {
        flex-direction: column !important;
        gap: 9px !important;
        align-items: flex-start !important;
        padding-left: 0 !important;
    }
    .resources-list {
        flex-direction: column !important;
        gap: 12px !important;
    }
    .resources-list li { font-size: 0.98em; flex-basis: 100% !important; width: 100%;}
    .blog-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .blog-card-img-wrapper {
        height: 120px !important;
    }
    .blog-card-content {
        padding: 12px !important;
    }
    .blog-card-title {
        font-size: 13px !important;
        min-height: auto !important;
    }
    .blog-card-description {
        font-size: 11px !important;
    }
}

/* 
    Mobile menu responsive, backdrop and main menu style
    comment: Mobile header/menu ke sabhi controls
*/
@media (max-width:991px) {
    /* Backdrop for mobile menu */
    .mobile-menu-backdrop {
        position: fixed;
        top: 0; left: 0; width: 100vw; height: 100vh;
        z-index: 9998;
        background: rgba(38,54,89,0.36);
        opacity: 1;
        transition: opacity .24s;
        display: none;
    }
    .mobile-menu-backdrop.show {
        display: block !important;
    }
    /* in mobile menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 90vw;
        max-width: 370px;
        height: 100vh;
        background: #fff;
        z-index: 9999;
        box-shadow: -8px 0 24px #15305b54;
        display: flex;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform .36s cubic-bezier(.77,.2,.22,.92);
        overflow: visible;
        border-top-left-radius: 14px;
        border-bottom-left-radius: 14px;
    }
    .mobile-menu.open {
        transform: translateX(0);
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1em 1.1em;
        border-bottom: 1.5px solid #e4e9f4;
        background: #ffffff;
        min-height: 62px;
    }
    .mobile-menu-logo {
        position: relative;
        display: inline-block;
    }
    .mobile-menu-logo img {
        height: 38px;
        width: auto;
        display: block;
    }
    .mobile-menu-logo .logo-decoration {
        top: -5px;
        font-size: 16px;
    }
    .mobile-menu-close {
        background: none;
        border: none;
        font-size: 15px;
        color: #244188;
        transition: color 0.17s;
    }
    .mobile-menu-close:hover {
        color: #4894e7;
    }
    .mobile-menu-back-btn {
        margin-right: 8px;
        background: none;
        border: none;
        font-size: 15px;
        color: #244188;
    }

    .mobile-menu-main {
        flex: 1 1 auto;
        overflow: hidden;
        position: relative;
        display: flex;
        flex-direction: column;
        background: #f8faff;
    }

    .mobile-pane {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        height: 100%;
        background: #f8faff;
        z-index: 10;
        transition: transform .36s cubic-bezier(.77,.2,.22,.92);
        box-shadow: none;
        overflow-y: auto;
        overscroll-behavior: contain;
        display: flex;
        flex-direction: column;
    }

    .mobile-category-list {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .mobile-category-item {
        padding: 0;
    }
    .mobile-category-btn {
        display: flex;
        align-items: center;
        width: 100%;
        font-size: 15px;
        padding: 0.97em 1.4em 0.97em 1.09em;
        color: #294377;
        background: none;
        border: none;
        text-align: left;
        outline: none;
        font-weight: 500;
        border-radius: 8px;
        margin: 0.2em 0.43em;
        position: relative;
        transition: background .17s, color .14s;
    }
    .mobile-category-btn:active,
    .mobile-category-btn:focus,
    .mobile-category-btn:hover {
        background: #e7ecfa !important;
        color: #174194;
        text-decoration: none !important;
    }
    .mobile-link {
        text-decoration: none;
    }
    .mobile-category-btn i.bi {
        min-width: 1.9em;
        text-align: center;
        font-size: 15px;
        margin-right: 0.85em;
        color: #3a68c8;
        margin-bottom: 1px;
    }
    .expand-arrow {
        position: absolute;
        right: 1.2em;
        font-size: 15px;
        color: #9ab0d7;
    }
    .mobile-pane > div,
    .mobile-pane > .cat-header-title {
        background: #fff;
    }
    .cat-header-title {
        font-size: 1.09em;
        font-weight: 600;
        padding: 15px 23px 10px 23px;
        border-bottom: 1px solid #e8eef7;
        background: #fff;
    }
    .cat-header-title-level2 {
        font-size: 1.03em;
        padding: 14px 19px 8px 19px;
    }
    /* Company info and social icons for mobile menu */
    .mobile-contact-info {
        margin: 10px 18px 6px 18px;
        background: #e7ecfa;
        border-radius: 10px;
        padding: 15px 15px 10px 15px;
        font-size: 15px;
        color: #223765;
        box-shadow: 0 2px 8px #17419415;
    }
    .mobile-contact-info-row {
        display: flex;
        align-items: flex-start;
        margin-bottom: 6px;
        gap: 10px;
    }
    .mobile-contact-info-row i {
        font-size: 15px;
        color: #126ad7;
        margin-top: 3px;
        min-width: 1.4em;
    }
    .mobile-contact-info a {
        color: #223765;
        text-decoration: none;
        word-break: break-all;
    }
    .mobile-contact-social {
        padding: 20px;
        margin: 0 18px 16px 18px;
        display: flex;
        gap: 16px;
        justify-content: center;
    }
    .mobile-contact-social a {
        /* Professional circular, shadow, elevation, brand color border */
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        width: 40px;
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 2px 8px #bcd1f89c;
        transition: box-shadow 0.16s, background 0.16s, border 0.16s, color 0.14s;
        font-size: 15px;
        border: 2px solid #e4eaf4;
        position: relative;
    }
    .mobile-contact-social a .bi {
        transition: color 0.16s;
    }

    /* Brand border color and icon color on both normal/hover */
    .mobile-contact-social a.social-facebook {
        border-color: #4267B2;
    }
    .mobile-contact-social a.social-facebook .bi {
        color: #4267B2;
    }
    .mobile-contact-social a.social-facebook:hover, .mobile-contact-social a.social-facebook:focus {
        background: #4267B2;
        box-shadow: 0 4px 16px #4267b240, 0 1.5px 8px #bcd1f89c;
    }
    .mobile-contact-social a.social-facebook:hover .bi,
    .mobile-contact-social a.social-facebook:focus .bi {
        color: #fff!important;
    }

    .mobile-contact-social a.social-twitter {
        border-color: #1da1f2;
    }
    .mobile-contact-social a.social-twitter .bi {
        color: #1da1f2;
    }
    .mobile-contact-social a.social-twitter:hover, .mobile-contact-social a.social-twitter:focus {
        background: #1da1f2;
        box-shadow: 0 4px 16px #1da1f240, 0 1.5px 8px #bcd1f89c;
    }
    .mobile-contact-social a.social-twitter:hover .bi,
    .mobile-contact-social a.social-twitter:focus .bi {
        color: #fff!important;
    }

    .mobile-contact-social a.social-linkedin {
        border-color: #2867b2;
    }
    .mobile-contact-social a.social-linkedin .bi {
        color: #2867b2;
    }
    .mobile-contact-social a.social-linkedin:hover, .mobile-contact-social a.social-linkedin:focus {
        background: #2867b2;
        box-shadow: 0 4px 16px #2867b230, 0 1.5px 8px #bcd1f89c;
    }
    .mobile-contact-social a.social-linkedin:hover .bi,
    .mobile-contact-social a.social-linkedin:focus .bi {
        color: #fff!important;
    }

    .mobile-contact-social a.social-instagram {
        border-color: #ea4c89;
    }
    .mobile-contact-social a.social-instagram .bi {
        /* Instagram gradient style */
        background: radial-gradient(circle at 30% 100%, #fed373 10%, #f15245 40%, #d92e7f 60%, #515ecf 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
        color: #ea4c89; /* fallback */
    }
    .mobile-contact-social a.social-instagram:hover, .mobile-contact-social a.social-instagram:focus {
        background: linear-gradient(135deg, #fdc468 0%, #df4996 100%);
        box-shadow: 0 4px 16px #ea4c8930, 0 1.5px 8px #bcd1f89c;
    }
    .mobile-contact-social a.social-instagram:hover .bi,
    .mobile-contact-social a.social-instagram:focus .bi {
        background: none;
        -webkit-text-fill-color: #fff;
        color:#fff!important;
    }
}
/* 
    Navbar/desktop-mobile visibility
*/
@media (max-width:991px) {
    .navbar-nav, .navbar-collapse { display:none !important }
    .navbar-toggler { display: block !important; }
}
@media (min-width:992px) {
    .mobile-menu, .mobile-menu-backdrop { display: none !important; }
}
/* --- 
    Custom Contact Button 
    comment: contact page blue button styles 
 --- */
.custom-contact-btn {
    text-decoration: none !important;
    border-radius: 8px;
    padding: 10px 24px;
    background: #144fc6;
    color: #fff !important;
    font-size: 1.08em;
    font-weight: 600;
    letter-spacing: 0.014em;
    border: none;
    outline: none;
    box-shadow: 0 2px 12px rgba(80, 148, 239, 0.16);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    cursor: pointer;
}
.custom-contact-btn i {
    margin-right: 7px;
    transition: transform 0.3s ease;
}
.custom-contact-btn:hover {
    background: #216ff3 !important;
    color: #fff !important;
    box-shadow: 0 3px 20px rgba(24, 98, 224, 0.25), 0 1.5px 7px rgba(96, 164, 246, 0.25) !important;
    transform: translateY(-2px) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer;
    text-decoration: none !important;
}

.custom-contact-btn:hover i {
    transform: translateX(2px);
    transition: transform 0.3s ease;
}
.custom-contact-btn:active {
    transform: translateY(0) scale(0.98);
}
.custom-contact-btn:focus:not(:focus-visible) {
    outline: none !important;
    border: none !important;
}

.custom-contact-btn:focus-visible {
    outline: 2px solid #1760bb;
    outline-offset: 2px;
    border-radius: 4px;
}
    
    


/* ============================================
   Footer Styles (Extracted from footer.blade.php)
   ============================================ */

.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.footer > .container {
    position: relative;
    z-index: 1;
}

.footer-social-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2.5rem;
    margin-bottom: 3rem;
}

.footer-follow-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-social-icons {
    gap: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.3rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    border-color: #1760bb;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 25px rgba(23, 96, 187, 0.4);
}

.footer-main-content {
    margin-bottom: 2rem;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.8;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    padding: 0.5rem 0;
    position: relative;
    font-weight: 400;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(8px);
    padding-left: 0.5rem;
}

.footer-link:hover::before {
    width: 6px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
    border-width: 1px;
}

.footer-bottom {
    padding-top: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-links {
    align-items: center;
    gap: 1.5rem;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    border: 1px solid transparent;
}

.footer-bottom-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(23, 96, 187, 0.3);
    transform: translateY(-2px);
}

.footer-help-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
}

.footer-help-link:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    border-color: #1760bb;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(23, 96, 187, 0.3);
}

.footer-help-link i {
    font-size: 1.1rem;
}

/* Our Businesses Section */
.footer-business-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.business-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.business-logo-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.business-logo-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(23, 96, 187, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(23, 96, 187, 0.2);
}

.business-logo-link:hover::before {
    left: 100%;
}

.business-logo {
    max-width: 100%;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.8);
    transition: all 0.3s ease;
}

.business-logo-link:hover .business-logo {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .footer-social-section {
        padding-bottom: 1.5rem;
        margin-bottom: 2rem;
    }
    .footer-follow-text {
        margin-bottom: 0;
        font-size: 1rem;
    }
    .footer-social-icons {
        justify-content: center;
    }
    .footer-main-content {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .footer-social-section {
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .footer-follow-text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .footer-social-icons {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .social-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    
    .footer-main-content {
        margin-bottom: 1.5rem;
    }
    
    .footer-main-content .row {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
    }
    
    .footer-main-content .col-lg,
    .footer-main-content .col-md-6,
    .footer-main-content .col-sm-6 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        margin-bottom: 1.75rem;
        flex: 0 0 auto;
        width: 50% !important;
        max-width: 50% !important;
    }
    
    .footer-heading {
        font-size: 1.05rem;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        margin: 0;
    }
    
    .footer-link {
        font-size: 0.9rem;
        padding: 0.5rem 0;
        width: 100%;
        display: block;
    }
    
    .footer-divider {
        margin: 1.5rem 0;
        opacity: 0.2;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem !important;
        width: 100%;
    }
    
    .footer-bottom-link {
        padding: 0.5rem 0;
        font-size: 0.85rem;
        text-align: center;
        width: 100%;
        display: block;
    }
    
    .footer-help-link {
        justify-content: center;
        font-size: 0.9rem;
        padding: 0.5rem 50px;
    }
    
    .footer-copyright {
        padding: 1rem 0 !important;
        margin-top: 1rem !important;
    }
    
    .footer-copyright p {
        font-size: 0.85rem !important;
        line-height: 1.5;
    }
    
    .footer-business-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .business-logo-link {
        padding: 0.75rem;
    }
    
    .business-logo {
        max-height: 40px;
    }
}

@media (max-width: 575.98px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-social-section {
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }
    
    .footer-follow-text {
        font-size: 0.9rem;
    }
    
    .footer-social-icons {
        gap: 0.5rem;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .footer-main-content .row {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    .footer-main-content .col-lg,
    .footer-main-content .col-md-6,
    .footer-main-content .col-sm-6 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        margin-bottom: 1.5rem;
        flex: 0 0 auto;
        width: 50% !important;
        max-width: 50% !important;
    }
    
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-link {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    .footer-bottom-links {
        gap: 0.5rem !important;
    }
    
    .footer-bottom-link {
        font-size: 0.8rem;
    }
    
    .footer-copyright p {
        font-size: 0.8rem !important;
    }
}

/* Ensure 2-column layout on mobile for footer */
@media (max-width: 767.98px) {
    .footer-main-content .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
        max-width: 50%;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .footer-main-content .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
        max-width: 50%;
    }
}

/* Floating Action Buttons - Left Side */
.floating-action-buttons-wrapper {
    position: fixed !important;
    left: 20px !important;
    bottom: 30px !important;
    right: auto !important;
    top: auto !important;
    z-index: 9999;
    animation: fadeInUpButtons 0.6s ease-out 0.3s both;
    pointer-events: none;
    box-sizing: border-box;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
    transform: none !important;
}

.floating-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    padding: 12px;
    pointer-events: auto;
    width: fit-content;
    min-width: fit-content;
    max-width: 100px;
    box-sizing: border-box;
    margin: 0;
    position: relative;
}

/* Call Action Button */
.call-action-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    border-radius: 50%;
    box-shadow: 0 6px 24px rgba(23, 96, 187, 0.35),
                0 2px 8px rgba(23, 96, 187, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.call-action-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.call-action-button:hover::before {
    width: 100%;
    height: 100%;
}

.call-action-button:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 10px 40px rgba(23, 96, 187, 0.5),
                0 4px 16px rgba(23, 96, 187, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #1a6bc8 0%, #0d5ba8 100%);
}

.call-action-button:active {
    transform: scale(1.05) translateY(-2px);
    transition: all 0.15s ease;
}

.call-action-icon {
    position: relative;
    z-index: 3;
    color: #ffffff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.call-action-icon i {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.call-action-button:hover .call-action-icon {
    transform: scale(1.1);
}

.call-action-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(23, 96, 187, 0.3);
    animation: pulseButton 2.5s infinite;
    z-index: 1;
    pointer-events: none;
}

.call-action-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    animation: rippleButton 2s infinite;
    z-index: 2;
    pointer-events: none;
}

/* WhatsApp/Chat Floating Button */
.whatsapp-chat-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35),
                0 2px 8px rgba(37, 211, 102, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.whatsapp-chat-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.whatsapp-chat-button:hover::before {
    width: 100%;
    height: 100%;
}

.whatsapp-chat-button:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5),
                0 4px 16px rgba(37, 211, 102, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #2ae072 0%, #15a085 100%);
}

.whatsapp-chat-button:active {
    transform: scale(1.05) translateY(-2px);
    transition: all 0.15s ease;
}

.whatsapp-chat-icon {
    position: relative;
    z-index: 3;
    color: #ffffff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.whatsapp-chat-icon i {
    font-size: 30px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-chat-button:hover .whatsapp-chat-icon {
    transform: scale(1.1);
}

.whatsapp-chat-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: pulseButton 2.5s infinite;
    z-index: 1;
    pointer-events: none;
}

.whatsapp-chat-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    animation: rippleButton 2s infinite 0.5s;
    z-index: 2;
    pointer-events: none;
}

@keyframes pulseButton {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

@keyframes rippleButton {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes fadeInUpButtons {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: none !important;
    }
}

/* Responsive adjustments for floating buttons */
@media (max-width: 991.98px) {
    .floating-action-buttons-wrapper {
        left: 15px !important;
        bottom: 20px !important;
    }
    
    .floating-buttons-container {
        gap: 15px;
        padding: 10px;
        border-radius: 45px;
    }
    
    .call-action-button,
    .whatsapp-chat-button {
        width: 58px;
        height: 58px;
    }
    
    .call-action-icon {
        font-size: 26px;
    }
    
    .call-action-icon i {
        font-size: 26px;
    }
    
    .call-action-pulse,
    .call-action-ripple {
        width: 58px;
        height: 58px;
    }
    
    .whatsapp-chat-icon {
        font-size: 28px;
    }
    
    .whatsapp-chat-icon i {
        font-size: 28px;
    }
    
    .whatsapp-chat-pulse,
    .whatsapp-chat-ripple {
        width: 58px;
        height: 58px;
    }
}

@media (max-width: 767.98px) {
    .floating-action-buttons-wrapper {
        left: 12px !important;
        bottom: 15px !important;
    }
    
    .floating-buttons-container {
        gap: 12px;
        padding: 8px;
        border-radius: 40px;
    }
    
    .call-action-button,
    .whatsapp-chat-button {
        width: 52px;
        height: 52px;
    }
    
    .call-action-icon {
        font-size: 24px;
    }
    
    .call-action-icon i {
        font-size: 24px;
    }
    
    .call-action-pulse,
    .call-action-ripple {
        width: 52px;
        height: 52px;
    }
    
    .whatsapp-chat-icon {
        font-size: 26px;
    }
    
    .whatsapp-chat-icon i {
        font-size: 26px;
    }
    
    .whatsapp-chat-pulse,
    .whatsapp-chat-ripple {
        width: 52px;
        height: 52px;
    }
    
    .whatsapp-chat-icon {
        font-size: 22px;
    }
    
    .whatsapp-chat-icon i {
        font-size: 22px;
    }
    
    .whatsapp-chat-pulse,
    .whatsapp-chat-ripple {
        width: 52px;
        height: 52px;
    }
}

/* Ensure buttons never go outside viewport on any zoom level - Consolidated */
.floating-action-buttons-wrapper {
    box-sizing: border-box !important;
    will-change: auto;
    overflow: visible;
    left: 20px !important;
    right: auto !important;
    transform: none !important;
    position: fixed !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    max-width: none !important;
}

/* Force fixed positioning on all screen sizes and zoom levels */
@media (min-width: 768px) {
    .floating-action-buttons-wrapper {
        left: 20px !important;
        right: auto !important;
        transform: none !important;
        position: fixed !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}

@media (min-width: 992px) {
    .floating-action-buttons-wrapper {
        left: 20px !important;
        right: auto !important;
        position: fixed !important;
        transform: none !important;
    }
}

@media (min-width: 1200px) {
    .floating-action-buttons-wrapper {
        left: 20px !important;
        right: auto !important;
        position: fixed !important;
    }
}

@media (min-width: 1400px) {
    .floating-action-buttons-wrapper {
        left: 20px !important;
        right: auto !important;
        position: fixed !important;
    }
}

/* Prevent any parent container from affecting position */
body .floating-action-buttons-wrapper,
html .floating-action-buttons-wrapper,
* .floating-action-buttons-wrapper {
    left: 20px !important;
    right: auto !important;
    position: fixed !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Ensure position is maintained after animation completes */
.floating-action-buttons-wrapper[style*="transform"],
.floating-action-buttons-wrapper[style*="left"],
.floating-action-buttons-wrapper[style*="position"] {
    left: 20px !important;
    position: fixed !important;
    transform: none !important;
}

/* ============================================
   LOGIN PAGE STYLES - SPLIT SCREEN
   ============================================ */

/* Login Page Styles - Split Screen */
.login-main-bg {
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
    height: 100vh;
}

/* Back to Home Button - Professional Design */
.back-to-home-btn {
    position: fixed;
    top: 2rem;
    left: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: #1760bb;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(23, 96, 187, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(23, 96, 187, 0.1);
}

.back-to-home-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.back-to-home-btn:hover {
    background: #1760bb;
    color: #ffffff;
    transform: translateX(-4px);
    box-shadow: 0 6px 25px rgba(23, 96, 187, 0.25), 0 3px 12px rgba(0, 0, 0, 0.12);
    text-decoration: none;
}

.back-to-home-btn:hover i {
    transform: translateX(-3px);
}

.back-to-home-btn:active {
    transform: translateX(-2px) scale(0.98);
}

/* Responsive Design for Back to Home Button */
@media (max-width: 991.98px) {
    .back-to-home-btn {
        top: 1.5rem;
        left: 1.5rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .back-to-home-btn {
        top: 1rem;
        left: 1rem;
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .back-to-home-btn span {
        display: none;
    }
    
    .back-to-home-btn {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    
    .back-to-home-btn i {
        font-size: 1.2rem;
    }
}

/* Left Side - Image Section */
.login-image-section {
    flex: 1;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.login-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.login-image-content {
    padding-top: 50px;
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
    max-width: 500px;
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.login-image-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.login-image-logo img {
    width: 70px;
    height: auto;
    filter: brightness(0) invert(1);
}

.login-image-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.5px;
}

.login-image-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}

/* Right Side - Login Form Section */
.login-form-section {
    flex: 1;
    background: linear-gradient(135deg, #f2f7fc 0%, #e3edfa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: 50%;
    width: 50%;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 3rem 2rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(23, 96, 187, 0.4) rgba(227, 237, 250, 0.2);
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Custom Scrollbar for Login Form Section - Webkit Browsers */
.login-form-section::-webkit-scrollbar {
    width: 8px;
}

.login-form-section::-webkit-scrollbar-track {
    background: rgba(227, 237, 250, 0.3);
    border-radius: 10px;
    margin: 10px 0;
}

.login-form-section::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    border-radius: 10px;
    border: 2px solid rgba(227, 237, 250, 0.3);
    transition: all 0.3s ease;
}

.login-form-section::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #10509e 0%, #1760bb 100%);
    box-shadow: 0 2px 8px rgba(23, 96, 187, 0.3);
}

.login-form-section::-webkit-scrollbar-thumb:active {
    background: linear-gradient(135deg, #0d4080 0%, #0a3566 100%);
}

.login-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(23,96,187,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.login-container {
    max-width: 550px;
    width: 100%;
    position: relative;
    z-index: 1;
    animation: fadeInRight 0.8s ease-out;
    margin: auto;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.login-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(23, 96, 187, 0.12),
                0 2px 10px rgba(23, 96, 187, 0.08);
    padding: 3rem 2.5rem;
    border: 1.5px solid rgba(23, 96, 187, 0.1);
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-title {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.login-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}

.login-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem 0.875rem 3rem;
    font-size: 1rem;
    border: 2px solid #e3edfa;
    border-radius: 12px;
    background: #ffffff;
    color: #2c3e50;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    line-height: 1.5;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: #1760bb;
    box-shadow: 0 0 0 4px rgba(23, 96, 187, 0.1);
    background: #f8fbff;
}

.form-control::placeholder {
    color: #adb5bd;
}

.input-icon-left {
    position: absolute;
    left: 1rem;
    top: calc(1.425rem + 0.75rem + 1.625rem);
    color: #6c757d;
    font-size: 1.1rem;
    pointer-events: none;
    transition: color 0.3s ease;
    z-index: 1;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    opacity: 1;
    visibility: visible;
}

.form-control:focus ~ .input-icon-left {
    color: #1760bb;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: calc(1.425rem + 0.75rem + 1.625rem);
    background: none;
    border: none;
    color: #6c757d;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    line-height: 1;
    transform: translateY(-50%);
    opacity: 1;
    visibility: visible;
}

.password-toggle:hover {
    color: #1760bb;
}

/* Register Section */
.register-section {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.register-section.active {
    display: block;
}

/* Forgot Password Section */
.forgot-password-section {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.forgot-password-section.active {
    display: block;
}

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

.send-otp-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(23, 96, 187, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.send-otp-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.send-otp-btn:hover::before {
    width: 300px;
    height: 300px;
}

.send-otp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(23, 96, 187, 0.4);
    background: linear-gradient(135deg, #10509e 0%, #1760bb 100%);
}

.send-otp-btn:active {
    transform: translateY(0);
}

.send-otp-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.otp-section {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.otp-section.active {
    display: block;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e3edfa;
}

.otp-input-group {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.otp-input {
    width: 100%;
    aspect-ratio: 1;
    padding: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    border: 2px solid #e3edfa;
    border-radius: 12px;
    background: #ffffff;
    color: #2c3e50;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.otp-input:focus {
    border-color: #1760bb;
    box-shadow: 0 0 0 4px rgba(23, 96, 187, 0.1);
    background: #f8fbff;
    transform: scale(1.05);
}

.verify-otp-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(23, 96, 187, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

/* Login 2FA Section */
.login-2fa-section {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.login-2fa-section.active {
    display: block;
}

/* Registration OTP Section */
.register-otp-section {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.register-otp-section.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.resend-otp-container {
    text-align: center;
    margin: 1.5rem 0;
}

.resend-otp-text {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.resend-otp-link {
    background: none;
    border: none;
    color: #1760bb;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 0;
}

.resend-otp-link:hover {
    color: #10509e;
    text-decoration: none;
}

.resend-otp-link:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.otp-timer {
    color: #6c757d;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.back-to-login-btn {
    width: 100%;
    margin-top: 1rem;
    background: transparent;
    border: none;
    color: #1760bb;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.back-to-login-btn:hover {
    color: #10509e;
    text-decoration: none;
}

/* Responsive Design for Login Page */
@media (max-width: 991.98px) {
    .login-image-section {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 40vh;
        padding: 2rem;
    }
    
    .login-image-content {
        padding-top: 20px;
    }
    
    .login-image-title {
        font-size: 2rem;
    }
    
    .login-image-desc {
        font-size: 1rem;
    }
    
    .login-form-section {
        margin-left: 0;
        width: 100%;
        padding: 2rem 1.5rem;
        align-items: flex-start;
        padding-top: 2rem;
    }
    
    .login-form-section::-webkit-scrollbar {
        width: 6px;
    }
    
    .login-container {
        padding-top: 20px;
    }
    
    .login-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .login-main-bg {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    
    .login-image-section {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 35vh;
        padding: 1.5rem;
    }
    
    .login-image-logo {
        width: 100px;
        height: 100px;
        margin: 0 auto 1.5rem;
    }
    
    .login-image-logo img {
        width: 60px;
    }
    
    .login-image-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .login-image-desc {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .login-form-section {
        margin-left: 0;
        width: 100%;
        padding: 1.5rem 1rem;
        min-height: auto;
    }
    
    .login-form-section::-webkit-scrollbar {
        width: 4px;
    }
    
    .login-form-section::-webkit-scrollbar-thumb {
        border: 1px solid rgba(227, 237, 250, 0.3);
    }
    
    .login-container {
        padding-top: 10px;
        max-width: 100%;
    }
    
    .login-card {
        padding: 1.5rem 1.25rem;
        border-radius: 20px;
    }
    
    .login-title {
        font-size: 1.75rem;
    }
    
    .login-subtitle {
        font-size: 0.9rem;
    }
}

.verify-otp-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.verify-otp-btn:hover::before {
    width: 300px;
    height: 300px;
}

.verify-otp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(23, 96, 187, 0.4);
    background: linear-gradient(135deg, #10509e 0%, #1760bb 100%);
}

.verify-otp-btn:active {
    transform: translateY(0);
}

.verify-otp-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.back-to-login {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e3edfa;
}

.back-to-login-btn {
    color: #1760bb;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-to-login-btn:hover {
    color: #10509e;
    text-decoration: underline;
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: #1760bb;
}

.form-check-label {
    font-size: 0.9rem;
    color: #495057;
    cursor: pointer;
    user-select: none;
}

.forgot-password-link {
    color: #1760bb;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-left: auto;
}

.forgot-password-link:hover {
    color: #10509e;
    text-decoration: underline;
}

.register-link {
    color: #1760bb;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.register-link:hover {
    color: #10509e;
    text-decoration: underline;
}

.register-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(23, 96, 187, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

.register-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.register-btn:hover::before {
    width: 300px;
    height: 300px;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(23, 96, 187, 0.4);
    background: linear-gradient(135deg, #10509e 0%, #1760bb 100%);
}

.register-btn:active {
    transform: translateY(0);
}

.register-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.login-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e3edfa;
}

.login-footer-text {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.switch-form-link {
    color: #1760bb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.switch-form-link:hover {
    color: #10509e;
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #1760bb 0%, #10509e 100%);
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(23, 96, 187, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.login-btn:hover::before {
    width: 300px;
    height: 300px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(23, 96, 187, 0.4);
    background: linear-gradient(135deg, #10509e 0%, #1760bb 100%);
}

.login-btn:active {
    transform: translateY(0);
}

.login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .login-main-bg {
        flex-direction: column;
    }
    
    .login-image-section {
        min-height: 300px;
        padding: 2rem 1.5rem;
    }
    
    .login-image-title {
        font-size: 2rem;
    }
    
    .login-image-logo {
        width: 100px;
        height: 100px;
    }
    
    .login-image-logo img {
        width: 60px;
    }
    
    .login-form-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .login-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .login-title {
        font-size: 1.75rem;
    }
    
    .login-image-section {
        min-height: 250px;
        padding: 1.5rem 1rem;
    }
    
    .login-image-title {
        font-size: 1.75rem;
    }
    
    .login-image-desc {
        font-size: 1rem;
    }
    
    .login-image-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .login-image-logo img {
        width: 50px;
    }
    
    .otp-input-group {
        gap: 0.5rem;
    }
    
    .otp-input {
        font-size: 1.1rem;
        padding: 0.6rem;
    }
}

/* Loading State */
.login-btn.loading,
.register-btn.loading,
.send-otp-btn.loading,
.verify-otp-btn.loading {
    pointer-events: none;
}

.login-btn.loading::after,
.register-btn.loading::after,
.send-otp-btn.loading::after,
.verify-otp-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* reCAPTCHA Styling */
.g-recaptcha {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.g-recaptcha > div {
    margin: 0 auto;
}

.recaptcha-error {
    text-align: center;
    animation: fadeIn 0.3s ease-out;
}

@media (max-width: 575.98px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
    }
}

/* ============================================
   ICON FIXES - ENSURE ALL ICONS DISPLAY PROPERLY
   ============================================ */

/* Bootstrap Icons - Ensure proper font family and visibility */
.bi,
[class^="bi-"],
[class*=" bi-"] {
    font-family: "bootstrap-icons" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    line-height: 1 !important;
    display: inline-block !important;
    vertical-align: -0.125em !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    visibility: visible !important;
    opacity: 1 !important;
    speak: none !important;
}

.bi::before,
[class^="bi-"]::before,
[class*=" bi-"]::before {
    display: inline-block !important;
    font-family: "bootstrap-icons" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    line-height: 1 !important;
    vertical-align: -0.125em !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Font Awesome Icons - Ensure proper font family and visibility */
.fas,
.far,
.fal,
.fab,
.fa,
[class^="fa-"],
[class*=" fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "Font Awesome 6 Pro", "Font Awesome 5 Pro" !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
    display: inline-block !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    word-wrap: normal !important;
    white-space: nowrap !important;
    direction: ltr !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.fas,
.fa-solid {
    font-weight: 900 !important;
}

.far,
.fa-regular {
    font-weight: 400 !important;
}

.fab,
.fa-brands {
    font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands" !important;
    font-weight: 400 !important;
}

/* Ensure all icon elements are visible */
i.bi,
i.fas,
i.far,
i.fal,
i.fab,
i.fa,
span.bi,
span.fas,
span.far,
span.fal,
span.fab,
span.fa {
    visibility: visible !important;
    opacity: 1 !important;
    display: inline-block !important;
}

/* Fix for icons inside buttons and links */
a i,
button i,
.btn i,
.nav-link i,
.menu-item i {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Fix for icons in header */
.mini-header-icon,
.navbar i,
.header-icon {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: inherit !important;
}

/* Fix for icons in service cards */
.service-icon i,
.service-card i,
.feature-icon i {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Fix for icons in footer */
.footer i,
.footer-link i,
.footer-social i {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure icons don't break layout */
i,
.bi,
.fas,
.far,
.fal,
.fab {
    text-decoration: none !important;
    font-style: normal !important;
}

/* Fix for icons with me-2, ms-2, etc. spacing classes */
i.me-2,
i.ms-2,
i.me-1,
i.ms-1,
i.me-3,
i.ms-3 {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

