/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
}

a {
    color: #4468B2;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2DBE60;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4468B2;
}

.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4468B2;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #2DBE60;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Button Styles */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background-color: #2DBE60;
    color: #fff;
}

.btn-primary:hover {
    background-color: #25a050;
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: #4468B2;
    border: 2px solid #4468B2;
}

.btn-secondary:hover {
    background-color: #4468B2;
    color: #fff;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hero Section - UPDATED */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #4468B2 0%, #6A8DD9 100%);
    color: #fff;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    color: #fff;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-description a {
	color:#fff !important;
	border-bottom:1px solid #fff;
	}

.hero-actions {
    display: flex;
    gap: 20px;
	flex-direction: column;
}

.hero .btn-secondary {
    color: #fff;
    border-color: #fff;
}

.hero .btn-secondary:hover {
    background-color: #fff;
    color: #4468B2;
}

.hero-image {
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
            font-size: 42px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.section-highlight {
    color: #4468B2;
    font-style: italic;
    text-align: center;
    margin-top: 30px;
    font-size: 18px;
}

/* Tools Section */
.section-tools {
    background-color: #f9f9f9;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.tool-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.tool-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tool-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(45, 190, 96, 0.4);
    pointer-events: none;
}

.tool-card h3 {
    padding: 20px 30px 10px;
    color: #4468B2;
}

.tool-card p {
    padding: 0 30px 30px;
    color: #666;
    line-height: 1.6;
}

/* Content Row Styles */
.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-row.reverse {
    direction: rtl;
}

.content-row.reverse .content-text {
    direction: ltr;
}

.content-text h2 {
    margin-bottom: 20px;
}

.feature-item {
    margin-bottom: 25px;
}

.feature-item h3 {
    color: #4468B2;
    margin-bottom: 10px;
}

/* Knowledge Section - UPDATED */

.knowledge-wrapper {
            position: relative;
            overflow: hidden;
            padding: 10px 0;
        }

.knowledge-grid {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 10px 5px 20px 5px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        margin-bottom:0;
        }

        .knowledge-grid::-webkit-scrollbar {
            display: none;
        }

.knowledge-card {
            flex: 0 0 320px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }
        .knowledge-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
        }

.knowledge-image {
            width: 100%;
            height: 180px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
        }
        .knowledge-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .knowledge-image .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(45, 190, 96, 0.4);
            pointer-events: none;
        }
.knowledge-card h3 {
            padding: 20px 25px 10px;
            color: #4468B2;
            text-align: center;
            font-size: 20px;
            font-weight: 700;
            line-height: 1.3;
            min-height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .knowledge-card p {
            padding: 0 25px 25px;
            color: #666;
            line-height: 1.6;
            text-align: center;
            font-size: 15px;
        }
/* Reviews Section - UPDATED */
.section-reviews {
    background-color: #fff;
}

.reviews-carousel {
    position: relative;
    width: 60%;
    max-width: 400px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    display: none;
    text-align: center;
}

.carousel-slide.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #4468B2;
}

.dot:hover {
    background-color: #2DBE60;
}

/* Why Choose Section - UPDATED */
.section-why {
    background-color: #f9f9f9;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.why-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.why-icon {
    margin-bottom: 20px;
}

.why-icon img {
    width: 64px;
    height: 64px;
    margin: 0 auto;
}

.why-item h3 {
    color: #4468B2;
    margin-bottom: 10px;
    font-size: 20px;
}

.why-item p {
    color: #666;
    font-size: 15px;
}

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

.highlight-text {
    font-size: 20px;
    font-weight: 600;
    color: #4468B2;
}
/*Features Section*/
        .features-section {
            background-color: #f9f9f9;
        }
        .cards-wrapper {
            position: relative;
            overflow: hidden;
        }
        .cards-container {
            display: flex;
            gap: 25px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 10px 5px 20px 5px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .cards-container::-webkit-scrollbar {
            display: none;
        }
        .feature-card {
            flex: 0 0 320px;
            background: linear-gradient(135deg, #4468B2 0%, #6A8DD9 100%);;
            border-radius: 20px;
            padding: 40px 30px;
            color: white;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            position: relative;
            min-height: 280px;
            display: flex;
            flex-direction: column;
        }
        .feature-card:hover {
            transform: translateY(-5px);
        }
        .card-number {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 13px;
            opacity: 0.9;
            border: 1.5px solid rgba(255, 255, 255, 0.5);
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 500;
        }
        .card-title {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 18px;
            line-height: 1.3;
            color:#fff;
            margin-top:25px;
        }
        .card-description {
            font-size: 16px;
            line-height: 1.7;
            opacity: 0.95;
            flex-grow: 1;
        }
        .navigation-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 30px;
        }
        .nav-button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid #4468B2;
            background: white;
            color: #4468B2;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-weight: bold;
        }
        .nav-button:hover:not(:disabled) {
            background: #4468B2;
            color: white;
            transform: scale(1.1);
        }
        .nav-button:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }
        .nav-button:active:not(:disabled) {
            transform: scale(0.95);
        }
        @media (max-width: 768px) {
            .feature-card {
                flex: 0 0 280px;
                padding: 35px 25px;
                min-height: 260px;
            }
            .card-title {
                font-size: 22px;
            }
            .card-description {
                font-size: 15px;
            }
            .nav-button {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }
        /*How it works section*/
        .how-it-works-section {
            background-color: #ffffff;
        }
        .steps-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        .step {
            position: relative;
        }
        .step-number-wrapper {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        .step-number {
            font-size: 36px;
            font-weight: 700;
            color: #2DBE60;
            margin-right: 15px;
            line-height: 1;
        }
        .step-line {
            flex-grow: 1;
            height: 1px;
            background-color: #2DBE60;
        }
        .step:last-child .step-line {
            display: none;
        }
        .step-title {
            font-size: 24px;
            font-weight: 700;
            color: #4468B2;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        .step-description {
            font-size: 16px;
            color: #555;
            line-height: 1.7;
            margin-bottom: 30px;
        }
        .step-note {
            font-size: 13px;
            color: #888;
            line-height: 1.5;
            font-style: italic;
        }
        @media (max-width: 992px) {
            .steps-container {
                grid-template-columns: 1fr;
                gap: 0;
            }
            .step {
                padding-left: 20px;
                padding-bottom: 40px;
                position: relative;
            }
            .step::after {
                content: '';
                position: absolute;
                left: 0;
                top: 20px;
                bottom: 0;
                width: 2px;
                background-color: #2DBE60;
               	margin-top: 45px;
            }
            .step:last-child::after {
                display: none;
            }
            .step:last-child {
                padding-bottom: 0;
            }
            .step-number-wrapper {
                margin-bottom: 20px;
            }
            .step-number {
                font-size: 42px;
                position: absolute;
                left: -23px;
                background-color: #ffffff;
                padding-right: 5px;
                z-index: 1;
            }
            .step-line {
                display: none;
            }
        }
        @media (max-width: 768px) {
            .how-it-works-section {
                padding: 60px 20px 40px;
            }
            .section-subtitle {
                font-size: 16px;
                margin-bottom: 40px;
            }
            .step {
                padding-left: 25px;
            }
            .step-number {
                font-size: 40px;
                left: -13px;
        		top: 15px;
            }
            .step-title {
                font-size: 22px;
            }
            .step-description {
                font-size: 15px;
            }
        }
/* About Section */
.section-about {
    background-color: #fff;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
}

/*FAQ Section*/
       .section-faq {
    		background-color:#F9F9F9;
    	}
       .faq-item {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: box-shadow 0.3s ease;
            margin-bottom:20px;
        }

        .faq-item:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        }

        .faq-question {
            width: 100%;
            padding: 24px 28px;
            background: transparent;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            text-align: left;
            font-size: 18px;
            font-weight: 500;
            color: #333;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background-color: rgba(68, 104, 178, 0.03);
        }
    	.faq-question h3{margin-bottom:0;}
        .faq-icon {
            min-width: 40px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #F9F9F9;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #4468B2;
            transition: all 0.3s ease;
            margin-left: 16px;
        }

        .faq-item.active .faq-icon {
            background: #4468B2;
            color: #fff;
            transform: rotate(0deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-answer-content {
            padding: 0 28px 24px 28px;
            color: #666;
            font-size: 16px;
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding-top:20px;
        }

        @media (max-width: 768px) {
            .section-header {
                margin-bottom: 32px;
            }

            .faq-question {
                padding: 20px 20px;
                font-size: 16px;
            }

            .faq-icon {
                min-width: 36px;
                width: 36px;
                height: 36px;
                font-size: 20px;
                margin-left: 12px;
            }

            .faq-answer-content {
                padding: 0 20px 20px 20px;
                font-size: 15px;
            }

            .faq-container {
                gap: 12px;
            }
        	.why-grid {
            	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        	}
           	.footer-logo img {
            	margin:0 auto;
        	}
        }

        @media (max-width: 480px) {
            .faq-question {
                padding: 18px 16px;
                font-size: 15px;
            }

            .faq-icon {
                min-width: 32px;
                width: 32px;
                height: 32px;
                font-size: 18px;
                margin-left: 10px;
            }

            .faq-answer-content {
                padding: 0 16px 18px 16px;
                font-size: 14px;
            }
        }

/* CTA Section - UPDATED */
.section-cta {
    background-color: rgba(68, 104, 178, 0.95);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.1;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: relative;
    z-index: 1;
}

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

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 40px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column p.footer-heading {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
	font-weight: 700;
    line-height: 1.3;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #2DBE60;
}

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
}

.footer-disclaimer a {
    color: #999;
	text-decoration:underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
        margin-bottom: 20px;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .content-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Carousel adjustments for tablet */
    .reviews-carousel {
        width: 70%;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions button {
        width: 100%;
        max-width: 300px;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .knowledge-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
    	grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

	.footer-logo img {
    	margin: 0 auto;
	}
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    /* Carousel adjustments for mobile */
    .reviews-carousel {
        width: 80%;
        max-width: 300px;
    }
    
    .carousel-slide img {
        max-height: 450px;
    }
/*Knowledge Section*/
.section-knowledge {
                padding: 60px 0;
            }
            .section-header h2 {
                font-size: 32px;
            }
            .section-subtitle {
                font-size: 16px;
            }
            .knowledge-card {
                flex: 0 0 280px;
            }
            .knowledge-card h3 {
                font-size: 18px;
                min-height: 60px;
                padding: 15px 20px 10px;
            }
            .knowledge-card p {
                font-size: 14px;
                padding: 0 20px 20px;
            }
            .nav-button {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
/* Why Us */
	.why-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
	}
    
    /* Carousel adjustments for small mobile */
    .reviews-carousel {
        width: 85%;
        max-width: 280px;
    }
    
    .carousel-slide img {
        max-height: 400px;
    }
    
    .carousel-container {
        padding: 15px;
    }
}