/* Reset default margin and padding */

h1,h2,h3{
  font-family: 'Poppins', sans-serif;
}

h1{
  font-family: 'Montserrat', sans-serif;
}
p{
  font-family: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and container */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
     background-color: white;
     font-family: 'Roboto', sans-serif;
}



.container {
    max-width: 1200px;  /* Desktop max width */
    width: 90%;          /* Shrinks on smaller screens */
    margin: 20px auto;
}

.column {
    width: 33.33%;
    padding: 10px;
}
/* Header */
.header {
    background: #1B365D;
    color: white;
    padding: 20px;
    text-align: center;
}

.header1 {
    background: #1B365D;
    color: white;
    padding: 20px;
    text-align: center;
}


/* Navigation */
.nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    background: #1B365D;
}


.nav1 ul {
    display: flex;
    list-style: none;
    justify-content: center;
    background: white;
    border: 1px solid #333;
}

.nav li {
    margin: 0 15px;
}

.nav a {
    color: white;
    text-decoration: none;
    padding: 10px 0;
    display: block;
    font-weight: bold;
}

/* Footer */
.footer {
    max-width: 1200px;  /* Desktop max width */
    width: 90%;      
    margin: 20px auto;
    
    background:#A5D6A7;
    color: white;
    padding: 15px;
    text-align: center;
    margin-top: 20px;
}

/* Responsive Images */
.responsive-img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
}

/* Mobile Layout */
@media (max-width: 768px) {
    .nav ul {
        flex-direction: column;
        text-align: center;
    }

    .nav li {
        margin: 5px 0;
    }

    .container {
        width: 95%;
        margin: 10px auto;
    }

    .header, .footer {
        padding: 15px;
    }
}



/* Features Section */
.features {
    display: flex;
    justify-content: space-around;
    padding: 30px 10px;
    background-color: #f4f4f4;
     
}


.features1 {
    display: flex;
    justify-content: space-around;
    padding: 50px 30px;
    background-color: #f4f4f4;
     max-width: 1204px;
}

.feature {
    text-align: center;
    max-width: 600px;
   background-color: #f4f4f4;
}


.feature1 {
    text-align: center;
    max-width: 600px;
   background-color: #f4f4f4;
}




















@media (max-width: 1024px){
    /* Tablets: reduce padding if needed */
    .three-columns .col{
        padding: 12px;
        font-size: 15px;
    }
}

@media (max-width: 768px){
    /* Small tablets / large phones: 2 columns per row */
    .three-columns{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px){
    /* Mobile: 1 column per row */
    .three-columns{
        grid-template-columns: 1fr;
    }
    .three-columns .col{
        padding: 10px;
        font-size: 14px;
    }
    .container h2{
        font-size: 18px; /* adjust headings */
        text-align: center;
    }
}