/* ===========================
   General styles
   =========================== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #001439;
    color:#007BFF;

    
}

p {
    line-height: 1.6;
    background-color: #007BFF;
    border-radius: 10px;
    padding: 10px;
    color: #001439;

}

section {

    background-color: #007BFF;
    color: #001439;
    padding: 10px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 10px;
    border-color: #ccc;
    border-style: solid;

}

/* Sticky header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f4f4f4;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Left nav */
.left-nav {
    flex: 1;
}

/* Right nav */
.right-nav {
    margin-left: auto;
}

/* Navigation links */
nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
}

nav a:hover {
    color: #333;
}

/* Footer */
footer {
    background: #f4f4f4;
    padding: 20px;
    text-align: center;
}

/* ===========================
   Coming Soon Page Styles
   =========================== */
.coming-soon-page {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f4f4;
}

.coming-soon {
    text-align: center;
    border: 2px dashed #ccc;
    padding: 30px 40px;
    border-radius: 10px;
    background: #fff;
}

.coming-soon h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.coming-soon p {
    font-size: 1.2rem;
    color: #666;
}

.coming-soon a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}
.coming-soon a:hover {
    background: #0056b3;
}
/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    /*/ hover effect */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

}
th, td {
    border: 1px solid #001439;
    padding: 8px;
    text-align: left;
    color:#007BFF;
    background-color: #ccc;
}
th {
    background-color: #f2f2f2;
    color:#007BFF;;

}  

/* Hover effect for table rows */
tr:hover {
    background-color: #333;;
}

/* ===========================
   Form Styles
   =========================== */
form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background:#333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /*/rounded corners */
    border-radius: 10px;
}
/* Logo image inside the form */
form .about-logo {
  width: 180px;       /* fixed width */
  height: 180px;      /* fixed height */
  object-fit: contain; /* fit inside box without cropping */
  display: block;     
  margin: 0 auto 20px; /* center + spacing below */
  border-radius: 50%;  /*  makes logo circular */
  padding: 10px;       /* optional: spacing inside the circle */
}

/* ===========================
   Image Slider Styles
   =========================== */
.image-slider {
    position: relative;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
}

.image-slider img {
    width: 100%;
    display: none;
}

.image-slider img:first-child {
    display: block;
}

.image-slider button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.image-slider .prev {
    left: 10px;
}

.image-slider .next {
    right: 10px;
}

/* Responsive */
@media (max-width: 600px) {
    .image-slider {
        max-width: 100%;
    }

    .image-slider button {
        padding: 5px;
    }
    table, th, td {
        font-size: 14px;
    }
    /* Adjust padding for smaller screens */
    header {
        padding: 5px 10px;
    }       
    .coming-soon {
        padding: 20px;
    }
/* reduce font size for smaller screens */
    .coming-soon h1 {
        font-size: 2rem;
    }

    .coming-soon p {
        font-size: 1rem;
    }
    .coming-soon a {
        padding: 8px 16px;
    }
    /* Media query for very small screens */
    @media (max-width: 400px) {
        nav a {
            margin: 0 5px;
            font-size: 14px;
        }
    }
    @media screen {
        body {
            font-size: 14px;
        }
        
    }
    /* Further reduce font size for very small screens */
    @media (max-width: 300px) {
        body {
            font-size: 12px;
        }



    }
/* Header layout */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    background-color: #f5f5f5; /* optional background */
}
/* Campaign section */
.campaign {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    gap: 15px;
}

.campaign-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ccc;
}

.campaign p {
    margin: 0;
    flex: 1;
}

.campaign a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;

}
}

