/* Bootstrap import */
@import "https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css";

/* Custom brand colors */
:root {
    --brand-orange: #FF7A00;
    --brand-green: #34a7a8;
    --brand-white: #FFFFFF;
}

.bg-brand-orange {
    background-color: var(--brand-orange) !important;
}

.bg-brand-green {
    background-color: var(--brand-green) !important;
}

.text-brand-white {
    color: var(--brand-white) !important;
}

.text-brand-orange {
    color: var(--brand-orange) !important;
}


/* Bootstrap via CDN import if needed */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');


/* Brand Colors */
:root {
    --brand-orange: #FF7A00;
    --brand-green: #34a7a8;
    --brand-white: #FFFFFF;
    --brand-dark: #0b2a2b;
}


/* Utility classes */
.bg-brand-orange {
    background-color: var(--brand-orange) !important;
}

.bg-brand-green {
    background-color: var(--brand-green) !important;
}

.text-brand-white {
    color: var(--brand-white) !important;
}

.text-brand-orange {
    color: var(--brand-orange) !important;
}

.btn-brand-green {
    background-color: var(--brand-green);
    color: var(--brand-white);
    border: none;
}

.btn-brand-green:hover {
    background-color: var(--brand-dark);
    color: var(--brand-white);
}

.btn-outline-brand-green {
    color: var(--brand-green);
    border-color: var(--brand-green);
}

.btn-outline-brand-green:hover {
    background-color: var(--brand-green);
    color: var(--brand-white);
    border-color: var(--brand-green);
}


/* Logo Image */
.logo-img {
    height: 50px;
    /* good size for navbar */
    width: 160px;
    /* auto keeps aspect ratio */
    object-fit: cover;
    margin-top: 4px;
    /* push down slightly */
}


/* Hero Section */
.hero-section {
    padding: 100px 0;
}

/* Hero CTA Button Hover */
.hero-cta:hover {
    background-color: var(--brand-green) !important;
    /* Green */
    color: black !important;
    /* Text turns black */
    border-color: var(--brand-green);
    ;
    /* Optional: border also green */
}

.hero-section ul {
    padding-left: 0;
}

.hero-section li i {
    color: var(--brand-green);
    /* Check mark color */
}

.hero-section li {
    font-size: 1.1rem;
    /* color: black; */
}

#mainNavbar {
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

#mainNavbar.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    background-color: var(--brand-dark);
    /* keep theme */
}

/* Default navbar link */
#mainNavbar .nav-link,
.navbar .dropdown-item {
    color: black;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Hover effect */
#mainNavbar .nav-link:hover,
.navbar .dropdown-item:hover,
#footerSection .nav-link:hover,
#footerSection .dropdown-item:hover {
    color: #34a7a8;
    /* green */
}

/* Active link */
#mainNavbar .nav-link.active,
#footerSection .footer-link.active {
    color: #34a7a8 !important;
    font-weight: 600;
}


.navbar-nav .nav-item span {
    line-height: 1.2;
}

/* First level dropdown open on hover */
.nav-item.dropdown:hover>.dropdown-menu {
    display: block;
}

/* Dropdown submenu positioning */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    /* show beside parent */
    margin-left: 0.1rem;
    margin-right: 0.1rem;
    display: none;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}


/* Services Card */
.service-card {
    transition: transform 0.3s;
}

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

.service-img {
    height: 220px;
    object-fit: cover;
    position: relative;
    width: 100%;
    display: block;
    filter: opacity(0.6) drop-shadow(0 0 0 #E48D4D);
    transition: all 0.5s ease;
}


/* On hover: show clear image */
.service-img:hover {
    filter: none;
    /* removes overlay */
    opacity: 1;
}

.service-section ul {
    padding-left: 0;
}

.service-section li i {
    color: var(--brand-green);
    /* Check mark color */
}

.service-section li {
    font-size: 1.1rem;
    /* color: black; */
}

.role-img {
    /* height: 220px; */
    object-fit: cover;
    position: relative;
    /* width: 100%; */
    display: block;
}

.role-img:hover {
    filter: none;
    /* removes overlay */
    opacity: 1;
}


/* Testimonials */
.testimonial {
    transition: transform 0.3s;
}

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


/* CTA Section */
.cta-btn {
    font-weight: bold;
}

/* Services Page */
.services-hero {
    padding: 80px 0;
}

.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 12px;
    overflow: hidden;
}

.service-desc {
    margin-bottom: 20px;
}

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

.service-show-card {
    border: 2px solid #34a7a8;
    border-radius: 15px;
    overflow: hidden;
    /* keeps image inside rounded border */
    height: 100%;
    /* matches parent column height */
}

.service-show-img {
    width: 100%;
    /* make image fill horizontally */
    height: 100%;
    /* make image fill vertically */
    object-fit: cover;
    /* crop/scale without distortion */
    border-radius: 15px;
    /* keep same rounded edges */
}





/* Service Hero */
.service-hero {
    color: black;
    padding: 80px 0;
    text-align: center;
}

/* Service Details */
.service-hero img {
    max-width: 100%;
    height: auto;
}

/* Testimonials */
blockquote {
    background: #f9f9f9;
    border-left: 5px solid #FF6F61;
    padding: 10px 20px;
    font-style: italic;
}

/* Contact CTA */
#contact {
    background-color: #f8f9fa;
    padding: 60px 0;
}

/*footer social icon */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    background-color: var(--brand-green);
    /* theme green */
    color: #fff;
    transform: scale(1.1);
}

/* css for quick links */
.footer-link {
    color: #fff;
    /* Default text color */
    text-decoration: none;
    /* Remove underline */
    padding-bottom: 2px;
    /* Space below for better look */
    display: inline-block;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-link:hover {
    color: var(--brand-green);
    /* Theme green on hover */
    padding-left: 6px;
    /* Slight move to right for subtle effect */
    text-decoration: none;
}

/* if you also use dropdowns in footer/quick-links, match them too */
.footer .dropdown-menu .dropdown-item:hover,
.footer .dropdown-menu .dropdown-item:focus,
.footer-menu .dropdown-menu .dropdown-item:hover {
    color: var(--brand-green);
    /* background-color: var(--caler-primary-bg); */
}

/* css for copy right*/
.copy-right {
    /* color:  var(--brand-green); */
}

/* Statistics Section */
.stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #212529;
    /* Bootstrap dark shade */
    color: #34a7a8;
    transition: all 0.3s ease;

}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--brand-green);
    background-color: var(--brand-green);
    color: #000;
}

.stat-card:hover .stat-value,
.stat-card:hover .suffix,
.stat-card:hover .stat-label {
    color: #000 !important;
}

.stat-card .stat-value,
.stat-card .suffix,
.stat-card .stat-label {
    color: #34a7a8 !important;
    transition: all 0.3s ease;
}

.client-logos-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.client-logos {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: nowrap;
    /* make sure logos stay in a single line */
    animation: scroll-logos 20s linear infinite;
}

.client-logo {
    flex: 0 0 auto;
    /* logos won't shrink */
}

.client-logo img {
    width: 140px;
    /* fixed size */
    height: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-radius: 15px;
}

.client-logo:hover img {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Service FAQs */
#faq h2 {
    color: var(--brand-dark);
    font-weight: 700;
}

.accordion-button {
    font-weight: 600;
    color: var(--brand-dark);
    background-color: #fff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    background-color: var(--brand-green);
    color: var(--brand-white);
}

.accordion-button:not(.collapsed) {
    background-color: var(--brand-green);
    color: var(--brand-white);
    box-shadow: none;
}

.accordion-body {
    font-size: 0.95rem;
    color: #555;
    background: #fff;
    border-left: 3px solid var(--brand-green);
    padding: 1rem 1.25rem;
}

/* Founder Section */
.founder-card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.founder-img {
    width: 150px;
    /* adjust size */
    height: 150px;
    /* keep square */
    object-fit: cover;
    /* crop nicely */
    border-radius: 50%;
    /* make it round */
    border: 4px solid #fff;
    /* white border for clean look */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* subtle shadow */
}


/* Contact Form */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: black;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--brand-green);
    color: black;
    transform: translateY(-3px);
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: border 0.3s;
}

.form-control:focus {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 0.2rem rgba(0, 128, 0, 0.2);
}

/* Floating Contact Button */
.contact-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    border-radius: 30px;
    padding: 12px 20px;
    transition: transform 0.2s ease, background-color 0.3s ease;
    animation: popUp 0.6s ease;
}

/* Hover effect */
.contact-btn:hover {
    background-color: #2c8f8f;
    transform: scale(1.05);
}
