/* 
* NY Contractor Coalition - Custom CSS
* A premium and elegant theme for contractor coalition website
*/
@font-face {
    font-family: 'Visby Regular';
src: url('../fonts/VisbyRegular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
    }
       @font-face {
     font-family: 'Visby SemiBold';
src: url('../fonts/VisbyBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
    }
/* ===== Base Styles ===== */
:root {
    --primary-color: #2a2b6a;
    --secondary-color: #cca05b;
    --tertiary-color: #4F5D75;
    --light-color: #F9F9F9;
    --dark-color: #333333;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 5px;
}

body {
    font-family: 'Visby Regular';
    color: var(--dark-color);
    background-color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Visby SemiBold';
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-dark {
    background-color: var(--primary-color);
}

.text-white {
    color: #fff;
}

.lead {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.btn {
    
    font-weight: 600;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Visby SemiBold';
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline-primary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color)!important;
    color: #fff;
}

.btn-light {
    background-color: #fff;
    border-color: #fff;
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-outline-light {
    border-color: #fff;
    color: #fff;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: var(--primary-color);
}

img {
    max-width: 100%;
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading h2 {
    position: relative;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.heading-line {
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin-bottom: 20px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 80px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {

  margin: 0 0 0 30px;
}



@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 3;
    margin: 0 0 0 15px;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 2;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(244, 239, 237, 0.95);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--dark-color);
    font-size: 13px;
    padding: 0 2px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
    font-family: 'Visby SemiBold';
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--secondary-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--secondary-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199.98px) {
    .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #fff;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* ===== Premium Hero Section ===== */
.hero-section-premium {
    position: relative;
    padding: 150px 0 200px;
    background:none;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 43, 106, 0.95) 0%, rgba(42, 43, 106, 0.8) 100%), url('../images/benjamin-lehman-EJU7A__krX0-unsplash.jpg') center/cover no-repeat;
    z-index: -1;
}
.bread-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 100%), url('../images/pexels-thirdman-8470039.jpg') center/cover no-repeat;
    z-index: -1;
}
.hero-content-premium {
    color: #fff;
    padding-right: 30px;
}

.hero-content-premium h1 {
    font-size: 2.3rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}
.hero-content-premium h2 {
    font-size: 13px;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 20px;
    font-weight:400;
    line-height: 1.2;
    text-transform: uppercase;
}
.hero-content-premium p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    margin-bottom: 30px;
}

.stat-item {
    margin-right: 40px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    
    line-height: 1;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image-container {
    position: relative;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    height: 450px;
}

.grid-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

.grid-item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.grid-item-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.grid-item-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.trust-badge {
    position: absolute;
    bottom: -25px;
    right: 20px;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.badge-icon {
    font-size: 2rem;
    margin-right: 10px;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text span:first-child {
    font-weight: 700;
    font-size: 1rem;
}

.badge-text span:last-child {
    font-size: 0.8rem;
}

.hero-shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.hero-shape-divider .shape-fill {
    fill: #FFFFFF;
}

/* ===== Intro Section ===== */
.intro-section {
    position: relative;
}

.intro-content {
    padding-right: 30px;
}

.intro-image {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    
}

.experience-badge .text {
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== Why Choose Us Section ===== */
.feature-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--secondary-color);
}

.icon-box {
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background-color: var(--secondary-color);
}

.icon-box i {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* ===== Specialties Section ===== */
.specialties-carousel {
    margin-top: 50px;
    position: relative;
}

.specialty-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    margin: 10px;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.specialty-card:hover {
    transform: translateY(-10px);
}

.specialty-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: block;
    text-align: center;
    line-height: 70px;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.specialty-card:hover .specialty-icon {
    background-color: var(--secondary-color);
}

.specialty-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.specialty-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* ===== Carousel Navigation Styles ===== */
/* Owl Carousel Custom Navigation */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.owl-prev,
.owl-next {
    width: 50px !important;
    height: 50px !important;
    background-color: rgba(255, 255, 255, 0.7) !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    transition: var(--transition) !important;
}

.owl-prev:hover,
.owl-next:hover {
    background-color: var(--secondary-color) !important;
}

.owl-prev i,
.owl-next i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.owl-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.owl-dot {
    width: 12px !important;
    height: 12px !important;
    margin: 0 5px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    transition: var(--transition) !important;
}

.owl-dot.active {
    background-color: var(--secondary-color) !important;
    transform: scale(1.2);
}

/* Specialties Carousel Custom Navigation */
.specialties-carousel .owl-nav {
    top: -70px;
    width: auto;
    right: 0;
    left: auto;
    transform: none;
}

.specialties-carousel .owl-prev,
.specialties-carousel .owl-next {
    width: 40px !important;
    height: 40px !important;
    background-color: var(--light-color) !important;
    margin-left: 10px !important;
}

.specialties-carousel .owl-dots {
    position: relative;
    bottom: auto;
    margin-top: 30px;
}

/* ===== Standards Section ===== */
.standards-section h2,
.standards-section .lead {
    color: #fff;
}

.standards-card {
    background-color: rgba(42, 43, 106, 1);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.standards-card:hover {
    background-color: rgba(42, 43, 106, 1);
}

.standards-icon {
    width: 70px;
    height: 70px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.standards-icon i {
    font-size: 1.8rem;
    color: var(--dark-color);
}

.standards-card h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.standards-card ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.standards-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.standards-card ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* ===== Service Areas Section ===== */
.map-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.service-regions .region {
    position: absolute;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    transform: translate(-50%, -50%);
}

.local-knowledge {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 30px;
    border-left: 4px solid var(--secondary-color);
}

.local-knowledge h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.check-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* ===== Process Section ===== */
.process-timeline {
    position: relative;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
    z-index: 99;
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    box-shadow: var(--box-shadow);
    margin-top: -30px;
    z-index: 0;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.process-step h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(rgba(42, 43, 106, 0.9), rgba(42, 43, 106, 0.9)), url('../images/ernie-journeys-r5WU0B6OUws-unsplash.jpg') center/cover no-repeat;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* ===== Footer Section ===== */
.footer-section {
    background-color: var(--primary-color);
    color: #fff;
    padding: 80px 0 0;
}

.footer-info h3 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-info .tagline {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-info .social-links {
    margin-top: 20px;
}

.footer-info .social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.footer-info .social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #fff;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 60px;
}

.copyright p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: var(--box-shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color);
    color: #fff;
}
.card-li li
{text-align: left; margin-bottom: 15px; list-style: square;}
/* ===== Animations ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.breadcrumb-container {
      background-color: #f8f9fa;
      padding: 10px 20px;
      border-radius: 0.375rem;
      display: inline-block;
    }

    .breadcrumb-custom {
      margin: 0;
      background-color: transparent;
    }

    .breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
      content: "›";
      color: #6c757d;
      margin: 0 8px;
    }

    .breadcrumb-custom .breadcrumb-item a {
      text-decoration: none;
      color: #0d6efd;
    }

    .breadcrumb-custom .breadcrumb-item.active {
      color: #6c757d;
      font-weight: 500;
    }
    
/* ===== CONTACT SECTION ===== */
.contact-section {
    background-color: var(--light-color);
}

body.dark-mode .contact-section {
    background-color: var(--dark-color);
}

.contact-info {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: var(--transition);
}

.info-item:hover .info-icon {
    transform: scale(1.1);
}

.info-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.info-content p {
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.contact-form-wrapper {
    padding: 40px;
    background-color: #fff;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
}

body.dark-mode .contact-form-wrapper {
    background-color: var(--light-gray);
}

.form-floating > .form-control {
    height: calc(3.5rem + 2px);
    line-height: 1.25;
}

.form-floating > label {
    padding: 1rem 0.75rem;
    color: var(--gray-color);
}

.form-control {
    background-color: var(--light-color);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

body.dark-mode .form-control {
    background-color: var(--dark-color);
    border-color: var(--light-gray);
    color: var(--light-color);
}

.form-control:focus {
    background-color: #fff;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(200, 164, 93, 0.25);
}

body.dark-mode .form-control:focus {
    background-color: var(--light-gray);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.btn-submit {
    width: 100%;
}
.profile-cards h5.card-title
{font-size: 15px}
/* ===== Responsive Styles ===== */
@media (max-width: 1199.98px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-section-premium {
        padding: 120px 0 170px;
    }
    
    .hero-content-premium h1 {
        font-size: 3rem;
    }
    
    .hero-image-grid {
        height: 400px;
    }
    .specialty-card
    {height: 530px}
    .btn
    {font-size: 1rem}
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .hero-section-premium {
        padding: 100px 0 150px;
    }
    
    .hero-content-premium {
        margin-bottom: 50px;
        padding-right: 0;
    }
    
    .hero-content-premium h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-grid {
        height: 350px;
    }
    
    .consultation-btn {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .intro-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .feature-card,
    .standards-card {
        margin-bottom: 30px;
    }
    
    .process-step {
        margin-bottom: 30px;
    }
    
    .specialties-carousel .owl-nav {
        position: relative;
        top: auto;
        right: auto;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    .hero-content-premium
    {text-align: center;}
      .feature-card {
    margin-bottom: 30px!important;
    height: 98%;
  }
  .standards-card
  {height: auto; margin-bottom: 30px}
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-section-premium {
        padding: 80px 0 130px;
    }
    
    .hero-content-premium h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-image-grid {
        height: 300px;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
    }
    
    .grid-item-1 {
        grid-column: 1;
        grid-row: 1 / 2;
    }
    
    .grid-item-2 {
        grid-column: 1;
        grid-row: 2 / 3;
    }
    
    .grid-item-3 {
        grid-column: 1;
        grid-row: 3 / 4;
    }
    
    .section-heading h2 {
        font-size: 2rem;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
    }
    
    .footer-info,
    .footer-links,
    .footer-contact {
        margin-bottom: 40px;
    }
    
    .owl-nav {
        padding: 0 10px;
    }
    
    .owl-prev,
    .owl-next {
        width: 40px !important;
        height: 40px !important;
    }
}

@media (max-width: 575.98px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .hero-section-premium {
        padding: 70px 0 120px;
    }
    
    .hero-content-premium h1 {
        font-size: 1.8rem;
    }
    
    .hero-content-premium p {
        font-size: 1rem;
    }
    
    .hero-image-grid {
        height: 250px;
    }
    
    .trust-badge {
        right: 50%;
        transform: translateX(50%);
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .contact-info span {
        display: block;
        margin-bottom: 5px;
    }
    
    .owl-dots {
        bottom: 10px;
    }
    
    .owl-dot {
        width: 10px !important;
        height: 10px !important;
        margin: 0 3px !important;
    }
}
@media (max-width: 575.98px) {
    .btn-getstarted
    {display: none;}
}