/* Custom CSS for OwLeads Website */

:root {
    --primary-color: #155C5E;
    --secondary-color: #37a7ab;
    --light-bg: rgba(55, 167, 171, 0.08);
    --dark-bg: #1A202C;
    --text-color: #4B5563;
    --text-muted: #878B91;
    --border-color: rgba(55, 167, 171, 0.3);
    --brand-bright: #37a7ab;
    --brand-dark: #155c5e;
    --brand-dark-text: #155c5e;
    --brand-light-bg: #f0fafa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    /* font-family: "Poppins", sans-serif; */
    line-height: 1.2;
    font-size: 16px;
    color: var(--text-color);
    background-color: #F2F6F7;
}
section{
    overflow-x: hidden;
    padding-inline: 20px;
    position: relative;
    z-index: 1;
}
.container{
    max-width: 1200px;
    padding: 0px;
}
.fw-600{
    font-weight: 600 !important;
}
.btn{
    display: flex !important;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    font-weight: 600;
    font-size: 22px;
    gap: 10px;
    border: 2px solid;
    padding: 20px 30px;
    border-radius: 16px;
}
.btn:hover{
    transform: translateY(-1px);
}

/* Header Styles */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem;
}
.navbar .container{
    padding: 12px 32px !important;
}
.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    color: var(--text-color) !important;
    font-size: 18px;
    margin: 0 1rem;
    border: unset !important;
    outline: unset !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link:active, .navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
}

.btn-header, .btn-header:hover, .btn-header:focus{
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    font-size: 18px;
    font-weight: 500;
    padding: 16px 20px;
    transition: all 0.3s ease;
    width: max-content;
}


/* Hero Section */
.hero-section {
    padding-block: 4rem;
    /* background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%); */
}

.hero-section h1 {
    font-size: clamp(40px, calc(1rem + 2.5vw), 60px);
    line-height: 1.2;
    margin-bottom: 40px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
}

.hero-section .lead {
    font-size: clamp(18px, calc(1rem + 0.8vw), 32px);
    margin-bottom: 40px;
}

.hero-section .text-secondary {
    color: var(--secondary-color) !important;
}

/* Client Logos */
.client-logos .slick-track{
    display: flex;
}

.client-item img {
    max-height: 70px;
    width: auto;
    transition: opacity 0.3s ease;
}
.client-item{
    padding: 0 30px;
    text-align: center;
    height: inherit;
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.client-item img:hover {
    opacity: 1 !important;
}

/* Growth Section */
.growth-section {
    padding-block: 4rem;
}
.growth-section .container{
    padding: clamp(20px, calc(1rem + 3.5vw), 80px) clamp(20px, calc(1rem + 2.5vw), 60px) !important;
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}
.growth-section .h1{
    font-size: clamp(40px, calc(1rem + 2.5vw), 60px);
}
/* Modular System Section */
.modular-system-section {
    padding-block: 4rem;
}

.system-card {
    background: linear-gradient(220deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: clamp(20px, calc(1rem + 2.5vw), 60px) !important;
}

.core-feature {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    background-color: #E3F0F2;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 32px;
    border-radius: 16px;
    height: 100%;
}
.core-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.accelerator-feature {
    background: rgb(255 255 255 / 6%);
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    height: 100%;
    backdrop-filter: blur(64px);
}
.optional-label {
    background-color: rgb(255 255 255 / 19%);
    border: 1px solid rgb(255 255 255 / 32%);
    padding: 6px 10px;
    text-align: right;
    display: block;
    max-width: max-content;
    margin: 5px 5px 15px auto;
    border-radius: 60px;
    font-size: 12px;
}


/* Partnership Section */
.partnership-section {
    padding-block: 4rem;
}

.promise-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    background-color: white;
    padding: clamp(20px, calc(1rem + 1vw), 32px) ;
}

.promise-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials-section {
    padding-block: 4rem;
}
.testimonials-section .slick-list{
    margin: 0 -28px;
    padding-bottom: 50px !important;
}

.testimonial-card.slick-slide:not(.slick-current) .testimonial-inner {
    transform: rotate(-7deg) translateY(20px);
    filter: blur(5px);
}
.testimonial-card.slick-active.slick-current ~ .slick-slide .testimonial-inner {
    transform: rotate(7deg) translateY(20px);
}

.testimonial-card{
    padding: 0 28px;
}
.testimonial-inner{
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    background-color: white;
    padding: clamp(20px, calc(1rem + 2vw), 42px) !important;
    border-radius: 24px;
    box-shadow: 0 7px 11px rgba(21, 92, 94, 0.1);
    height: 100%;
}
/* Dots */
.slick-dots {
    bottom: -10px;
}
.slick-dots li{
    width: auto;
    height: auto;
}
.slick-dots li button {
    color: #d9d9d9;
    height: 11px;
    width: 11px;
    background: #d9d9d9;
    border-radius: 50%;
}
.slick-dots li button:before {
    display: none;
}

.slick-dots li.slick-active button {
    background: var(--secondary-color);
    width: 40px;
    border-radius: 50px;
}

/* Growth Check Section */
.growth-check-section {
    padding-block: 4rem;
}

.check-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.check-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* International Section */
.international-section .container{
    padding: 0 clamp(20px, calc(1rem + 2.5vw), 60px) !important;
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}
.international-section h2{
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
}

/* Final CTA Section */
.final-cta-section {
    padding-block: clamp(30px, calc(1rem + 4.5vw), 100px);
}

.toggle-header .badge {
    color: #374151;
    padding: 8px 20px;
    background: #f9fafb;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    border-radius: 16px;
}
.card-feature{
    background-color: #f9fafb;
    padding: 32px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    height: 100%;
}
#toggle-open, #toggle-close {
    text-decoration: unset;
    font-weight: 600;
}
.caroussel-toggle .slick-arrow:before{
    color: var(--secondary-color);
}
.caroussel-toggle .slick-arrow{
    color: var(--secondary-color);
    background-color: rgb(255 255 255 / 20%);
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 8px;
}
/* Responsive Design */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding-block: 3rem;
    }
    
    .growth-section,
    .modular-system-section,
    .partnership-section,
    .testimonials-section,
    .growth-check-section,
    .international-section,
    .final-cta-section {
        padding-block: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .system-card {
        padding: 2rem !important;
    }
    
    .core-feature,
    .accelerator-feature {
        margin-bottom: 1rem;
    }
    
    .testimonial-card {
        padding: 2rem !important;
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .system-card {
        padding: 1.5rem !important;
    }
    
    .promise-card,
    .check-card {
        padding: 2rem !important;
    }
    .core-feature img {
        max-width: 60px;
        height: auto;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}
.text-secondary {
    color: var(--secondary-color) !important;
}
.text-color {
    color: var(--text-color) !important;
}
.bg-primary {
    background-color: var(--primary-color) !important;
}

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

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

/* Button Animations */
.btn-first {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transition: all 0.3s ease;
}
.btn-first:hover, .btn-first:focus {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-first:hover img, .btn-first:focus img{
    filter: brightness(0) saturate(100%) invert(25%) sepia(11%) saturate(2487%) hue-rotate(133deg) brightness(111%) contrast(93%);
}
.btn-first:hover svg *, .btn-first:focus svg *{
    fill: var(--primary-color);
    stroke: var(--primary-color);
}

.btn-second {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}
.btn-second:hover, .btn-second:focus {
    background-color: var(--primary-color);;
    color: white;
    border-color: var(--primary-color);
}
.btn-second:hover img, .btn-second:focus img{
    filter: brightness(0) saturate(100%) invert(25%) sepia(11%) saturate(2487%) hue-rotate(133deg) brightness(111%) contrast(93%);
}
.btn-second:hover svg *, .btn-second:focus svg *{
    fill: white;
    stroke: white;
}



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

/* Focus Styles for Accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #236B5D;
}
.brand-text-bright { color: var(--brand-bright); }
.brand-text-dark { color: var(--brand-dark-text); }
.brand-bg-dark { background-color: var(--brand-dark); }
.brand-bg-bright { background-color: var(--brand-bright); }

.quiz-option {
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}
.quiz-option:hover {
    border-color: var(--brand-bright) !important;
    background-color: #f7fbfb;
}
.quiz-option.selected {
    border-color: var(--brand-bright) !important;
    background-color: var(--brand-light-bg);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

/* Button hover styles */
.btn {
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

#action-btn:not(:disabled):hover {
    background-color: var(--brand-dark);
    border-color: var(--brand-dark);
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}