templates/Frontend/new_page.html.twig line 1628

Open in your IDE?
  1. {% set selected_lang = app.request.getLocale() %}
  2. <!DOCTYPE html>  
  3. <html lang="{{selected_lang}}" dir="ltr"> 
  4. <head>
  5.     <meta charset="UTF-8">
  6.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7.     <meta name="viewport" content="width=device-width, initial-scale=1">
  8.     <meta name="theme-color" content="#263371">
  9.     <meta name="msapplication-navbutton-color" content="#263371">
  10.     <meta name="apple-mobile-web-app-status-bar-style" content="#263371"> 
  11.     <meta name="language" content="{{selected_lang}}"/>
  12.     <meta name="robots" content="index, follow, all"/>
  13.     <meta name="googlebot" content="index, follow"/>
  14.     <meta name="copyright" content="elevenmedia"/> 
  15.     <link rel="shortcut icon" href="{{ asset('favicon.ico') }}" type="image/x-icon">
  16.     <link rel="preconnect" href="https://fonts.googleapis.com">
  17.     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  18.     <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
  19.     {% block seoheader %}
  20.         {% include 'Frontend/Render/head/_seoheader.html.twig' %}
  21.     {% endblock %}
  22.     {% block stylesheets %}
  23.         {% include 'Frontend/Render/head/_stylesheets.html.twig'%}
  24.     {% endblock %}
  25.     {% block javascripts %}
  26.         {% include 'Frontend/Render/head/_javascripts.html.twig'%}
  27.     {% endblock %}
  28.     <style>
  29.         :root {
  30.             --primary-blue: #263371;
  31.             --primary-blue-light: #3a4a8c;
  32.             --primary-blue-dark: #1a2550;
  33.             --accent-orange: #d84c2b;
  34.             --accent-orange-light: #e66a4d;
  35.             --accent-orange-dark: #b83e20;
  36.             --text-dark: #1e293b;
  37.             --text-light: #64748b;
  38.             --background: #f9f9f9;
  39.             --white: #ffffff;
  40.             --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  41.             --transition: all 0.3s ease;
  42.             --font-size-base: 1rem;
  43.             --font-size-sm: 0.875rem;
  44.             --font-size-lg: 1.125rem;
  45.             --font-size-xl: 1.25rem;
  46.             --font-size-2xl: 1.5rem;
  47.             --font-size-3xl: 1.875rem;
  48.             --font-size-4xl: 2.25rem;
  49.             --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  50.             --gradient-accent: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
  51.         }
  52.         body {
  53.             font-family: 'Poppins', sans-serif;
  54.             color: var(--text-dark);
  55.             line-height: 1.6;
  56.             background-color: var(--background);
  57.             margin: 0;
  58.             padding: 0;
  59.             font-size: var(--font-size-base);
  60.         }
  61.         .page-container {
  62.             max-width: 1200px;
  63.             margin: 0 auto;
  64.             margin-top: 90px;
  65.             padding: 0 20px;
  66.         }
  67.         /* Introduction Section */
  68.         .introduction-section {
  69.             background-color: var(--white);
  70.             border-radius: 20px;
  71.             padding: 40px;
  72.             margin-bottom: 50px;
  73.             box-shadow: var(--card-shadow);
  74.             position: relative;
  75.             overflow: hidden;
  76.         }
  77.         .introduction-section::before {
  78.             content: '';
  79.             position: absolute;
  80.             top: 0;
  81.             left: 0;
  82.             width: 100%;
  83.             height: 100%;
  84.             background: radial-gradient(circle at top right, rgba(216, 76, 43, 0.03), transparent 70%);
  85.             z-index: 0;
  86.         }
  87.         .introduction-title {
  88.             color: var(--primary-blue);
  89.             font-size: var(--font-size-2xl);
  90.             font-weight: 700;
  91.             margin-bottom: 25px;
  92.             position: relative;
  93.             display: inline-block;
  94.         }
  95.         .introduction-title::after {
  96.             content: '';
  97.             position: absolute;
  98.             bottom: -8px;
  99.             left: 0;
  100.             width: 60px;
  101.             height: 3px;
  102.             background: var(--gradient-accent);
  103.             border-radius: 2px;
  104.         }
  105.         .introduction-content {
  106.             position: relative;
  107.             z-index: 1;
  108.         }
  109.         .introduction-text {
  110.             color: var(--text-dark);
  111.             margin-bottom: 20px;
  112.             line-height: 1.8;
  113.             font-size: var(--font-size-base);
  114.         }
  115.         .skills-list {
  116.             margin: 25px 0;
  117.             padding-left: 0;
  118.             list-style-type: none;
  119.         }
  120.         .skills-list li {
  121.             position: relative;
  122.             padding-left: 30px;
  123.             margin-bottom: 15px;
  124.             line-height: 1.6;
  125.         }
  126.         .skills-list li::before {
  127.             content: '';
  128.             position: absolute;
  129.             left: 0;
  130.             top: 8px;
  131.             width: 8px;
  132.             height: 8px;
  133.             border-radius: 50%;
  134.             background-color: var(--accent-orange);
  135.         }
  136.         .financial-info {
  137.             background-color: rgba(38, 51, 113, 0.05);
  138.             padding: 20px;
  139.             border-radius: 10px;
  140.             margin-top: 25px;
  141.         }
  142.         .financial-info p {
  143.             margin: 10px 0;
  144.         }
  145.         /* Logo Header Section - IMPROVED */
  146.         .logo-header {
  147.             position: relative;
  148.             display: flex;
  149.             align-items: center;
  150.             justify-content: center;
  151.             padding: 35px 0;
  152.             background: var(--gradient-primary);
  153.             border-bottom: 1px solid rgba(255,255,255,0.1);
  154.             box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  155.             z-index: 10;
  156.             overflow: hidden;
  157.         }
  158.         .logo-header::before {
  159.             content: '';
  160.             position: absolute;
  161.             top: -50%;
  162.             left: -50%;
  163.             width: 200%;
  164.             height: 200%;
  165.             background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  166.             animation: pulse-bg 15s infinite alternate;
  167.         }
  168.         @keyframes pulse-bg {
  169.             0% { transform: scale(1); opacity: 0.5; }
  170.             100% { transform: scale(1.2); opacity: 0.8; }
  171.         }
  172.         .logo-container {
  173.             display: flex;
  174.             align-items: center;
  175.             gap: 30px;
  176.             position: relative;
  177.             z-index: 2;
  178.         }
  179.         .main-logo {
  180.             width: 250px;
  181.             height: auto;
  182.             transition: var(--transition);
  183.             filter: brightness(0) invert(1);
  184.             animation: logoGlow 3s infinite alternate;
  185.         }
  186.         @keyframes logoGlow {
  187.             from {
  188.                 filter: brightness(0) invert(1);
  189.             }
  190.             to {
  191.                 filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
  192.             }
  193.         }
  194.         .logo-divider {
  195.             height: 60px;
  196.             width: 2px;
  197.             background-color: rgba(255,255,255,0.3);
  198.         }
  199.         .program-title {
  200.             font-size: var(--font-size-2xl);
  201.             font-weight: 700;
  202.             color: var(--white);
  203.             margin: 0;
  204.             text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  205.         }
  206.         .program-subtitle {
  207.             font-size: var(--font-size-base);
  208.             color: rgba(255, 255, 255, 0.9);
  209.             margin: 0;
  210.             text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  211.         }
  212.         /* Hero Gallery Section - IMPROVED */
  213.         .hero-gallery {
  214.             position: relative;
  215.             overflow: hidden;
  216.             border-radius: 20px;
  217.             box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  218.             margin-bottom: 50px;
  219.         }
  220.         .main-image-container {
  221.             height: 500px;
  222.             overflow: hidden;
  223.             position: relative;
  224.         }
  225.         .main-image {
  226.             width: 100%;
  227.             height: 100%;
  228.             object-fit: cover;
  229.             transition: transform 0.7s ease;
  230.         }
  231.         .image-overlay {
  232.             position: absolute;
  233.             top: 0;
  234.             left: 0;
  235.             right: 0;
  236.             background: linear-gradient(to bottom, rgba(38, 51, 113, 0.85), rgba(38, 51, 113, 0.5), transparent);
  237.             padding: 40px;
  238.             width: 100%;
  239.             color: var(--white);
  240.             height: 100%;
  241.             display: flex;
  242.             flex-direction: column;
  243.             justify-content: flex-start;
  244.             box-sizing: border-box;
  245.         }
  246.         .overlay-title {
  247.             margin: 0 0 15px 0;
  248.             font-size: var(--font-size-4xl);
  249.             font-weight: 800;
  250.             text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  251.             animation: fadeInUp 0.8s ease;
  252.             position: relative;
  253.             display: inline-block;
  254.         }
  255.         .overlay-title::after {
  256.             content: '';
  257.             position: absolute;
  258.             bottom: -5px;
  259.             left: 0;
  260.             width: 80px;
  261.             height: 3px;
  262.             background-color: var(--accent-orange);
  263.             border-radius: 3px;
  264.         }
  265.         .overlay-subtitle {
  266.             margin: 0;
  267.             font-size: var(--font-size-xl);
  268.             max-width: 600px;
  269.             text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  270.             animation: fadeInUp 1s ease;
  271.             font-weight: 300;
  272.         }
  273.         .overlay-cta {
  274.             margin-top: 30px;
  275.             display: inline-block;
  276.             background: var(--gradient-accent);
  277.             color: var(--white);
  278.             font-size: var(--font-size-lg);
  279.             font-weight: 600;
  280.             padding: 14px 35px;
  281.             border-radius: 50px;
  282.             text-decoration: none;
  283.             transition: var(--transition);
  284.             box-shadow: 0 4px 15px rgba(216, 76, 43, 0.4);
  285.             align-self: flex-start;
  286.             animation: fadeInUp 1.2s ease;
  287.             position: relative;
  288.             overflow: hidden;
  289.             z-index: 1;
  290.         }
  291.         .overlay-cta::before {
  292.             content: '';
  293.             position: absolute;
  294.             top: 0;
  295.             left: -100%;
  296.             width: 100%;
  297.             height: 100%;
  298.             background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  299.             transition: 0.5s;
  300.             z-index: -1;
  301.         }
  302.         .overlay-cta:hover::before {
  303.             left: 100%;
  304.         }
  305.         .overlay-cta:hover {
  306.             transform: translateY(-3px) scale(1.05);
  307.             box-shadow: 0 8px 25px rgba(216, 76, 43, 0.5);
  308.             color: var(--white);
  309.         }
  310.         @keyframes fadeInUp {
  311.             from {
  312.                 opacity: 0;
  313.                 transform: translateY(20px);
  314.             }
  315.             to {
  316.                 opacity: 1;
  317.                 transform: translateY(0);
  318.             }
  319.         }
  320.         .thumbnail-gallery {
  321.             display: flex;
  322.             overflow-x: auto;
  323.             padding: 20px;
  324.             background-color: var(--white);
  325.             gap: 15px;
  326.             scrollbar-width: thin;
  327.             scrollbar-color: var(--accent-orange) var(--background);
  328.             border-radius: 0 0 20px 20px;
  329.         }
  330.         .thumbnail-gallery::-webkit-scrollbar {
  331.             height: 6px;
  332.         }
  333.         .thumbnail-gallery::-webkit-scrollbar-track {
  334.             background: var(--background);
  335.             border-radius: 3px;
  336.         }
  337.         .thumbnail-gallery::-webkit-scrollbar-thumb {
  338.             background-color: var(--accent-orange);
  339.             border-radius: 20px;
  340.         }
  341.         .thumbnail {
  342.             width: 130px;
  343.             height: 85px;
  344.             object-fit: cover;
  345.             border-radius: 10px;
  346.             cursor: pointer;
  347.             border: 3px solid transparent;
  348.             flex-shrink: 0;
  349.             transition: var(--transition);
  350.             box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  351.             position: relative;
  352.             overflow: hidden;
  353.         }
  354.         .thumbnail::after {
  355.             content: '';
  356.             position: absolute;
  357.             top: 0;
  358.             left: 0;
  359.             width: 100%;
  360.             height: 100%;
  361.             background: rgba(216, 76, 43, 0);
  362.             transition: var(--transition);
  363.         }
  364.         .thumbnail.active {
  365.             border: 3px solid var(--accent-orange);
  366.             transform: scale(1.05);
  367.         }
  368.         .thumbnail.active::after {
  369.             background: rgba(216, 76, 43, 0.1);
  370.         }
  371.         .thumbnail:hover {
  372.             transform: scale(1.05);
  373.             box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  374.             border-color: var(--accent-orange-light);
  375.         }
  376.         .thumbnail:hover::after {
  377.             background: rgba(216, 76, 43, 0.1);
  378.         }
  379.         /* Section Styles - IMPROVED */
  380.         .section {
  381.             padding: 50px 0;
  382.         }
  383.         .section-header {
  384.             text-align: center;
  385.             margin-bottom: 40px;
  386.             position: relative;
  387.         }
  388.         .section-title {
  389.             color: var(--primary-blue);
  390.             font-size: var(--font-size-3xl);
  391.             font-weight: 800;
  392.             margin-bottom: 15px;
  393.             position: relative;
  394.             display: inline-block;
  395.         }
  396.         .section-title::after {
  397.             content: '';
  398.             position: absolute;
  399.             bottom: -12px;
  400.             left: 50%;
  401.             transform: translateX(-50%);
  402.             width: 80px;
  403.             height: 4px;
  404.             background: var(--gradient-accent);
  405.             border-radius: 2px;
  406.         }
  407.         .section-subtitle {
  408.             color: var(--text-light);
  409.             max-width: 800px;
  410.             margin: 25px auto 0;
  411.             font-size: var(--font-size-lg);
  412.             line-height: 1.7;
  413.         }
  414.         /* Program Cards - IMPROVED */
  415.         .program-cards {
  416.             display: flex;
  417.             flex-wrap: wrap;
  418.             gap: 30px;
  419.             justify-content: center;
  420.             margin-bottom: 50px;
  421.         }
  422.         .program-card {
  423.             flex: 1;
  424.             min-width: 300px;
  425.             max-width: 380px;
  426.             background: var(--white);
  427.             padding: 35px;
  428.             border-radius: 20px;
  429.             box-shadow: var(--card-shadow);
  430.             transition: var(--transition);
  431.             position: relative;
  432.             overflow: hidden;
  433.             z-index: 1;
  434.         }
  435.         .program-card::before {
  436.             content: '';
  437.             position: absolute;
  438.             top: 0;
  439.             left: 0;
  440.             width: 100%;
  441.             height: 5px;
  442.             background: var(--gradient-accent);
  443.             transition: var(--transition);
  444.             z-index: -1;
  445.         }
  446.         .program-card::after {
  447.             content: '';
  448.             position: absolute;
  449.             top: 0;
  450.             left: 0;
  451.             width: 100%;
  452.             height: 0;
  453.             background: linear-gradient(180deg, rgba(216, 76, 43, 0.05), transparent);
  454.             transition: var(--transition);
  455.             z-index: -1;
  456.         }
  457.         .program-card:hover {
  458.             transform: translateY(-10px);
  459.             box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  460.         }
  461.         .program-card:hover::before {
  462.             height: 8px;
  463.         }
  464.         .program-card:hover::after {
  465.             height: 100%;
  466.         }
  467.         .program-card-icon {
  468.             width: 70px;
  469.             height: 70px;
  470.             border-radius: 50%;
  471.             display: flex;
  472.             justify-content: center;
  473.             align-items: center;
  474.             margin-bottom: 25px;
  475.             transition: var(--transition);
  476.             background: rgba(216, 76, 43, 0.1);
  477.         }
  478.         .program-card:hover .program-card-icon {
  479.             transform: scale(1.1) rotate(5deg);
  480.             background: rgba(216, 76, 43, 0.15);
  481.         }
  482.         .program-card-icon svg {
  483.             color: var(--accent-orange);
  484.             stroke: var(--accent-orange);
  485.         }
  486.         .program-card-title {
  487.             color: var(--primary-blue);
  488.             font-size: var(--font-size-xl);
  489.             margin: 0 0 20px 0;
  490.             font-weight: 700;
  491.         }
  492.         .program-card-text {
  493.             color: var(--text-light);
  494.             margin-bottom: 25px;
  495.             line-height: 1.7;
  496.             font-size: var(--font-size-base);
  497.         }
  498.         .program-card-feature {
  499.             display: flex;
  500.             align-items: center;
  501.             margin-bottom: 12px;
  502.         }
  503.         .program-card-feature svg {
  504.             margin-right: 12px;
  505.             flex-shrink: 0;
  506.             color: var(--accent-orange);
  507.             stroke: var(--accent-orange);
  508.         }
  509.         .program-card-feature span {
  510.             color: var(--text-light);
  511.             font-size: var(--font-size-base);
  512.         }
  513.         .program-card-cta {
  514.             background: var(--gradient-primary);
  515.             color: var(--white);
  516.             box-shadow: 0 10px 30px rgba(38, 51, 113, 0.3);
  517.         }
  518.         .program-card-cta:hover {
  519.             box-shadow: 0 20px 40px rgba(38, 51, 113, 0.4);
  520.         }
  521.         .program-card-cta .program-card-title,
  522.         .program-card-cta .program-card-text,
  523.         .program-card-cta .program-card-feature span {
  524.             color: var(--white);
  525.         }
  526.         .program-card-cta .program-card-text {
  527.             opacity: 0.9;
  528.         }
  529.         .program-card-cta .program-card-feature span {
  530.             opacity: 0.9;
  531.         }
  532.         .program-card-cta .program-card-icon {
  533.             background-color: rgba(255, 255, 255, 0.2);
  534.         }
  535.         .program-card-cta .program-card-icon svg {
  536.             color: var(--white);
  537.             stroke: var(--white);
  538.         }
  539.         .program-card-cta::after {
  540.             background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
  541.         }
  542.         .program-card-button {
  543.             display: inline-block;
  544.             background: var(--gradient-accent);
  545.             color: var(--white);
  546.             padding: 14px 30px;
  547.             text-decoration: none;
  548.             border-radius: 50px;
  549.             font-weight: 600;
  550.             margin-top: 25px;
  551.             transition: var(--transition);
  552.             box-shadow: 0 5px 15px rgba(216, 76, 43, 0.3);
  553.             position: relative;
  554.             overflow: hidden;
  555.             font-size: var(--font-size-base);
  556.         }
  557.         .program-card-button::before {
  558.             content: '';
  559.             position: absolute;
  560.             top: 0;
  561.             left: -100%;
  562.             width: 100%;
  563.             height: 100%;
  564.             background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  565.             transition: 0.5s;
  566.         }
  567.         .program-card-button:hover::before {
  568.             left: 100%;
  569.         }
  570.         .program-card-button:hover {
  571.             transform: translateY(-3px) scale(1.05);
  572.             box-shadow: 0 8px 20px rgba(216, 76, 43, 0.4);
  573.             color: var(--white);
  574.         }
  575.         /* Benefits List - IMPROVED */
  576.         .benefits-list {
  577.             color: var(--text-light);
  578.             padding-left: 5px;
  579.             list-style-type: none;
  580.         }
  581.         .benefits-list li {
  582.             margin-bottom: 15px;
  583.             display: flex;
  584.             align-items: flex-start;
  585.             padding-bottom: 15px;
  586.             border-bottom: 1px dashed rgba(216, 76, 43, 0.2);
  587.             font-size: var(--font-size-base);
  588.             transition: var(--transition);
  589.         }
  590.         .benefits-list li:hover {
  591.             transform: translateX(5px);
  592.         }
  593.         .benefits-list li:last-child {
  594.             border-bottom: none;
  595.             padding-bottom: 0;
  596.         }
  597.         .benefits-list li span {
  598.             color: var(--accent-orange);
  599.             margin-right: 12px;
  600.             font-weight: bold;
  601.             font-size: var(--font-size-lg);
  602.         }
  603.         /* Program Overview Section - IMPROVED */
  604.         .overview-container {
  605.             padding: 50px;
  606.             background-color: var(--white);
  607.             border-radius: 20px;
  608.             box-shadow: var(--card-shadow);
  609.             margin-bottom: 60px;
  610.             position: relative;
  611.             overflow: hidden;
  612.         }
  613.         .overview-container::before {
  614.             content: '';
  615.             position: absolute;
  616.             top: 0;
  617.             left: 0;
  618.             width: 100%;
  619.             height: 100%;
  620.             background: radial-gradient(circle at top right, rgba(216, 76, 43, 0.05), transparent 70%);
  621.             z-index: 0;
  622.         }
  623.         .overview-cards {
  624.             display: flex;
  625.             flex-wrap: wrap;
  626.             gap: 30px;
  627.             margin-top: 40px;
  628.             position: relative;
  629.             z-index: 1;
  630.         }
  631.         .overview-card {
  632.             flex: 1;
  633.             min-width: 300px;
  634.             background-color: var(--background);
  635.             padding: 30px;
  636.             border-radius: 15px;
  637.             position: relative;
  638.             transition: var(--transition);
  639.             overflow: hidden;
  640.             z-index: 1;
  641.         }
  642.         .overview-card::after {
  643.             content: '';
  644.             position: absolute;
  645.             bottom: -100%;
  646.             right: -100%;
  647.             width: 200%;
  648.             height: 200%;
  649.             background: radial-gradient(circle, rgba(216, 76, 43, 0.05), transparent 70%);
  650.             transition: var(--transition);
  651.             z-index: -1;
  652.         }
  653.         .overview-card:hover::after {
  654.             bottom: -50%;
  655.             right: -50%;
  656.         }
  657.         .overview-card:hover {
  658.             transform: translateY(-5px);
  659.             box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  660.         }
  661.         .overview-card-primary {
  662.             border-top: 5px solid var(--primary-blue);
  663.         }
  664.         .overview-card-accent {
  665.             border-top: 5px solid var(--accent-orange);
  666.         }
  667.         .overview-card-title {
  668.             color: var(--primary-blue);
  669.             font-size: var(--font-size-xl);
  670.             margin-top: 0;
  671.             margin-bottom: 20px;
  672.             display: flex;
  673.             align-items: center;
  674.             gap: 12px;
  675.             font-weight: 700;
  676.         }
  677.         .overview-card-title svg {
  678.             color: var(--accent-orange);
  679.             stroke: var(--accent-orange);
  680.         }
  681.         .overview-card-period {
  682.             color: var(--text-light);
  683.             margin-bottom: 20px;
  684.             display: inline-block;
  685.             padding: 6px 15px;
  686.             background-color: rgba(216, 76, 43, 0.1);
  687.             border-radius: 30px;
  688.             font-size: var(--font-size-sm);
  689.         }
  690.         .overview-card-list {
  691.             color: var(--text-dark);
  692.             padding-left: 5px;
  693.             list-style-type: none;
  694.         }
  695.         .overview-card-list li {
  696.             margin-bottom: 14px;
  697.             padding-left: 25px;
  698.             position: relative;
  699.             font-size: var(--font-size-base);
  700.             transition: var(--transition);
  701.         }
  702.         .overview-card-list li:hover {
  703.             transform: translateX(5px);
  704.         }
  705.         .overview-card-list li::before {
  706.             content: '';
  707.             position: absolute;
  708.             left: 0;
  709.             top: 10px;
  710.             width: 8px;
  711.             height: 8px;
  712.             border-radius: 50%;
  713.             background-color: var(--accent-orange);
  714.         }
  715.         .overview-card-content {
  716.             background-color: var(--white);
  717.             padding: 25px;
  718.             border-radius: 12px;
  719.             margin-top: 25px;
  720.             box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  721.         }
  722.         .overview-card-content p {
  723.             color: var(--text-dark);
  724.             margin: 0;
  725.             line-height: 1.7;
  726.             font-size: var(--font-size-base);
  727.         }
  728.         .overview-card-info {
  729.             display: flex;
  730.             align-items: center;
  731.             background-color: rgba(216, 76, 43, 0.1);
  732.             padding: 15px;
  733.             border-radius: 12px;
  734.             margin-top: 20px;
  735.         }
  736.         .overview-card-info svg {
  737.             margin-right: 12px;
  738.             color: var(--accent-orange);
  739.             stroke: var(--accent-orange);
  740.         }
  741.         .overview-card-info span {
  742.             color: var(--primary-blue);
  743.             font-weight: 600;
  744.             font-size: var(--font-size-base);
  745.         }
  746.         /* Degree Cards - IMPROVED */
  747.         .degree-cards {
  748.             display: flex;
  749.             flex-wrap: wrap;
  750.             gap: 30px;
  751.             justify-content: center;
  752.             margin-bottom: 60px;
  753.         }
  754.         .degree-card {
  755.             flex: 1;
  756.             min-width: 300px;
  757.             max-width: 500px;
  758.             background: var(--white);
  759.             padding: 35px;
  760.             border-radius: 20px;
  761.             box-shadow: var(--card-shadow);
  762.             transition: var(--transition);
  763.             position: relative;
  764.             overflow: hidden;
  765.             z-index: 1;
  766.         }
  767.         .degree-card::after {
  768.             content: '';
  769.             position: absolute;
  770.             top: 0;
  771.             left: 0;
  772.             width: 100%;
  773.             height: 0;
  774.             background: linear-gradient(180deg, rgba(216, 76, 43, 0.05), transparent);
  775.             transition: var(--transition);
  776.             z-index: -1;
  777.         }
  778.         .degree-card:hover::after {
  779.             height: 100%;
  780.         }
  781.         .degree-card:hover {
  782.             transform: translateY(-10px);
  783.             box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  784.         }
  785.         .degree-card-primary {
  786.             border-left: 5px solid var(--primary-blue);
  787.         }
  788.         .degree-card-accent {
  789.             border-left: 5px solid var(--accent-orange);
  790.         }
  791.         .degree-card-header {
  792.             display: flex;
  793.             align-items: center;
  794.             margin-bottom: 25px;
  795.         }
  796.         .degree-card-icon {
  797.             width: 65px;
  798.             height: 65px;
  799.             border-radius: 50%;
  800.             display: flex;
  801.             justify-content: center;
  802.             align-items: center;
  803.             flex-shrink: 0;
  804.             transition: var(--transition);
  805.             background: rgba(216, 76, 43, 0.1);
  806.         }
  807.         .degree-card-icon svg {
  808.             color: var(--accent-orange);
  809.             stroke: var(--accent-orange);
  810.         }
  811.         .degree-card:hover .degree-card-icon {
  812.             transform: scale(1.1) rotate(5deg);
  813.             background: rgba(216, 76, 43, 0.15);
  814.         }
  815.         .degree-card-title-container {
  816.             margin-left: 20px;
  817.         }
  818.         .degree-card-title {
  819.             color: var(--primary-blue);
  820.             font-size: var(--font-size-xl);
  821.             margin: 0 0 8px 0;
  822.             font-weight: 700;
  823.         }
  824.         .degree-card-subtitle {
  825.             color: var(--text-light);
  826.             margin: 0;
  827.             font-size: var(--font-size-base);
  828.         }
  829.         .degree-card-content {
  830.             color: var(--text-dark);
  831.             line-height: 1.7;
  832.             padding-top: 15px;
  833.             border-top: 1px solid rgba(216, 76, 43, 0.1);
  834.             font-size: var(--font-size-base);
  835.         }
  836.         /* Admission Section76,43,0.1);
  837.             font-size: var(--font-size-base);
  838.         }
  839.         /* Admission Section - IMPROVED */
  840.         .admission-container {
  841.             padding: 50px;
  842.             background-color: var(--white);
  843.             border-radius: 20px;
  844.             box-shadow: var(--card-shadow);
  845.             margin-bottom: 60px;
  846.             position: relative;
  847.             overflow: hidden;
  848.         }
  849.         .admission-container::before {
  850.             content: '';
  851.             position: absolute;
  852.             top: 0;
  853.             left: 0;
  854.             width: 100%;
  855.             height: 100%;
  856.             background: radial-gradient(circle at bottom left, rgba(216, 76, 43, 0.05), transparent 70%);
  857.             z-index: 0;
  858.         }
  859.         .admission-columns {
  860.             display: flex;
  861.             flex-wrap: wrap;
  862.             gap: 40px;
  863.             margin-top: 30px;
  864.             position: relative;
  865.             z-index: 1;
  866.         }
  867.         .admission-column {
  868.             flex: 1;
  869.             min-width: 300px;
  870.         }
  871.         .admission-title {
  872.             color: var(--primary-blue);
  873.             font-size: var(--font-size-xl);
  874.             margin-bottom: 25px;
  875.             display: flex;
  876.             align-items: center;
  877.             gap: 12px;
  878.             font-weight: 700;
  879.         }
  880.         .admission-title svg {
  881.             color: var(--accent-orange);
  882.             stroke: var(--accent-orange);
  883.         }
  884.         .requirements-container {
  885.             background-color: var(--background);
  886.             padding: 25px;
  887.             border-radius: 15px;
  888.             margin-bottom: 25px;
  889.             box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  890.             transition: var(--transition);
  891.             position: relative;
  892.             overflow: hidden;
  893.         }
  894.         .requirements-container::after {
  895.             content: '';
  896.             position: absolute;
  897.             top: 0;
  898.             left: 0;
  899.             width: 100%;
  900.             height: 100%;
  901.             background: radial-gradient(circle at top right, rgba(216, 76, 43, 0.05), transparent 70%);
  902.             z-index: -1;
  903.             opacity: 0;
  904.             transition: var(--transition);
  905.         }
  906.         .requirements-container:hover {
  907.             transform: translateY(-5px);
  908.             box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  909.         }
  910.         .requirements-container:hover::after {
  911.             opacity: 1;
  912.         }
  913.         .requirement-item {
  914.             display: flex;
  915.             align-items: flex-start;
  916.             gap: 15px;
  917.             margin-bottom: 20px;
  918.             padding-bottom: 20px;
  919.             border-bottom: 1px dashed rgba(216, 76, 43, 0.2);
  920.             transition: var(--transition);
  921.         }
  922.         .requirement-item:hover {
  923.             transform: translateX(5px);
  924.         }
  925.         .requirement-item:last-child {
  926.             margin-bottom: 0;
  927.             padding-bottom: 0;
  928.             border-bottom: none;
  929.         }
  930.         .requirement-number {
  931.             width: 35px;
  932.             height: 35px;
  933.             background-color: var(--accent-orange);
  934.             border-radius: 50%;
  935.             color: var(--white);
  936.             display: flex;
  937.             justify-content: center;
  938.             align-items: center;
  939.             font-weight: 600;
  940.             flex-shrink: 0;
  941.             transition: var(--transition);
  942.         }
  943.         .requirement-item:hover .requirement-number {
  944.             transform: scale(1.1);
  945.             box-shadow: 0 5px 10px rgba(216, 76, 43, 0.3);
  946.         }
  947.         .requirement-content {
  948.             flex-grow: 1;
  949.         }
  950.         .requirement-title {
  951.             font-weight: 600;
  952.             color: var(--primary-blue);
  953.             margin-bottom: 8px;
  954.             font-size: var(--font-size-base);
  955.         }
  956.         .requirement-description {
  957.             color: var(--text-light);
  958.             font-size: var(--font-size-base);
  959.             line-height: 1.6;
  960.         }
  961.         .documents-grid {
  962.             display: grid;
  963.             grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  964.             gap: 15px;
  965.         }
  966.         .document-item {
  967.             display: flex;
  968.             align-items: center;
  969.             gap: 12px;
  970.             background-color: var(--background);
  971.             padding: 18px;
  972.             border-radius: 12px;
  973.             box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  974.             transition: var(--transition);
  975.             position: relative;
  976.             overflow: hidden;
  977.             z-index: 1;
  978.         }
  979.         .document-item::after {
  980.             content: '';
  981.             position: absolute;
  982.             top: 0;
  983.             left: 0;
  984.             width: 100%;
  985.             height: 100%;
  986.             background: linear-gradient(90deg, rgba(216, 76, 43, 0.05), transparent);
  987.             opacity: 0;
  988.             transition: var(--transition);
  989.             z-index: -1;
  990.         }
  991.         .document-item:hover {
  992.             transform: translateX(5px);
  993.             box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  994.         }
  995.         .document-item:hover::after {
  996.             opacity: 1;
  997.         }
  998.         .document-item svg {
  999.             color: var(--accent-orange);
  1000.             stroke: var(--accent-orange);
  1001.         }
  1002.         .document-title {
  1003.             font-weight: 600;
  1004.             color: var(--primary-blue);
  1005.             font-size: var(--font-size-base);
  1006.         }
  1007.         /* Important Dates - IMPROVED */
  1008.         .dates-title {
  1009.             color: var(--primary-blue);
  1010.             font-size: var(--font-size-xl);
  1011.             margin: 40px 0 25px;
  1012.             display: flex;
  1013.             align-items: center;
  1014.             gap: 12px;
  1015.             font-weight: 700;
  1016.             position: relative;
  1017.             z-index: 1;
  1018.         }
  1019.         .dates-title svg {
  1020.             color: var(--accent-orange);
  1021.             stroke: var(--accent-orange);
  1022.         }
  1023.         .dates-container {
  1024.             display: flex;
  1025.             flex-wrap: wrap;
  1026.             gap: 20px;
  1027.             justify-content: center;
  1028.             position: relative;
  1029.             z-index: 1;
  1030.         }
  1031.         .date-item {
  1032.             flex: 1;
  1033.             min-width: 200px;
  1034.             max-width: 220px;
  1035.             background-color: var(--background);
  1036.             padding: 25px;
  1037.             border-radius: 15px;
  1038.             text-align: center;
  1039.             transition: var(--transition);
  1040.             box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  1041.             position: relative;
  1042.             overflow: hidden;
  1043.             z-index: 1;
  1044.         }
  1045.         .date-item::after {
  1046.             content: '';
  1047.             position: absolute;
  1048.             bottom: -50%;
  1049.             right: -50%;
  1050.             width: 200%;
  1051.             height: 200%;
  1052.             background: radial-gradient(circle, rgba(216, 76, 43, 0.05), transparent 70%);
  1053.             transition: var(--transition);
  1054.             z-index: -1;
  1055.             opacity: 0;
  1056.         }
  1057.         .date-item:hover::after {
  1058.             opacity: 1;
  1059.         }
  1060.         .date-item:hover {
  1061.             transform: translateY(-10px);
  1062.             box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  1063.         }
  1064.         .date-calendar {
  1065.             width: 65px;
  1066.             height: 65px;
  1067.             background-color: var(--accent-orange);
  1068.             color: var(--white);
  1069.             border-radius: 15px;
  1070.             display: flex;
  1071.             flex-direction: column;
  1072.             justify-content: center;
  1073.             align-items: center;
  1074.             margin: 0 auto 15px;
  1075.             transition: var(--transition);
  1076.             box-shadow: 0 5px 15px rgba(216, 76, 43, 0.2);
  1077.         }
  1078.         .date-item:hover .date-calendar {
  1079.             transform: scale(1.1) rotate(3deg);
  1080.             box-shadow: 0 8px 20px rgba(216, 76, 43, 0.3);
  1081.         }
  1082.         .date-day {
  1083.             font-size: var(--font-size-xl);
  1084.             font-weight: 700;
  1085.         }
  1086.         .date-month {
  1087.             font-size: var(--font-size-sm);
  1088.         }
  1089.         .date-title {
  1090.             font-weight: 600;
  1091.             color: var(--primary-blue);
  1092.             font-size: var(--font-size-base);
  1093.         }
  1094.         /* CTA Section - IMPROVED */
  1095.         .cta-section {
  1096.             background: var(--gradient-primary);
  1097.             border-radius: 20px;
  1098.             overflow: hidden;
  1099.             margin-bottom: 70px;
  1100.             box-shadow: 0 20px 40px rgba(38, 51, 113, 0.3);
  1101.             position: relative;
  1102.         }
  1103.         .cta-container {
  1104.             display: flex;
  1105.             flex-wrap: wrap;
  1106.             position: relative;
  1107.             z-index: 1;
  1108.         }
  1109.         .cta-content {
  1110.             flex: 1;
  1111.             min-width: 300px;
  1112.             padding: 60px;
  1113.             display: flex;
  1114.             flex-direction: column;
  1115.             justify-content: center;
  1116.         }
  1117.         .cta-title {
  1118.             font-size: var(--font-size-4xl);
  1119.             font-weight: 800;
  1120.             color: var(--white);
  1121.             margin: 0 0 25px;
  1122.             line-height: 1;
  1123.             animation: pulse 2s infinite;
  1124.         }
  1125.         .cta-title span {
  1126.             color: var(--accent-orange);
  1127.             position: relative;
  1128.             display: inline-block;
  1129.         }
  1130.         .cta-title span::after {
  1131.             content: '';
  1132.             position: absolute;
  1133.             bottom: -5px;
  1134.             left: 0;
  1135.             width: 100%;
  1136.             height: 3px;
  1137.             background-color: var(--accent-orange);
  1138.             transform: scaleX(0);
  1139.             transform-origin: right;
  1140.             transition: transform 0.5s ease;
  1141.         }
  1142.         .cta-section:hover .cta-title span::after {
  1143.             transform: scaleX(1);
  1144.             transform-origin: left;
  1145.         }
  1146.         .cta-text {
  1147.             color: rgba(255, 255, 255, 0.9);
  1148.             font-size: var(--font-size-lg);
  1149.             margin-bottom: 35px;
  1150.             max-width: 500px;
  1151.             line-height: 1.7;
  1152.         }
  1153.         .cta-button {
  1154.             display: inline-flex;
  1155.             align-items: center;
  1156.             background: var(--gradient-accent);
  1157.             color: var(--white);
  1158.             padding: 16px 35px;
  1159.             text-decoration: none;
  1160.             border-radius: 50px;
  1161.             font-weight: 600;
  1162.             transition: var(--transition);
  1163.             box-shadow: 0 8px 20px rgba(216, 76, 43, 0.3);
  1164.             align-self: flex-start;
  1165.             position: relative;
  1166.             overflow: hidden;
  1167.             font-size: var(--font-size-base);
  1168.         }
  1169.         .cta-button::before {
  1170.             content: '';
  1171.             position: absolute;
  1172.             top: 0;
  1173.             left: -100%;
  1174.             width: 100%;
  1175.             height: 100%;
  1176.             background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  1177.             transition: 0.5s;
  1178.         }
  1179.         .cta-button:hover::before {
  1180.             left: 100%;
  1181.         }
  1182.         .cta-button:hover {
  1183.             transform: translateY(-5px) scale(1.05);
  1184.             box-shadow: 0 12px 25px rgba(216, 76, 43, 0.4);
  1185.             color: var(--white);
  1186.         }
  1187.         .cta-button span {
  1188.             margin-left: 12px;
  1189.             transition: var(--transition);
  1190.         }
  1191.         .cta-button:hover span {
  1192.             transform: translateX(5px);
  1193.         }
  1194.         .cta-contact {
  1195.             flex: 1;
  1196.             min-width: 300px;
  1197.             background-color: rgba(0, 0, 0, 0.1);
  1198.             padding: 60px;
  1199.             display: flex;
  1200.             align-items: center;
  1201.             justify-content: center;
  1202.         }
  1203.         .contact-content {
  1204.             text-align: center;
  1205.         }
  1206.         .contact-icon {
  1207.             width: 110px;
  1208.             height: 110px;
  1209.             background-color: rgba(216, 76, 43, 0.2);
  1210.             border-radius: 50%;
  1211.             display: flex;
  1212.             justify-content: center;
  1213.             align-items: center;
  1214.             margin: 0 auto 25px;
  1215.             transition: var(--transition);
  1216.         }
  1217.         .contact-icon:hover {
  1218.             transform: scale(1.1) rotate(5deg);
  1219.             background-color: rgba(216, 76, 43, 0.3);
  1220.         }
  1221.         .contact-icon svg {
  1222.             color: var(--white);
  1223.             stroke: var(--white);
  1224.         }
  1225.         .contact-title {
  1226.             color: var(--white);
  1227.             font-size: var(--font-size-2xl);
  1228.             margin: 0 0 15px 0;
  1229.             font-weight: 700;
  1230.         }
  1231.         .contact-text {
  1232.             color: rgba(255, 255, 255, 0.9);
  1233.             margin-bottom: 30px;
  1234.             font-size: var(--font-size-base);
  1235.         }
  1236.         .contact-button {
  1237.             display: inline-flex;
  1238.             align-items: center;
  1239.             background-color: var(--white);
  1240.             color: var(--accent-orange);
  1241.             padding: 16px 35px;
  1242.             text-decoration: none;
  1243.             border-radius: 50px;
  1244.             font-weight: 600;
  1245.             transition: var(--transition);
  1246.             box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  1247.             position: relative;
  1248.             overflow: hidden;
  1249.             font-size: var(--font-size-base);
  1250.         }
  1251.         .contact-button::before {
  1252.             content: '';
  1253.             position: absolute;
  1254.             top: 0;
  1255.             left: -100%;
  1256.             width: 100%;
  1257.             height: 100%;
  1258.             background: linear-gradient(90deg, transparent, rgba(216, 76, 43, 0.1), transparent);
  1259.             transition: 0.5s;
  1260.         }
  1261.         .contact-button:hover::before {
  1262.             left: 100%;
  1263.         }
  1264.         .contact-button:hover {
  1265.             transform: translateY(-5px) scale(1.05);
  1266.             box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  1267.             color: var(--accent-orange-dark);
  1268.         }
  1269.         .contact-button span {
  1270.             margin-left: 12px;
  1271.             transition: var(--transition);
  1272.         }
  1273.         .contact-button:hover span {
  1274.             transform: translateX(5px);
  1275.         }
  1276.         .cta-circle {
  1277.             position: absolute;
  1278.             border-radius: 50%;
  1279.             background: rgba(255, 255, 255, 0.05);
  1280.         }
  1281.         .cta-circle-1 {
  1282.             top: -50px;
  1283.             right: -50px;
  1284.             width: 200px;
  1285.             height: 200px;
  1286.         }
  1287.         .cta-circle-2 {
  1288.             bottom: -30px;
  1289.             left: -30px;
  1290.             width: 150px;
  1291.             height: 150px;
  1292.         }
  1293.         .cta-circle-3 {
  1294.             top: -30px;
  1295.             right: 30%;
  1296.             width: 100px;
  1297.             height: 100px;
  1298.         }
  1299.         /* Animation */
  1300.         @keyframes pulse {
  1301.             0% { transform: scale(1); opacity: 0.5; }
  1302.             50% { transform: scale(1.03); opacity: 0.8; }
  1303.             100% { transform: scale(1); opacity: 0.5; }
  1304.         }
  1305.         /* Responsive Styles */
  1306.         @media (max-width: 992px) {
  1307.             .logo-container {
  1308.                 flex-direction: column;
  1309.                 text-align: center;
  1310.                 gap: 15px;
  1311.             }
  1312.             
  1313.             .main-logo {
  1314.                 width: 220px; /* Slightly smaller on tablet */
  1315.             }
  1316.             
  1317.             .logo-divider {
  1318.                 display: none;
  1319.             }
  1320.             
  1321.             .main-image-container {
  1322.                 height: 450px;
  1323.             }
  1324.             .overlay-title {
  1325.                 font-size: var(--font-size-3xl);
  1326.             }
  1327.             .overlay-subtitle {
  1328.                 font-size: var(--font-size-lg);
  1329.             }
  1330.             
  1331.             .cta-content, .cta-contact {
  1332.                 padding: 50px 40px;
  1333.             }
  1334.             .introduction-section {
  1335.                 padding: 30px;
  1336.             }
  1337.         }
  1338.         @media (max-width: 768px) {
  1339.             .main-logo {
  1340.                 width: 200px;
  1341.                 height: auto;
  1342.             }
  1343.             
  1344.             .main-image-container {
  1345.                 height: 400px;
  1346.             }
  1347.             .overlay-title {
  1348.                 font-size: var(--font-size-2xl);
  1349.             }
  1350.             .overlay-subtitle {
  1351.                 font-size: var(--font-size-base);
  1352.             }
  1353.             .section-title {
  1354.                 font-size: var(--font-size-2xl);
  1355.             }
  1356.             .cta-content, .cta-contact {
  1357.                 padding: 40px 30px;
  1358.             }
  1359.             .cta-title {
  1360.                 font-size: var(--font-size-3xl);
  1361.             }
  1362.             
  1363.             .overview-container, .admission-container {
  1364.                 padding: 40px 30px;
  1365.             }
  1366.         }
  1367.         @media (max-width: 480px) {
  1368.             .main-logo {
  1369.                 width: 180px;
  1370.                 height: auto;
  1371.                 transition: var(--transition);
  1372.                 filter: brightness(0) invert(1);
  1373.                 animation: logoGlow 3s infinite alternate;
  1374.             }
  1375.             
  1376.             .main-image-container {
  1377.                 height: 350px;
  1378.             }
  1379.             
  1380.             .image-overlay {
  1381.                 padding: 30px 20px;
  1382.             }
  1383.             .overlay-title {
  1384.                 font-size: var(--font-size-xl);
  1385.             }
  1386.             .overlay-subtitle {
  1387.                 font-size: var(--font-size-base);
  1388.             }
  1389.             .overlay-cta {
  1390.                 font-size: var(--font-size-base);
  1391.                 padding: 12px 25px;
  1392.             }
  1393.             .section-title {
  1394.                 font-size: var(--font-size-xl);
  1395.             }
  1396.             .overview-container, .admission-container {
  1397.                 padding: 30px 20px;
  1398.             }
  1399.             .cta-title {
  1400.                 font-size: var(--font-size-2xl);
  1401.             }
  1402.             .cta-text {
  1403.                 font-size: var(--font-size-base);
  1404.             }
  1405.             
  1406.             .program-card, .overview-card, .degree-card {
  1407.                 padding: 25px 20px;
  1408.             }
  1409.             .introduction-section {
  1410.                 padding: 25px 20px;
  1411.             }
  1412.         }
  1413.     </style>
  1414.     
  1415. </head>
  1416. <body>
  1417.     {% block header %}
  1418.         {{ render(path('_header')) }}
  1419.     {% endblock %}
  1420.  
  1421.     {% block switcher %}{% endblock %}
  1422.  
  1423.     {% block body %}
  1424.         <!-- IMPROVED Logo Header Section with White Logo -->
  1425.         <div class="logo-header">
  1426.             <div class="logo-container">
  1427.                 <img src="https://mcgt.um6p.ma//assets/img/12.png" style="width: 300px; height: auto;" alt="Program Logo"  class="main-logo">                
  1428.             </div>
  1429.         </div>
  1430.     
  1431.         <div class="page-container">
  1432.             <!-- Hero Gallery Section -->
  1433.             <div class="hero-gallery">
  1434.                 <div class="main-image-container">
  1435.                     <img id="mainImage" class="main-image" src="https://mcgt.um6p.ma/assets/img/1.jpg" alt="Campus Life">
  1436.                     <div class="image-overlay">
  1437.                         <h1 id="imageTitle" class="overlay-title">Experience Excellence in Education</h1>
  1438.                         <p id="imageDescription" class="overlay-subtitle">Join our prestigious Master 2 program and learn from world-renowned experts in game theory</p>
  1439.                         <a href="#apply" class="overlay-cta">Apply Now</a>
  1440.                     </div>
  1441.                 </div>
  1442.                 <!-- Thumbnail Gallery -->
  1443.                 <div id="imageGallery" class="thumbnail-gallery">
  1444.                     <img class="thumbnail active" src="https://mcgt.um6p.ma/assets/img/1.jpg" alt="Campus View" 
  1445.                         onclick="changeMainImage(this, 'Experience Excellence in Education', 'Join our prestigious Master 2 program and learn from world-renowned experts in game theory')">
  1446.                     
  1447.                     <img class="thumbnail" src="https://mcgt.um6p.ma/assets/img/2.jpg" alt="Student Life" 
  1448.                         onclick="changeMainImage(this, 'Collaborative Learning Environment', 'Engage with peers and faculty in a supportive academic community')">
  1449.                     
  1450.                     <img class="thumbnail" src="https://mcgt.um6p.ma/assets/img/5.jpg" alt="International Community" 
  1451.                         onclick="changeMainImage(this, 'International Perspective', 'Join students from around the world in a diverse learning environment')">
  1452.                     
  1453.                     <img class="thumbnail" src="https://mcgt.um6p.ma/assets/img/6.jpg" alt="Lecture Hall" 
  1454.                         onclick="changeMainImage(this, 'Engaging Lectures', 'Learn from experts through interactive and stimulating lectures')">
  1455.                     
  1456.                     <img class="thumbnail" src="https://mcgt.um6p.ma/assets/img/7.jpg" alt="Study Groups" 
  1457.                         onclick="changeMainImage(this, 'Collaborative Research', 'Work with peers on cutting-edge research projects')">
  1458.                     
  1459.                     <img class="thumbnail" src="https://mcgt.um6p.ma/assets/img/8.jpg" alt="Campus Grounds" 
  1460.                         onclick="changeMainImage(this, 'Beautiful Campus', 'Study in a modern and inspiring environment')">
  1461.                     
  1462.                     <img class="thumbnail" src="https://mcgt.um6p.ma/assets/img/9.jpg" alt="Library" 
  1463.                         onclick="changeMainImage(this, 'Extensive Resources', 'Access to comprehensive library and digital resources')">
  1464.                     
  1465.                     <img class="thumbnail" src="https://mcgt.um6p.ma/assets/img/10.jpg" alt="Graduation" 
  1466.                         onclick="changeMainImage(this, 'Academic Achievement', 'Celebrate your success with a prestigious degree')">
  1467.                     
  1468.                     <img class="thumbnail" src="https://mcgt.um6p.ma/assets/img/11.jpg" alt="Career Opportunities" 
  1469.                         onclick="changeMainImage(this, 'Future Opportunities', 'Open doors to exciting career and research opportunities')">
  1470.                 </div>
  1471.             </div>
  1472.             <!-- Introduction Section -->
  1473.             <section class="introduction-section">
  1474.                 <div class="introduction-content">
  1475.                     <h2 class="introduction-title">About the Program</h2>
  1476.                     
  1477.                     <p class="introduction-text">The Master 2 in Mathematics and Applications at Paris Dauphine-PSL, specializing in « Game Theory in Mathematics, Economics, and Computation », takes place in Morocco on the campus of Mohammed VI Polytechnic University (UM6P) in Rabat.</p>
  1478.                     
  1479.                     <p class="introduction-text">This program is offered as part of an international partnership with the Moroccan Center for Game Theory and is intended for students already enrolled in a Master 1 at Paris Dauphine-PSL. The program aims to provide an in-depth understanding of mathematical models, solution concepts, and algorithms essential for comprehending, modeling, and addressing strategic and competitive challenges in various fields, including economics, computer science, operations research, and social sciences.</p>
  1480.                     
  1481.                     <p class="introduction-text">Throughout the program, students will develop the following skills:</p>
  1482.                     
  1483.                     <ul class="skills-list">
  1484.                         <li>Mastery of advanced theoretical techniques, including probability, statistics, combinatorics, operations research, convex optimization, game theory, and microeconomic theory.</li>
  1485.                         <li>Mastery of advanced models and methodologies, particularly in market design, auctions, repeated and stochastic games, mean-field games, algorithmic game theory, computational social choice, or multi-agent learning.</li>
  1486.                         <li>Ability to write scientific reports and communicate research findings effectively.</li>
  1487.                     </ul>
  1488.                     
  1489.                     <p class="introduction-text">Successful candidates this year will have the opportunity to pursue a fully funded PhD at the Moroccan Center for Game Theory at UM6P, potentially under co-supervision with Paris Dauphine-PSL University.</p>
  1490.                     
  1491.                     <div class="financial-info">
  1492.                         <p>Students enrolled at Dauphine-PSL are exempt from tuition fees at UM6P. However, they remain responsible for their travel, accommodation, and living expenses. They are eligible for on-campus housing at UM6P and can apply for a living stipend. The cost of on-campus accommodation ranges between 200 and 250 euros per month.</p>
  1493.                         
  1494.                         <p>Due to the highly limited number of spots, candidates must have an excellent academic record and a strong motivation to pursue a PhD. Applications must be submitted through our form for admission to Master 2.</p>
  1495.                     </div>
  1496.                 </div>
  1497.             </section>
  1498.             <!-- Program Cards Section -->
  1499.             <section class="section">
  1500.                 <div class="section-header">
  1501.                     <h2 class="section-title">Master 2 Program</h2>
  1502.                     <p class="section-subtitle">A prestigious program designed to develop expertise in game theory</p>
  1503.                 </div>
  1504.                 <div class="program-cards">
  1505.                     <!-- Program Card -->
  1506.                     <div class="program-card program-card-primary">
  1507.                         <div class="program-card-icon">
  1508.                             <svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  1509.                                 <path d="M22 10v6M2 10l10-5 10 5-10 5z"></path>
  1510.                                 <path d="M6 12v5c3 3 9 3 12 0v-5"></path>
  1511.                             </svg>
  1512.                         </div>
  1513.                         <h3 class="program-card-title">Master 2 Program</h3>
  1514.                         <p class="program-card-text">Dauphine-UM6P Master 2 in Applied Mathematics: Game Theory in Mathematics, Economics, and Computation</p>
  1515.                         
  1516.                         <div class="program-card-feature">
  1517.                             <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  1518.                                 <rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect>
  1519.                                 <line x1="16" y1="2" x2="16" y2="6"></line>
  1520.                                 <line x1="8" y1="2" x2="8" y2="6"></line>
  1521.                                 <line x1="3" y1="10" x2="21" y2="10"></line>
  1522.                             </svg>
  1523.                             <span>One academic year (Oct-Sept)</span>
  1524.                         </div>
  1525.                         
  1526.                         <div class="program-card-feature">
  1527.                             <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  1528.                                 <path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path>
  1529.                                 <circle cx="12" cy="10" r="3"></circle>
  1530.                             </svg>
  1531.                             <span>UM6P Rabat Campus</span>
  1532.                         </div>
  1533.                     </div>
  1534.                     
  1535.                     <!-- Benefits Card -->
  1536.                     <div class="program-card program-card-accent">
  1537.                         <div class="program-card-icon">
  1538.                             <svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  1539.                                 <path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path>
  1540.                                 <polyline points="22 4 12 14.01 9 11.01"></polyline>
  1541.                             </svg>
  1542.                         </div>
  1543.                         <h3 class="program-card-title">Program Benefits</h3>
  1544.                         
  1545.                         <ul class="benefits-list">
  1546.                             <li><span>✓</span> World-class faculty from leading institutions</li>
  1547.                             <li><span>✓</span> Double degree: UM6P and Dauphine-PSL</li>
  1548.                             <li><span>✓</span> Direct access to PhD programs</li>
  1549.                             <li><span>✓</span> Affordable on-campus housing</li>
  1550.                         </ul>
  1551.                     </div>
  1552.                     
  1553.                     <!-- Apply Now Card -->
  1554.                     <div class="program-card program-card-cta">
  1555.                         <div class="program-card-icon">
  1556.                             <svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  1557.                                 <path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path>
  1558.                                 <polyline points="22,6 12,13 2,6"></polyline>
  1559.                             </svg>
  1560.                         </div>
  1561.                         <h3 class="program-card-title">Ready to Apply?</h3>
  1562.                         <p class="program-card-text">Applications for the next academic year are now open. Don't miss this opportunity!</p>
  1563.                         
  1564.                         <div class="program-card-feature">
  1565.                             <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  1566.                                 <rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect>
  1567.                                 <line x1="16" y1="2" x2="16" y2="6"></line>
  1568.                                 <line x1="8" y1="2" x2="8" y2="6"></line>
  1569.                                 <line x1="3" y1="10" x2="21" y2="10"></line>
  1570.                             </svg>
  1571.                             <span>Deadline: May 31, 2025</span>
  1572.                         </div>
  1573.                         
  1574.                         <a href="#apply" class="program-card-button">Apply Now</a>
  1575.                     </div>
  1576.                 </div>
  1577.             </section>
  1578.             <!-- Program Overview Section -->
  1579.             <section class="section">
  1580.                 <div class="overview-container">
  1581.                     <div class="section-header">
  1582.                         <h2 class="section-title">Program Overview</h2>
  1583.                         <p class="section-subtitle">A comprehensive curriculum designed to provide expertise in game theory and its applications</p>
  1584.                     </div>
  1585.                     <div class="overview-cards">
  1586.                         <!-- Foundation Courses -->
  1587.                         <div class="overview-card overview-card-primary">
  1588.                             <h3 class="overview-card-title">
  1589.                                 <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  1590.                                     <path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"></path>
  1591.                                     <path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"></path>
  1592.                                 </svg>
  1593.                                 Foundation Courses
  1594.                             </h3>
  1595.                             <p class="overview-card-period">October - December</p>
  1596.                             
  1597.                             <ul class="overview-card-list">
  1598.                                 <li>Convex & Online Optimization</li>
  1599.                                 <li>Mathematical Game Theory</li>
  1600.                                 <li>Discrete Optimization & Operations Research</li>
  1601.                                 <li>Probability, Statistics & Control</li>
  1602.                                 <li>Microeconomics</li>
  1603.                             </ul>
  1604.                         </div>
  1605.                         
  1606.                         <!-- Specializations -->
  1607.                         <div class="overview-card overview-card-accent">
  1608.                             <h3 class="overview-card-title">
  1609.                                 <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  1610.                                     <polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon>
  1611.                                 </svg>
  1612.                                 Specializations
  1613.                             </h3>
  1614.                             <p class="overview-card-period">January - April</p>
  1615.                             
  1616.                             <ul class="overview-card-list">
  1617.                                 <li>Differential & Mean-Field Games</li>
  1618.                                 <li>Optimal Transport and Applications</li>
  1619.                                 <li>Algorithmic Mechanism Design</li>
  1620.                                 <li>Multi-Player Stochastic Games</li>
  1621.                                 <li>And many more specialized courses</li>
  1622.                             </ul>
  1623.                         </div>
  1624.                         
  1625.                         <!-- Final Semester -->
  1626.                         <div class="overview-card overview-card-primary">
  1627.                             <h3 class="overview-card-title">
  1628.                                 <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  1629.                                     <path d="M18 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3H6a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3V6a3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 3 3 0 0 0-3-3z"></path>
  1630.                                 </svg>
  1631.                                 Final Semester
  1632.                             </h3>
  1633.                             <p class="overview-card-period">May - September</p>
  1634.                             
  1635.                             <div class="overview-card-content">
  1636.                                 <p>Dedicated to solving a research problem and writing a Master's thesis under the supervision of world-class researchers.</p>
  1637.                             </div>
  1638.                             
  1639.                             <div class="overview-card-info">
  1640.                                 <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  1641.                                     <circle cx="12" cy="12" r="10"></circle>
  1642.                                     <line x1="12" y1="8" x2="12" y2="12"></line>
  1643.                                     <line x1="12" y1="16" x2="12.01" y2="16"></line>
  1644.                                 </svg>
  1645.                                 <span>Total Credits: 60 ECTS</span>
  1646.                             </div>
  1647.                         </div>
  1648.                     </div>
  1649.                 </div>
  1650.             </section>
  1651.             <!-- Degrees Section -->
  1652.             <section class="section">
  1653.                 <div class="section-header">
  1654.                     <h2 class="section-title">Dual Degree Program</h2>
  1655.                     <p class="section-subtitle">Graduate with two prestigious degrees that open doors worldwide</p>
  1656.                 </div>
  1657.                 <div class="degree-cards">
  1658.                     <div class="degree-card degree-card-primary">
  1659.                         <div class="degree-card-header">
  1660.                             <div class="degree-card-icon">
  1661.                                 <svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  1662.                                     <path d="M22 10v6M2 10l10-5 10 5-10 5z"></path>
  1663.                                     <path d="M6 12v5c3 3 9 3 12 0v-5"></path>
  1664.                                 </svg>
  1665.                             </div>
  1666.                             <div class="degree-card-title-container">
  1667.                                 <h3 class="degree-card-title">Master of Science from UM6P</h3>
  1668.                                 <p class="degree-card-subtitle">Recognized degree with global opportunities</p>
  1669.                             </div>
  1670.                         </div>
  1671.                         <p class="degree-card-content">This degree grants direct access to the PhD program at the Moroccan Center for Game Theory without the need to validate the predoc year.</p>
  1672.                     </div>
  1673.                     <div class="degree-card degree-card-accent">
  1674.                         <div class="degree-card-header">
  1675.                             <div class="degree-card-icon">
  1676.                                 <svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  1677.                                     <path d="M22 10v6M2 10l10-5 10 5-10 5z"></path>
  1678.                                     <path d="M6 12v5c3 3 9 3 12 0v-5"></path>
  1679.                                 </svg>
  1680.                             </div>
  1681.                             <div class="degree-card-title-container">
  1682.                                 <h3 class="degree-card-title">Master 2 from Dauphine-PSL</h3>
  1683.                                 <p class="degree-card-subtitle">Official French second-cycle degree</p>
  1684.                             </div>
  1685.                         </div>
  1686.                         <p class="degree-card-content">This prestigious degree (60 ECTS credits) grants access to PhD programs worldwide and is highly valued by employers internationally.</p>
  1687.                     </div>
  1688.                 </div>
  1689.             </section>
  1690.             <!-- Admission & Requirements Section -->
  1691.             <section class="section">
  1692.                 <div class="admission-container">
  1693.                     <div class="section-header">
  1694.                         <h2 class="section-title">Admission & Requirements</h2>
  1695.                         <p class="section-subtitle">Simple steps to join our prestigious program</p>
  1696.                     </div>
  1697.                     <div class="admission-columns">
  1698.                         <!-- Requirements -->
  1699.                         <div class="admission-column">
  1700.                             <h3 class="admission-title">
  1701.                                 <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  1702.                                     <path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path>
  1703.                                     <polyline points="22 4 12 14.01 9 11.01"></polyline>
  1704.                                 </svg>
  1705.                                 Eligibility Requirements
  1706.                             </h3>
  1707.                             
  1708.                             <div class="requirements-container">
  1709.                                 <div class="requirement-item">
  1710.                                     <div class="requirement-number">1</div>
  1711.                                     <div class="requirement-content">
  1712.                                         <div class="requirement-title">Enrolled in Master 1</div>
  1713.                                         <div class="requirement-description">in Mathematics and Applications or equivalent</div>
  1714.                                     </div>
  1715.                                 </div>
  1716.                                 
  1717.                                 <div class="requirement-item">
  1718.                                     <div class="requirement-number">2</div>
  1719.                                     <div class="requirement-content">
  1720.                                         <div class="requirement-title">Successful completion of Master 1</div>
  1721.                                         <div class="requirement-description">is required upon registration</div>
  1722.                                     </div>
  1723.                                 </div>
  1724.                                 
  1725.                                 <div class="requirement-item">
  1726.                                     <div class="requirement-number">3</div>
  1727.                                     <div class="requirement-content">
  1728.                                         <div class="requirement-title">Minimum B2 English proficiency</div>
  1729.                                         <div class="requirement-description">(TOEFL IBT 92, IELTS 6.5, Cambridge FCE 160)</div>
  1730.                                     </div>
  1731.                                 </div>
  1732.                             </div>
  1733.                         </div>
  1734.                         
  1735.                         <!-- Required Documents -->
  1736.                         <div class="admission-column">
  1737.                             <h3 class="admission-title">
  1738.                                 <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  1739.                                     <path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
  1740.                                     <polyline points="14 2 14 8 20 8"></polyline>
  1741.                                     <line x1="16" y1="13" x2="8" y2="13"></line>
  1742.                                     <line x1="16" y1="17" x2="8" y2="17"></line>
  1743.                                     <polyline points="10 9 9 9 8 9"></polyline>
  1744.                                 </svg>
  1745.                                 Required Documents
  1746.                             </h3>
  1747.                             
  1748.                             <div class="documents-grid">
  1749.                                 <div class="document-item">
  1750.                                     <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  1751.                                         <path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
  1752.                                         <polyline points="14 2 14 8 20 8"></polyline>
  1753.                                         <line x1="16" y1="13" x2="8" y2="13"></line>
  1754.                                         <line x1="16" y1="17" x2="8" y2="17"></line>
  1755.                                         <polyline points="10 9 9 9 8 9"></polyline>
  1756.                                     </svg>
  1757.                                     <div class="document-title">Curriculum vitae</div>
  1758.                                 </div>
  1759.                                 
  1760.                                 <div class="document-item">
  1761.                                     <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  1762.                                         <path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
  1763.                                         <polyline points="14 2 14 8 20 8"></polyline>
  1764.                                         <line x1="16" y1="13" x2="8" y2="13"></line>
  1765.                                         <line x1="16" y1="17" x2="8" y2="17"></line>
  1766.                                         <polyline points="10 9 9 9 8 9"></polyline>
  1767.                                     </svg>
  1768.                                     <div class="document-title">Cover letter</div>
  1769.                                 </div>
  1770.                                 
  1771.                                 <div class="document-item">
  1772.                                     <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  1773.                                         <path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
  1774.                                         <polyline points="14 2 14 8 20 8"></polyline>
  1775.                                         <line x1="16" y1="13" x2="8" y2="13"></line>
  1776.                                         <line x1="16" y1="17" x2="8" y2="17"></line>
  1777.                                         <polyline points="10 9 9 9 8 9"></polyline>
  1778.                                     </svg>
  1779.                                     <div class="document-title">Academic references</div>
  1780.                                 </div>
  1781.                                 
  1782.                                 <div class="document-item">
  1783.                                     <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  1784.                                         <path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
  1785.                                         <polyline points="14 2 14 8 20 8"></polyline>
  1786.                                         <line x1="16" y1="13" x2="8" y2="13"></line>
  1787.                                         <line x1="16" y1="17" x2="8" y2="17"></line>
  1788.                                         <polyline points="10 9 9 9 8 9"></polyline>
  1789.                                     </svg>
  1790.                                     <div class="document-title">Transcripts</div>
  1791.                                 </div>
  1792.                             </div>
  1793.                         </div>
  1794.                     </div>
  1795.                     
  1796.                     <!-- Important Dates -->
  1797.                     <h3 class="dates-title">
  1798.                         <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  1799.                             <circle cx="12" cy="12" r="10"></circle>
  1800.                             <polyline points="12 6 12 12 16 14"></polyline>
  1801.                         </svg>
  1802.                         Important Dates
  1803.                     </h3>
  1804.                     
  1805.                     <div class="dates-container">
  1806.                         <div class="date-item">
  1807.                             <div class="date-calendar">
  1808.                                 <div class="date-day">31</div>
  1809.                                 <div class="date-month">May</div>
  1810.                             </div>
  1811.                             <div class="date-title">Application Deadline</div>
  1812.                         </div>
  1813.                         
  1814.                         <div class="date-item">
  1815.                             <div class="date-calendar">
  1816.                                 <div class="date-day">6</div>
  1817.                                 <div class="date-month">June</div>
  1818.                             </div>
  1819.                             <div class="date-title">Interview Selection</div>
  1820.                         </div>
  1821.                         
  1822.                         <div class="date-item">
  1823.                             <div class="date-calendar">
  1824.                                 <div class="date-day">16-20</div>
  1825.                                 <div class="date-month">June</div>
  1826.                             </div>
  1827.                             <div class="date-title">Interviews</div>
  1828.                         </div>
  1829.                         
  1830.                         <div class="date-item">
  1831.                             <div class="date-calendar">
  1832.                                 <div class="date-day">1</div>
  1833.                                 <div class="date-month">Oct</div>
  1834.                             </div>
  1835.                             <div class="date-title">Program Start</div>
  1836.                         </div>
  1837.                     </div>
  1838.                 </div>
  1839.             </section>
  1840.             <!-- Call to Action Section -->
  1841.             <section id="apply" class="cta-section">
  1842.                 <div class="cta-circle cta-circle-1"></div>
  1843.                 <div class="cta-circle cta-circle-2"></div>
  1844.                 <div class="cta-circle cta-circle-3"></div>
  1845.                 
  1846.                 <div class="cta-container">
  1847.                     <div class="cta-content">
  1848.                         <h2 class="cta-title">APPLY <span>NOW</span></h2>
  1849.                         <p class="cta-text">Join our prestigious Master 2 program and learn from world-renowned experts in game theory, mathematics, economics, and computer science.</p>
  1850.                         <a href="#" class="cta-button">Start Your Application <span>→</span></a>
  1851.                     </div>
  1852.                     
  1853.                     <div class="cta-contact">
  1854.                         <div class="contact-content">
  1855.                             <div class="contact-icon">
  1856.                                 <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  1857.                                     <path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path>
  1858.                                     <polyline points="22,6 12,13 2,6"></polyline>
  1859.                                 </svg>
  1860.                             </div>
  1861.                             <h3 class="contact-title">Have Questions?</h3>
  1862.                             <p class="contact-text">Contact our admissions team for more information about the program.</p>
  1863.                             <a href="mailto:[email protected]" class="contact-button">Contact Us <span>→</span></a>
  1864.                         </div>
  1865.                     </div>
  1866.                 </div>
  1867.             </section>
  1868.         </div>
  1869.     {% endblock %}
  1870.     {% block footer %}
  1871.         {{ render(path('_footer')) }}
  1872.     {% endblock %}
  1873.     <script type="text/javascript" src="{{ asset('assets/js/main.js')}}"></script>
  1874.     <script>
  1875.         function changeMainImage(thumbnail, title, description) {
  1876.             // Change main image
  1877.             const mainImage = document.getElementById('mainImage');
  1878.             mainImage.src = thumbnail.src;
  1879.             
  1880.             // Change title and description
  1881.             const titleElement = document.getElementById('imageTitle');
  1882.             const descriptionElement = document.getElementById('imageDescription');
  1883.             
  1884.             titleElement.textContent = title;
  1885.             descriptionElement.textContent = description;
  1886.             
  1887.             // Update active thumbnail
  1888.             const thumbnails = document.querySelectorAll('.thumbnail');
  1889.             thumbnails.forEach(thumb => {
  1890.                 thumb.classList.remove('active');
  1891.             });
  1892.             thumbnail.classList.add('active');
  1893.             
  1894.             // Add animation to main image
  1895.             mainImage.style.transform = 'scale(1.05)';
  1896.             setTimeout(() => {
  1897.                 mainImage.style.transform = 'scale(1)';
  1898.             }, 500);
  1899.         }
  1900.         
  1901.         // Smooth scroll for anchor links
  1902.         document.querySelectorAll('a[href^="#"]').forEach(anchor => {
  1903.             anchor.addEventListener('click', function(e) {
  1904.                 e.preventDefault();
  1905.                 
  1906.                 const target = document.querySelector(this.getAttribute('href'));
  1907.                 if (target) {
  1908.                     window.scrollTo({
  1909.                         top: target.offsetTop - 80,
  1910.                         behavior: 'smooth'
  1911.                     });
  1912.                 }
  1913.             });
  1914.         });
  1915.     </script>
  1916. </body>
  1917. </html>