@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

body {
	background: #081b29;
	color: #ededed;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 20px 10%;
	background: transparent;
	display: flex;  
	justify-content: space-between;
	align-items: center;
	z-index: 100;
}


.logo {
	font-size: 25px;
	color: #ededed;
	text-decoration: none;
	font-weight: 600;
}

.navbar a {
	font-size: 18px;
	color: #ededed;
	text-decoration: none;
	font-weight: 500;
	margin-left: 35px;
	transition: .3s;
} 

.navbar a:hover,
.navbar a.active {
	color: #00abf0;
}

.home {
	height: 100vh;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	padding: 0 10%;
}

.home-content {
	max-width: 800px;
}

.home-content h1 {
	font-size: 56px;
	font-weight: 700;
	line-height: 1,2;
}

.home-content h3 {
	font-size: 32px;
	font-weight: 700;
	color: #00abf0;
}

.home-content p {
	font-size: 16px;
	margin: 20px 0 40px;
}

.home-content .btn-box {
	display: flex;
	justify-content: space-between;
	width: 345px;
	height: 50px;
	
}

.btn-box a {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items : center;
	width: 160px;
	height: 100%;
	background: #00abf0;
	border: 2px solid #00abf0;
	border-radius: 8px;
	font-size: 19px;
	color: #081b29;
	text-decoration: none;
	font-weight: 600;
	letter-spacing: 1px;
	z-index: 1;
	overflow: hidden;
	transition: .5s;
}

.btn-box a:hover {
	color: #00abf0;
}

.btn-box a:nth-child(2) {
	background: transparent;
	color: #00abf0;
}

.btn-box a:nth-child(2):hover {
	color: #081b29;
}

.btn-box a:nth-child(2)::before {
	background: #00abf0;
}

.btn-box a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #081b29;
	z-index: -1;
	transition: .5s;
}

.btn-box a:hover::before {
	width: 100%;
}

.home-sci {
	position: absolute;
	bottom: 40px;
	width: 220px;
	background: transparent;
	display: flex;
	justify-content: space-between;
}

.home-sci a {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background: transparent;
	border: 2px solid #00abf0;
	border-radius: 50%;
	font-size: 20px;
	color: #00abf0;
	text-decoration: none;
	z-index: 1;
	overflow: hidden;
	transition: .5s;
}

.home-sci a:hover {
	color: #081b29;
}

.home-sci a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #00abf0;
	z-index: -1;
	transition: .5s;
}

.home-sci a:hover::before {
	width: 100%;
}

.contact-section {
    min-height: 100vh;
    padding: 100px 10% 40px 10%; /* évite d'être caché sous le header */
    background: #081b29;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.contact-content {
    background: rgba(8,27,41,0.98);
    border-radius: 16px;
    padding: 40px 32px 32px 32px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.22);
    max-width: 480px;
    width: 100%;
    margin: auto;
}

.contact-content h1 {
    font-size: 40px;
    color: #00abf0;
    margin-bottom: 10px;
}

.contact-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-content p {
    color: #ededed;
    font-size: 16px;
    margin-bottom: 20px;
}

.contact-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-content input,
.contact-content textarea {
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.contact-content button {
    background: #00abf0;
    color: #081b29;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    padding: 12px;
    cursor: pointer;
    transition: .3s;
    margin-top: 5px;
}

.contact-content button:hover {
    background: #ededed;
    color: #00abf0;
}

.contact-links {
    display: flex;
    gap: 15px;
    margin: 22px 0 18px 0;
}

.contact-links a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 2px solid #00abf0;
    border-radius: 50%;
    font-size: 21px;
    color: #00abf0;
    text-decoration: none;
    overflow: hidden;
    transition: .5s;
}

.contact-links a:hover {
    background: #00abf0;
    color: #081b29;
}

.contact-details p {
    color: #ededed;
    font-size: 16px;
    margin-bottom: 6px;
}

.contact-details a {
    color: #00abf0;
    text-decoration: none;
}

.about-section {
    min-height: 100vh;
    padding: 100px 10% 40px 10%;
    background: #081b29;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.about-content {
    background: rgba(8,27,41,0.97);
    border-radius: 16px;
    padding: 40px 32px 32px 32px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.22);
    max-width: 600px;
    width: 100%;
    margin: auto;
}

.about-content h1 {
    font-size: 38px;
    color: #00abf0;
    margin-bottom: 10px;
}

.about-content h3 {
    font-size: 23px;
    font-weight: 600;
    color: #ededed;
    margin-bottom: 20px;
}

.about-content p {
    color: #ededed;
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

.about-list li {
    color: #ededed;
    font-size: 16px;
    margin-bottom: 7px;
}

.about-links {
    display: flex;
    gap: 15px;
    margin-top: 18px;
}

.about-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border: 2px solid #00abf0;
    border-radius: 50%;
    font-size: 21px;
    color: #00abf0;
    text-decoration: none;
    transition: .4s;
}

.about-links a:hover {
    background: #00abf0;
    color: #081b29;
}

.services-section {
    min-height: 100vh;
    padding: 100px 10% 40px 10%;
    background: #081b29;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.services-content {
    background: rgba(8,27,41,0.97);
    border-radius: 16px;
    padding: 40px 32px 32px 32px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.22);
    max-width: 900px;
    width: 100%;
    margin: auto;
}

.services-content h1 {
    font-size: 38px;
    color: #00abf0;
    margin-bottom: 10px;
}

.services-content h3 {
    font-size: 23px;
    font-weight: 600;
    color: #ededed;
    margin-bottom: 20px;
}

.services-content p {
    color: #ededed;
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.service-card {
    background: #0d2843;
    border-radius: 14px;
    padding: 32px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    text-align: center;
    transition: transform 0.18s, box-shadow 0.18s;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 6px 24px rgba(0,171,240,0.16);
}

.service-card i {
    font-size: 38px;
    color: #00abf0;
    margin-bottom: 18px;
}

.service-card h4 {
    color: #ededed;
    font-size: 21px;
    margin-bottom: 13px;
}

.service-card p {
    font-size: 15px;
    color: #b8d9ec;
    margin-bottom: 0;
}

/***************** HERO *****************/
.hero-portfolio {
    min-height: 100vh;
    /* On place l'image en fond */
    background: 
	url('image/aceuille.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 15px;
    /* Optionnel: animation douce du background au survol par exemple */
    transition: background 0.5s;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.2rem;
    letter-spacing: 2px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 32px #031b2a7c;
}

.hero-content .subtitle {
    margin-top: 24px;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    color: #ff438b;
    font-weight: 700;
    text-shadow: 0 2px 22px #ff438b52;
    background: rgba(28,23,40,0.4);
    border-radius: 8px;
    display: inline-block;
    padding: 9px 30px;
}


/************ ABOUT FAST *************/
.about-fast {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1080px;
    margin: 0 auto;
    background: none;
    padding: 70px 0 0 0;
    gap: 50px;
}
.about-text {
    flex: 1.5;
}
.about-text h2 {
    font-size: 2.1rem;
    color: #ff438b;
    margin-bottom: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}
.about-text p {
    font-size: 1.13rem;
    color: #ededed;
    line-height: 1.7;
    margin-bottom: 0;
}
.about-text .cta {
    margin-top: 24px;
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #ff438b;
    color: #ff438b;
    font-weight: 700;
    border-radius: 10px;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: 0.25s;
    box-shadow: 0 4px 20px #ff438b21;
    text-decoration: none;
}
.about-text .cta:hover {
    background: #ff438b;
    color: #fff;
    box-shadow: 0 2px 24px #ff438b6c;
}
.about-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-img img {
    width: 185px;
    height: 185px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #222d4a;
    background: #191c23;
    box-shadow: 0 2px 32px #031b2a4a;
}

/************ SECTIONS GÉNÉRALES *************/
section:not(.hero-portfolio):not(.about-fast) {
    max-width: 1120px;
    margin: 0 auto;
    background: none;
    padding: 60px 0 10px 0;
}
section > h2 {
    font-size: 2rem;
    color: #ff438b;
    font-weight: 800;
    margin-bottom: 28px;
    position: relative;
    letter-spacing: 1.2px;
}
section > h2 span {
    font-size: 1.35em;
    vertical-align: middle;
    margin-left: 7px;
}

/************ BTS SIO *************/
.section-bts .bts-cols {
    display: flex;
    gap: 36px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.bts-card {
    background: #131a2a;
    flex: 1 1 340px;
    border-radius: 18px;
    padding: 32px 22px;
    box-shadow: 0 2px 12px #18204026;
    color: #ededed;
    transition: transform .22s;
    min-width: 250px;
}
.bts-card h3 {
    font-size: 1.2rem;
    margin-bottom: 14px;
    color: #00abf0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 9px;
}
.slam-active {
    background: linear-gradient(120deg, #ff438b18, #1b233d 88%);
    border: 2px solid #ff438b60;
    color: #fff;
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 4px 26px #ff438b1c;
}
.bts-card span {
    color: #ff438b;
    font-weight: 600;
    font-size: 1em;
}

/************ CERTIF *************/
.section-certif .certif-cards {
    display: flex;
    gap: 38px;
    flex-wrap: wrap;
    margin-top: 22px;
}
.certif-card {
    background: #191f31;
    border-radius: 15px;
    box-shadow: 0 2px 10px #24304a23;
    padding: 18px 16px 10px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
}
.certif-card img {
    max-width: 180px;
    max-height: 120px;
    border-radius: 8px;
    margin-bottom: 14px;
    box-shadow: 0 2px 18px #002f3e2a;
}
.certif-card span {
    font-weight: 600;
    color: #ff438b;
    letter-spacing: .8px;
}

/************ SKILLS *************/
.section-comp .skills-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 22px;
}
.skill-card {
    background: #191f31;
    border-radius: 15px;
    box-shadow: 0 2px 10px #24304a23;
    padding: 22px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    transition: transform .2s, box-shadow .2s;
}
.skill-card:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 6px 32px #00abf040;
}
.skill-card img {
    width: 45px;
    height: 45px;
    margin-bottom: 12px;
}
.skill-card span {
    color: #ededed;
    font-weight: 600;
    font-size: 1.09em;
    letter-spacing: 1px;
}

/************ OUTILS *************/
.section-tools .tools-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 18px;
}
.tool-card {
    background: #191f31;
    border-radius: 15px;
    box-shadow: 0 2px 10px #24304a23;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 110px;
    transition: transform .18s, box-shadow .18s;
}
.tool-card:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 8px 32px #00abf040;
}
.tool-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}
.tool-card span {
    color: #ededed;
    font-weight: 500;
    font-size: 1.02em;
    letter-spacing: .6px;
}

/************ PARCOURS PRO *************/
.section-xp .xp-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 22px;
}
.xp-card {
    background: #191f31;
    border-radius: 16px;
    box-shadow: 0 2px 15px #14253b25;
    padding: 32px 22px;
    min-width: 270px;
    flex: 1 1 330px;
    transition: box-shadow .18s, transform .18s;
}
.xp-card:hover {
    box-shadow: 0 6px 32px #ff438b31;
    transform: scale(1.03) translateY(-3px);
}
.xp-card h3 {
    color: #00abf0;
    font-size: 1.18em;
    margin-bottom: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 9px;
}
.xp-card input[type="text"] {
    background: #101829;
    border: none;
    border-bottom: 2px solid #2e3e5c;
    color: #ededed;
    padding: 6px 9px;
    border-radius: 5px;
    font-size: 15px;
    outline: none;
    margin-bottom: 5px;
    margin-right: 2px;
}
.xp-card .cta {
    margin-top: 16px;
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #00abf0;
    color: #00abf0;
    border-radius: 10px;
    font-size: .99rem;
    font-weight: 700;
    transition: 0.22s;
    text-decoration: none;
}
.xp-card .cta:hover {
    background: #00abf0;
    color: #fff;
}

/************ EDUC *************/
.section-edu .edu-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 22px;
}
.edu-card {
    background: #191f31;
    border-radius: 15px;
    box-shadow: 0 2px 10px #24304a23;
    padding: 28px 18px;
    min-width: 270px;
    flex: 1 1 330px;
    margin-bottom: 20px;
}
.edu-card h3 {
    font-size: 1.1em;
    font-weight: 700;
    color: #ff438b;
    margin-bottom: 12px;
}
.edu-card input[type="text"] {
    background: #101829;
    border: none;
    border-bottom: 2px solid #2e3e5c;
    color: #ededed;
    padding: 6px 9px;
    border-radius: 5px;
    font-size: 15px;
    outline: none;
    margin-bottom: 5px;
    margin-right: 2px;
}

/************ PROJETS *************/
.section-proj .proj-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.proj-card {
    background: #191f31;
    border-radius: 17px;
    box-shadow: 0 2px 15px #24304a23;
    padding: 18px 16px 18px 16px;
    min-width: 240px;
    flex: 1 1 320px;
    text-align: center;
    transition: box-shadow .18s, transform .18s;
}
.proj-card:hover {
    box-shadow: 0 8px 34px #ff438b33;
    transform: scale(1.05) translateY(-6px);
}
.proj-card img {
    width: 100%;
    max-width: 220px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 14px;
    box-shadow: 0 2px 14px #ff438b2e;
}
.proj-card h3 {
    font-size: 1.08em;
    font-weight: 700;
    color: #00abf0;
    margin-bottom: 8px;
}
.proj-card p {
    font-size: 0.96em;
    color: #ededed;
}
.proj-card .cta {
    margin-top: 11px;
    display: inline-block;
    padding: 8px 18px;
    background: transparent;
    border: 2px solid #ff438b;
    color: #ff438b;
    border-radius: 9px;
    font-size: .97rem;
    font-weight: 700;
    transition: 0.22s;
    text-decoration: none;
}
.proj-card .cta:hover {
    background: #ff438b;
    color: #fff;
}

/************ VEILLE *************/
.section-veille input[type="text"] {
    background: #101829;
    border: none;
    border-bottom: 2px solid #2e3e5c;
    color: #ededed;
    padding: 6px 9px;
    border-radius: 5px;
    font-size: 15px;
    outline: none;
    margin-bottom: 5px;
    margin-right: 2px;
}

/************ BOUTON SCROLL TOP *************/
.scroll-top {
    position: fixed;
    right: 32px;
    bottom: 42px;
    display: none;
    background: #ff438b;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    font-size: 2rem;
    box-shadow: 0 2px 24px #ff438b50;
    cursor: pointer;
    z-index: 200;
    transition: background .2s, color .2s;
}
.scroll-top:hover {
    background: #fff;
    color: #ff438b;
    border: 2px solid #ff438b;
}

/************ RESPONSIVE *************/
@media (max-width: 1050px) {
    .about-fast,
    .section-bts .bts-cols,
    .section-xp .xp-cards,
    .section-edu .edu-cards,
    .section-proj .proj-cards,
    .section-certif .certif-cards,
    .section-comp .skills-cards,
    .section-tools .tools-cards {
        flex-direction: column;
        gap: 26px;
    }
    .about-img {
        margin-bottom: 20px;
    }
}
@media (max-width: 700px) {
    .header {
        padding: 12px 2%;
    }
    .about-fast {
        flex-direction: column;
        gap: 20px;
        padding-top: 32px;
    }
    .hero-content h1 {
        font-size: 2.1rem;
    }
    .hero-content .subtitle {
        font-size: 1rem;
        padding: 7px 17px;
    }
    section {
        padding: 30px 0 8px 0;
    }
}

/************ BTS SIO - AMÉLIORATION *************/
.section-bts {
    background: none;
    padding-bottom: 40px;
}

.section-bts .bts-intro {
    font-size: 1.13rem;
    color: #b8d9ec;
    margin-bottom: 34px;
    line-height: 1.7;
    padding-left: 4px;
    padding-right: 4px;
    max-width: 820px;
}

.section-bts .bts-cols {
    display: flex;
    gap: 36px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.bts-card {
    background: linear-gradient(120deg, #101a2b 70%, #131e34 100%);
    flex: 1 1 360px;
    border-radius: 18px;
    padding: 36px 26px 32px 26px;
    box-shadow: 0 4px 18px #11182a2a;
    color: #ededed;
    transition: transform .22s, box-shadow .22s;
    min-width: 270px;
    max-width: 460px;
    margin-bottom: 8px;
    border: 2px solid transparent;
    position: relative;
}

.bts-card h3 {
    font-size: 1.38rem;
    margin-bottom: 16px;
    color: #00abf0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 9px;
    letter-spacing: 1px;
}

.bts-card i {
    font-size: 1.4em;
    margin-right: 7px;
}

.bts-list {
    margin: 18px 0 18px 0;
    padding-left: 20px;
}
.bts-list li {
    color: #cbefff;
    font-size: 1.08em;
    margin-bottom: 7px;
    list-style: disc inside;
    line-height: 1.6;
}

.bts-jobs {
    background: #0c243c77;
    border-left: 4px solid #00abf0;
    color: #aee9ff;
    padding: 12px 15px;
    border-radius: 10px;
    margin-top: 10px;
    font-size: 1em;
    font-weight: 500;
}

.slam-active {
    background: linear-gradient(120deg, #ff438b22 15%, #1b233d 90%);
    border: 2px solid #ff438baa;
    color: #fff;
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 4px 32px #ff438b31;
}

.bts-card span {
    color: #ff438b;
    font-weight: 600;
    font-size: 1em;
}

.bts-debouches {
    background: linear-gradient(90deg, #11182a 75%, #15203c 100%);
    border-left: 5px solid #00abf0;
    padding: 20px 28px 20px 24px;
    margin-top: 32px;
    border-radius: 13px;
    box-shadow: 0 3px 24px #031a2b29;
    color: #ededed;
    font-size: 1.08em;
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
}

.bts-debouches h3 {
    font-size: 1.23em;
    color: #ff438b;
    margin-bottom: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

/************ Responsive pour BTS SIO *************/
@media (max-width: 1050px) {
    .section-bts .bts-cols {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }
    .bts-card {
        min-width: unset;
        max-width: unset;
        width: 100%;
    }
}
@media (max-width: 700px) {
    .section-bts .bts-intro {
        font-size: 1em;
        padding-left: 2px;
        padding-right: 2px;
    }
    .bts-debouches {
        padding: 14px 7px 16px 10px;
        font-size: 0.98em;
    }
}

/* --- Page Alternance --- */
.alt-hero {
    background: linear-gradient(120deg, #2461b1 0%, #36b7e9 100%);
    color: #fff;
    padding: 60px 0 30px 0;
    text-align: center;
}
.alt-hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.6rem;
    margin-bottom: 0.6em;
    letter-spacing: 1px;
}
.alt-hero-content .subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
}

.alt-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 10px 20px 10px;
    gap: 28px;
}

.alt-card {
    background: #fff;
    max-width: 700px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(45, 100, 168, 0.07);
    padding: 32px 28px 24px 28px;
    margin: 0 auto;
    color: #17355a;
    font-family: 'Poppins', sans-serif;
    font-size: 1.13rem;
    line-height: 1.6;
    transition: transform .12s;
}
.alt-card h2 {
    color: #2461b1;
    font-size: 1.4rem;
    margin-bottom: 0.8em;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alt-card ul {
    margin-top: 0.5em;
    padding-left: 1.4em;
}
.alt-card li {
    margin-bottom: 0.4em;
    font-size: 1.08rem;
}
.alt-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 40px rgba(36, 97, 177, 0.10);
}

.cta {
    display: inline-block;
    padding: 0.7em 1.6em;
    background: linear-gradient(90deg, #2461b1, #36b7e9);
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    margin-top: 20px;
    transition: background .2s;
    box-shadow: 0 2px 10px rgba(54, 183, 233, 0.08);
}
.cta:hover {
    background: linear-gradient(90deg, #36b7e9, #2461b1);
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .alt-card { max-width: 97vw; }
    .alt-hero-content h1 { font-size: 2rem; }
}
@media (max-width: 600px) {
    .alt-section { padding: 20px 3vw; }
    .alt-card { padding: 20px 8px 16px 8px; }
    .alt-hero-content h1 { font-size: 1.6rem; }
}

