
/* Slider */
.slider-hero-section {
min-height: calc(100vh - 79px);
margin-top: 79px;
position: relative;
display: flex;
align-items: center;
overflow: hidden;
padding-bottom: 80px; /* Space for scroll indicator */
}

/* Simple Animated Background */
.slider-animated-bg {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
pointer-events: none;
overflow: hidden;
}

.slider-accent-circle {
position: absolute;
border-radius: 50%;
opacity: 0.05;
}

.circle-1 {
width: 600px;
height: 600px;
background: #DC3545;
top: -300px;
right: -200px;
animation: float 20s infinite ease-in-out;
}

.circle-2 {
width: 500px;
height: 500px;
background: #0D6EFD;
bottom: -250px;
left: -200px;
animation: float 20s infinite ease-in-out reverse;
}

@keyframes float {
0%, 100% { transform: translate(0, 0) scale(1); }
50% { transform: translate(30px, -30px) scale(1.1); }
}

/* Pulse Dot in Badge */
.slider-pulse-dot {
display: inline-block;
width: 6px;
height: 6px;
background: #DC3545;
border-radius: 50%;
animation: pulse 2s infinite;
}

@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}

/* Button Enhancement */
.slider-btn-primary {
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.slider-btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Card Stack Visual */
.slider-hero-visual {
position: relative;
animation: slideInRight 1s ease-out;
}

.slider-card-stack {
position: relative;
max-width: 450px;
margin: 0 auto;
}

.slider-main-card {
position: relative;
z-index: 3;
background: white;
animation: cardFloat 6s infinite ease-in-out;
}

.slider-bg-card {
position: absolute;
width: 100%;
height: 100%;
border-radius: 0.5rem;
background: white;
border: 1px solid #E9ECEF;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-1 {
top: -10px;
left: -10px;
z-index: 1;
transform: rotate(-3deg);
background: linear-gradient(135deg, #FFF 0%, #F8F9FA 100%);
}

.card-2 {
top: -20px;
left: -20px;
z-index: 0;
transform: rotate(-6deg);
background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

@keyframes cardFloat {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}

/* Service Icons */
.slider-service-icon {
width: 40px;
height: 40px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.slider-service-item {
transition: transform 0.3s ease;
}

.slider-service-item:hover {
transform: translateX(5px);
}

/* Scroll Indicator - Fixed positioning */
.slider-scroll-indicator {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
z-index: 10; /* Higher z-index to appear above cards */
animation: bounce 2s infinite;
}

.slider-mouse-icon {
width: 24px;
height: 36px;
border: 2px solid #6C757D;
border-radius: 12px;
position: relative;
opacity: 0.5;
}

.slider-mouse-wheel {
width: 3px;
height: 8px;
background: #6C757D;
border-radius: 2px;
position: absolute;
top: 8px;
left: 50%;
transform: translateX(-50%);
animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
0% { opacity: 1; transform: translateX(-50%) translateY(0); }
100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

@keyframes bounce {
0%, 100% { transform: translateX(-50%) translateY(0); }
50% { transform: translateX(-50%) translateY(-10px); }
}

/* Animations */
@keyframes slideInRight {
from { opacity: 0; transform: translateX(50px); }
to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 991px) {
.slider-hero-section {
padding-top: 3rem;
padding-bottom: 100px; /* More space for scroll indicator on tablets */
}

.slider-card-stack {
margin-top: 3rem;
max-width: 350px;
}

.slider-scroll-indicator {
bottom: 30px; /* More spacing from bottom */
}
}

@media (max-width: 767px) {
.display-3 {
font-size: 2.5rem;
}

.slider-bg-card {
display: none;
}

.btn-lg {
font-size: 1rem;
padding: 0.75rem 1.5rem !important;
}

.slider-hero-section {
padding-bottom: 120px; /* Even more space on mobile */
}

.slider-card-stack {
margin-bottom: 2rem; /* Add margin bottom to card stack */
}

.slider-scroll-indicator {
bottom: 40px; /* Position higher on mobile */
background: rgba(255, 255, 255, 0.95); /* Add subtle background for better visibility */
padding: 10px 20px;
border-radius: 20px;
}
}

@media (max-width: 575px) {
.display-3 {
font-size: 2rem;
}

.lead {
font-size: 1rem;
}

.slider-main-card {
transform: scale(0.95);
}

.slider-service-item h6 {
font-size: 0.9rem;
}

.slider-service-item small {
font-size: 0.75rem;
}

.slider-hero-section {
min-height: auto;
padding-top: 2rem;
padding-bottom: 130px; /* Maximum space on small mobile */
}

.slider-hero-visual {
margin-bottom: 2rem; /* Add space below the visual */
}

.slider-scroll-indicator {
bottom: 30px;
width: calc(100% - 40px); /* Make it more visible */
max-width: 200px;
}
}




/*About*/

.abt-section {
  padding: 40px 0 30px;
  background-color: white;
}

.abt-header {
  color: #c40027;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.abt-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  margin-bottom: 12px;
}

.abt-description {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 5px;
}

.abt-credit {
  font-size: 0.95rem;
  color: #4a5568;
  margin-top: 3px;
}

.abt-credit-link {
  color: #a70021;
  text-decoration: none;
}

.abt-main-image-wrapper {
  position: relative;
}

.abt-main-image {
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  height: 400px;
  position: relative;
}

.abt-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abt-stats-badge {
  position: absolute;
  bottom: -75px;
  right: 25px;
  background: linear-gradient(135deg, #bc0026 0%, #cc0029 100%);
  border-radius: 30px;
  padding: 32px 38px;
  color: white;
  text-align: center;
  box-shadow: 0 8px 25px rgba(255, 90, 122, 0.3);
}

.abt-stats-number {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.abt-stats-label {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}

.abt-control-panel {
  border-radius: 30px;
  background-color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 280px;
}

.abt-control-panel img {
  border-radius: 30px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.abt-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.abt-feature-item {
  font-size: 0.95rem;
  color: #2d3748;
  margin-bottom: 12px;
  display: flex;
  align-items: start;
  line-height: 1.5;
}

.abt-feature-item i {
  color: #d6002b;
  margin-right: 10px;
  margin-top: 2px;
  font-size: 1rem;
  flex-shrink: 0;
}

.abt-philosophy {
  font-size: 1.1rem;
  color: #000;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}

.abt-cta-button {
  background: linear-gradient(135deg, #e8002e 0%, #ce0029 100%);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  transition: all 0.3s ease;
}

.abt-cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.abt-quote-wrapper {
  margin-top: 0;
}

.abt-quote-icon {
  color: #3b82f6;
  font-size: 2.8rem;
  margin-bottom: 10px;
  display: inline-block;
}

.abt-quote-text {
  font-size: 1rem;
  color: #2d3748;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 18px;
}

.abt-quote-author {
  font-size: 0.95rem;
  color: #000;
  font-weight: 700;
  margin-bottom: 0;
}

.abt-row-spacing {
  margin-top: 45px;
}

@media (max-width: 991px) {
  .abt-title {
      font-size: 2rem;
  }
  
  .abt-stats-badge {
      position: static;
      margin-top: 20px;
  }
  
  .abt-main-image {
      height: 220px;
  }
  
  .abt-row-spacing {
      margin-top: 35px;
  }
}

/*teams*/
.team-section {
    background: linear-gradient(135deg, #1a1d35 0%, #2d3254 100%);
    padding: 80px 0;
    color: #fff;
}

.team-member-card {
    margin-bottom: 40px;
}

.team-avatar-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
}

.team-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #6366f1;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.team-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-role {
    color: #a0a6c0;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 20px;
}

.team-social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.team-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social-icon:hover {
    background: #6366f1;
    color: #fff;
    transform: translateY(-3px);
}

.team-header-subtitle {
    color: #a0a6c0;
    font-size: 1.1rem;
}



/* faq */

.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.faq-badge {
    display: inline-block;
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.faq-talk-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    color: #495057;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-talk-button:hover {
    border-color: #dc3545;
    color: #dc3545;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.15);
}

.faq-talk-icon {
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 50%;
    position: relative;
}

.faq-talk-icon::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-decorative-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.faq-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.faq-shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.15), rgba(220, 53, 69, 0.05));
    top: -100px;
    left: -50px;
}

.faq-shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.15), rgba(13, 110, 253, 0.05));
    bottom: 100px;
    left: 100px;
}

.faq-shape-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
}

.faq-shape-4 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.3), rgba(251, 146, 60, 0.1));
    bottom: 200px;
    left: 300px;
}

.faq-accordion-wrapper {
    position: relative;
    z-index: 1;
}

.faq-accordion-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: none !important;
    border-radius: 16px !important;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-accordion-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-accordion-button {
    background: transparent;
    color: #212529;
    border: none;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-accordion-button:not(.collapsed) {
    background: transparent;
    color: #212529;
    box-shadow: none;
}

.faq-accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-accordion-button::after {
    width: 1.25rem;
    height: 1.25rem;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
}

.faq-accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.faq-accordion-body {
    padding: 0 1.5rem 1.25rem 1.5rem;
    background: transparent;
    line-height: 1.7;
    font-size: 0.95rem;
    color: #6c757d;
}

.faq-content-wrapper {
    position: relative;
    z-index: 1;
}

@media (max-width: 991.98px) {
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-shape-3 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .faq-title {
        font-size: 1.75rem;
    }
}




/*gallery*/
.gal-team-section {
padding: 50px 0;
background: #e8e8e8;
overflow: hidden;
}

.gal-container-fluid {
padding: 0 20px;
}

.gal-header {
margin-bottom: 40px;
margin-left: 20px;
}

.gal-team-label {
color: #e70000;
font-weight: 700;
letter-spacing: 1px;
margin-bottom: 10px;
}

.gal-team-section h2 {
font-size: 2.5rem;
font-weight: bold;
}

.gal-blue-text {
color: #00b4d8;
}

.gal-slider-container {
overflow: hidden;
cursor: grab;
user-select: none;
}

.gal-slider-container:active {
cursor: grabbing;
}

.gal-slider-track {
display: flex;
gap: 20px;
width: max-content;
}

.gal-image-column {
display: flex;
flex-direction: column;
gap: 20px;
flex-shrink: 0;
}

.gal-image-column.gal-small {
width: 200px;
}

.gal-image-column.gal-medium {
width: 300px;
}

.gal-image-column.gal-large {
width: 500px;
}

.gal-team-img {
width: 100%;
border-radius: 35px;
object-fit: cover;
transition: transform 0.3s, box-shadow 0.3s;
cursor: pointer;
}

.gal-team-img:hover {
transform: scale(1.03);
box-shadow: 0 15px 40px rgba(0, 180, 216, 0.25);
}

.gal-lightbox {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.9);
z-index: 9999;
align-items: center;
justify-content: center;
}

.gal-lightbox.gal-active {
display: flex;
}

.gal-lightbox img {
max-width: 100vw;
max-height: 100vh;
width: auto;
height: auto;
object-fit: contain;
border-radius: 10px;
box-shadow: 0 0 50px rgba(0, 180, 216, 0.5);
}

@media (min-width: 768px) {
.gal-lightbox img {
max-width: 70vw;
max-height: 80vh;
}
}

.gal-lightbox-close {
position: absolute;
top: 20px;
right: 30px;
font-size: 40px;
color: white;
cursor: pointer;
background: none;
border: none;
z-index: 1001;
}

.gal-img-small {
height: 200px;
}

.gal-img-full {
height: 420px;
}

@media (max-width: 991px) {
.gal-image-column.gal-small {
width: 180px;
}

.gal-image-column.gal-medium {
width: 280px;
}

.gal-image-column.gal-large {
width: 420px;
}

.gal-img-full {
height: 420px;
}
}

@media (max-width: 767px) {
.gal-team-section h2 {
font-size: 2rem;
}

.gal-image-column.gal-small {
width: 160px;
}

.gal-image-column.gal-medium {
width: 240px;
}

.gal-image-column.gal-large {
width: 380px;
}

.gal-img-small {
height: 180px;
}

.gal-img-full {
height: 380px;
}

.gal-team-img {
border-radius: 28px;
}
}

@media (max-width: 480px) {
.gal-team-section h2 {
font-size: 1.5rem;
}

.gal-image-column.gal-small {
width: 140px;
}

.gal-image-column.gal-medium {
width: 210px;
}

.gal-image-column.gal-large {
width: 340px;
}

.gal-img-small {
height: 160px;
}

.gal-img-full {
height: 340px;
}

.gal-team-img {
border-radius: 24px;
}
}


/*Why choose Us*/
.why-choose-us {
  padding: 5rem 0;
}

.why-choose-us-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-choose-us-section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
  position: relative;
  display: inline-block;
}

.why-choose-us-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #3498db, #2ecc71);
  border-radius: 2px;
}

.why-choose-us-section-subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
}

.why-choose-us-feature {
  min-height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.why-choose-us-feature-image {
  height: 500px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.why-choose-us-feature-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.why-choose-us-feature-content {
  padding: 3rem;
  background: white;
}

.why-choose-us-feature-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.why-choose-us-feature-text {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.why-choose-us-feature-list {
  list-style: none;
  padding-left: 0;
}

.why-choose-us-feature-list li {
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.why-choose-us-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2ecc71;
  font-weight: bold;
  font-size: 1.2rem;
}

.why-choose-us-feature-btn {
  display: inline-block;
  padding: 0.75rem 1.875rem;
  background: linear-gradient(to right, #3498db, #2e98cc);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 1.25rem;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
}

.why-choose-us-feature-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: white;
}

@media (max-width: 768px) {
  .why-choose-us-feature-image {
      height: 300px;
  }

  .why-choose-us-section-title {
      font-size: 2rem;
  }

  .why-choose-us-feature-content {
      padding: 2rem;
  }
}



/* footer */
footer {
background: #f5f5f5;;
padding: 4rem 0 1.875rem;
}
.btn-contact {
color: #00bcd4;
border-color: #00bcd4;
}
.btn-contact:hover {
background: #00bcd4;
color: white;
}
.email-box {
background: white;
display: inline-flex;
padding: 0.75rem 1.25rem;
border-radius: 8px;
gap: 0.625rem;
}
.social-icons {
display: flex;
gap: 0.75rem;
justify-content: flex-end;
flex-wrap: wrap;
}
.social-icon {
width: 45px;
height: 45px;
border: 2px solid #00bcd4;
color: #00bcd4;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
border-radius: 50%;
transition: all 0.3s;
}
.social-icon:hover {
background: #00bcd4;
color: white;
}
@media (max-width: 768px) {
.social-icons {
justify-content: center;
gap: 0.5rem;
}
.social-icon {
width: 40px;
height: 40px;
font-size: 16px;
}
}
@media (max-width: 480px) {
.social-icon {
width: 38px;
height: 38px;
font-size: 14px;
}
}


/*Breadcrumb*/
.banner-section {
background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1e3a8a 100%);
padding: 60px 0;
margin-top: 79px;
}

.breadcrumb-section{
margin-top: 79px;
}

.breadcrumb {
background: transparent;
padding: 0;
margin: 0;
}

.breadcrumb-item a {
color: #93c5fd !important;
text-decoration: none;
}

.breadcrumb-item a:hover {
color: #ffffff !important;
}

.breadcrumb-item.active {
color: #ffffff !important;
}

.breadcrumb-item + .breadcrumb-item::before {
color: #93c5fd !important;
content: ">";
}

.illustration-placeholder {
width: 450px;
height: auto;
opacity: 0.9;
border-radius: 12px;
}
.illustration-placeholder img {
max-width: 100%;
height: auto;
border-radius: 12px;
}




/* Nav Tabs */
.nav-tabs {
display: flex;
flex-wrap: wrap;
background: white;
border-top: 1px solid #eaeaea;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

overflow: hidden;
padding-inline: 0;
position: sticky;
top: 79px;
z-index: 99;
}

.nav-tabs a {
flex: 1;
min-width: 150px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
padding: 0 24px;
text-align: center;
text-decoration: none;
color: #495057;
font-weight: 500;
font-size: 14px;
letter-spacing: 0.3px;
border-right: 1px solid #e0e0e0;
transition: all 0.3s ease;
background: white;
line-height: 1.4;
}

.nav-tabs a:last-child {
border-right: none;
}

.nav-tabs a:hover {
background: #f0f7ff;
color: #1976D2;
}

.nav-tabs a.active {
background: #003866ff;
color: white;
font-weight: 600;
pointer-events: none;
}

.mobile-nav-dropdown {
display: none;
position: sticky;
top: 79px;
z-index: 99;
background: white;
border-bottom: 3px solid #2196F3;
border-top: 3px solid #2196F3;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mobile-nav-dropdown .dropdown-toggle {
width: 100%;
height: 60px;
background: #2196F3;
color: white;
border: none;
font-weight: 600;
font-size: 14px;
letter-spacing: 0.3px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20px;
cursor: pointer;
}

.mobile-nav-dropdown .dropdown-toggle:focus {
box-shadow: none;
outline: none;
}

.mobile-nav-dropdown .dropdown-toggle::after {
display: none;
}

.mobile-nav-dropdown .dropdown-menu {
width: 100%;
border-radius: 0;
border: none;
border-top: 1px solid #e0e0e0;
margin: 0;
padding-top: 0;
max-height: 70vh;
overflow-y: auto;
position: absolute !important;
top: 100% !important;
transform: none !important;
}

.mobile-nav-dropdown .dropdown-item {
padding: 15px 20px;
color: #495057;
font-weight: 500;
font-size: 14px;
letter-spacing: 0.3px;
border-bottom: 1px solid #e0e0e0;
transition: all 0.3s ease;
text-decoration: none;
}

.mobile-nav-dropdown .dropdown-item:last-child {
border-bottom: none;
}

.mobile-nav-dropdown .dropdown-item:hover {
background: #f0f7ff;
color: #1976D2;
}

.mobile-nav-dropdown .dropdown-item.active {
background: #003866ff;
color: white;
pointer-events: none;
}

@media (max-width: 768px) {
.nav-tabs {
display: none;
}

.mobile-nav-dropdown {
display: block;
}
}







/*States*/
.reg-states-links {
color: #373737;
text-decoration: none;
font-size: 18px;
transition: all 0.3s ease;
display: inline-block;
}

.reg-states-links:hover {
color: #dc3545;
text-decoration: none;
transform: translateX(5px);
}

.reg-hero-section {
min-height: 400px;
background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
}

.reg-hero-svg-bg {
opacity: 1;
pointer-events: none;
}

.reg-state-card {
transition: all 0.3s ease;
border-left: 3px solid transparent;
}

.reg-state-card:hover {
border-left-color: #dc3545;
background-color: #f8f9fa;
}

.reg-info-card {
border-left: 4px solid #dc3545;
transition: transform 0.3s ease;
}

.reg-info-card:hover {
transform: translateY(-5px);
}