:root {
    --primary: #6CBF3E;         /* Green from logo */
    --secondary: #00AEEF;       /* Blue from logo */
    --light: #F5F5F5;           /* Light gray for background contrast */
    --dark: #1D3A4C;            /* Deep blue/green for text or footer */
    --text: #2E2E2E;            /* Neutral text for better readability */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: var(--primary);
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* ensures left alignment */
    text-align: left; /* ensures text doesn't center */
}



.logo img {
    height: 50px;
    margin-right: 15px;
}

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--secondary);
}

/* Hero Section */

/* Hero Section Styles */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 120px 20px;
    position: relative;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #ff5252;
}

/* Mission Section */
.mission-statement {
    background-color: var(--light);
    padding: 4rem 0;
    text-align: center;
}

.mission-statement h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.mission-statement p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary);
    margin: 15px auto;
}

/* Cards */



/* Cards */
.vertical-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.card p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}


/* Team Section */
.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    max-width: 200px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 5px solid var(--light);
}

.team-member h3 {
    margin-bottom: 5px;
    color: var(--primary);
}

.team-member p {
    color: var(--dark);
    font-style: italic;
    margin-top: 0;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 3rem 0;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-column h3 {
    color: var(--secondary);
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 10px;
}

.social-links a {
    color: white;
    margin-right: 15px;
    font-size: 1.2rem;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #444;
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member .img-container {
  width: 250px;
  height: 250px;
  margin: 0 auto 1rem;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.team-member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.tagging-bar {
  background-color: #212529; /* dark gray background */
  color: #ffffff;            /* white text */
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.scrolling-text {
  display: inline-block;
  padding-left: 100%; /* Start off-screen to the right */
  animation: scroll-left 15s linear infinite; /* Adjust speed here */
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5); /* dark background */
  border-radius: 50%; /* optional: makes them round */
}

.cin-number {
    font-size: 0.7rem;
    font-weight: 600; /* Semi-bold */
    color: #FFD700; /* Golden Accent */
    font-family: "Poppins", sans-serif; /* Modern clean font */
    letter-spacing: 0.5px;
    margin-top: 5px;
    text-align: center;
}




