@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
.footer {
    background: linear-gradient(135deg, #141E30, #243B55);
    color: #eee;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}
.footer-column {
    flex: 1;
    min-width: 250px;
    margin: 20px 0;
    transition: transform 0.3s, background-color 0.3s;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}
.footer-column:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}
.footer-column h3 {
    margin-bottom: 20px;
    font-size: 24px;
    border-bottom: 3px solid #ff6347;
    display: inline-block;
    padding-bottom: 5px;
    color: #ff6347;
    position: relative;
}
.footer-column h3::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #ff6347, #e5533b);
    animation: animateUnderline 2s infinite;
}
@keyframes animateUnderline {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: -100%; }
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 12px;
}
.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}
.footer-column ul li a:hover {
    color: #ff6347;
    text-decoration: underline;
}
.footer-column address {
    font-style: normal;
    line-height: 1.8;
    color: #ccc;
}
.footer-column address a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-column address a:hover {
    color: #ff6347;
    text-decoration: underline;
}
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
    background-color: #111;
}
.footer-bottom p {
    margin: 0;
    color: #ccc;
    font-size: 14px;
}
.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.social-icons a {
    margin: 0 15px;
    color: #ccc;
    font-size: 20px;
    transition: color 0.3s, transform 0.3s;
}
.social-icons a:hover {
    color: #ff6347;
    transform: scale(1.2);
}
.newsletter {
    margin-top: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.newsletter input[type="email"] {
    padding: 15px;
    border: none;
    border-radius: 30px;
    width: 300px;
    margin-bottom: 10px;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}
.newsletter input[type="email"]:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.newsletter button {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #ff6347, #e5533b);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.newsletter button:hover {
    background: linear-gradient(135deg, #e5533b, #ff6347);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff6347, #243B55, #ff6347, #243B55);
    background-size: 400% 400%;
    opacity: 0.1;
    animation: gradientBG 15s ease infinite;
    z-index: -1;
}
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.animated-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, #ff6347, #243B55) 1;
    animation: borderBG 10s linear infinite;
    z-index: -1;
}
@keyframes borderBG {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.footer-column::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.5s;
    pointer-events: none;
    z-index: -1;
    transform: rotate(45deg);
}
.footer-column:hover::after {
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
}
.footer-column::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: #ff6347;
    transition: width 0.3s ease;
}
.footer-column:hover::before {
    width: 100%;
}

.back-button {
    background-color: #007BFF; /* Change the background color */
    color: white; /* Change the text color */
    border: none; /* Remove border */
    padding: 10px 20px; /* Add padding */
    font-size: 16px; /* Increase font size */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    display: flex; /* Flex display for centering */
    align-items: center; /* Vertically center items */
    justify-content: center; /* Horizontally center items */
    margin: 20px; /* Add margin */
    text-decoration: none; /* Remove underline */
}

.back-button:hover {
    background-color: #0056b3; /* Darken background on hover */
}

    </style>
    <style>
        body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

.hero {
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3em;
    margin: 0;
}

.hero p {
    font-size: 1.5em;
}

.container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.about-section, .values-section, .team-section, .contact-section {
    margin-bottom: 50px;
}

h2 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #666;
}

.highlight {
    color: #3498db;
    font-weight: bold;
}

.values {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.value {
    max-width: 300px;
}

.value i {
    font-size: 2em;
    color: #3498db;
    margin-bottom: 10px;
}

.team {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.team-member {
    max-width: 200px;
}

.team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-member h3 {
    margin: 0;
    font-size: 1.5em;
}

.link {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px dotted #3498db;
    transition: color 0.3s ease;
}

.link:hover {
    color: #2980b9;
}

@media (max-width: 768px) {
    .hero {
        height: 300px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1.2em;
    }

    .values, .team {
        flex-direction: column;
        align-items: center;
    }

    .value, .team-member {
        margin-bottom: 30px;
    }
}



