/* Global */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    background:#f9f9f9;
    color:#333;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */
header {
    background-color: white;
    padding: 10px 60px;
}
.navbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}
.logo{
    display: block;
    color: white;
    font-size: 20px;
}
.navlinks{
    display: flex;
    gap: 40px;
    list-style: none;
    justify-content: center;
}
.navlinks a{
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 16px;
}

/* Hero */

.about-hero{
    background:linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ),
    url("Images/pexels-pixabay-221471.jpg");

    background-size:cover;
    background-position:center;

    color:white;
    text-align:center;

    padding:140px 20px;
}

.about-hero h1{
    font-size:55px;
    margin-bottom:15px;
}

.about-hero p{
    font-size:18px;
}

/* About Section */

.about-section{
    padding:80px 0;
}

.about-section h2{
    text-align:center;
    font-size:40px;
    margin-bottom:40px;
}

.about-section p{
    line-height:1.9;
    margin-bottom:20px;
    font-size:17px;
    color:#555;
}

/* Services */

.services-section{
    padding:80px 0;
    background:white;
}

.services-section h2{
    text-align:center;
    font-size:40px;
    margin-bottom:50px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.service-card{
    background:#f9f9f9;
    padding:25px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-5px);
}

.service-card h3{
    font-size:17px;
}

/* Mission */

.mission-section{
    padding:80px 0;
}

.mission-section h2{
    text-align:center;
    font-size:40px;
    margin-bottom:30px;
}

.mission-section p{
    max-width:800px;
    margin:auto;
    text-align:center;
    line-height:1.9;
    font-size:17px;
    color:#555555;
}

/* CTA */

.cta-section{
    padding:80px 0;
    text-align:center;
    background:white;
}

.cta-section h2{
    font-size:40px;
    margin-bottom:15px;
}

.cta-section p{
    margin-bottom:30px;
    color:#666;
}

.cta-btn{
    display:inline-block;
    background:#b11226;
    color:white;
    text-decoration:none;
    padding:14px 35px;
    border-radius:6px;
    transition:0.3s;
}

.cta-btn:hover{
    background:#8f0d1f;
}
/*FOOTER*/
.footer {
    background-color: #07013c;
    color: #fff;
    padding: 50px 60px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
}

/* ICONS */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 18px;
    color: white;
    background-color: #333;
    padding: 8px 10px;
    border-radius: 6px;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: #154fa3;
}

