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


.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  .primary-button-color{
    background-color: #F07D00;
  }
.text-main{
    color: #cf0101;
}
.top-bar{
    background-color: #f07d00;
}
/* Services Section Styles */
.service-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F07D00, #ff9500);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #F07D00;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F07D00, #ff9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(240, 125, 0, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #F07D00;
}

.service-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: #495057;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F07D00;
    font-weight: bold;
    font-size: 1rem;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid #dee2e6;
}

.cta-section h3 {
    color: #2c3e50;
    font-weight: 600;
}

/* Button Styles */
.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.primary-button-color:hover {
    background-color: #e06d00 !important;
}

.btn-outline-primary {
    border: 2px solid #F07D00;
    color: #F07D00;
}

.btn-outline-primary:hover {
    background-color: #F07D00;
    border-color: #F07D00;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        align-items: center;
    }
    
    .d-flex.gap-3 .btn {
        width: 200px;
    }
}

@media (max-width: 576px) {
    .service-card {
        padding: 1.25rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .service-features li {
        font-size: 0.85rem;
    }
}

/* About Section Styles */
.about-content {
    padding: 2rem 1rem;
}

.about-content.text-center {
    padding: 2rem 1.5rem;
}

.about-stat h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

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

.about-image img,
.about-image-left img,
.about-image-right img {
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.about-image:hover img,
.about-image-left:hover img,
.about-image-right:hover img {
    transform: scale(1.05);
}

.about-image-left,
.about-image-right {
    text-align: center;
    padding: 1rem;
}

.about-image-left img,
.about-image-right img {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-image-left:hover img,
.about-image-right:hover img {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: scale(1.05) rotate(2deg);
}

/* Responsive adjustments for About section */
@media (max-width: 992px) {
    .about-content {
        padding: 1.5rem 1rem;
    }
    
    .about-image-left,
    .about-image-right {
        padding: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .about-image-left img,
    .about-image-right img {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .about-content {
        padding: 1rem 0.5rem;
        margin-bottom: 2rem;
    }
    
    .about-image-left,
    .about-image-right {
        padding: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .about-image-left img,
    .about-image-right img {
        max-height: 280px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .about-content {
        padding: 1rem 0;
    }
    
    .about-image-left img,
    .about-image-right img {
        max-height: 250px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* Statistics Section Styles */
.bg-primary {
    background: linear-gradient(135deg, #F07D00, #ff9500) !important;
}

.stat-item {
    padding: 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Reviews Section Styles */
.review-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #F07D00;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #F07D00;
    font-family: serif;
    opacity: 0.3;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.review-text {
    color: #495057;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.review-author {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

.author-info h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Contact Section Styles */
.contact-info {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F07D00, #ff9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.contact-info:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(240, 125, 0, 0.3);
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-info h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Footer Styles */
.footer-section h5 {
    color: #F07D00;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #F07D00;
}

.social-links {
    margin-top: 1rem;
}

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

.social-link:hover {
    background: #F07D00;
    color: white;
    transform: translateY(-2px);
}

/* Additional Button Styles */
.btn {
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .about-stat h3 {
        font-size: 2rem;
    }
    
    .counter {
        font-size: 2.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 1.25rem;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .about-stat h3 {
        font-size: 1.75rem;
    }
    
    .counter {
        font-size: 2rem;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .review-card::before {
        font-size: 3rem;
        top: -5px;
        left: 15px;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 1.1rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    overflow: hidden;
}

.hero-carousel .carousel {
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
}

.hero-carousel .carousel-inner {
    height: 100%;
}

.hero-carousel .carousel-item {
    height: 100%;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none !important;
}

.hero-carousel .carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    padding: 2rem;
    bottom: 20%;
    left: 10%;
    right: 10%;
    text-align: left;
}

.hero-carousel .carousel-caption h5 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-carousel .carousel-caption p {
    font-size: 1.2rem;
    color: #f8f9fa;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-carousel .carousel-indicators {
    bottom: 20px;
}

.hero-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.hero-carousel .carousel-indicators button.active {
    background-color: #F07D00;
    transform: scale(1.2);
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(240, 125, 0, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

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

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

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background: rgba(240, 125, 0, 1);
    transform: translateY(-50%) scale(1.1);
}

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

/* Responsive Carousel Styles */
@media (max-width: 992px) {
    .hero-carousel .carousel {
        height: 25vh;
        min-height: 300px;
    }
    
    .hero-carousel .carousel-caption {
        bottom: 15%;
        left: 5%;
        right: 5%;
        padding: 1.5rem;
    }
    
    .hero-carousel .carousel-caption h5 {
        font-size: 2rem;
    }
    
    .hero-carousel .carousel-caption p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-carousel .carousel {
        height: 25vh;
        min-height: 200px;
        max-height: 250px;
    }
    
    .carousel-image {
        object-fit: cover;
        object-position: center center;
    }
    
    .hero-carousel .carousel-caption {
        bottom: 5%;
        left: 3%;
        right: 3%;
        padding: 0.8rem;
        text-align: center;
    }
    
    .hero-carousel .carousel-caption h5 {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }
    
    .hero-carousel .carousel-caption p {
        font-size: 0.8rem;
    }
    
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-carousel .carousel-control-prev {
        left: 10px;
    }
    
    .hero-carousel .carousel-control-next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .hero-carousel .carousel {
        height: 20vh;
        min-height: 150px;
        max-height: 200px;
    }
    
    .carousel-image {
        object-fit: cover;
        object-position: center center;
    }
    
    .hero-carousel .carousel-caption {
        bottom: 3%;
        left: 2%;
        right: 2%;
        padding: 0.6rem;
    }
    
    .hero-carousel .carousel-caption h5 {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }
    
    .hero-carousel .carousel-caption p {
        font-size: 0.7rem;
    }
    
    .hero-carousel .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 2px;
    }
    
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 35px;
        height: 35px;
    }
}

/* Who We Are Section Styles */
.who-we-are-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.who-we-are-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23F07D00" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23F07D00" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23F07D00" opacity="0.03"/><circle cx="10" cy="60" r="0.5" fill="%23F07D00" opacity="0.03"/><circle cx="90" cy="40" r="0.5" fill="%23F07D00" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-title {
    color: #2c3e50;
    position: relative;
    font-size: 2.5rem;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #F07D00, #ff9500);
    border-radius: 2px;
}

.who-we-are-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.services-overview {
    margin-top: 2rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left-color: #F07D00;
}

.service-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F07D00, #ff9500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon-small {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(240, 125, 0, 0.3);
}

.service-icon-small i {
    font-size: 1.25rem;
    color: white;
}

.service-text h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-text p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.industries-served {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.industries-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(240, 125, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.industries-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #F07D00, #ff9500);
}

.industries-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.industry-item:hover::before {
    left: 100%;
}

.industry-item:hover {
    transform: translateY(-5px);
    border-color: #F07D00;
    box-shadow: 0 10px 25px rgba(240, 125, 0, 0.15);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F07D00, #ff9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.industry-item:hover .industry-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(240, 125, 0, 0.3);
}

.industry-icon i {
    font-size: 1.5rem;
    color: white;
}

.industry-item span {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.industry-item:hover span {
    color: #F07D00;
}

/* Responsive Design for Who We Are Section */
@media (max-width: 992px) {
    .who-we-are-content {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }
    
    .industries-served {
        padding: 1.5rem 0;
    }
    
    .industries-card {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .who-we-are-section {
        padding: 3rem 0 !important;
    }
    
    .section-title {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .who-we-are-content {
        text-align: center;
        padding: 1rem 0;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .service-icon-small {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .industries-card {
        padding: 1.5rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .industry-item {
        padding: 1.25rem 0.75rem;
    }
    
    .industry-icon {
        width: 50px;
        height: 50px;
    }
    
    .industry-icon i {
        font-size: 1.25rem;
    }
    
    .industry-item span {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-item {
        padding: 1.25rem;
    }
    
    .service-icon-small {
        width: 45px;
        height: 45px;
    }
    
    .service-icon-small i {
        font-size: 1.1rem;
    }
    
    .industries-card {
        padding: 1.25rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .industry-item {
        padding: 1rem 0.5rem;
    }
    
    .industry-icon {
        width: 45px;
        height: 45px;
    }
    
    .industry-icon i {
        font-size: 1.1rem;
    }
    
    .industry-item span {
        font-size: 0.75rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23F07D00" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23F07D00" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23F07D00" opacity="0.03"/><circle cx="10" cy="60" r="0.5" fill="%23F07D00" opacity="0.03"/><circle cx="90" cy="40" r="0.5" fill="%23F07D00" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grain)"/></svg>');
    pointer-events: none;
}

/* Branch Cards Styles */
.branch-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(240, 125, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #F07D00;
}

.branch-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.branch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.branch-card:hover .branch-image img {
    transform: scale(1.1);
}

.branch-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1rem;
}

.branch-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.branch-content {
    padding: 1.5rem;
}

.branch-info {
    margin-bottom: 1.5rem;
}

.branch-type {
    font-size: 0.85rem;
    font-weight: 600;
    color: #F07D00;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.branch-address,
.branch-phone {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.branch-address i,
.branch-phone i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.branch-address span {
    color: #495057;
}

.branch-phone a {
    color: #495057;
    transition: color 0.3s ease;
}

.branch-phone a:hover {
    color: #F07D00;
}

.branch-action {
    text-align: center;
}

/* Contact Form Styles */
.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(240, 125, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #F07D00, #ff9500);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #F07D00;
    box-shadow: 0 0 0 0.2rem rgba(240, 125, 0, 0.25);
}

.contact-form .form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-form .form-check-input:checked {
    background-color: #F07D00;
    border-color: #F07D00;
}

.contact-form .form-check-label {
    font-size: 0.9rem;
    color: #495057;
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #F07D00;
}

.contact-info-card .contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F07D00, #ff9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(240, 125, 0, 0.3);
}

.contact-info-card .contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-info-card h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Responsive Contact Page Styles */
@media (max-width: 992px) {
    .contact-form-card {
        padding: 2.5rem;
    }
    
    .branch-image {
        height: 180px;
    }
    
    .branch-title {
        font-size: 1.25rem;
    }
    
    .branch-content {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 3rem 0 !important;
    }
    
    .contact-form-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .branch-image {
        height: 160px;
    }
    
    .branch-title {
        font-size: 1.1rem;
    }
    
    .branch-content {
        padding: 1rem;
    }
    
    .branch-address,
    .branch-phone {
        font-size: 0.85rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-info-card .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-info-card .contact-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-form-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .branch-image {
        height: 140px;
    }
    
    .branch-title {
        font-size: 1rem;
    }
    
    .branch-content {
        padding: 0.75rem;
    }
    
    .branch-address,
    .branch-phone {
        font-size: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .branch-address i,
    .branch-phone i {
        margin-bottom: 0.25rem;
    }
    
    .contact-info-card {
        padding: 1.25rem;
    }
    
    .contact-info-card .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-info-card .contact-icon i {
        font-size: 1.25rem;
    }
}

/* Payroll Services Page Styles */
.payroll-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.payroll-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="payroll-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23F07D00" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23F07D00" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23F07D00" opacity="0.03"/><circle cx="10" cy="60" r="0.5" fill="%23F07D00" opacity="0.03"/><circle cx="90" cy="40" r="0.5" fill="%23F07D00" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23payroll-grain)"/></svg>');
    pointer-events: none;
}

.payroll-hero-content {
    position: relative;
    z-index: 2;
}

.payroll-hero-image {
    position: relative;
    z-index: 2;
}

.payroll-hero-image img {
    transition: transform 0.3s ease;
}

.payroll-hero-image:hover img {
    transform: scale(1.05);
}

.hero-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #495057;
}

.feature-item i {
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Benefit Cards */
.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #F07D00;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F07D00, #ff9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(240, 125, 0, 0.3);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.benefit-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Industry Cards */
.industry-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #F07D00;
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F07D00, #ff9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(240, 125, 0, 0.3);
}

.industry-icon i {
    font-size: 1.5rem;
    color: white;
}

.industry-name {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.service-card-wide {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #F07D00;
}

.service-card .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #F07D00, #ff9500);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(240, 125, 0, 0.3);
}

.service-card .service-icon i {
    font-size: 1.75rem;
    color: white;
}

.service-content {
    flex: 1;
}

.service-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Payroll Page Styles */
@media (max-width: 992px) {
    .payroll-hero {
        padding: 3rem 0 !important;
    }
    
    .payroll-hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon i {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .service-card .service-icon {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .payroll-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .benefit-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .industry-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .industry-icon {
        width: 50px;
        height: 50px;
    }
    
    .industry-icon i {
        font-size: 1.25rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-card .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-card .service-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .payroll-hero h1 {
        font-size: 2rem;
    }
    
    .feature-item {
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 1rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon i {
        font-size: 1.25rem;
    }
    
    .benefit-title {
        font-size: 1.1rem;
    }
    
    .industry-card {
        padding: 1rem;
    }
    
    .industry-icon {
        width: 45px;
        height: 45px;
    }
    
    .industry-icon i {
        font-size: 1.1rem;
    }
    
    .industry-name {
        font-size: 0.85rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-card .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-card .service-icon i {
        font-size: 1.25rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
}

/* Partnership Page Styles */
.partnership-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.partnership-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="partnership-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23F07D00" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23F07D00" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23F07D00" opacity="0.03"/><circle cx="10" cy="60" r="0.5" fill="%23F07D00" opacity="0.03"/><circle cx="90" cy="40" r="0.5" fill="%23F07D00" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23partnership-grain)"/></svg>');
    pointer-events: none;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.partner-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #F07D00;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Partnership Form Styles */
.partnership-form-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(240, 125, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.partnership-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #F07D00, #ff9500);
}

.partnership-form .form-control,
.partnership-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.partnership-form .form-control:focus,
.partnership-form .form-select:focus {
    border-color: #F07D00;
    box-shadow: 0 0 0 0.2rem rgba(240, 125, 0, 0.25);
}

.partnership-form .form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.partnership-form .form-check-input:checked {
    background-color: #F07D00;
    border-color: #F07D00;
}

.partnership-form .form-check-label {
    font-size: 0.9rem;
    color: #495057;
}

/* Responsive Partnership Page Styles */
@media (max-width: 992px) {
    .partnership-form-card {
        padding: 2.5rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }
    
    .partner-logo {
        padding: 1.5rem;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .partnership-hero {
        padding: 3rem 0 !important;
    }
    
    .partnership-form-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .partner-logo {
        padding: 1.25rem;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .partnership-form-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .partner-logo {
        padding: 1rem;
        height: 80px;
    }
}

/* Mission & Vision Page Styles */
.mission-vision-hero {
    background: linear-gradient(135deg, #F07D00 0%, #FF9500 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.mission-vision-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.mission-vision-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.mission-vision-card {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F07D00 0%, #FF9500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
}

.card-icon::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px dashed #F07D00;
    border-radius: 50%;
    top: -10px;
    left: -10px;
    opacity: 0.3;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.card-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.core-value-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.core-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #F07D00 0%, #FF9500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.value-icon::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    border: 2px dashed #F07D00;
    border-radius: 50%;
    top: -10px;
    left: -10px;
    opacity: 0.3;
}

.value-icon i {
    font-size: 1.8rem;
    color: white;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.value-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Responsive adjustments for mission & vision page */
@media (max-width: 768px) {
    .mission-vision-hero h1 {
        font-size: 2.5rem;
    }
    
    .mission-vision-hero p {
        font-size: 1.1rem;
    }
    
    .mission-vision-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .core-value-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
    
    .value-title {
        font-size: 1.3rem;
    }
}

/* Leadership Team Page Styles */
.leadership-hero {
    background: linear-gradient(135deg, #F07D00 0%, #FF9500 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.leadership-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.leadership-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.leadership-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.profile-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.leadership-card:hover .profile-image img {
    transform: scale(1.05);
}

.profile-content {
    padding: 2rem;
    text-align: center;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.profile-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #F07D00;
    margin-bottom: 1rem;
}

.profile-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #F07D00;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #FF9500;
    text-decoration: none;
}

.read-more-btn i {
    font-size: 1.1rem;
}

.philosophy-item {
    text-align: center;
    padding: 1.5rem;
}

.philosophy-icon {
    font-size: 2.5rem;
    color: #F07D00;
    margin-bottom: 1rem;
}

.philosophy-item h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.philosophy-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Responsive adjustments for leadership team page */
@media (max-width: 768px) {
    .leadership-hero h1 {
        font-size: 2.5rem;
    }
    
    .leadership-hero p {
        font-size: 1.1rem;
    }
    
    .leadership-card {
        margin-bottom: 2rem;
    }
    
    .profile-image {
        height: 250px;
    }
    
    .profile-content {
        padding: 1.5rem;
    }
    
    .profile-name {
        font-size: 1.3rem;
    }
    
    .profile-title {
        font-size: 1rem;
    }
    
    .philosophy-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .philosophy-icon {
        font-size: 2rem;
    }
}

/* Gallery Page Styles */
.gallery-filters {
    margin-bottom: 2rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid #F07D00;
    color: #F07D00;
    padding: 8px 20px;
    margin: 0 5px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: #F07D00;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(240, 125, 0, 0.9) 0%, rgba(255, 149, 0, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
    padding: 1rem;
}

.gallery-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gallery-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.gallery-content i {
    font-size: 1.5rem;
    opacity: 0.8;
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    background: #F07D00;
    color: white;
    border: none;
}

.modal-body img {
    max-height: 500px;
    width: auto;
    border-radius: 10px;
}

/* Responsive adjustments for gallery page */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-content h5 {
        font-size: 1.1rem;
    }
    
    .gallery-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Healthcare Housing Page Styles */
.housing-images {
    position: relative;
}

.image-stack {
    position: relative;
}

.image-stack img:first-child {
    position: relative;
    z-index: 2;
}

.image-stack img:last-child {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
    opacity: 0.8;
}

.housing-features {
    padding-left: 0;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F07D00 0%, #FF9500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    flex-grow: 1;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.amenity-card {
    background: linear-gradient(135deg, #F07D00 0%, #FF9500 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(240, 125, 0, 0.3);
}

.amenity-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.amenity-icon i {
    font-size: 2rem;
    color: #F07D00;
}

.amenity-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.space-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.space-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.space-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
}

.space-content {
    padding: 1.5rem;
}

.space-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.75rem;
}

.space-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #F07D00 0%, #FF9500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: white;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.benefit-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Responsive adjustments for healthcare housing page */
@media (max-width: 768px) {
    .housing-features {
        padding-left: 0;
        margin-top: 0;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .amenity-card {
        padding: 1.5rem;
    }
    
    .amenity-icon {
        width: 60px;
        height: 60px;
    }
    
    .amenity-icon i {
        font-size: 1.5rem;
    }
    
    .space-card img {
        height: 200px;
    }
    
    .benefit-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .amenity-card {
        padding: 1rem;
    }
    
    .amenity-title {
        font-size: 0.9rem;
    }
    
    .space-card img {
        height: 180px;
    }
}

/* Institutional Business Page Styles */
.partnership-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.partnership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.partnership-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.partnership-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.partnership-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    flex-grow: 1;
}

/* Desktop Header Layout */
@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }
    
    .navbar-nav {
        flex: 1;
        justify-content: center;
    }
    
    .navbar-nav .nav-item {
        margin: 0 0.5rem;
    }
}

/* Responsive Header Styles */
@media (max-width: 991.98px) {
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-item {
        margin: 0.5rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1.1rem;
    }
    
    .navbar-nav .dropdown-menu {
        position: static !important;
        transform: none !important;
        border: none;
        box-shadow: none;
        background-color: #f8f9fa;
        margin: 0.5rem 0;
        border-radius: 0.5rem;
    }
    
    .navbar-nav .dropdown-item {
        padding: 0.75rem 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    
    .navbar-nav .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .logo-img {
        width: 140px !important;
    }
}

@media (max-width: 576px) {
    .logo-img {
        width: 120px !important;
    }
    
    .navbar-nav .nav-link {
        font-size: 1rem;
        padding: 0.5rem 0.75rem;
    }
    
    .navbar-nav .btn {
        margin-top: 1rem;
        width: 100%;
        max-width: 200px;
    }
    
    .top-bar {
        padding: 0.5rem 1rem !important;
    }
    
    .top-bar p {
        font-size: 0.9rem;
    }
}

/* Custom navbar toggler icon */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Partner Logo Styles */
.partner-logo-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
}

.partner-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    max-height: 150px;
    max-width: 200px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Infinite Sliding Logos */
.sliding-logos-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2rem 0;
    margin: 2rem 0;
}

.sliding-logos {
    display: flex;
    animation: slide 30s linear infinite;
    width: max-content;
}

.logo-slide {
    flex: 0 0 auto;
    margin: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sliding-logo {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.sliding-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.sliding-logos-container:hover .sliding-logos {
    animation-play-state: paused;
}

/* Responsive sliding logos */
@media (max-width: 768px) {
    .sliding-logos {
        animation-duration: 20s;
    }
    
    .logo-slide {
        margin: 0 2rem;
    }
    
    .sliding-logo {
        height: 50px;
        max-width: 120px;
    }
}

@media (max-width: 576px) {
    .sliding-logos {
        animation-duration: 15s;
    }
    
    .logo-slide {
        margin: 0 1.5rem;
    }
    
    .sliding-logo {
        height: 40px;
        max-width: 100px;
    }
}

/* Career Page Styles */
.career-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.career-hero-image img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.benefit-icon {
    color: #667eea;
}

.benefit-title {
    color: #333;
    font-weight: 600;
}

.benefit-description {
    color: #666;
    line-height: 1.6;
}

.position-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid #667eea;
}

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

.position-title {
    color: #333;
    font-weight: 600;
    margin: 0;
}

.position-location {
    color: #666;
    font-size: 0.9rem;
}

.position-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.position-requirements {
    margin-bottom: 1.5rem;
}

.position-requirements h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.position-requirements ul {
    color: #666;
    font-size: 0.9rem;
}

.career-form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.career-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.career-form .form-control,
.career-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.career-form .form-control:focus,
.career-form .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.career-form .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.career-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Responsive Career Page Styles */
@media (max-width: 768px) {
    .career-hero {
        min-height: 50vh;
        text-align: center;
    }
    
    .career-hero h1 {
        font-size: 2.5rem;
    }
    
    .career-form-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .benefit-card,
    .position-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .career-hero h1 {
        font-size: 2rem;
    }
    
    .career-form-card {
        padding: 1.5rem;
    }
    
    .career-hero .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Responsive adjustments for institutional business page */
@media (max-width: 768px) {
    .partnership-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    .partnership-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}


/*  */
.login-page{
    background-color: #f8f9fa;
}