/* Global Styles */
:root {
    --primary-color: #000000;
    --secondary-color: #4a4a4a;
    --text-color: #1a1a1a;
    --light-bg: #ffffff;
    --section-spacing: 80px;
    --accent-color: #333333;
    --icon-color: #000000;
    --footer-text: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    padding: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    background: #fff;
    backdrop-filter: none;
    padding-top: 40px;
}

.navbar {
    padding: 0.5rem 0;
    background: #fff;
}

.logo {
    height: 55px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link:hover::after {
    width: 80%;
}

/* Hero Section */
.hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.05) 100%);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-text {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.features-section {
    padding: var(--section-spacing) 0;
    background-color: white;
    position: relative;
    margin-bottom: 60px !important;
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.features-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.feature-card {
    position: relative;
    max-width: none;
    margin: 40px auto 0 auto;
    background: var(--primary-color);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: #fff;
    padding: 3.5rem 2rem 2.5rem 2rem;
    text-align: center;
}

.offcanvas-body a {
    position: relative;
    transition: color 0.3s ease;
    text-decoration: none;
    color: #333;
}

.navbar-toggler {
    border: none !important;
}

.offcanvas-body a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

.offcanvas-body a:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

.offcanvas-body a:hover::after {
    width: 80%;
}

.offcanvas {
    background-color: #fff;
}

.offcanvas-header {
    border-bottom: 1px solid #eee;
}

.offcanvas-body .navbar-nav {
    padding: 1rem 0;
}

.offcanvas-body .nav-item {
    margin: 0.5rem 0;
}

/* Remove the specific nav-hover class since we're applying to all links */
.nav-hover {
    position: relative;
}

.text-pink {
    color: var(--primary-color);
}
.hover-pink:hover {
    color: var(--primary-color) !important;
}
.transition {
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
}

.step-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 2;
}

.feature-card img {
    max-width: 200px;
    margin: 1.5rem 0;
}

.feature-card h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.feature-card p {
    color: rgba(255,255,255,0.95);
    font-size: 1.15rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* Advanced Features Section */
.advanced-features {
    padding: var(--section-spacing) 0;
    background-color: var(--light-bg);
    position: relative;
}

.feature-item {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

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

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

.feature-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--secondary-color);
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-spacing) 0;
    background-color: var(--light-bg);
    position: relative;
}

.accordion-item {
    border: none;
    margin-bottom: 1.5rem;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.accordion-button {
    font-weight: 600;
    color: var(--text-color);
    padding: 1.5rem;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.05);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.125);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--secondary-color);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--footer-text);
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
}

.footer h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    font-weight: 600;
}

.footer p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    justify-content: flex-end;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-section {
    background-color: #f8f9fa;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.contact-card i {
    font-size: 2rem;
    color: #FF69B4;
}

.contact-card h3 {
    margin: 1rem 0;
    color: #333;
}

.contact-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #FF69B4;
}

.contact-text {
    color: #666;
    margin: 0;
}

.footer-contact {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    font-size: 1rem;
    color: #fff;
    flex-wrap: wrap;
}

.footer-contact a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer a {
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer h5 {
    color: var(--footer-text);
}

.footer .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-logo {
    filter: brightness(0) invert(1);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    :root {
        --section-spacing: 60px;
    }

    .header {
        padding-top: 40px;
    }

    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .contact-box {
        margin-bottom: 2rem;
    }
   
    .features-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .nav-link {
        padding: 0.8rem 1.2rem !important;
        display: block;
        text-align: left;
    }

    .nav-link::after {
        display: none;
    }

    .offcanvas-body .navbar-nav {
        padding: 0.5rem 0;
    }

    .offcanvas-body .nav-item {
        margin: 0;
    }

    .offcanvas-body a {
        padding: 0.8rem 1.2rem;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .offcanvas-body a::after {
        display: none;
    }

    .offcanvas-body a:hover {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--primary-color);
    }

    .offcanvas {
        background-color: #fff;
    }

    .offcanvas-header {
        border-bottom: 1px solid #eee;
        padding: 1rem 1.5rem;
    }

    .offcanvas-body {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-spacing: 50px;
    }


    .hero-section {
        padding: 80px 0 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .feature-card {
        max-width: 95%;
        padding: 2.5rem 1rem 1.5rem 1rem;
        margin-top: 32px;
        min-height: 260px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .step-number {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        top: -22px;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer .text-end {
        text-align: center !important;
        margin-top: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-section {
        padding: 2.5rem 0;
    }
    .contact-box {
        padding: 2rem 1rem;
    }
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-card p {
        font-size: 1rem;
    }
    .features-section {
        margin-bottom: 40px !important;
    }
    .faq-section {
    }
    .footer-contact {
        justify-content: center;
        font-size: 0.95rem;
        flex-direction: column;
        gap: 4px;
    }
    .footer-contact span {
        display: block;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: rgba(0, 0, 0, 0.02);
    padding: var(--section-spacing) 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.05) 100%);
    z-index: -1;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon i {
    color: var(--footer-text);
    font-size: 2rem;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.author-info {
    text-align: center;
}

.author-info h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.author-info p {
    margin: 0;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

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

@media (max-width: 767.98px) {
    .testimonial-content {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: -20px;
    }
    
    .carousel-control-next {
        right: -20px;
    }
}

.icon-wrapper i {
    color: var(--icon-color);
}

.fa-phone-alt, .fa-envelope, .fa-comments, .fa-quote-left {
    color: var(--icon-color) !important;
}

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

.fa-quote-left {
    color: var(--footer-text) !important;
}

.quote-icon i {
    color: var(--footer-text) !important;
}

/* About Section */
.about-section {
    background-color: var(--light-bg);
    position: relative;
}

.about-section .section-title {
    margin-bottom: 2rem;
}

.about-section .lead {
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 500;
}

.about-section p {
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-section .icon-wrapper {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.about-section .icon-wrapper i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.about-section h4 {
    color: var(--text-color);
    font-weight: 600;
}

.about-section .shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

@media (max-width: 991.98px) {
    .about-section .section-title {
        text-align: center;
    }
    
    .about-section .lead {
        text-align: center;
    }
    
    .about-section p {
        text-align: center;
    }
}

/* Text Logo Styles */
.text-logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
}

.text-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.text-logo:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.text-logo.text-white {
    color: var(--footer-text);
}

.text-logo.text-white::after {
    background: var(--footer-text);
}

@media (max-width: 991.98px) {
    .text-logo {
        font-size: 1.75rem;
    }
}

/* Hero Image Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-section img {
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.hero-section img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
} 