/*==================================================
COLLEGE KILMA
STYLE.CSS V2.0
Développé par YIVUD GROUP SARL
====================================================*/


/*==================================================
IMPORT GOOGLE FONT
====================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*==================================================
CSS VARIABLES
====================================================*/

:root{

    /*==================================================
    COLORS
    ==================================================*/

    --primary:#004AAD;

    --primary-light:#1B63D9;

    --secondary:#0066CC;

    --accent:#F4B400;

    --success:#16A34A;

    --danger:#DC2626;

    --warning:#F59E0B;

    --info:#0EA5E9;

    --dark:#0F172A;

    --dark-light:#1E293B;

    --gray:#64748B;

    --gray-light:#CBD5E1;

    --light:#F8FAFC;

    --white:#FFFFFF;

    --border:#E2E8F0;


    /*==================================================
    TYPOGRAPHY
    ==================================================*/

    --font-family:'Poppins',sans-serif;

    --font-size-xs:.75rem;

    --font-size-sm:.875rem;

    --font-size-md:1rem;

    --font-size-lg:1.125rem;

    --font-size-xl:1.35rem;

    --font-size-xxl:2rem;

    --font-size-display:4rem;


    /*==================================================
    FONT WEIGHT
    ==================================================*/

    --fw-light:300;

    --fw-normal:400;

    --fw-medium:500;

    --fw-semibold:600;

    --fw-bold:700;

    --fw-extra-bold:800;


    /*==================================================
    BORDER RADIUS
    ==================================================*/

    --radius-sm:8px;

    --radius-md:12px;

    --radius-lg:20px;

    --radius-xl:30px;

    --radius-round:50px;


    /*==================================================
    SHADOW
    ==================================================*/

    --shadow-xs:0 2px 8px rgba(0,0,0,.05);

    --shadow-sm:0 5px 15px rgba(0,0,0,.08);

    --shadow-md:0 10px 25px rgba(0,0,0,.10);

    --shadow-lg:0 20px 45px rgba(0,0,0,.12);

    --shadow-xl:0 35px 70px rgba(0,0,0,.15);


    /*==================================================
    TRANSITIONS
    ==================================================*/

    --transition-fast:.25s ease;

    --transition:.35s ease;

    --transition-slow:.55s ease;


    /*==================================================
    CONTAINER
    ==================================================*/

    --container-width:1320px;


    /*==================================================
    HEADER
    ==================================================*/

    --header-height:90px;


    /*==================================================
    Z-INDEX
    ==================================================*/

    --z-dropdown:1000;

    --z-fixed:1030;

    --z-modal:1050;

    --z-loader:9999;

}
/*==================================================
RESET CSS
====================================================*/

/* Box sizing */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* Sélection de texte */

::selection{
    background:var(--primary);
    color:var(--white);
}

/* Scrollbar (Chrome, Edge, Safari) */

::-webkit-scrollbar{
    width:10px;
}

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

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

::-webkit-scrollbar-thumb:hover{
    background:var(--secondary);
}

/* HTML */

html{

    font-size:16px;

    scroll-behavior:smooth;

    scroll-padding-top:100px;

}

/* Body */

body{

    font-family:var(--font-family);

    font-size:var(--font-size-md);

    font-weight:var(--fw-normal);

    line-height:1.7;

    color:var(--dark);

    background:var(--white);

    overflow-x:hidden;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}

/* Images */

img{

    max-width:100%;

    display:block;

    height:auto;

    user-select:none;

}

/* Liens */

a{

    text-decoration:none;

    color:inherit;

    transition:var(--transition);

}

a:hover{

    text-decoration:none;

}

/* Listes */

ul,
ol{

    list-style:none;

    margin:0;

    padding:0;

}

/* Paragraphes */

p{

    margin-bottom:1rem;

    color:var(--gray);

}

/* Titres */

h1,
h2,
h3,
h4,
h5,
h6{

    margin-bottom:1rem;

    color:var(--dark);

    font-weight:var(--fw-bold);

    line-height:1.25;

}

/* Citations */

blockquote{

    border-left:5px solid var(--primary);

    padding-left:20px;

    font-style:italic;

    color:var(--gray);

}

/* Tableaux */

table{

    width:100%;

    border-collapse:collapse;

}

/* Cellules */

th,
td{

    padding:12px;

    vertical-align:middle;

}

/* Formulaires */

input,
textarea,
select,
button{

    font-family:inherit;

    font-size:inherit;

    outline:none;

}

/* Textarea */

textarea{

    resize:vertical;

}

/* Boutons */

button{

    border:none;

    cursor:pointer;

    background:none;

}

/* Iframe */

iframe{

    border:none;

    width:100%;

}

/* Vidéo */

video{

    width:100%;

    display:block;

}

/* SVG */

svg{

    display:block;

}

/* Figures */

figure{

    margin:0;

}

/* Adresse */

address{

    font-style:normal;

}

/* Champs désactivés */

input:disabled,
textarea:disabled,
select:disabled{

    cursor:not-allowed;

    opacity:.7;

}

/* Focus accessible */

:focus-visible{

    outline:3px solid rgba(0,74,173,.25);

    outline-offset:3px;

}

/* Ancres */

[id]{

    scroll-margin-top:110px;

}
/*==================================================
TYPOGRAPHY
====================================================*/

/*==============================
Titres
==============================*/

h1,
.display-1{

    font-size:clamp(2.8rem,6vw,4.8rem);

    font-weight:800;

    line-height:1.15;

    letter-spacing:-1.5px;

    color:var(--white);

}

h2,
.display-2{

    font-size:clamp(2rem,4vw,3rem);

    font-weight:700;

    line-height:1.2;

    color:var(--dark);

}

h3{

    font-size:clamp(1.5rem,3vw,2rem);

    font-weight:700;

}

h4{

    font-size:1.35rem;

    font-weight:600;

}

h5{

    font-size:1.1rem;

    font-weight:600;

}

h6{

    font-size:1rem;

    font-weight:600;

}

/*==============================
Paragraphes
==============================*/

p{

    font-size:1rem;

    color:var(--gray);

    margin-bottom:18px;

}

.lead{

    font-size:1.2rem;

    font-weight:400;

    line-height:1.9;

    color:#475569;

}

/*==============================
Titres des sections
==============================*/

.section-header{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.section-subtitle{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-weight:600;

    font-size:.9rem;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.section-subtitle::before{

    content:"";

    width:45px;

    height:3px;

    background:var(--accent);

    border-radius:10px;

}

.section-title{

    font-size:clamp(2rem,4vw,3rem);

    font-weight:700;

    color:var(--dark);

    margin-bottom:20px;

}

.section-description{

    font-size:1.05rem;

    color:var(--gray);

    line-height:1.9;

}

/*==============================
Texte clair
==============================*/

.text-light p{

    color:rgba(255,255,255,.85);

}

.text-light .section-title{

    color:#fff;

}

.text-light .section-description{

    color:rgba(255,255,255,.82);

}

/*==============================
Badges
==============================*/

.badge-school{

    display:inline-flex;

    align-items:center;

    padding:10px 22px;

    border-radius:40px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    color:#fff;

    font-weight:600;

    letter-spacing:.8px;

    border:1px solid rgba(255,255,255,.15);

}

.badge-primary{

    display:inline-block;

    background:var(--primary);

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:.9rem;

    font-weight:600;

}

.badge-accent{

    display:inline-block;

    background:var(--accent);

    color:#222;

    padding:8px 18px;

    border-radius:30px;

    font-size:.9rem;

    font-weight:600;

}

/*==============================
Liens textuels
==============================*/

.link-arrow{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-weight:600;

}

.link-arrow i{

    transition:.35s;

}

.link-arrow:hover i{

    transform:translateX(6px);

}

/*==============================
Citation
==============================*/

.quote{

    position:relative;

    padding-left:35px;

    font-style:italic;

    color:#475569;

}

.quote::before{

    content:"❝";

    position:absolute;

    left:0;

    top:-8px;

    font-size:3rem;

    color:var(--accent);

    line-height:1;

}

/*==============================
Séparateur décoratif
==============================*/

.title-divider{

    width:90px;

    height:4px;

    margin:20px auto;

    border-radius:20px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--accent)
    );

}

/*==============================
Texte Justifié
==============================*/

.text-justify{

    text-align:justify;

}

/*==============================
Texte limité
==============================*/

.text-clamp-2{

    display:-webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    overflow:hidden;

}

.text-clamp-3{

    display:-webkit-box;

    -webkit-line-clamp:3;

    -webkit-box-orient:vertical;

    overflow:hidden;

}

/*==============================
Gradient Text
==============================*/

.gradient-text{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    background-clip:text;

}
/*==================================================
UTILITIES
====================================================*/

/*==============================
Container
==============================*/

.container-custom{

  width:100%;

  max-width:1320px;

  margin:auto;

  padding:0 15px;

}

/*==============================
Section
==============================*/

.section-padding{

  padding:110px 0;

}

.section-padding-sm{

  padding:70px 0;

}

.section-padding-lg{

  padding:150px 0;

}

/*==============================
Background
==============================*/

.bg-primary-soft{

  background:#F4F8FF;

}

.bg-light-soft{

  background:#F8FAFC;

}

.bg-dark-soft{

  background:#0F172A;

}

.bg-gradient{

  background:linear-gradient(
      135deg,
      var(--primary),
      var(--secondary)
  );

}

/*==============================
Radius
==============================*/

.rounded-sm{

  border-radius:var(--radius-sm);

}

.rounded-md{

  border-radius:var(--radius-md);

}

.rounded-lg{

  border-radius:var(--radius-lg);

}

.rounded-xl{

  border-radius:30px;

}

.rounded-circle{

  border-radius:50%;

}

/*==============================
Shadow
==============================*/

.shadow-xs{

  box-shadow:var(--shadow-xs);

}

.shadow-sm{

  box-shadow:var(--shadow-sm);

}

.shadow-md{

  box-shadow:var(--shadow-md);

}

.shadow-lg{

  box-shadow:var(--shadow-lg);

}

.shadow-xl{

  box-shadow:var(--shadow-xl);

}

/*==============================
Hover Shadow
==============================*/

.shadow-hover{

  transition:var(--transition);

}

.shadow-hover:hover{

  box-shadow:var(--shadow-lg);

}

/*==============================
Hover Lift
==============================*/

.hover-lift{

  transition:var(--transition);

}

.hover-lift:hover{

  transform:translateY(-12px);

}

/*==============================
Scale
==============================*/

.hover-scale{

  overflow:hidden;

}

.hover-scale img{

  transition:.6s;

}

.hover-scale:hover img{

  transform:scale(1.08);

}

/*==============================
Transition
==============================*/

.transition{

  transition:var(--transition);

}

.transition-fast{

  transition:var(--transition-fast);

}

.transition-slow{

  transition:var(--transition-slow);

}

/*==============================
Object Fit
==============================*/

.object-cover{

  object-fit:cover;

}

.object-contain{

  object-fit:contain;

}

/*==============================
Overflow
==============================*/

.overflow-hidden{

  overflow:hidden;

}

/*==============================
Position
==============================*/

.position-relative{

  position:relative;

}

.position-absolute{

  position:absolute;

}

/*==============================
Overlay
==============================*/

.overlay{

  position:absolute;

  inset:0;

}

.overlay-dark{

  background:rgba(15,23,42,.65);

}

.overlay-primary{

  background:rgba(0,74,173,.70);

}

.overlay-gradient{

  background:linear-gradient(
      135deg,
      rgba(0,74,173,.90),
      rgba(0,102,204,.60)
  );

}

/*==============================
Glass Effect
==============================*/

.glass{

  background:rgba(255,255,255,.12);

  backdrop-filter:blur(15px);

  -webkit-backdrop-filter:blur(15px);

  border:1px solid rgba(255,255,255,.20);

}

/*==============================
Z-index
==============================*/

.z-1{

  z-index:1;

}

.z-10{

  z-index:10;

}

.z-100{

  z-index:100;

}

.z-fixed{

  z-index:var(--z-fixed);

}

/*==============================
Height
==============================*/

.min-vh-100{

  min-height:100vh;

}

.h-100{

  height:100%;

}

/*==============================
Width
==============================*/

.w-fit{

  width:fit-content;

}

/*==============================
Flex
==============================*/

.flex-center{

  display:flex;

  justify-content:center;

  align-items:center;

}

.flex-between{

  display:flex;

  justify-content:space-between;

  align-items:center;

}

.flex-column{

  display:flex;

  flex-direction:column;

}

/*==============================
Gap
==============================*/

.gap-10{

  gap:10px;

}

.gap-20{

  gap:20px;

}

.gap-30{

  gap:30px;

}

/*==============================
Cursor
==============================*/

.cursor-pointer{

  cursor:pointer;

}

/*==============================
Opacity
==============================*/

.opacity-0{

  opacity:0;

}

.opacity-50{

  opacity:.5;

}

.opacity-75{

  opacity:.75;

}

.opacity-100{

  opacity:1;

}

/*==============================
Border
==============================*/

.border-light{

  border:1px solid var(--border);

}

.border-primary{

  border:1px solid var(--primary);

}

/*==============================
Divider
==============================*/

.divider{

  width:100%;

  height:1px;

  background:#E2E8F0;

  margin:40px 0;

}

/*==============================
Image Ratio
==============================*/

.ratio-16x9{

  aspect-ratio:16/9;

}

.ratio-4x3{

  aspect-ratio:4/3;

}

.ratio-square{

  aspect-ratio:1/1;

}
/*==================================================
PRELOADER
====================================================*/

#preloader{

  position:fixed;

  inset:0;

  background:var(--white);

  display:flex;

  justify-content:center;

  align-items:center;

  z-index:99999;

  transition:opacity .6s ease,
             visibility .6s ease;

}

#preloader.hide{

  opacity:0;

  visibility:hidden;

}

/*==============================
Loader
==============================*/

.loader{

  position:relative;

  width:85px;

  height:85px;

}

/* Cercle extérieur */

.loader::before{

  content:"";

  position:absolute;

  inset:0;

  border-radius:50%;

  border:5px solid rgba(0,74,173,.15);

  border-top:5px solid var(--primary);

  animation:loaderRotate 1s linear infinite;

}

/* Cercle intérieur */

.loader::after{

  content:"";

  position:absolute;

  inset:15px;

  border-radius:50%;

  border:5px solid rgba(244,180,0,.15);

  border-bottom:5px solid var(--accent);

  animation:loaderRotateReverse .9s linear infinite;

}

/* Logo */

.loader-logo{

  position:absolute;

  inset:0;

  display:flex;

  justify-content:center;

  align-items:center;

}

.loader-logo img{

  width:34px;

  height:34px;

  object-fit:contain;

}

/*==============================
Animations
==============================*/

@keyframes loaderRotate{

  from{

      transform:rotate(0deg);

  }

  to{

      transform:rotate(360deg);

  }

}

@keyframes loaderRotateReverse{

  from{

      transform:rotate(360deg);

  }

  to{

      transform:rotate(0deg);

  }

}


/*==================================================
TOP BAR
====================================================*/

.topbar{

  background:var(--dark);

  color:#fff;

  font-size:.90rem;

  height:46px;

  display:flex;

  align-items:center;

  position:relative;

  z-index:1035;

}

.topbar .container{

  display:flex;

  justify-content:space-between;

  align-items:center;

}

.topbar-left,

.topbar-right{

  display:flex;

  align-items:center;

  gap:25px;

}

.topbar-item{

  display:flex;

  align-items:center;

  gap:8px;

}

.topbar-item i{

  color:var(--accent);

  font-size:15px;

}

/*==============================
Topbar Links
==============================*/

.topbar a{

  color:#fff;

  transition:.3s;

}

.topbar a:hover{

  color:var(--accent);

}

/*==============================
Social Icons
==============================*/

.topbar-social{

  display:flex;

  align-items:center;

  gap:12px;

}

.topbar-social a{

  width:32px;

  height:32px;

  border-radius:50%;

  display:flex;

  justify-content:center;

  align-items:center;

  background:rgba(255,255,255,.08);

  transition:.35s;

}

.topbar-social a:hover{

  background:var(--accent);

  color:var(--dark);

  transform:translateY(-3px);

}

/*==============================
Opening Hours
==============================*/

.opening-hours{

  font-weight:500;

  color:#E2E8F0;

}

/*==============================
Emergency Button
==============================*/

.topbar-btn{

  background:var(--accent);

  color:var(--dark);

  padding:8px 18px;

  border-radius:50px;

  font-weight:600;

  transition:.35s;

}

.topbar-btn:hover{

  background:#FFD54F;

  transform:translateY(-2px);

}

/*==============================
Responsive
==============================*/

@media(max-width:992px){

  .topbar{

      display:none;

  }

}
/*==================================================
HEADER
====================================================*/

.header{

  position:fixed;

  top:0;

  left:0;

  width:100%;

  z-index:1050;

  transition:all .4s ease;

  background:transparent;

}

/* Lorsque la page défile */

.header.scrolled{

  background:rgba(255,255,255,.97);

  backdrop-filter:blur(18px);

  -webkit-backdrop-filter:blur(18px);

  box-shadow:0 10px 35px rgba(0,0,0,.08);

}


/*==================================================
NAVBAR
====================================================*/

.navbar{

  min-height:90px;

  padding:0;

}

/*==============================
Logo
==============================*/

.navbar-brand{

  display:flex;

  align-items:center;

  gap:15px;

  padding:0;

}

.navbar-brand img{

  width:72px;

  height:72px;

  object-fit:contain;

  transition:.35s;

}

.header.scrolled .navbar-brand img{

  width:64px;

  height:64px;

}

/*==============================
Nom de l'école
==============================*/

.brand-text{

  display:flex;

  flex-direction:column;

}

.brand-text h4{

  margin:0;

  font-size:1.2rem;

  color:#fff;

  font-weight:700;

  transition:.35s;

}

.brand-text small{

  color:rgba(255,255,255,.85);

  font-size:.80rem;

  letter-spacing:1px;

}

.header.scrolled .brand-text h4{

  color:var(--primary);

}

.header.scrolled .brand-text small{

  color:var(--gray);

}

/*==============================
Navigation
==============================*/

.navbar-nav{

  align-items:center;

  gap:12px;

}

.navbar-nav .nav-item{
  color:var(--primary)!important;
  position:relative;

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

}
.navbar-toggler i{
  color:var(--primary)!important;

}
/*==============================
Liens
==============================*/

.navbar-nav .nav-link{

  position:relative;

  color:#fff;

  font-size:15px;

  font-weight:600;

  padding:35px 10px;

  transition:.35s;

}

.header.scrolled .nav-link{

  color:var(--dark);

}

.navbar-nav .nav-link:hover{

  color:var(--accent);

}

/* Trait animé */

.navbar-nav .nav-link::after{

  content:"";

  position:absolute;

  left:50%;

  bottom:24px;

  width:0;

  height:3px;

  background:var(--accent);

  border-radius:50px;

  transition:.35s;

  transform:translateX(-50%);

}

.navbar-nav .nav-link:hover::after,

.navbar-nav .nav-link.active::after{

  width:28px;

}

/*==============================
Dropdown
==============================*/

.dropdown-menu{

  border:none;

  border-radius:18px;

  box-shadow:var(--shadow-lg);

  padding:15px 0;

  margin-top:0;

  min-width:260px;

}

.dropdown-item{

  padding:12px 25px;

  font-weight:500;

  transition:.3s;

}

.dropdown-item:hover{

  background:rgba(0,74,173,.08);

  color:var(--primary);

  padding-left:35px;

}

/*==============================
Bouton Admission
==============================*/

.navbar-action{

  margin-left:25px;

}

.navbar-action .btn{

  padding:14px 28px;

  border-radius:50px;

  font-weight:600;

}

/*==============================
Navbar Toggler
==============================*/

.navbar-toggler{

  border:none;

  box-shadow:none;

}

.navbar-toggler:focus{

  box-shadow:none;

}

.navbar-toggler i{

  font-size:34px;

  color:#fff;

}

.header.scrolled .navbar-toggler i{

  color:var(--dark);

}

/*==================================================
MEGA MENU
====================================================*/

.mega-menu{

  width:900px;

  border:none;

  border-radius:20px;

  box-shadow:var(--shadow-xl);

  padding:35px;

}

.mega-title{

  font-size:18px;

  font-weight:700;

  color:var(--primary);

  margin-bottom:20px;

}

.mega-menu a{

  display:block;

  padding:8px 0;

  color:var(--gray);

}

.mega-menu a:hover{

  color:var(--primary);

}

/*==================================================
NAVBAR ANIMATION
====================================================*/

@keyframes navbarDown{

  from{

      transform:translateY(-100%);

  }

  to{

      transform:translateY(0);

  }

}

.header.scrolled{

  animation:navbarDown .45s ease;

}

/*==================================================
RESPONSIVE
====================================================*/

@media(max-width:991px){

  .navbar{

      min-height:80px;

  }

  .brand-text{

      display:none;

  }

  .navbar-collapse{

      margin-top:20px;

      background:#fff;

      border-radius:18px;

      padding:25px;

      box-shadow:var(--shadow-lg);

  }

  .navbar-nav{

      align-items:flex-start;

      gap:0;

  }

  .navbar-nav .nav-link{

      color:var(--dark);

      width:100%;

      padding:15px 0;

  }

  .navbar-nav .nav-link::after{

      display:none;

  }

  .navbar-action{

      margin:20px 0 0;

      width:100%;

  }

  .navbar-action .btn{

      width:100%;

  }

}
/*==================================================
HERO PREMIUM
====================================================*/

.hero{

  position:relative;

  min-height:100vh;

  display:flex;

  align-items:center;

  overflow:hidden;

  padding-top:var(--header-height);

  background:url("../img/hero.jpeg") center center/cover no-repeat;

}

/*==============================
Overlay
==============================*/

.hero::before{

  content:"";

  position:absolute;

  inset:0;

  background:linear-gradient(
      120deg,
      rgba(15,23,42,.92),
      rgba(0,74,173,.72)
  );

  z-index:1;

}

/*==============================
Overlay secondaire
==============================*/

.hero::after{

  content:"";

  position:absolute;

  inset:0;

  background:radial-gradient(
      circle at top right,
      rgba(244,180,0,.12),
      transparent 45%
  );

  z-index:2;

}

/*==============================
Container
==============================*/

.hero .container{

  position:relative;

  z-index:5;

}

/*==============================
Contenu
==============================*/

.hero-content{

  max-width:720px;

}

/*==============================
Badge
==============================*/

.hero-badge{

  display:inline-flex;

  align-items:center;

  gap:10px;

  padding:12px 24px;

  border-radius:50px;

  background:rgba(255,255,255,.12);

  backdrop-filter:blur(12px);

  color:#fff;

  font-size:.95rem;

  margin-bottom:25px;

  border:1px solid rgba(255,255,255,.15);

}

/*==============================
Titre
==============================*/

.hero-title{

  color:#fff;

  font-size:clamp(3rem,7vw,5.5rem);

  font-weight:800;

  line-height:1.1;

  margin-bottom:25px;

}

.hero-title span{

  color:var(--accent);

}

/*==============================
Description
==============================*/

.hero-description{

  color:rgba(255,255,255,.90);

  font-size:1.2rem;

  line-height:1.9;

  max-width:650px;

}

/*==============================
Boutons
==============================*/

.hero-buttons{

  display:flex;

  gap:20px;

  margin-top:45px;

  flex-wrap:wrap;

}

.hero-buttons .btn{

  min-width:220px;

  height:58px;

  display:flex;

  align-items:center;

  justify-content:center;

  font-weight:600;

  border-radius:60px;

}

.hero-buttons .btn-outline{

  border:2px solid rgba(255,255,255,.35);

  color:#fff;

  background:transparent;

}

.hero-buttons .btn-outline:hover{

  background:#fff;

  color:var(--primary);

}

/*==============================
Statistiques
==============================*/

.hero-stats{

  display:flex;

  gap:50px;

  margin-top:60px;

  flex-wrap:wrap;

}

.hero-stat{

  position:relative;

}

.hero-stat::after{

  content:"";

  position:absolute;

  right:-25px;

  top:8px;

  width:1px;

  height:55px;

  background:rgba(255,255,255,.20);

}

.hero-stat:last-child::after{

  display:none;

}

.hero-stat h2{

  color:#fff;

  font-size:2.5rem;

  margin-bottom:5px;

}

.hero-stat p{

  color:rgba(255,255,255,.75);

  margin:0;

}

/*==============================
Image Hero
==============================*/

.hero-image{

  position:relative;

  z-index:5;

}

.hero-image img{

  border-radius:25px;

  box-shadow:0 40px 80px rgba(0,0,0,.35);

}

/*==============================
Carte flottante
==============================*/

.hero-card{

  position:absolute;

  bottom:35px;

  left:-40px;

  background:#fff;

  padding:25px;

  border-radius:20px;

  box-shadow:var(--shadow-xl);

  display:flex;

  align-items:center;

  gap:18px;

  min-width:280px;

}

.hero-card-icon{

  width:60px;

  height:60px;

  border-radius:50%;

  background:rgba(0,74,173,.10);

  display:flex;

  justify-content:center;

  align-items:center;

  color:var(--primary);

  font-size:28px;

}

.hero-card h5{

  margin:0;

  color:var(--dark);

}

.hero-card p{

  margin:0;

  color:var(--gray);

  font-size:.90rem;

}

/*==============================
Scroll Indicator
==============================*/

.hero-scroll{

  position:absolute;

  bottom:40px;

  left:50%;

  transform:translateX(-50%);

  z-index:20;

}

.hero-scroll a{

  width:50px;

  height:50px;

  border-radius:50%;

  border:2px solid rgba(255,255,255,.35);

  display:flex;

  justify-content:center;

  align-items:center;

  color:#fff;

  animation:scrollBounce 2s infinite;

}

@keyframes scrollBounce{

  0%,100%{

      transform:translateY(0);

  }

  50%{

      transform:translateY(10px);

  }

}

/*==============================
Responsive
==============================*/

@media(max-width:992px){

  .hero{

      text-align:center;

      padding-top:140px;

  }

  .hero-content{

      margin:auto;

  }

  .hero-buttons{

      justify-content:center;

  }

  .hero-stats{

      justify-content:center;

  }

  .hero-image{

      margin-top:60px;

  }

  .hero-card{

      position:relative;

      left:auto;

      bottom:auto;

      margin:30px auto 0;

      max-width:320px;

  }

}

@media(max-width:768px){

  .hero{

      min-height:auto;

      padding:160px 0 100px;

  }

  .hero-title{

      font-size:2.8rem;

  }

  .hero-description{

      font-size:1rem;

  }

  .hero-buttons .btn{

      width:100%;

  }

  .hero-stats{

      gap:30px;

  }

}
/*==================================
BACK TO TOP
===================================*/

.back-top{

  position:fixed;

  bottom:105px;

  right:25px;

  width:55px;

  height:55px;

  background:var(--accent);

  color:#222;

  display:flex;

  justify-content:center;

  align-items:center;

  border-radius:50%;

  opacity:0;

  visibility:hidden;

  transition:.3s;

  z-index:999;

}

.back-top.active{

  opacity:1;

  visibility:visible;

}

/*==================================
WHATSAPP
===================================*/

.whatsapp{

  position:fixed;

  right:25px;

  bottom:25px;

  width:65px;

  height:65px;

  border-radius:50%;

  background:#25D366;

  color:#fff;

  display:flex;

  justify-content:center;

  align-items:center;

  font-size:30px;

  z-index:999;

  box-shadow:0 12px 25px rgba(0,0,0,.25);

  transition:.3s;

}

.whatsapp:hover{

  transform:scale(1.1);

  color:#fff;

}
@media(max-width:576px){
  
  .whatsapp{
  
    width:55px;
    height:55px;
    font-size:24px;
  
  }
  
  .back-top{
  
    width:45px;
    height:45px;
  
  }
  
  }
  /*=========================================================
NOS VALEURS
=========================================================*/

.values-section{

  position: relative;

  padding: 120px 0;

  background: #ffffff;

  overflow: hidden;

}

.values-section::before{

  content: "";

  position: absolute;

  top: -120px;

  right: -120px;

  width: 320px;

  height: 320px;

  background: rgba(0,74,173,.05);

  border-radius: 50%;

}

.values-section::after{

  content: "";

  position: absolute;

  bottom: -150px;

  left: -100px;

  width: 260px;

  height: 260px;

  background: rgba(255,193,7,.08);

  border-radius: 50%;

}

.values-section .container{

  position: relative;

  z-index: 2;

}
/*=========================================================
VALUE CARD
=========================================================*/

.value-card{

  position: relative;

  background: #ffffff;

  border-radius: 24px;

  padding: 45px 35px;

  text-align: center;

  overflow: hidden;

  transition: all .4s ease;

  border: 1px solid rgba(0,0,0,.05);

  box-shadow: 0 15px 40px rgba(0,0,0,.05);

  height: 100%;

}

.value-card:hover{

  transform: translateY(-12px);

  box-shadow: 0 30px 60px rgba(0,0,0,.12);

}
/*=========================================================
VALUE ICON
=========================================================*/

.value-card .icon{

  width: 90px;

  height: 90px;

  margin: auto;

  margin-bottom: 30px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: linear-gradient(135deg,#004AAD,#0066E0);

  color: #fff;

  font-size: 36px;

  transition: .4s;

  box-shadow: 0 15px 35px rgba(0,74,173,.25);

}

.value-card:hover .icon{

  transform: rotate(12deg) scale(1.1);

}
.value-card h3{

  font-size: 26px;

  font-weight: 700;

  color: var(--dark);

  margin-bottom: 18px;

}
.value-card p{

  color: #6b7280;

  line-height: 1.9;

  margin: 0;

}
.value-card::before{

  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 5px;

  background: linear-gradient(90deg,#004AAD,#FFC107);

  transform: scaleX(0);

  transform-origin: left;

  transition: .4s;

}

.value-card:hover::before{

  transform: scaleX(1);

}
.value-card::after{

  content: "";

  position: absolute;

  right: -60px;

  bottom: -60px;

  width: 140px;

  height: 140px;

  background: rgba(0,74,173,.05);

  border-radius: 50%;

  transition: .4s;

}

.value-card:hover::after{

  transform: scale(1.3);

}
/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

  .value-card{

      margin-bottom:30px;

  }

}

@media(max-width:768px){

  .values-section{

      padding:80px 0;

  }

  .value-card{

      padding:35px 25px;

  }

  .value-card .icon{

      width:70px;

      height:70px;

      font-size:28px;

  }

  .value-card h3{

      font-size:22px;

  }

}
/*=====================================================
NOS CHIFFRES
=====================================================*/

.counter-section{
  padding:90px 0;
  background:#f8f9fa;
}

.counter-box{

  background:#fff;
  padding:40px 20px;
  border-radius:15px;

  box-shadow:0 8px 25px rgba(0,0,0,.08);

  transition:.4s;

  opacity:0;
  transform:translateY(40px);

}

.counter-box.show{

  opacity:1;
  transform:translateY(0);

}

.counter-box:hover{

  transform:translateY(-10px);
  box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.counter-box i{

  font-size:55px;
  color:#0d6efd;

  margin-bottom:20px;

  transition:.4s;

}

.counter-box:hover i{

  transform:rotate(10deg) scale(1.15);

}

.counter-box h2{

  font-size:42px;
  font-weight:700;
  color:#212529;

  margin:15px 0;

}

.counter-box p{

  font-size:18px;
  color:#666;
  margin:0;

}
/*=====================================================
    NOS SECTIONS
=====================================================*/

#sections{
  background:#f8f9fa;
}

.section-padding{
  padding:90px 0;
}

/* Titre */

.section-subtitle{
  display:inline-block;
  padding:8px 18px;
  background:#0d6efd15;
  color:#0d6efd;
  font-size:14px;
  font-weight:600;
  border-radius:30px;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:15px;
}

.section-title{
  font-size:2.3rem;
  font-weight:700;
  color:#1b1b1b;
  margin-bottom:20px;
}

.section-description{
  max-width:700px;
  margin:auto;
  color:#666;
  line-height:1.8;
  font-size:17px;
}

/* Cartes */

.section-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  transition:.4s;
  height:100%;
  display:flex;
  flex-direction:column;
}

.section-card:hover{
  transform:translateY(-10px);
  box-shadow:0 18px 35px rgba(0,0,0,.15);
}

/* Image */

.section-image{
  position:relative;
  overflow:hidden;
}

.section-image img{
  width:100%;
  height:230px;
  object-fit:cover;
  transition:.5s;
}

.section-card:hover .section-image img{
  transform:scale(1.08);
}

/* Icône */

.section-icon{
  position:absolute;
  bottom:-28px;
  right:20px;
  width:60px;
  height:60px;
  border-radius:50%;
  background:#0d6efd;
  color:#fff;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:26px;
  border:5px solid #fff;
  box-shadow:0 5px 15px rgba(0,0,0,.2);
}

/* Contenu */

.section-content{
  padding:40px 25px 25px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.section-content h3{
  font-size:1.4rem;
  font-weight:700;
  margin-bottom:15px;
  color:#222;
}

.section-content p{
  color:#666;
  line-height:1.7;
  margin-bottom:20px;
}

/* Liste */

.section-content ul{
  list-style:none;
  padding:0;
  margin:0 0 25px;
}

.section-content ul li{
  position:relative;
  padding-left:28px;
  margin-bottom:10px;
  color:#444;
}

.section-content ul li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#0d6efd;
  font-weight:bold;
}

/* Bouton */

.section-content .btn{
  margin-top:auto;
  border-radius:30px;
  padding:10px 24px;
  font-weight:600;
  transition:.3s;
}

.section-content .btn:hover{
  transform:translateY(-2px);
}

/* Responsive */

@media(max-width:992px){

  .section-title{
      font-size:2rem;
  }

  .section-image img{
      height:210px;
  }

}

@media(max-width:768px){

  .section-padding{
      padding:70px 0;
  }

  .section-title{
      font-size:1.8rem;
  }

  .section-description{
      font-size:16px;
  }

  .section-image img{
      height:220px;
  }

}
/*=====================================================
OPTIONS DES HUMANITES
=====================================================*/

.options-section{
  padding:90px 0;
  background:#ffffff;
}

.option-box{
  background:#fff;
  padding:40px 30px;
  border-radius:18px;
  text-align:center;
  height:100%;
  border:1px solid #e9ecef;
  transition:.35s ease;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.option-box:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 35px rgba(0,0,0,.12);
  border-color:#0d6efd;
}

.option-box i{
  width:80px;
  height:80px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
  border-radius:50%;
  background:#0d6efd;
  color:#fff;
  font-size:34px;
  transition:.3s;
}

.option-box:hover i{
  transform:rotateY(180deg);
  background:#0b5ed7;
}

.option-box h4{
  font-size:1.35rem;
  font-weight:700;
  margin-bottom:15px;
  color:#212529;
}

.option-box p{
  color:#6c757d;
  line-height:1.8;
  margin:0;
}

/*=====================================================
POURQUOI CHOISIR KILMA
=====================================================*/

.why-kilma{
  background:#f8f9fa;
  padding:90px 0;
}

.why-kilma .lead{
  color:#666;
  line-height:1.9;
  margin-top:20px;
  margin-bottom:30px;
}

.why-card{
  background:#fff;
  border-radius:18px;
  padding:30px 25px;
  height:100%;
  transition:.35s;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
  border:1px solid transparent;
}

.why-card:hover{
  transform:translateY(-8px);
  border-color:#0d6efd;
  box-shadow:0 18px 35px rgba(0,0,0,.12);
}

.why-icon{
  width:70px;
  height:70px;
  border-radius:50%;
  background:#0d6efd;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  margin-bottom:20px;
  transition:.3s;
}

.why-card:hover .why-icon{
  transform:scale(1.1);
  background:#0b5ed7;
}

.why-card h4{
  font-size:1.2rem;
  font-weight:700;
  margin-bottom:12px;
  color:#212529;
}

.why-card p{
  margin:0;
  color:#6c757d;
  line-height:1.8;
}

/* Bouton */

.why-kilma .btn-primary{
  border-radius:40px;
  padding:12px 30px;
  font-weight:600;
  transition:.3s;
}

.why-kilma .btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 20px rgba(13,110,253,.35);
}

/*=====================================================
RESPONSIVE
=====================================================*/

@media (max-width:991px){

  .options-section,
  .why-kilma{
      padding:70px 0;
  }

  .option-box,
  .why-card{
      padding:30px 25px;
  }

}

@media (max-width:768px){

  .option-box i,
  .why-icon{
      width:65px;
      height:65px;
      font-size:28px;
  }

  .option-box h4,
  .why-card h4{
      font-size:1.15rem;
  }

  .why-kilma .lead{
      font-size:1rem;
  }

}
/*=====================================================
NOTRE CAMPUS
=====================================================*/

.campus{
  padding:90px 0;
  background:#fff;
}

.campus .lead{
  color:#555;
  line-height:1.9;
  margin:20px 0;
}

.campus p{
  color:#6c757d;
  line-height:1.8;
}

/* Encadré des points forts */

.campus-highlight{
  background:#ffffff;
  border-radius:20px;
  padding:35px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.highlight-item{
  display:flex;
  align-items:flex-start;
  gap:18px;
  padding:18px 0;
}

.highlight-item:not(:last-child){
  border-bottom:1px solid #e9ecef;
}

.highlight-item i{
  width:60px;
  height:60px;
  background:#0d6efd;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  flex-shrink:0;
  transition:.3s;
}

.highlight-item:hover i{
  transform:scale(1.1);
  background:#0b5ed7;
}

.highlight-item h5{
  margin-bottom:6px;
  font-weight:700;
  color:#212529;
}

.highlight-item p{
  margin:0;
  color:#6c757d;
}

/* Galerie */

.campus img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:20px;
  transition:.4s;
}

.campus img:hover{
  transform:scale(1.04);
  box-shadow:0 18px 35px rgba(0,0,0,.18);
}

/*=====================================================
NOS INFRASTRUCTURES
=====================================================*/

.facilities{
  padding:90px 0;
  background:#f8f9fa;
}

.facility-card{
  background:#fff;
  border-radius:18px;
  padding:35px 25px;
  text-align:center;
  height:100%;
  border:1px solid #e9ecef;
  transition:.35s;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.facility-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 35px rgba(0,0,0,.12);
  border-color:#0d6efd;
}

.facility-card i{
  width:80px;
  height:80px;
  margin:0 auto 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#0d6efd;
  color:#fff;
  font-size:34px;
  transition:.3s;
}

.facility-card:hover i{
  transform:rotate(12deg) scale(1.08);
  background:#0b5ed7;
}

.facility-card h4{
  font-size:1.25rem;
  font-weight:700;
  color:#212529;
  margin-bottom:15px;
}

.facility-card p{
  margin:0;
  color:#6c757d;
  line-height:1.8;
}

/*=====================================================
EFFETS SUR LES IMAGES
=====================================================*/

.campus .shadow,
.campus .shadow-lg{
  overflow:hidden;
  border-radius:20px;
}

.campus img{
  display:block;
}

/*=====================================================
RESPONSIVE
=====================================================*/

@media (max-width:991px){

  .campus,
  .facilities{
      padding:70px 0;
  }

  .campus-highlight{
      margin-top:40px;
  }

  .facility-card{
      padding:30px 20px;
  }

}

@media (max-width:768px){

  .highlight-item{
      gap:15px;
  }

  .highlight-item i{
      width:55px;
      height:55px;
      font-size:22px;
  }

  .facility-card i{
      width:65px;
      height:65px;
      font-size:28px;
  }

  .facility-card h4{
      font-size:1.1rem;
  }

}
/*=====================================================
VIE SCOLAIRE
=====================================================*/

.school-life{
  padding:90px 0;
  background:#ffffff;
}

/* Cartes */

.life-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  height:100%;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  transition:.4s ease;
}

.life-card:hover{
  transform:translateY(-10px);
  box-shadow:0 18px 40px rgba(0,0,0,.15);
}

/* Images */

.life-card img{
  width:100%;
  height:240px;
  object-fit:cover;
  transition:.5s;
}

.life-card:hover img{
  transform:scale(1.08);
}

/* Contenu */

.life-content{
  padding:30px 25px;
  text-align:center;
}

.life-content i{
  width:75px;
  height:75px;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:-65px auto 20px;
  border-radius:50%;
  background:#0d6efd;
  color:#fff;
  font-size:32px;
  border:6px solid #fff;
  box-shadow:0 8px 20px rgba(0,0,0,.15);
  transition:.3s;
}

.life-card:hover .life-content i{
  transform:rotateY(180deg);
  background:#0b5ed7;
}

.life-content h4{
  font-size:1.35rem;
  font-weight:700;
  margin-bottom:15px;
  color:#212529;
}

.life-content p{
  color:#6c757d;
  line-height:1.8;
  margin:0;
}

/*=====================================================
NOTRE METHODE
=====================================================*/

.method-section{
  padding:90px 0;
  background:linear-gradient(135deg,#0d6efd,#0b5ed7);
}

.method-section img{
  width:100%;
  border-radius:20px;
  transition:.4s;
}

.method-section img:hover{
  transform:scale(1.03);
}

.method-section .badge{
  padding:10px 18px;
  font-size:14px;
  letter-spacing:1px;
  border-radius:30px;
}

.method-section h2{
  font-size:2.3rem;
  font-weight:700;
  margin-bottom:20px;
}

.method-section p{
  font-size:1.05rem;
  line-height:1.8;
  opacity:.95;
}

/* Liste des qualités */

.method-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 18px;
  margin-bottom:15px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.15);
  border-radius:14px;
  backdrop-filter:blur(5px);
  transition:.3s;
  font-weight:500;
}

.method-item:hover{
  background:rgba(255,255,255,.2);
  transform:translateX(6px);
}

.method-item i{
  color:#ffc107;
  font-size:22px;
}

/* Bouton */

.method-section .btn-warning{
  padding:12px 30px;
  border-radius:40px;
  font-weight:600;
  transition:.3s;
}

.method-section .btn-warning:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 25px rgba(255,193,7,.35);
}

/*=====================================================
RESPONSIVE
=====================================================*/

@media (max-width:991px){

  .school-life,
  .method-section{
      padding:70px 0;
  }

  .method-section img{
      margin-bottom:40px;
  }

}

@media (max-width:768px){

  .life-card img{
      height:220px;
  }

  .life-content{
      padding:25px 20px;
  }

  .life-content i{
      width:65px;
      height:65px;
      font-size:28px;
      margin-top:-55px;
  }

  .method-section h2{
      font-size:1.9rem;
  }

  .method-item{
      font-size:.95rem;
  }

}
/*=====================================================
ADMISSION
=====================================================*/

.admission{
  padding:90px 0;
  background:#f8f9fa;
}

/* Timeline */

.admission-timeline{
  position:relative;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  margin-top:60px;
}

/* Ligne */

.admission-timeline::before{
  content:"";
  position:absolute;
  top:42px;
  left:8%;
  right:8%;
  height:4px;
  background:#dbe5f1;
  z-index:0;
  border-radius:5px;
}

/* Etapes */

.timeline-step{
  position:relative;
  flex:1;
  text-align:center;
  z-index:2;
}

.timeline-icon{
  width:85px;
  height:85px;
  margin:0 auto 20px;
  border-radius:50%;
  background:#0d6efd;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  border:6px solid #fff;
  box-shadow:0 10px 25px rgba(13,110,253,.25);
  transition:.35s;
}

.timeline-step:hover .timeline-icon{
  transform:translateY(-8px) scale(1.08);
  background:#0b5ed7;
}

.timeline-step h5{
  font-size:1.2rem;
  font-weight:700;
  color:#212529;
  margin-bottom:12px;
}

.timeline-step p{
  color:#6c757d;
  line-height:1.7;
  margin:0;
  font-size:.95rem;
}

/*=====================================================
RESPONSIVE
=====================================================*/

@media (max-width:991px){

  .admission{
      padding:70px 0;
  }

  .admission-timeline{
      flex-direction:column;
      align-items:flex-start;
      gap:35px;
      margin-top:40px;
      padding-left:30px;
  }

  .admission-timeline::before{
      top:0;
      bottom:0;
      left:42px;
      right:auto;
      width:4px;
      height:100%;
  }

  .timeline-step{
      display:flex;
      align-items:flex-start;
      text-align:left;
      width:100%;
  }

  .timeline-icon{
      width:70px;
      height:70px;
      font-size:28px;
      margin:0 20px 0 0;
      flex-shrink:0;
  }

}

@media (max-width:576px){

  .timeline-icon{
      width:60px;
      height:60px;
      font-size:24px;
  }

  .timeline-step h5{
      font-size:1.05rem;
  }

  .timeline-step p{
      font-size:.9rem;
  }

}
/*=====================================================
POUR LES PARENTS
=====================================================*/

.parents-section{
  padding:90px 0;
  background:#ffffff;
}

.parent-card{
  background:#fff;
  border-radius:20px;
  padding:40px 35px;
  height:100%;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  transition:.35s ease;
  position:relative;
  overflow:hidden;
}

.parent-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/* Carte bleue */

.parent-card.bg-primary{
  background:linear-gradient(135deg,#0d6efd,#0b5ed7)!important;
  color:#fff;
}

.parent-card.bg-primary p,
.parent-card.bg-primary li{
  color:rgba(255,255,255,.9);
}

/* Icône */

.parent-card i{
  width:80px;
  height:80px;
  margin-bottom:25px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#0d6efd;
  color:#fff;
  font-size:34px;
  transition:.3s;
}

.parent-card.bg-primary i{
  background:#fff;
  color:#0d6efd;
}

.parent-card:hover i{
  transform:rotate(10deg) scale(1.08);
}

/* Titres */

.parent-card h3{
  font-size:1.8rem;
  font-weight:700;
  margin-bottom:20px;
}

/* Texte */

.parent-card p{
  color:#6c757d;
  line-height:1.8;
  margin-bottom:25px;
}

/* Liste */

.parent-card ul{
  list-style:none;
  margin:0;
  padding:0;
}

.parent-card ul li{
  position:relative;
  padding-left:28px;
  margin-bottom:14px;
  color:#495057;
}

.parent-card ul li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0;
  color:#0d6efd;
  font-weight:bold;
}

.parent-card.bg-primary ul li::before{
  color:#ffc107;
}

/* Bouton */

.parent-card .btn{
  margin-top:15px;
  border-radius:40px;
  padding:12px 28px;
  font-weight:600;
  transition:.3s;
}

.parent-card .btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 20px rgba(0,0,0,.2);
}

/* Effet décoratif */

.parent-card::after{
  content:"";
  position:absolute;
  top:-60px;
  right:-60px;
  width:160px;
  height:160px;
  background:rgba(13,110,253,.05);
  border-radius:50%;
}

.parent-card.bg-primary::after{
  background:rgba(255,255,255,.08);
}

/*=====================================================
RESPONSIVE
=====================================================*/

@media (max-width:991px){

  .parents-section{
      padding:70px 0;
  }

  .parent-card{
      margin-bottom:30px;
  }

}

@media (max-width:768px){

  .parent-card{
      padding:30px 25px;
  }

  .parent-card h3{
      font-size:1.5rem;
  }

  .parent-card i{
      width:70px;
      height:70px;
      font-size:30px;
  }

}
/*=====================================================
ACTUALITÉS
=====================================================*/

.news-section{
  padding:90px 0;
  background:#f8f9fa;
}

/* Grande actualité */

.featured-news{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  transition:.35s;
  height:100%;
}

.featured-news:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.featured-news img{
  width:100%;
  height:360px;
  object-fit:cover;
  transition:.4s;
}

.featured-news:hover img{
  transform:scale(1.05);
}

.featured-news-content{
  padding:30px;
}

.featured-news .badge{
  padding:8px 16px;
  border-radius:30px;
  font-weight:500;
  margin-bottom:18px;
}

.featured-news h3{
  font-size:1.8rem;
  font-weight:700;
  margin-bottom:18px;
  color:#212529;
}

.featured-news p{
  color:#6c757d;
  line-height:1.8;
  margin-bottom:25px;
}

/*=====================================================
PETITES ACTUALITÉS
=====================================================*/

.mini-news{
  display:flex;
  align-items:center;
  gap:18px;
  background:#fff;
  border-radius:18px;
  padding:15px;
  margin-bottom:20px;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
  transition:.3s;
}

.mini-news:hover{
  transform:translateX(8px);
  box-shadow:0 14px 30px rgba(0,0,0,.12);
}

.mini-news img{
  width:110px;
  height:90px;
  object-fit:cover;
  border-radius:12px;
  flex-shrink:0;
}

.mini-news small{
  display:block;
  color:#0d6efd;
  font-weight:600;
  margin-bottom:6px;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.mini-news h5{
  margin:0;
  font-size:1rem;
  font-weight:700;
  color:#212529;
  line-height:1.5;
}

/*=====================================================
AGENDA
=====================================================*/

.agenda-section{
  padding:90px 0;
  background:#fff;
}

.agenda{
  margin-top:35px;
}

.agenda-item{
  display:flex;
  align-items:center;
  gap:20px;
  padding:20px;
  background:#fff;
  border-radius:16px;
  margin-bottom:18px;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
  transition:.3s;
}

.agenda-item:hover{
  transform:translateX(8px);
  box-shadow:0 15px 30px rgba(0,0,0,.12);
}

.agenda-date{
  width:80px;
  height:80px;
  background:#0d6efd;
  color:#fff;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  font-size:1.6rem;
  font-weight:700;
  line-height:1.2;
  flex-shrink:0;
}

.agenda-date span{
  font-size:.8rem;
  font-weight:500;
}

.agenda-item h5{
  margin-bottom:8px;
  font-weight:700;
  color:#212529;
}

.agenda-item p{
  margin:0;
  color:#6c757d;
}

/*=====================================================
TÉLÉCHARGEMENTS
=====================================================*/

.download-box{
  background:linear-gradient(135deg,#0d6efd,#0b5ed7);
  color:#fff;
  padding:40px 35px;
  border-radius:20px;
  box-shadow:0 15px 35px rgba(13,110,253,.25);
}

.download-box i{
  width:80px;
  height:80px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,.18);
  font-size:34px;
  margin-bottom:25px;
}

.download-box h3{
  font-weight:700;
  margin-bottom:25px;
}

.download-box a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  text-decoration:none;
  color:#fff;
  padding:14px 18px;
  margin-bottom:12px;
  border-radius:12px;
  background:rgba(255,255,255,.12);
  transition:.3s;
}

.download-box a::after{
  content:"→";
  font-size:18px;
}

.download-box a:hover{
  background:rgba(255,255,255,.25);
  padding-left:24px;
}

/*=====================================================
RESPONSIVE
=====================================================*/

@media (max-width:991px){

  .news-section,
  .agenda-section{
      padding:70px 0;
  }

  .featured-news{
      margin-bottom:35px;
  }

  .download-box{
      margin-top:40px;
  }

}

@media (max-width:768px){

  .featured-news img{
      height:250px;
  }

  .featured-news h3{
      font-size:1.45rem;
  }

  .mini-news{
      gap:15px;
  }

  .mini-news img{
      width:90px;
      height:80px;
  }

  .agenda-item{
      align-items:flex-start;
  }

  .agenda-date{
      width:65px;
      height:65px;
      font-size:1.2rem;
  }

  .download-box{
      padding:30px 25px;
  }

  .download-box i{
      width:65px;
      height:65px;
      font-size:28px;
  }

}
/*=====================================================
NOTRE ÉQUIPE
=====================================================*/

.team-section{
  padding:90px 0;
  background:#ffffff;
}

.team-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  height:100%;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  transition:.35s ease;
}

.team-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.team-card img{
  width:100%;
  height:280px;
  object-fit:cover;
  transition:.4s;
}

.team-card:hover img{
  transform:scale(1.08);
}

.team-content{
  padding:25px;
  text-align:center;
}

.team-content h4{
  font-size:1.35rem;
  font-weight:700;
  color:#212529;
  margin-bottom:15px;
}

.team-content p{
  margin:0;
  color:#6c757d;
  line-height:1.8;
}

/*=====================================================
MESSAGE DE LA DIRECTION
=====================================================*/

.director-message{
  padding:90px 0;
  background:linear-gradient(135deg,#0d6efd,#0b5ed7);
  overflow:hidden;
  position:relative;
}

/* Décoration */

.director-message::before{
  content:"";
  position:absolute;
  width:320px;
  height:320px;
  background:rgba(255,255,255,.08);
  border-radius:50%;
  top:-120px;
  right:-120px;
}

.director-message::after{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  background:rgba(255,255,255,.05);
  border-radius:50%;
  bottom:-90px;
  left:-90px;
}

/* Image */

.director-message img{
  width:300px;
  height:300px;
  object-fit:cover;
  border-radius:50%;
  border:8px solid rgba(255,255,255,.15);
  transition:.4s;
}

.director-message img:hover{
  transform:scale(1.05);
}

/* Badge */

.director-message .badge{
  padding:10px 18px;
  border-radius:30px;
  font-size:.85rem;
  letter-spacing:1px;
}

/* Titres */

.director-message h2{
  font-size:2.4rem;
  font-weight:700;
  margin:20px 0;
}

.director-message h5{
  font-weight:700;
  color:#ffc107;
  margin-top:30px;
}

/* Texte */

.director-message p{
  line-height:1.9;
  font-size:1.05rem;
  color:rgba(255,255,255,.92);
}

/*=====================================================
RESPONSIVE
=====================================================*/

@media (max-width:991px){

  .team-section,
  .director-message{
      padding:70px 0;
  }

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

  .director-message img{
      margin-bottom:35px;
      width:240px;
      height:240px;
  }

}

@media (max-width:768px){

  .team-card img{
      height:240px;
  }

  .team-content{
      padding:20px;
  }

  .team-content h4{
      font-size:1.2rem;
  }

  .director-message h2{
      font-size:1.9rem;
  }

  .director-message p{
      font-size:1rem;
  }

  .director-message img{
      width:200px;
      height:200px;
  }

}
/*=====================================================
TEMOIGNAGES
=====================================================*/

.testimonial-section{
  padding:90px 0;
  background:#ffffff;
}

.testimonialSwiper{
  padding:20px 10px 50px;
}

.testimonial-card{
  background:#fff;
  border-radius:20px;
  padding:40px 30px;
  text-align:center;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  transition:.35s ease;
  position:relative;
  height:100%;
}

.testimonial-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/* Guillemets décoratifs */

.testimonial-card::before{
  content:"❝";
  position:absolute;
  top:15px;
  left:25px;
  font-size:60px;
  color:rgba(13,110,253,.12);
  font-family:serif;
}

/* Photo */

.testimonial-card img{
  width:95px;
  height:95px;
  object-fit:cover;
  border-radius:50%;
  border:5px solid #0d6efd;
  margin-bottom:25px;
}

/* Texte */

.testimonial-card p{
  color:#6c757d;
  line-height:1.9;
  font-style:italic;
  margin-bottom:20px;
}

.testimonial-card h5{
  margin:0;
  color:#212529;
  font-weight:700;
}

/*=====================================================
GALERIE
=====================================================*/

.gallery-premium{
  padding:90px 0;
  background:#f8f9fa;
}

.gallery-img{
  width:100%;
  height:280px;
  object-fit:cover;
  border-radius:18px;
  display:block;
  cursor:pointer;
  transition:.4s ease;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.gallery-img:hover{
  transform:scale(1.05);
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

/* Grandes images */

.gallery-premium .col-lg-6 .gallery-img{
  height:580px;
}

/* Bouton */

.gallery-premium .btn{
  padding:12px 32px;
  border-radius:40px;
  font-weight:600;
  transition:.3s;
}

.gallery-premium .btn:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 25px rgba(13,110,253,.35);
}

/*=====================================================
RESPONSIVE
=====================================================*/

@media (max-width:991px){

  .testimonial-section,
  .gallery-premium{
      padding:70px 0;
  }

  .gallery-premium .col-lg-6 .gallery-img{
      height:350px;
  }

  .gallery-img{
      height:250px;
  }

}

@media (max-width:768px){

  .testimonial-card{
      padding:30px 25px;
  }

  .testimonial-card img{
      width:80px;
      height:80px;
  }

  .testimonial-card::before{
      font-size:45px;
  }

  .gallery-premium .col-lg-6 .gallery-img,
  .gallery-img{
      height:240px;
  }

}
/*=====================================================
CONTACT
=====================================================*/

.contact-home{
  padding:90px 0;
  background:#ffffff;
}

.contact-home h2{
  font-size:2.4rem;
  font-weight:700;
  color:#212529;
  margin-bottom:30px;
}

/* Informations */

.contact-home p{
  display:flex;
  align-items:flex-start;
  gap:15px;
  margin-bottom:20px;
  padding:18px 20px;
  background:#f8f9fa;
  border-left:4px solid #0d6efd;
  border-radius:12px;
  color:#495057;
  line-height:1.8;
  transition:.3s;
}

.contact-home p:hover{
  background:#eef5ff;
  transform:translateX(6px);
}

/* Formulaire */

.contact-home form{
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.contact-home .form-control{
  border:1px solid #dee2e6;
  border-radius:12px;
  padding:14px 18px;
  font-size:1rem;
  transition:.3s;
  box-shadow:none;
}

.contact-home .form-control:focus{
  border-color:#0d6efd;
  box-shadow:0 0 0 .2rem rgba(13,110,253,.15);
}

.contact-home textarea{
  resize:none;
}

/* Bouton */

.contact-home .btn-primary{
  padding:13px 35px;
  border-radius:40px;
  font-weight:600;
  transition:.3s;
}

.contact-home .btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 25px rgba(13,110,253,.35);
}

/*=====================================================
RESPONSIVE
=====================================================*/

@media (max-width:991px){

  .contact-home{
      padding:70px 0;
  }

  .contact-home form{
      margin-top:40px;
  }

}

@media (max-width:768px){

  .contact-home h2{
      font-size:2rem;
  }

  .contact-home form{
      padding:30px 25px;
  }

  .contact-home p{
      padding:15px;
      font-size:.95rem;
  }

}
/*=====================================================
FOOTER
=====================================================*/

footer{
  background:#0b1f3a;
  color:#ffffff;
  padding:70px 0 25px;
  position:relative;
}

/* Ligne décorative */

footer::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:linear-gradient(90deg,#0d6efd,#ffc107);
}

/* Titres */

footer h3{
  font-size:1.8rem;
  font-weight:800;
  margin-bottom:18px;
  color:#fff;
}

footer h4{
  font-size:1.2rem;
  font-weight:700;
  margin-bottom:25px;
  color:#ffc107;
}

/* Texte */

footer p{
  color:rgba(255,255,255,.75);
  line-height:1.8;
  max-width:300px;
}

/* Liens */

footer ul{
  padding:0;
  margin:0;
}

footer ul li{
  margin-bottom:12px;
}

footer ul li a{
  text-decoration:none;
  color:rgba(255,255,255,.75);
  transition:.3s;
  position:relative;
}

footer ul li a:hover{
  color:#fff;
  padding-left:8px;
}

/* Réseaux sociaux */

.social-links{
  display:flex;
  gap:15px;
}

.social-links a{
  width:45px;
  height:45px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:22px;
  text-decoration:none;
  transition:.35s;
}

.social-links a:hover{
  background:#0d6efd;
  transform:translateY(-5px);
}

/* Séparateur */

footer hr{
  margin:45px 0 25px;
  border-color:rgba(255,255,255,.2);
}

/* Copyright */

footer .text-center{
  color:rgba(255,255,255,.7);
  font-size:.95rem;
}

footer strong{
  color:#ffc107;
  font-weight:700;
}

/*=====================================================
RESPONSIVE
=====================================================*/

@media(max-width:991px){

  footer{
      padding:60px 0 25px;
  }

  footer .col-lg-4{
      margin-bottom:35px;
  }

}

@media(max-width:768px){

  footer{
      text-align:center;
  }

  footer p{
      margin:auto;
  }

  .social-links{
      justify-content:center;
  }

  footer h3{
      font-size:1.6rem;
  }

}
/*=====================================================
ALERTE SITE EN CONCEPTION
=====================================================*/

.construction-alert{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    min-height:55px;
    background:linear-gradient(90deg,#ffc107,#ff9800);
    color:#212529;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:12px 60px 12px 20px;
    font-weight:600;
    font-size:15px;
    z-index:99999;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
    text-align:center;
}

.construction-alert > i{
    font-size:24px;
    color:#212529;
}

.close-alert{
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    width:35px;
    height:35px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.15);
    color:#212529;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.3s;
}

.close-alert:hover{
    background:rgba(0,0,0,.3);
    color:#fff;
}


/* Décaler le contenu pour éviter le chevauchement */

body{
    padding-top:55px;
}


/* Responsive */

@media(max-width:768px){

    .construction-alert{
        font-size:13px;
        padding:10px 45px 10px 15px;
    }

    .construction-alert > i{
        font-size:20px;
    }

    body{
        padding-top:70px;
    }

}