/* Global Styles */
:root {
    --teal: #008080;
    --navy: #008080;
    --white: #ffffff;
    --light-grey: #f5f5f5;
    --dark-grey: #333333;
    --medium-grey: #cccccc;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-grey);
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--teal);
    color: var(--white);
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--navy);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--teal);
    color: var(--teal);
}

.btn-outline:hover {
    background-color: var(--teal);
    color: var(--white);
}

.text-center {
    text-align: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--navy);
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
}

.nav-links a {
    margin-left: 30px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--teal);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--navy);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 80, 80, 0.85), rgba(0, 80, 80, 0.9)), 
                url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    animation: fadeInDown 1s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s both;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background-color: white;
    color: #008080;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease 0.6s both;
}

.btn:hover {
    background-color: #009f9f;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .tagline {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .tagline {
        font-size: 1rem;
    }
}

/* Vision Section */
.vision {
    padding: 80px 0;
    text-align: center;
    background-color: var(--light-grey);
}

.vision h2 {
    color: var(--navy);
    font-size: 2rem;
    margin-bottom: 20px;
}

.vision p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
}

.services-overview h2 {
    text-align: center;
    color: var(--navy);
    font-size: 2rem;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card img {
    height: 80px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--teal);
    margin-bottom: 15px;
}

/* About Page Styles */
.founder-section {
    padding: 80px 0;
}

.founder-profile {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.profile-image {
    flex: 1;
    max-width: 400px;
}

.profile-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.profile-content {
    flex: 2;
}

.profile-content h2 {
    color: var(--navy);
    font-size: 2rem;
}

.profile-content .title {
    color: var(--teal);
    font-weight: 500;
    margin-bottom: 20px;
}

.achievements {
    margin-top: 20px;
}

.achievements h3 {
    color: var(--navy);
    margin-bottom: 10px;
}

.achievements ul {
    list-style-position: inside;
}

.achievements li {
    margin-bottom: 8px;
}

.collaborator-section {
    padding: 60px 0;
    background-color: var(--light-grey);
}

.collaborator-profile {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.collaborator-profile h3 {
    color: var(--navy);
    font-size: 1.5rem;
}

.collaborator-profile .title {
    color: var(--teal);
    font-weight: 500;
    margin-bottom: 20px;
}

.timeline-section {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--teal);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 20px 0;
    position: relative;
    width: 100%;
}

.timeline-year {
    position: absolute;
    width: 100px;
    background-color: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 8px 0;
    border-radius: 4px;
    left: 50%;
    margin-left: -50px;
    top: 0;
    font-weight: 600;
}

.timeline-content {
    width: 45%;
    padding: 20px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 4px;
    position: relative;
}

.timeline-content::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--white);
    border: 3px solid var(--teal);
    border-radius: 50%;
    top: 30px;
}

.timeline-item:nth-child(odd) .timeline-content {
    left: 0;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    right: -30px;
}

.timeline-item:nth-child(even) .timeline-content {
    left: 55%;
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -30px;
}

.mvv-section {
    padding: 80px 0;
    background-color: var(--light-grey);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mvv-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.mvv-item:hover {
    transform: translateY(-5px);
}

.mvv-item img {
    height: 80px;
    margin-bottom: 20px;
}

.mvv-item h3 {
    color: var(--teal);
    margin-bottom: 15px;
}

/* Services Page Styles */
.services-page {
    padding: 80px 0;
}

.services-container {
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: center;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-icon {
    flex: 1;
    text-align: center;
}

.service-icon img {
    max-width: 150px;
    height: auto;
}

.service-content {
    flex: 2;
}

.service-content h2 {
    color: var(--navy);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-content p {
    margin-bottom: 20px;
}

.cta-section {
    padding: 80px 0;
    background-color: var(--teal);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Registration Page Styles */
.registration-form {
    padding: 2px 0;
}



.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.payment-info {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 30px;
    background-color: var(--light-grey);
    border-radius: 8px;
}

.payment-info h3 {
    color: var(--navy);
    margin-bottom: 15px;
}

.payment-methods {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.payment-methods img {
    height: 40px;
}

/* Contact Page Styles */
.contact-section {
    padding: 2px 0;
}

.contact-container {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-form {
    flex: 2;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form h2 {
    color: var(--navy);
    margin-bottom: 20px;
}

.contact-info {
    flex: 1;
    background-color: var(--light-grey);
    padding: 30px;
    border-radius: 8px;
}

.contact-info h2 {
    color: var(--navy);
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item img {
    height: 50px;
    margin-bottom: 15px;
}

.info-item h3 {
    color: var(--teal);
    margin-bottom: 10px;
}

.social-links {
    margin-top: 40px;
}

.social-links h3 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons img {
    height: 30px;
    transition: var(--transition);
}

.social-icons img:hover {
    transform: translateY(-3px);
}

.map-container {
    margin-top: 60px;
}

.map-container h2 {
    text-align: center;
    color: var(--navy);
    margin-bottom: 30px;
}

.map-wrapper {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-grey);
}

.modal-content img {
    height: 80px;
    margin-bottom: 20px;
}

.modal-content h2 {
    color: var(--navy);
    margin-bottom: 15px;
}

.modal-content p {
    margin-bottom: 25px;
}

/* Footer */
.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--teal);
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons img {
    height: 20px;
    opacity: 0.8;
    transition: var(--transition);
}

.social-icons img:hover {
    opacity: 1;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .founder-profile {
        flex-direction: column;
    }
    
    .profile-image {
        max-width: 100%;
    }
    
    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }
    
    .service-icon {
        margin-bottom: 20px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-year {
        left: 0;
        margin-left: 0;
    }
    
    .timeline-content {
        width: 100%;
        left: 0 !important;
    }
    
    .timeline-content::after {
        left: 15px !important;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        margin: 15px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .tagline {
        font-size: 1.2rem;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-container,
    .contact-form {
        padding: 30px 20px;
    }

}


