/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Body Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Watermark Logo */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/logo.png') no-repeat center center;
    background: size 80%;
    opacity: 0.1;  /* Light watermark effect */
    z-index: -1;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #004d7a;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 50%;
}

.navbar a {
    color: white;
    font-size: 20px;
    text-decoration: none;
    margin: 0 15px;
    transition: all 0.3s  ease-in-out;
    padding: 10px;
}

.navbar a:hover {
    color: #ffcc00;
}

/* Navbar Alignment Fix */
.navbar-left {
    display: flex;
    align-items: center;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Theme Toggle Button */
#theme-toggle {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: white;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px;
    color: white;
    margin-top: 50px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #004d7a;
}

.hero p {
    font-size: 1.2em;
    color: #555;
}

/* Page Sections */
section {
    flex: 1;
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
}

/* Footer Styling */
footer {
    position: relative;
    bottom: 0;
    width: 100%;
    background: #004d7a;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    height: 50px;
    margin-top: auto;
}

footer a {
    color: white;
    font-size: 20px;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #ffcc00;
}

/* Dark Mode */
.dark-mode {
    background-color: #121212;
    color: white;
}

.dark-mode .navbar, .dark-mode footer {
    background-color: black;
}

.dark-mode .navbar a, .dark-mode #theme-toggle {
    color: white;
}

.dark-mode .navbar a {
    color: white;
}

.dark-mode body::before {
    opacity: 0.005; /* Reduce opacity to make it more subtle */
    filter: brightness(150%); /* Increase brightness */
}

/* Video Section */
.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

#intro-video {
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* 🔹 Team Section Styling */
.team-section {
    text-align: center;
    padding: 50px 20px;
}

/* 🔹 Team Members Layout */
.team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

/* 🔹 Team Member Card */
.team-member {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

/* 🔹 Circular Image Styling */
.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #007bff;
    transition: border-color 0.3s ease;
}

.team-member:hover img {
    border-color: #0056b3;
}

/* 🔹 Name and Designation */
.team-member h3 {
    margin: 10px 0;
    font-size: 1.5em;
    color: #333;
}

.designation {
    font-weight: bold;
    color: #555;
    margin-bottom: 10px;
}

/* 🔹 Read More Button */
.read-more-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    margin-top: 5px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: #0056b3;
}

/* 🔹 Hidden Read More Info */
.more-info {
    display: none;
    margin-top: 10px;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    line-height: 1.5;
    padding: 5px 10px;
    border-left: 3px solid #007bff;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 5px;
}

/* FAQ Section */
.faq-section {
    text-align: center;
    padding: 50px 20px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.faq-question {
    font-weight: bold;
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
}

.read-answer-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    margin-top: 5px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.read-answer-btn:hover {
    background: #0056b3;
}

.faq-answer {
    display: none; /* Initially hidden */
    margin-top: 10px;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    line-height: 1.5;
    padding: 5px 10px;
    border-left: 3px solid #007bff;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 5px;
}
/* Contact Page Styling */
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    background: linear-gradient(to right, #f9f9f9, #e6e6e6);
}

.contact-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.contact-container h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.contact-container p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    color: #444;
    margin-bottom: 5px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: border 0.3s ease-in-out;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
}

.submit-btn {
    display: inline-block;
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    color: white;
    background: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.submit-btn:hover {
    background: #0056b3;
}

/* Responsive Design */
@media (max-width: 600px) {
    .contact-container {
        width: 90%;
    }
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Sections */
.about-section {
    background: white;
    padding: 25px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Media */
.media-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.media-container img, .media-container video {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 10px 0;
}

/* Table */
.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.comparison-table th, .comparison-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.comparison-table th {
    background: #004080;
    color: white;
}

/* Methodology Images */
.methodology-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.methodology-images img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 10px 0;
}

.page-title {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.business-model {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}
.business-model img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 10px 0;
}
.read-more {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    margin-top: 10px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.read-more:hover {
    background: #0056b3;
}

/* 🔹 Hidden Read More Info */
.card {
    margin-top: 10px;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    line-height: 1.5;
    padding: 20px;
    border-left: 3px solid #007bff;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
/* Hide only the inner content of the card */
.card .hidden-content {
    display: none; 
}
.dark-mode .about-section {
    background: #1e1e1e; /* Dark background for sections */
    color: #ffffff; /* Ensure text is visible */
}
.dark-mode .comparison-table th,
.dark-mode .comparison-table td {
    color: #ffffff; /* Table text should be white */
    border-color: #444; /* Adjust table border for dark mode */
}

.dark-mode .read-more {
    background-color: #007bff; /* Keep button visible */
    color: #ffffff;
}

.dark-mode .card {
    background: #252525; /* Dark mode background */
    color: #ffffff; /* Light text */
    border-left: 3px solid #007bff; 
}
