<?php
use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Extension\CoreExtension;
use Twig\Extension\SandboxExtension;
use Twig\Markup;
use Twig\Sandbox\SecurityError;
use Twig\Sandbox\SecurityNotAllowedTagError;
use Twig\Sandbox\SecurityNotAllowedFilterError;
use Twig\Sandbox\SecurityNotAllowedFunctionError;
use Twig\Source;
use Twig\Template;
/* Theme/layoutbase.html.twig */
class __TwigTemplate_333957a219b765aaf0ac14a7142fbc2d extends Template
{
private $source;
private $macros = [];
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->parent = false;
$this->blocks = [
'title' => [$this, 'block_title'],
'meta' => [$this, 'block_meta'],
'stylesheets' => [$this, 'block_stylesheets'],
'body' => [$this, 'block_body'],
'javascript' => [$this, 'block_javascript'],
];
}
protected function doDisplay(array $context, array $blocks = [])
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "Theme/layoutbase.html.twig"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "Theme/layoutbase.html.twig"));
// line 1
yield "<html lang=\"fr\">
<head>
<meta charset=\"utf-8\">
<!-- mobile responsive meta -->
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1, maximum-scale=1\">
<title>";
// line 9
yield from $this->unwrap()->yieldBlock('title', $context, $blocks);
yield "</title>
";
// line 11
yield from $this->unwrap()->yieldBlock('meta', $context, $blocks);
// line 12
yield " ";
yield from $this->unwrap()->yieldBlock('stylesheets', $context, $blocks);
// line 61
yield "
<style>
:root {
--primary: #2563eb;
--primary-dark: #1d4ed8;
--secondary: #f59e0b;
--accent: #10b981;
--text: #1f2937;
--text-light: #6b7280;
--background: #f9fafb;
--card-bg: #ffffff;
--border: #e5e7eb;
--success: #10b981;
--warning: #f59e0b;
--danger: #ef4444;
}
/* Overlay for mobile menu */
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease;
z-index: 999;
}
.overlay.active {
opacity: 1;
visibility: visible;
}
/* Hero Section */
.hero {
padding: 5rem 0 5rem;
background: linear-gradient(rgba(37, 99, 235, 0.9), rgba(37, 99, 235, 0.7)), url('https://placehold.co/1920x600/2563eb/ffffff?text=Cabinet Syscofie Consulting SARL') no-repeat center center/cover;
color: white;
text-align: center;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
font-weight: 800;
}
.hero p {
font-size: 1.2rem;
max-width: 700px;
margin: 0 auto 2rem;
opacity: 0.9;
}
.btn-up {
display: inline-block;
padding: 12px 30px;
background-color: var(--accent);
color: white;
border: none;
border-radius: 50px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn-up:hover {
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.btn-outline {
background-color: transparent;
border: 2px solid white;
margin-left: 1rem;
}
.btn-outline:hover {
background-color: white;
color: var(--primary);
}
/* Calculator Section */
.calculator-section {
padding: 7rem 0 5rem;
}
.section-title {
text-align: center;
margin-bottom: 3rem;
}
.section-title h2 {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 1rem;
position: relative;
display: inline-block;
}
.section-title h2::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background-color: var(--accent);
border-radius: 2px;
}
.section-title p {
color: var(--text-light);
max-width: 700px;
margin: 1rem auto 0;
}
.calculator-container {
display: flex;
gap: 2rem;
margin-top: 2rem;
flex-wrap: wrap;
}
.calculator-form {
flex: 1;
min-width: 300px;
background-color: var(--card-bg);
padding: 2rem;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: 600;
color: var(--text);
}
.form-group input, .form-group select {
width: 100%;
padding: 12px 15px;
border: 1px solid var(--border);
border-radius: 8px;
font-size: 1rem;
transition: border-color 0.3s ease;
}
.form-group input:focus, .form-group select:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.form-row {
display: flex;
gap: 1rem;
}
.form-row .form-group {
flex: 1;
}
.results {
flex: 1;
min-width: 300px;
background-color: var(--card-bg);
padding: 2rem;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.results h3 {
color: var(--primary);
margin-bottom: 1.5rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid var(--border);
}
.result-item {
display: flex;
justify-content: space-between;
padding: 1rem 0;
border-bottom: 1px solid var(--border);
}
.result-item:last-child {
border-bottom: none;
}
.result-item .label {
font-weight: 500;
color: var(--text-light);
}
.result-item .value {
font-weight: 700;
color: var(--primary);
}
.amortization-table {
width: 100%;
border-collapse: collapse;
margin-top: 2rem;
overflow: hidden;
border-radius: 10px;
overflow: hidden;
}
.amortization-table th {
background-color: var(--primary);
color: white;
text-align: left;
padding: 12px 15px;
}
.amortization-table td {
padding: 12px 15px;
border-bottom: 1px solid var(--border);
}
.amortization-table tr:nth-child(even) {
background-color: #f8fafc;
}
.amortization-table tr:hover {
background-color: #eff6ff;
}
.chart-container {
margin-top: 2rem;
height: 300px;
position: relative;
}
.chart {
width: 100%;
height: 100%;
background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
border-radius: 10px;
position: relative;
overflow: hidden;
}
.chart-bar {
position: absolute;
bottom: 0;
width: 30px;
background-color: rgba(255, 255, 255, 0.3);
border-radius: 5px 5px 0 0;
transition: height 0.5s ease;
}
/* Features Section */
.features {
padding: 2rem 0;
background-color: #f1f5f9;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.feature-card {
background-color: var(--card-bg);
padding: 2rem;
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.feature-icon {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 1rem;
}
.feature-card h3 {
margin-bottom: 1rem;
color: var(--primary);
}
/* Testimonials */
.testimonials {
padding: 5rem 0;
}
.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.testimonial-card {
background-color: var(--card-bg);
padding: 2rem;
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
position: relative;
}
.testimonial-card::before {
content: '\"';
position: absolute;
top: 10px;
left: 20px;
font-size: 5rem;
color: var(--primary);
opacity: 0.1;
font-family: Georgia, serif;
}
.testimonial-content {
margin-bottom: 1.5rem;
font-style: italic;
color: var(--text-light);
}
.client-info {
display: flex;
align-items: center;
}
.client-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
background-color: var(--primary);
margin-right: 1rem;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 600;
}
.client-name {
font-weight: 600;
color: var(--text);
}
.client-role {
font-size: 0.9rem;
color: var(--text-light);
}
/* CTA Section */
.cta {
padding: 5rem 0;
background: linear-gradient(135deg, var(--primary), var(--primary-dark));
color: white;
text-align: center;
}
.cta h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.cta p {
max-width: 700px;
margin: 0 auto 2rem;
opacity: 0.9;
}
.btn-light {
background-color: white;
color: var(--primary);
}
.btn-light:hover {
background-color: #f8fafc;
}
/* Footer */
footer {
background-color: #1f2937;
color: white;
padding: 4rem 0 2rem;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}
.footer-column h3 {
font-size: 1.2rem;
margin-bottom: 1.5rem;
position: relative;
padding-bottom: 0.5rem;
}
.footer-column h3::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 40px;
height: 3px;
background-color: var(--accent);
}
.footer-column ul {
list-style: none;
}
.footer-column ul li {
margin-bottom: 0.8rem;
}
.footer-column a {
color: #d1d5db;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-column a:hover {
color: white;
}
.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social-links a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 50%;
transition: background-color 0.3s ease;
}
.social-links a:hover {
background-color: var(--primary);
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: #9ca3af;
font-size: 0.9rem;
}
/* Responsive Design */
@media (max-width: 768px) {
.mobile-toggle {
display: block;
}
nav ul {
display: none;
}
.header-content {
padding: 0 1rem;
}
.hero {
padding: 8rem 0 5rem;
}
.hero h1 {
font-size: 2.5rem;
}
.calculator-section {
padding: 6rem 0 5rem;
}
.calculator-container {
flex-direction: column;
}
.form-row {
flex-direction: column;
gap: 1rem;
}
.btn-outline {
margin-left: 0;
margin-top: 1rem;
}
.mobile-menu {
right: -300px;
}
.mobile-menu.active {
right: 0;
}
}
/* Animation */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-fade-in {
animation: fadeIn 0.6s ease forwards;
}
.delay-1 {
animation-delay: 0.1s;
}
.delay-2 {
animation-delay: 0.2s;
}
.delay-3 {
animation-delay: 0.3s;
}
.delay-4 {
animation-delay: 0.4s;
}
/* Calculator-specific styles */
.calculator-tabs {
display: flex;
margin-bottom: 1.5rem;
border-bottom: 1px solid var(--border);
}
.tab-button {
padding: 12px 20px;
background: none;
border: none;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
color: var(--text-light);
position: relative;
}
.tab-button.active {
color: var(--primary);
}
.tab-button.active::after {
content: '';
position: absolute;
bottom: -1px;
left: 0;
width: 100%;
height: 3px;
background-color: var(--primary);
}
.currency-symbol {
position: absolute;
left: 15px;
top: 50%;
transform: translateY(-50%);
color: var(--text-light);
pointer-events: none;
}
.input-with-symbol {
position: relative;
padding-left: 35px;
}
/************ ====== End off Service ==============***/
.section-services {
\tfont-family: \"Poppins\", sans-serif;
\tbackground-color: #e6edf7;
\tcolor: #202020;
\tpadding-top: 5px;
padding-bottom: 10px;
}
.section-services .header-section {
\tmargin-bottom: 0px;
}
.section-services .header-section .title {
\tposition: relative;
padding-bottom: 14px;
margin-bottom: 25px;
\tfont-weight: 700;
font-size: 32px;
}
.section-services .header-section .title:before {
\tcontent: \"\";
\tposition: absolute;
\tbottom: 0;
\tleft: 50%;
\ttransform: translateX(-50%);
\twidth: 50px;
\theight: 3px;
\tbackground-color: #ff4500;
border-radius: 3px;
}
.section-services .header-section .title:after {
\tcontent: \"\";
\tposition: absolute;
\tbottom: 0;
\tleft: 50%;
transform: translateX(30px);
\twidth: 10px;
\theight: 3px;
\tbackground-color: #504f93;
border-radius: 3px;
}
.section-services .header-section .description {
\tfont-size: 14px;
color: #282828;
}
.section-services .single-service {
position: relative;
margin-top: 30px;
background-color: #fff;
border-radius: 10px;
padding: 40px 30px;
overflow: hidden;
}
.section-services .single-service .content {
\tposition: relative;
\tz-index: 20;
}
.section-services .single-service .circle-before {
position: absolute;
top: 0;
right: 0px;
transform: translate(40%, -40%);
width: 150px;
height: 150px;
background-color: #ff4500;
border: 6px solid #504f93;
border-radius: 50%;
opacity: 0.5;
z-index: 10;
transition: all .6s;
}
.section-services .single-service:hover .circle-before {
\twidth: 100%;
\theight: 100%;
\ttransform: none;
\tborder: 0;
\tborder-radius: 0;
\topacity: 1;
}
.section-services .single-service .icon {
\tdisplay: inline-block;
\tmargin-bottom: 26px;
width: 70px;
height: 70px;
background-color: #ff4500;
border-radius: 5px;
line-height: 70px;
text-align: center;
color: #fff;
font-size: 30px;
transition: all .3s;
}
.section-services .single-service:hover .icon {
\tbackground-color: #fff;
\tcolor: #ff4500;
}
.section-services .single-service .title {
margin-bottom: 18px;
\tfont-weight: 700;
font-size: 23px;
transition: color .3s;
}
.section-services .single-service:hover .title {
\tcolor: #fff;
}
.section-services .single-service .description {
margin-bottom: 20px;
font-size: 14px;
transition: color .3s;
}
.section-services .single-service:hover .description {
\tcolor: #fff;
}
.section-services .single-service a {
\tposition: relative;
\tfont-size: 18px;
color: #202020;
text-decoration: none;
font-weight: 500;
transition: color .3s;
}
.section-services .single-service:hover a {
\tcolor: #fff;
}
.section-services .single-service a:after {
\tcontent: \"\";
\tposition: absolute;
\tbottom: 0;
\tleft: 0;
\tright: 0;
\theight: 1px;
\tbackground-color: #ff4500;
\ttransition: background-color .3s;
}
.section-services .single-service:hover a:after {
\tbackground-color: #fff;
}
.section-services .content {
background-color: transparent;
}
/*****=========== End of Service ===========*/
/* css section */
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@400;800&family=Roboto:ital,wght@0,500;1,400&display=swap');
.faq-container{
max-width: 600px;
margin: 0 auto;
}
.faq{
background-color: transparent;
border: solid 1px #9fa4a8;
border-radius: 10px;
padding: 30px;
margin: 20px 0;
position: relative;
overflow: hidden;
transition: .4s ease;
}
.faq.active {
background-color: #fff;
box-shadow: 0 3px 6px rgba(0, 0, 0, .1), 0 3px 6px rgba(0, 0, 0, .1);
}
.faq.active::before, .faq.active::after {
content: \"\\f075\";
font-family: 'Font Awesome 5 Free';
color: #2ecc71;
position: absolute;
font-size: 7rem;
opacity: .2;
top: 20px;
left: 20px;
z-index: 0;
}
.faq.active::before{
color: #3498db;
top: -10px;
left: -30px;
transform: rotateY(180deg);
}
.faq-title{
margin: 0 35px 0 0;
}
.faq-text{
display: none;
margin: 30px 0 0;
}
.faq.active .faq-text{
display: block;
}
.faq-toggle {
border: 0;
border-radius: 50%;
background-color: transparent;
cursor: pointer;
font-size: 16px;
display: flex;
justify-content: center;
align-items: center;
position: absolute;
right: 30px;
top: 30px;
height: 30px;
width: 30px;
}
.faq-toggle .fa-times{
display: none;
}
.faq.active .faq-toggle .fa-times{
display: block;
color: #fff;
}
.faq.active .faq-toggle .fa-chevron-down{
display: none;
}
.faq.active .faq-toggle {
background: #999;
}
</style>
</head>
<body>
";
// line 913
yield $this->env->getRuntime('Symfony\Bridge\Twig\Extension\HttpKernelRuntime')->renderFragment(Symfony\Bridge\Twig\Extension\HttpKernelExtension::controller("App\\Controller\\General\\Template\\MenuController:menubare", ["position" => "offerts"]));
yield "
";
// line 914
yield from $this->unwrap()->yieldBlock('body', $context, $blocks);
// line 917
yield " ";
yield $this->env->getRuntime('Symfony\Bridge\Twig\Extension\HttpKernelRuntime')->renderFragment(Symfony\Bridge\Twig\Extension\HttpKernelExtension::controller("App\\Controller\\General\\Template\\MenuController:footer", ["position" => "offerts"]));
yield "
<div id=\"preloader\"></div>
<!-- Vendor JS Files -->
<script src=\"";
// line 924
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("templateSyscofie/js/perso.js"), "html", null, true);
yield "\"></script>
<script src=\"";
// line 925
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("templateSyscofie/vendors/bootstrap/bootstrap.bundle.min.js"), "html", null, true);
yield "assets/vendors/bootstrap/bootstrap.bundle.min.js\"></script>
<script src=\"";
// line 926
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("templateSyscofie/vendors/gsap/gsap.min.js"), "html", null, true);
yield "\"></script>
<script src=\"";
// line 927
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("templateSyscofie/vendors/imagesloaded/imagesloaded.pkgd.min.js"), "html", null, true);
yield "\"></script>
<script src=\"";
// line 928
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("templateSyscofie/vendors/isotope/isotope.pkgd.min.js"), "html", null, true);
yield "\"></script>
<script src=\"";
// line 929
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("templateSyscofie/vendors/glightbox/glightbox.min.js"), "html", null, true);
yield "\"></script>
<script src=\"";
// line 930
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("templateSyscofie/vendors/swiper/swiper-bundle.min.js"), "html", null, true);
yield "\"></script>
<script src=\"";
// line 931
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("templateSyscofie/vendors/aos/aos.js"), "html", null, true);
yield "\"></script>
<script src=\"";
// line 932
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("templateSyscofie/vendors/purecounter/purecounter.js"), "html", null, true);
yield "\"></script>
<script src=\"";
// line 933
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("templateSyscofie/js/custom.js"), "html", null, true);
yield "\"></script>
<script src=\"";
// line 934
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("templateSyscofie/asstes/js/perso.js"), "html", null, true);
yield "\"></script>
<script src=\"";
// line 935
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("templateSyscofie/js/send_email.js"), "html", null, true);
yield "\"></script>
<script type=\"text/javascript\">
";
// line 941
yield from $this->unwrap()->yieldBlock('javascript', $context, $blocks);
// line 946
yield " </script>
<button id=\"back-to-top\"><i class=\"bi bi-arrow-up-short\"></i></button>
</body>
</html>";
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
return; yield '';
}
// line 9
public function block_title($context, array $blocks = [])
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "title"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "title"));
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape((isset($context["site"]) || array_key_exists("site", $context) ? $context["site"] : (function () { throw new RuntimeError('Variable "site" does not exist.', 9, $this->source); })()), "html", null, true);
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
return; yield '';
}
// line 11
public function block_meta($context, array $blocks = [])
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "meta"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "meta"));
yield " ";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
return; yield '';
}
// line 12
public function block_stylesheets($context, array $blocks = [])
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "stylesheets"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "stylesheets"));
// line 13
yield "
<script src=\"https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js\"></script>
<script src=\"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js\"></script>
<script src=\"https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.min.js\"></script>
<link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.1/assets/owl.carousel.css\">
<link rel=\"stylesheet\" href=\"https://themes.audemedia.com/html/goodgrowth/css/owl.theme.default.min.css\">
<link href=\"https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css\" rel=\"stylesheet\">
<script src=\"https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.1/owl.carousel.min.js\"></script>
<!-- Favicons -->
<link href=\"";
// line 22
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("template/assets/img/favicon.png"), "html", null, true);
yield "\" rel=\"icon\">
<link href=\"";
// line 23
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("template/assets/img/apple-touch-icon.png"), "html", null, true);
yield "\" rel=\"apple-touch-icon\">
<link rel=\"preconnect\" href=\"https://fonts.googleapis.com\">
<link rel=\"preconnect\" href=\"https://fonts.gstatic.com\" crossorigin>
<link href=\"https://fonts.googleapis.com/css2?family=Pacifico&display=swap\" rel=\"stylesheet\">
<link href=\"https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap\" rel=\"stylesheet\">
<link href=\"https://cdn.jsdelivr.net/npm/remixicon@4.5.0/fonts/remixicon.css\" rel=\"stylesheet\">
<!-- Google Fonts -->
<link rel=\"preconnect\" href=\"https://fonts.googleapis.com\">
<link rel=\"preconnect\" href=\"https://fonts.gstatic.com\" crossorigin>
<link href=\"https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600;1,700&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap\" rel=\"stylesheet\">
<!-- ======= Styles =======-->
<link href=\"";
// line 37
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("templateSyscofie/vendors/bootstrap/bootstrap.min.css"), "html", null, true);
yield "\" rel=\"stylesheet\">
<link href=\"";
// line 38
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("templateSyscofie/vendors/bootstrap-icons/font/bootstrap-icons.min.css"), "html", null, true);
yield "\" rel=\"stylesheet\">
<link href=\"";
// line 39
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("templateSyscofie/vendors/glightbox/glightbox.min.css"), "html", null, true);
yield "\" rel=\"stylesheet\">
<link href=\"";
// line 40
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("templateSyscofie/vendors/swiper/swiper-bundle.min.css"), "html", null, true);
yield "\" rel=\"stylesheet\">
<link href=\"";
// line 41
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("templateSyscofie/vendors/aos/aos.css"), "html", null, true);
yield "\" rel=\"stylesheet\">
<!-- End Styles-->
<!-- ======= Theme Style =======-->
<link href=\"";
// line 46
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("templateSyscofie/css/style.css"), "html", null, true);
yield "\" rel=\"stylesheet\">
<link href=\"";
// line 47
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("templateSyscofie/css/custom.css"), "html", null, true);
yield "\" rel=\"stylesheet\">
";
// line 49
yield " <!-- End Theme Style-->
<!-- ======= Apply theme =======-->
<script>
// Apply the theme as early as possible to avoid flicker
(function() {
const storedTheme = localStorage.getItem('theme') || 'light';
document.documentElement.setAttribute('data-bs-theme', storedTheme);
})();
</script>
";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
return; yield '';
}
// line 914
public function block_body($context, array $blocks = [])
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "body"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "body"));
// line 915
yield "
";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
return; yield '';
}
// line 941
public function block_javascript($context, array $blocks = [])
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "javascript"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "javascript"));
// line 942
yield " <script src=\"https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.js\"></script>
<script src=\"https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.3/js/bootstrap.min.js\"></script>
<script src=\"https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js\"></script>
";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
return; yield '';
}
/**
* @codeCoverageIgnore
*/
public function getTemplateName()
{
return "Theme/layoutbase.html.twig";
}
/**
* @codeCoverageIgnore
*/
public function isTraitable()
{
return false;
}
/**
* @codeCoverageIgnore
*/
public function getDebugInfo()
{
return array ( 1177 => 942, 1167 => 941, 1155 => 915, 1145 => 914, 1123 => 49, 1119 => 47, 1115 => 46, 1107 => 41, 1103 => 40, 1099 => 39, 1095 => 38, 1091 => 37, 1074 => 23, 1070 => 22, 1059 => 13, 1049 => 12, 1029 => 11, 1009 => 9, 995 => 946, 993 => 941, 984 => 935, 980 => 934, 976 => 933, 972 => 932, 968 => 931, 964 => 930, 960 => 929, 956 => 928, 952 => 927, 948 => 926, 944 => 925, 940 => 924, 929 => 917, 927 => 914, 923 => 913, 69 => 61, 66 => 12, 64 => 11, 59 => 9, 49 => 1,);
}
public function getSourceContext()
{
return new Source("<html lang=\"fr\">
<head>
<meta charset=\"utf-8\">
<!-- mobile responsive meta -->
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1, maximum-scale=1\">
<title>{% block title %}{{ site }}{% endblock %}</title>
{% block meta %} {% endblock %}
{% block stylesheets %}
<script src=\"https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js\"></script>
<script src=\"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js\"></script>
<script src=\"https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.min.js\"></script>
<link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.1/assets/owl.carousel.css\">
<link rel=\"stylesheet\" href=\"https://themes.audemedia.com/html/goodgrowth/css/owl.theme.default.min.css\">
<link href=\"https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css\" rel=\"stylesheet\">
<script src=\"https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.1/owl.carousel.min.js\"></script>
<!-- Favicons -->
<link href=\"{{ asset('template/assets/img/favicon.png') }}\" rel=\"icon\">
<link href=\"{{ asset('template/assets/img/apple-touch-icon.png') }}\" rel=\"apple-touch-icon\">
<link rel=\"preconnect\" href=\"https://fonts.googleapis.com\">
<link rel=\"preconnect\" href=\"https://fonts.gstatic.com\" crossorigin>
<link href=\"https://fonts.googleapis.com/css2?family=Pacifico&display=swap\" rel=\"stylesheet\">
<link href=\"https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap\" rel=\"stylesheet\">
<link href=\"https://cdn.jsdelivr.net/npm/remixicon@4.5.0/fonts/remixicon.css\" rel=\"stylesheet\">
<!-- Google Fonts -->
<link rel=\"preconnect\" href=\"https://fonts.googleapis.com\">
<link rel=\"preconnect\" href=\"https://fonts.gstatic.com\" crossorigin>
<link href=\"https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600;1,700&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap\" rel=\"stylesheet\">
<!-- ======= Styles =======-->
<link href=\"{{ asset('templateSyscofie/vendors/bootstrap/bootstrap.min.css') }}\" rel=\"stylesheet\">
<link href=\"{{ asset('templateSyscofie/vendors/bootstrap-icons/font/bootstrap-icons.min.css') }}\" rel=\"stylesheet\">
<link href=\"{{ asset('templateSyscofie/vendors/glightbox/glightbox.min.css') }}\" rel=\"stylesheet\">
<link href=\"{{ asset('templateSyscofie/vendors/swiper/swiper-bundle.min.css') }}\" rel=\"stylesheet\">
<link href=\"{{ asset('templateSyscofie/vendors/aos/aos.css') }}\" rel=\"stylesheet\">
<!-- End Styles-->
<!-- ======= Theme Style =======-->
<link href=\"{{ asset('templateSyscofie/css/style.css') }}\" rel=\"stylesheet\">
<link href=\"{{ asset('templateSyscofie/css/custom.css') }}\" rel=\"stylesheet\">
{# <link href=\"{{ asset('template/assets/vendor/bootstrap/css/bootstrap.min.css') }}\" rel=\"stylesheet\"> #}
<!-- End Theme Style-->
<!-- ======= Apply theme =======-->
<script>
// Apply the theme as early as possible to avoid flicker
(function() {
const storedTheme = localStorage.getItem('theme') || 'light';
document.documentElement.setAttribute('data-bs-theme', storedTheme);
})();
</script>
{% endblock %}
<style>
:root {
--primary: #2563eb;
--primary-dark: #1d4ed8;
--secondary: #f59e0b;
--accent: #10b981;
--text: #1f2937;
--text-light: #6b7280;
--background: #f9fafb;
--card-bg: #ffffff;
--border: #e5e7eb;
--success: #10b981;
--warning: #f59e0b;
--danger: #ef4444;
}
/* Overlay for mobile menu */
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease;
z-index: 999;
}
.overlay.active {
opacity: 1;
visibility: visible;
}
/* Hero Section */
.hero {
padding: 5rem 0 5rem;
background: linear-gradient(rgba(37, 99, 235, 0.9), rgba(37, 99, 235, 0.7)), url('https://placehold.co/1920x600/2563eb/ffffff?text=Cabinet Syscofie Consulting SARL') no-repeat center center/cover;
color: white;
text-align: center;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
font-weight: 800;
}
.hero p {
font-size: 1.2rem;
max-width: 700px;
margin: 0 auto 2rem;
opacity: 0.9;
}
.btn-up {
display: inline-block;
padding: 12px 30px;
background-color: var(--accent);
color: white;
border: none;
border-radius: 50px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn-up:hover {
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.btn-outline {
background-color: transparent;
border: 2px solid white;
margin-left: 1rem;
}
.btn-outline:hover {
background-color: white;
color: var(--primary);
}
/* Calculator Section */
.calculator-section {
padding: 7rem 0 5rem;
}
.section-title {
text-align: center;
margin-bottom: 3rem;
}
.section-title h2 {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 1rem;
position: relative;
display: inline-block;
}
.section-title h2::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background-color: var(--accent);
border-radius: 2px;
}
.section-title p {
color: var(--text-light);
max-width: 700px;
margin: 1rem auto 0;
}
.calculator-container {
display: flex;
gap: 2rem;
margin-top: 2rem;
flex-wrap: wrap;
}
.calculator-form {
flex: 1;
min-width: 300px;
background-color: var(--card-bg);
padding: 2rem;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: 600;
color: var(--text);
}
.form-group input, .form-group select {
width: 100%;
padding: 12px 15px;
border: 1px solid var(--border);
border-radius: 8px;
font-size: 1rem;
transition: border-color 0.3s ease;
}
.form-group input:focus, .form-group select:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.form-row {
display: flex;
gap: 1rem;
}
.form-row .form-group {
flex: 1;
}
.results {
flex: 1;
min-width: 300px;
background-color: var(--card-bg);
padding: 2rem;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.results h3 {
color: var(--primary);
margin-bottom: 1.5rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid var(--border);
}
.result-item {
display: flex;
justify-content: space-between;
padding: 1rem 0;
border-bottom: 1px solid var(--border);
}
.result-item:last-child {
border-bottom: none;
}
.result-item .label {
font-weight: 500;
color: var(--text-light);
}
.result-item .value {
font-weight: 700;
color: var(--primary);
}
.amortization-table {
width: 100%;
border-collapse: collapse;
margin-top: 2rem;
overflow: hidden;
border-radius: 10px;
overflow: hidden;
}
.amortization-table th {
background-color: var(--primary);
color: white;
text-align: left;
padding: 12px 15px;
}
.amortization-table td {
padding: 12px 15px;
border-bottom: 1px solid var(--border);
}
.amortization-table tr:nth-child(even) {
background-color: #f8fafc;
}
.amortization-table tr:hover {
background-color: #eff6ff;
}
.chart-container {
margin-top: 2rem;
height: 300px;
position: relative;
}
.chart {
width: 100%;
height: 100%;
background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
border-radius: 10px;
position: relative;
overflow: hidden;
}
.chart-bar {
position: absolute;
bottom: 0;
width: 30px;
background-color: rgba(255, 255, 255, 0.3);
border-radius: 5px 5px 0 0;
transition: height 0.5s ease;
}
/* Features Section */
.features {
padding: 2rem 0;
background-color: #f1f5f9;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.feature-card {
background-color: var(--card-bg);
padding: 2rem;
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.feature-icon {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 1rem;
}
.feature-card h3 {
margin-bottom: 1rem;
color: var(--primary);
}
/* Testimonials */
.testimonials {
padding: 5rem 0;
}
.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.testimonial-card {
background-color: var(--card-bg);
padding: 2rem;
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
position: relative;
}
.testimonial-card::before {
content: '\"';
position: absolute;
top: 10px;
left: 20px;
font-size: 5rem;
color: var(--primary);
opacity: 0.1;
font-family: Georgia, serif;
}
.testimonial-content {
margin-bottom: 1.5rem;
font-style: italic;
color: var(--text-light);
}
.client-info {
display: flex;
align-items: center;
}
.client-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
background-color: var(--primary);
margin-right: 1rem;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 600;
}
.client-name {
font-weight: 600;
color: var(--text);
}
.client-role {
font-size: 0.9rem;
color: var(--text-light);
}
/* CTA Section */
.cta {
padding: 5rem 0;
background: linear-gradient(135deg, var(--primary), var(--primary-dark));
color: white;
text-align: center;
}
.cta h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.cta p {
max-width: 700px;
margin: 0 auto 2rem;
opacity: 0.9;
}
.btn-light {
background-color: white;
color: var(--primary);
}
.btn-light:hover {
background-color: #f8fafc;
}
/* Footer */
footer {
background-color: #1f2937;
color: white;
padding: 4rem 0 2rem;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}
.footer-column h3 {
font-size: 1.2rem;
margin-bottom: 1.5rem;
position: relative;
padding-bottom: 0.5rem;
}
.footer-column h3::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 40px;
height: 3px;
background-color: var(--accent);
}
.footer-column ul {
list-style: none;
}
.footer-column ul li {
margin-bottom: 0.8rem;
}
.footer-column a {
color: #d1d5db;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-column a:hover {
color: white;
}
.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social-links a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 50%;
transition: background-color 0.3s ease;
}
.social-links a:hover {
background-color: var(--primary);
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: #9ca3af;
font-size: 0.9rem;
}
/* Responsive Design */
@media (max-width: 768px) {
.mobile-toggle {
display: block;
}
nav ul {
display: none;
}
.header-content {
padding: 0 1rem;
}
.hero {
padding: 8rem 0 5rem;
}
.hero h1 {
font-size: 2.5rem;
}
.calculator-section {
padding: 6rem 0 5rem;
}
.calculator-container {
flex-direction: column;
}
.form-row {
flex-direction: column;
gap: 1rem;
}
.btn-outline {
margin-left: 0;
margin-top: 1rem;
}
.mobile-menu {
right: -300px;
}
.mobile-menu.active {
right: 0;
}
}
/* Animation */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-fade-in {
animation: fadeIn 0.6s ease forwards;
}
.delay-1 {
animation-delay: 0.1s;
}
.delay-2 {
animation-delay: 0.2s;
}
.delay-3 {
animation-delay: 0.3s;
}
.delay-4 {
animation-delay: 0.4s;
}
/* Calculator-specific styles */
.calculator-tabs {
display: flex;
margin-bottom: 1.5rem;
border-bottom: 1px solid var(--border);
}
.tab-button {
padding: 12px 20px;
background: none;
border: none;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
color: var(--text-light);
position: relative;
}
.tab-button.active {
color: var(--primary);
}
.tab-button.active::after {
content: '';
position: absolute;
bottom: -1px;
left: 0;
width: 100%;
height: 3px;
background-color: var(--primary);
}
.currency-symbol {
position: absolute;
left: 15px;
top: 50%;
transform: translateY(-50%);
color: var(--text-light);
pointer-events: none;
}
.input-with-symbol {
position: relative;
padding-left: 35px;
}
/************ ====== End off Service ==============***/
.section-services {
\tfont-family: \"Poppins\", sans-serif;
\tbackground-color: #e6edf7;
\tcolor: #202020;
\tpadding-top: 5px;
padding-bottom: 10px;
}
.section-services .header-section {
\tmargin-bottom: 0px;
}
.section-services .header-section .title {
\tposition: relative;
padding-bottom: 14px;
margin-bottom: 25px;
\tfont-weight: 700;
font-size: 32px;
}
.section-services .header-section .title:before {
\tcontent: \"\";
\tposition: absolute;
\tbottom: 0;
\tleft: 50%;
\ttransform: translateX(-50%);
\twidth: 50px;
\theight: 3px;
\tbackground-color: #ff4500;
border-radius: 3px;
}
.section-services .header-section .title:after {
\tcontent: \"\";
\tposition: absolute;
\tbottom: 0;
\tleft: 50%;
transform: translateX(30px);
\twidth: 10px;
\theight: 3px;
\tbackground-color: #504f93;
border-radius: 3px;
}
.section-services .header-section .description {
\tfont-size: 14px;
color: #282828;
}
.section-services .single-service {
position: relative;
margin-top: 30px;
background-color: #fff;
border-radius: 10px;
padding: 40px 30px;
overflow: hidden;
}
.section-services .single-service .content {
\tposition: relative;
\tz-index: 20;
}
.section-services .single-service .circle-before {
position: absolute;
top: 0;
right: 0px;
transform: translate(40%, -40%);
width: 150px;
height: 150px;
background-color: #ff4500;
border: 6px solid #504f93;
border-radius: 50%;
opacity: 0.5;
z-index: 10;
transition: all .6s;
}
.section-services .single-service:hover .circle-before {
\twidth: 100%;
\theight: 100%;
\ttransform: none;
\tborder: 0;
\tborder-radius: 0;
\topacity: 1;
}
.section-services .single-service .icon {
\tdisplay: inline-block;
\tmargin-bottom: 26px;
width: 70px;
height: 70px;
background-color: #ff4500;
border-radius: 5px;
line-height: 70px;
text-align: center;
color: #fff;
font-size: 30px;
transition: all .3s;
}
.section-services .single-service:hover .icon {
\tbackground-color: #fff;
\tcolor: #ff4500;
}
.section-services .single-service .title {
margin-bottom: 18px;
\tfont-weight: 700;
font-size: 23px;
transition: color .3s;
}
.section-services .single-service:hover .title {
\tcolor: #fff;
}
.section-services .single-service .description {
margin-bottom: 20px;
font-size: 14px;
transition: color .3s;
}
.section-services .single-service:hover .description {
\tcolor: #fff;
}
.section-services .single-service a {
\tposition: relative;
\tfont-size: 18px;
color: #202020;
text-decoration: none;
font-weight: 500;
transition: color .3s;
}
.section-services .single-service:hover a {
\tcolor: #fff;
}
.section-services .single-service a:after {
\tcontent: \"\";
\tposition: absolute;
\tbottom: 0;
\tleft: 0;
\tright: 0;
\theight: 1px;
\tbackground-color: #ff4500;
\ttransition: background-color .3s;
}
.section-services .single-service:hover a:after {
\tbackground-color: #fff;
}
.section-services .content {
background-color: transparent;
}
/*****=========== End of Service ===========*/
/* css section */
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@400;800&family=Roboto:ital,wght@0,500;1,400&display=swap');
.faq-container{
max-width: 600px;
margin: 0 auto;
}
.faq{
background-color: transparent;
border: solid 1px #9fa4a8;
border-radius: 10px;
padding: 30px;
margin: 20px 0;
position: relative;
overflow: hidden;
transition: .4s ease;
}
.faq.active {
background-color: #fff;
box-shadow: 0 3px 6px rgba(0, 0, 0, .1), 0 3px 6px rgba(0, 0, 0, .1);
}
.faq.active::before, .faq.active::after {
content: \"\\f075\";
font-family: 'Font Awesome 5 Free';
color: #2ecc71;
position: absolute;
font-size: 7rem;
opacity: .2;
top: 20px;
left: 20px;
z-index: 0;
}
.faq.active::before{
color: #3498db;
top: -10px;
left: -30px;
transform: rotateY(180deg);
}
.faq-title{
margin: 0 35px 0 0;
}
.faq-text{
display: none;
margin: 30px 0 0;
}
.faq.active .faq-text{
display: block;
}
.faq-toggle {
border: 0;
border-radius: 50%;
background-color: transparent;
cursor: pointer;
font-size: 16px;
display: flex;
justify-content: center;
align-items: center;
position: absolute;
right: 30px;
top: 30px;
height: 30px;
width: 30px;
}
.faq-toggle .fa-times{
display: none;
}
.faq.active .faq-toggle .fa-times{
display: block;
color: #fff;
}
.faq.active .faq-toggle .fa-chevron-down{
display: none;
}
.faq.active .faq-toggle {
background: #999;
}
</style>
</head>
<body>
{{ render(controller(\"App\\\\Controller\\\\General\\\\Template\\\\MenuController:menubare\", {'position': 'offerts'})) }}
{% block body %}
{% endblock %}
{{ render(controller(\"App\\\\Controller\\\\General\\\\Template\\\\MenuController:footer\", {'position': 'offerts'})) }}
<div id=\"preloader\"></div>
<!-- Vendor JS Files -->
<script src=\"{{ asset('templateSyscofie/js/perso.js') }}\"></script>
<script src=\"{{ asset('templateSyscofie/vendors/bootstrap/bootstrap.bundle.min.js') }}assets/vendors/bootstrap/bootstrap.bundle.min.js\"></script>
<script src=\"{{ asset('templateSyscofie/vendors/gsap/gsap.min.js') }}\"></script>
<script src=\"{{ asset('templateSyscofie/vendors/imagesloaded/imagesloaded.pkgd.min.js') }}\"></script>
<script src=\"{{ asset('templateSyscofie/vendors/isotope/isotope.pkgd.min.js') }}\"></script>
<script src=\"{{ asset('templateSyscofie/vendors/glightbox/glightbox.min.js') }}\"></script>
<script src=\"{{ asset('templateSyscofie/vendors/swiper/swiper-bundle.min.js') }}\"></script>
<script src=\"{{ asset('templateSyscofie/vendors/aos/aos.js') }}\"></script>
<script src=\"{{ asset('templateSyscofie/vendors/purecounter/purecounter.js') }}\"></script>
<script src=\"{{ asset('templateSyscofie/js/custom.js') }}\"></script>
<script src=\"{{ asset('templateSyscofie/asstes/js/perso.js') }}\"></script>
<script src=\"{{ asset('templateSyscofie/js/send_email.js') }}\"></script>
<script type=\"text/javascript\">
{% block javascript %}
<script src=\"https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.js\"></script>
<script src=\"https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.3/js/bootstrap.min.js\"></script>
<script src=\"https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js\"></script>
{% endblock %}
</script>
<button id=\"back-to-top\"><i class=\"bi bi-arrow-up-short\"></i></button>
</body>
</html>", "Theme/layoutbase.html.twig", "/home/syscofie/public_html/syscofie/templates/Theme/layoutbase.html.twig");
}
}