* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 60px;
    background: #1f2f44;
    color: white;
}

.navbar nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

/* HERO */
.hero {
    height: 90vh;
    background: url('images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero button {
    margin-top: 20px;
    padding: 10px 20px;
}

/* BIG TEXT */
.big-text {
    text-align: center;
    padding: 80px 20px;
}

.big-text h2 {
    font-size: 40px;
    line-height: 1.5;
}

/* TWO COLUMN */
.two-col {
    display: flex;
    padding: 60px;
    gap: 40px;
}

.two-col img {
    width: 100%;
}

.two-col .text {
    flex: 1;
}

.two-col .image {
    flex: 1;
}

.two-col.reverse {
    flex-direction: row-reverse;
}

/* DARK SECTION */
.dark-section {
    background: #2d3f56;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
}

/* FOOTER */
.footer {
    background: #1f2f44;
    color: white;
    padding: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}








* {
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    background:#1f2f44;
    color:white;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo img {
    height:40px;
}

.navbar nav a {
    margin-left:20px;
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.navbar nav a:hover {
    color:#ccc;
}

/* MOBILE MENU */
.menu-toggle {
    display:none;
    font-size:24px;
    cursor:pointer;
}

/* HERO */
.hero {
    height:90vh;
    background:url('images/hero.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
}

.hero h1 {
    font-size:50px;
}

.hero button {
    margin-top:20px;
    padding:10px 25px;
    border:none;
    background:#fff;
    cursor:pointer;
}

/* SECTIONS */
.section {
    padding:60px 40px;
}

/* TWO COLUMN */
.two-col {
    display:flex;
    gap:40px;
    align-items:center;
}

.two-col img {
    width:100%;
    border-radius:10px;
}

/* TEAM GRID */
.team {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
    gap:30px;
}

.card {
    text-align:center;
    transition:0.3s;
}

.card img {
    width:100%;
    border-radius:10px;
}

.card:hover {
    transform:translateY(-10px);
}

/* DARK SECTION */
.dark {
    background:#2d3f56;
    color:white;
    text-align:center;
}

/* FOOTER */
.footer {
    background:#1f2f44;
    color:white;
    padding:40px;
}

.footer-content {
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
}

.footer-logo {
    height:40px;
}

/* CONTACT FORM */
form input, form textarea {
    width:100%;
    padding:10px;
    margin-bottom:15px;
}

form button {
    padding:10px 20px;
    background:#1f2f44;
    color:white;
    border:none;
}

/* ANIMATIONS */
.fade {
    opacity:0;
    transform:translateY(20px);
    transition:1s;
}

.fade.show {
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px) {
    .two-col {
        flex-direction:column;
    }

    nav {
        display:none;
        flex-direction:column;
        background:#1f2f44;
        position:absolute;
        top:60px;
        right:0;
        width:200px;
    }

    nav.active {
        display:flex;
    }

    .menu-toggle {
        display:block;
    }
}

/* VALUES SECTION */
.values-section {
    position: relative;
    background: url('images/values-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 100px 60px;
}

/* DARK BLUE OVERLAY */
.values-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 40, 65, 0.85);
}

/* CONTENT */
.values-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
}

/* LEFT SIDE */
.values-left {
    flex: 1;
}

.values-small {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.values-left h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.values-text {
    font-size: 16px;
    line-height: 1.8;
    max-width: 500px;
    opacity: 0.9;
}

/* RIGHT SIDE */
.values-right {
    flex: 1;
}

/* ACCORDION */
.accordion-item {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 20px 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header span {
    font-size: 20px;
}

.icon {
    width: 35px;
    height: 35px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* HIDDEN CONTENT */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    font-size: 14px;
    opacity: 0.8;
}

.accordion-item.active .accordion-content {
    max-height: 100px;
    margin-top: 10px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .values-container {
        flex-direction: column;
    }

    .values-left h2 {
        font-size: 32px;
    }
}

.story-text p {
    line-height: 1.6;
}

.story-text h3 {
    line-height: 1.3;
}


/* FOOTER IMPROVEMENT */
.footer {
    background: #1f2f44;
    color: #dcdcdc;
    padding: 60px 40px;
    font-size: 14px;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* LOGO BLOCK */
.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer p {
    line-height: 1.6;
    font-size: 13px;
    color: #cfcfcf;
}

/* HEADINGS */
.footer h4 {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
}

/* SPACING BETWEEN COLUMNS */
.footer-content > div {
    min-width: 200px;
}

/* HOVER EFFECT (optional but nice) */
.footer p:hover {
    color: #ffffff;
    transition: 0.3s;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

body {
    font-family: 'Inter', sans-serif;
}




/* SECTION LAYOUT */
.leadership-section {
    padding: 80px 40px;
}

/* FLEX CONTAINER */
.leadership-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center; /* vertical center */
    gap: 60px;
}

/* LEFT SIDE */
.leadership-left {
    flex: 1;
}

.leadership-left h2 {
    text-align: left;
    font-size: 36px;
    line-height: 1.3;
}

/* RIGHT SIDE */
.leadership-right {
    flex: 1;
}

.leadership-right p {
    text-align: right;
    line-height: 1.6; /* 👈 line spacing applied */
    font-size: 16px;
    max-width: 500px;
    margin-left: auto; /* pushes text to the right */
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .leadership-container {
        flex-direction: column;
        text-align: center;
    }

    .leadership-left h2,
    .leadership-right p {
        text-align: center;
        margin: auto;
    }
}





/* RIGHT SIDE IMAGE LAYOUT */
.leaders-images {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

/* CARD */
.leader-card {
    text-align: center;
    max-width: 220px;
}

/* IMAGE */
.leader-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

/* HOVER EFFECT */
.leader-card img:hover {
    transform: scale(1.05);
}

/* NAME */
.leader-card h4 {
    margin-top: 15px;
    font-size: 16px;
}

/* ROLE */
.leader-card p {
    font-size: 13px;
    opacity: 0.8;
}

/* MOBILE */
@media(max-width:768px) {
    .leaders-images {
        flex-direction: column;
    }
}





/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&family=Inter:wght@400;600;700&display=swap');

/* SECTION */
.partners-section {
    text-align: center;
    padding: 100px 40px;
}

/* CONTAINER */
.partners-container {
    max-width: 1200px;
    margin: auto;
}

/* SMALL TITLE */
.partners-small {
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
}

/* MAIN TITLE */
.partners-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 28px;
    max-width: 700px;
    margin: auto;
    line-height: 1.4;
    margin-bottom: 60px;
}

/* MARQUEE */
.partners-marquee {
    overflow: hidden;
    width: 100%;
}

/* TRACK */
.partners-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
}

/* LOGOS */
.partners-track img {
    height: 50px;
    object-fit: contain;
    opacity: 0.8;
    transition: 0.3s;
}

.partners-track img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ANIMATION */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .partners-title {
        font-size: 22px;
    }

    .partners-track {
        gap: 30px;
    }

    .partners-track img {
        height: 40px;
    }
}





/* SECTION */
.approach-section {
    background: #ffffff;
    padding: 100px 40px;
}

/* TOP IMAGE */
.approach-image {
    text-align: center;
    margin-bottom: 60px;
}

.approach-image img {
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
}

/* CONTAINER */
.approach-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
}

/* LEFT */
.approach-left {
    flex: 1;
}

.approach-small {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #666;
}

.approach-left h2 {
    font-size: 32px;
    line-height: 1.3;
}

.approach-text {
    margin-top: 20px;
    line-height: 1.7;
}

/* RIGHT */
.approach-right {
    flex: 1;
}

/* ACCORDION */
.approach-item {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.approach-header {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.approach-icon {
    width: 30px;
    height: 30px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CONTENT FIX */
.approach-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.approach-item.active .approach-content {
    max-height: 1000px; /* ensures full text shows */
    margin-top: 15px;
}

.approach-content p {
    line-height: 1.8;
}

/* MOBILE */
@media (max-width: 768px) {
    .approach-container {
        flex-direction: column;
    }
}




.dropdown-heading {
  font-size: 20px;      /* increase size */
  font-weight: 700;     /* bold */
  cursor: pointer;
}





.dropdown-content {
  font-size: 14px;      /* smaller text */
  font-weight: 400;
  line-height: 1.6;
}



.blue-button {
  background: linear-gradient(135deg, #1f2f44, #1f2f44);
  color: white;
  border: none;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(30, 144, 255, 0.3);
  transition: 0.3s ease;
}








.feature-item {
  text-align: center;
  padding: 15px;
}

.feature-icon {
  width: 100px;
  height: 60px;
  margin-bottom: 8px;
  display: inline-block;
}







.contact-section {
  background: #0b1f3a; /* dark blue */
  padding: 80px 20px;
  color: white;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  gap: 50px;
}

/* LEFT TEXT */
.contact-text {
  flex: 1;
  text-align: left;
}

.contact-text h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 15px;
}

.contact-text p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 450px;
}

/* RIGHT FORM BOX */
.contact-form-box {
  flex: 1;
  display: flex;
  justify-content: center;
}

.contact-form-box form {
  background: transparent;
  border: 2px solid white;
  padding: 25px;
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

/* INPUTS */
.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
}

.contact-form-box textarea {
  height: 120px;
  resize: none;
}

/* BUTTON */
.contact-form-box button {
  width: 100%;
  padding: 12px;
  background: #1e90ff;
  color: white;
  border: none;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form-box button:hover {
  background: #0f75d1;
}