@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --navy-bg: #071e40;
  --navy-light: #16263e;
  --heading-font: 'Cinzel', serif;
}

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}


/* globle css */
.section {
  padding: 100px 20px;
  max-width: 1000px;
  margin: auto;
  ;
}

.section h2 {
  font-family: 'Cinzel', serif;
  font-size: 34px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  color: #061e41;
}

.team-grid.container {
  grid-template-columns: 1fr 1fr;
}

.section.bgc {
  background-size: cover;
  max-width: 100%;
}

.section p {
  color: #555;
  line-height: 1.8;
  font-size: 18px;
  font-family: 'Cinzel', serif;
  font-style: italic;
}

/* HERO */
.page-hero {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 42px;
  letter-spacing: 3px;
}

/* DARK SECTION */
.dark {
  background: #0B1F3A;
  color: #fff;
}

.dark p {
  color: #ccc;
}

/* GRID */
.grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* CARD */
.card {
  padding: 20px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 5px;
}


.card span {
  font-size: 13px;
  color: #888;
}

.font-cinzel {
  font-family: 'Cinzel', serif;
}

/* Navbar */
.navbar {
  padding: 25px 0;
  transition: all 0.4s ease;
  z-index: 1050;
}

.navbar.scrolled {
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.brand-logo {
  padding: 5px 12px;

}

.brand-logo img {
  width: 200px;
}

.nav-link {
  color: var(--navy-bg) !important;
  letter-spacing: 2px;
  margin: 0 10px;
  font-family: 'Cinzel', serif;
}

/* Leadership Hover (Desktop Only) */
@media (min-width: 992px) {
  .leadership-item:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.dropdown-menu {
  border-radius: 0;
  border: none;
  background: white;
  padding: 15px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--navy-bg);
}

/* Hamburger to 'X' Icon */
.navbar-toggler {
  border: none;
  padding: 0;
}

.icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #061e40;
  margin: 4px 0;
  transition: all 0.3s;

}

.navbar-toggler:not(.collapsed) .top-bar {
  transform: translateY(6px) rotate(45deg);
}

.navbar-toggler:not(.collapsed) .middle-bar {
  opacity: 0;
}

.navbar-toggler:not(.collapsed) .bottom-bar {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background-image: url(../images/hero1.png);
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  filter: brightness(0.85);
}

.card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

.logo-border-box {
  display: inline-block;
  padding: 20px 30px;
  font-size: 3rem;
  font-family: 'Cinzel', serif;
}

.logo-border-box img {
  width: 100px;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: calc(1.5rem + 2vw);
  letter-spacing: 8px;
  margin-top: 20px;
  font-weight: 600;
  color: #061a37;
}

/* about section css */
.about-section {
  padding: 100px 0;
  position: relative;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}


/* Heading */
.about-header h2 {
  font-size: 42px;
  font-weight: 600;
  color: #0B1F3A;
  font-family: 'Cinzel', serif;
}

.about-header .line {
  width: 120px;
  height: 3px;
  background: #2e74cc;
  margin-top: 15px;
}

/* Grid */
.about-grid {
  display: flex;
  gap: 60px;
  margin-top: 60px;
}

.about-grid div {
  flex: 1;
}

.about-grid h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #0B1F3A;
  font-family: 'Cinzel', serif;
}

.about-highlights h3 {
  font-family: 'Cinzel', serif;
  margin-bottom: 15px;
}

.about-grid p {
  color: #555;
  line-height: 1.7;
}

/* Highlights */
.about-highlights {
  margin-top: 80px;
}

.highlight-item {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #061d40, #1b9aaa);
  margin-bottom: 20px;
  padding: 18px 25px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.highlight-item span {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin-right: 20px;
}

.highlight-item p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  font-family: 'Cinzel', serif;
}

.highlight-item:hover {
  transform: translateX(10px);
  background: linear-gradient(90deg, #1b9aaa, #061d40);
}

/* team section css */
.team-section {
  background: linear-gradient(90deg, #061d40, #1b9aaa);
  padding: 100px 0;
}


.team-header h2 {
  color: #fff;
  font-size: 42px;
  font-family: var(--heading-font);
}

.team-header .line {
  width: 120px;
  height: 3px;
  background: #2e74cc;
  margin-top: 10px;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

/* CARD */
.team-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  transition: 0.4s;
}

/* 👉 ONLY TOP FLEX */
.team-top {
  display: block;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.team-top img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid #092142;
}

.team-top h3 {
  margin: 0;
  font-size: 20px;
  color: #0B1F3A;
  font-family: var(--heading-font);
}

.team-top span {
  font-size: 14px;
  color: #2e74cc;
}

/* CONTENT */
.team-content p {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.team-content p::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2e74cc;
}

/* HOVER */
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}


/* strategy section css */
.strategy-section {
  padding: 100px 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}



/* HEADER */
.strategy-header {
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.strategy-header h2 {
  font-family: 'Cinzel', serif;
  font-size: 44px;
  color: #0B1F3A;
  margin-bottom: 10px;
}

.strategy-header .line {
  width: 120px;
  height: 3px;
  background: #2e74cc;
  margin: 15px auto;
}

.strategy-header p {
  color: #444;
  line-height: 1.7;
}

/* GRID */
.strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 80px;
}

/* LEFT */
.strategy-left h3,
.strategy-right h3 {
  font-family: 'Cinzel', serif;
  color: #0B1F3A;
  margin-bottom: 25px;
}

/* FLOW BOX */
.flow-box {
  border: 1px solid #ddd;
  padding: 30px;
  border-radius: 10px;
}

.flow-main {
  text-align: center;
  font-weight: 600;
  color: #0B1F3A;
  margin-bottom: 30px;
}

.flow-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.flow-col {
  flex: 1;
  text-align: center;
}

.flow-col h4 {
  margin-bottom: 15px;
  color: #0B1F3A;
}

.flow-col span {
  display: block;
  border: 1px solid #ccc;
  padding: 8px;
  margin-bottom: 8px;
  border-radius: 6px;
  font-size: 13px;
}



/* RIGHT LIST */
.strategy-right ul {
  list-style: none;
  padding: 0;
}

.strategy-right li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #444;
}

.strategy-right li::before {
  content: "▢";
  position: absolute;
  left: 0;
  color: #2e74cc;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .strategy-grid {
    grid-template-columns: 1fr;
  }
}




.investment {
  padding: 100px 20px;
  background: linear-gradient(90deg, #487c83, #061d40);
}

/* HEADING */
.title {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 48px;
  margin-bottom: 70px;
  letter-spacing: 2px;
}
.investment h2 {
  color: #fff;
}
/* GRID */
.grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}

/* CENTER CARD */
.investment .center-card {
  grid-column: 2/3;
  text-align: center;
  padding: 15px 0;
  border-radius: 25px;
  box-shadow: 0 0 40px rgba(0, 194, 255, 0.15);
  font-family: var(--heading-font);
}
.center-card.aos-init.aos-animate p {
  color: #fff;
  opacity: 1;
}


.center-card h2 {
  font-size: 36px;
  margin: 0;
}
.socials a {
  color: #fff;
}

.center-card p {
  opacity: 0.7;
}

/* CARD */
.investment .card {
  padding: 25px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* GLOW BORDER */
.investment .card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(120deg, transparent, #082042, transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* HOVER */
.investment .card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 194, 255, 0.15);
}
.investment .card p {
  color: #fff;
}
/* TEXT */
.investment .card p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* RESPONSIVE */
@media(max-width:992px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .center-card {
    grid-column: 1/-1;
  }
}

@media(max-width:576px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.sector{
    padding:100px 20px;
}

/* HEADING */
.sector .title{
    text-align:center;
    font-family:'Cinzel', serif;
    font-size:48px;
    margin-bottom:20px;
}

.sector .subtitle{
    text-align:center;
    max-width:800px;
    margin:auto;
    opacity:0.7;
    margin-bottom:60px;
}

/* CHART BOX */
.chart-box{
    max-width:1000px;
    margin:0 auto 80px;
    padding:40px;
    border-radius:30px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border:1px solid rgba(255,255,255,0.1);
}

/* BAR CHART */
.chart{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    height:250px;
    margin-top:40px;
}

.bar{
    width:12%;
  background: linear-gradient(180deg,#11a5d6,#1a2b4b);
    border-radius:10px 10px 0 0;
    position:relative;
    transform:scaleY(0);
    transform-origin:bottom;
    animation:grow 1.5s forwards;
    text-align: center;
}

.bar span{
    position:absolute;
    top:-30px;
    font-size:12px;
    
}

@keyframes grow{
    to{ transform:scaleY(1); }
}

/* YEARS */
.years{
    display:flex;
    justify-content:space-between;
    margin-top:10px;
    font-size:14px;
    opacity:0.7;
    text-align: center;
}
.years span {
  text-align: center;
  display: block;
  width: 11%;
}

/* CARDS */
.sector .cards{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:30px;
    max-width:1100px;
    margin:auto;
}

/* CARD */
.sector .card{
    padding:30px;
    border-radius:20px;
    background: rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    transition:0.4s;
}

.sector .card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,194,255,0.15);
}

.sector .card h3{
    margin-bottom:15px;
    color:#082042;
      font-family: var(--heading-font);
}
.chart-box h3 {
  font-family: var(--heading-font);
}

.sector .card p{
    font-size:14px;
    opacity:0.8;
}

/* FOOT TEXT */
.bottom-text{
    text-align:center;
    max-width:900px;
    margin:80px auto 0;
    font-style:italic;
    opacity:0.8;
}

/* RESPONSIVE */
@media(max-width:992px){
    .cards{
        grid-template-columns:1fr;
    }
}

.strategy-section .center-card h2 {
  color: #fff;
}


/* Footer */.footer{
    background: linear-gradient(135deg, #020617, #0a192f);
    color:#fff;
    padding:70px 20px 30px;
}



/* GRID */
.footer-grid{
    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap:40px;
    margin-bottom:40px;
}

/* LOGO */
.logo{
    font-family:'Cinzel', serif;
    color:#00c2ff;
    margin-bottom:15px;
}

/* HEADINGS */
.footer-col h3{
    margin-bottom:15px;
    font-size:18px;
}

/* TEXT */
.footer-col p{
    font-size:14px;
    opacity:0.7;
}

/* LINKS */
.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:10px;
}

.footer-col ul li a{
    text-decoration:none;
    color:#ccc;
    font-size:14px;
    transition:0.3s;
}

.footer-col ul li a:hover{
    color:#00c2ff;
    padding-left:5px;
}

/* SOCIAL */
.socials a{
    display:inline-block;
    margin-right:10px;
    font-size:18px;
    transition:0.3s;
}

.socials a:hover{
    transform:translateY(-3px);
    color:#00c2ff;
}

/* BOTTOM */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    text-align:center;
    padding-top:20px;
    font-size:13px;
    opacity:0.6;
}

/* RESPONSIVE */
@media(max-width:992px){
    .footer-grid{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px){
    .footer-grid{
        grid-template-columns:1fr;
    }
}

.back-to-top {
  width: 40px;
  height: 40px;
  background: white;
  color: black;
  border-radius: 50%;
  margin: 30px auto 0;
  line-height: 40px;
  cursor: pointer;
}


/* HERO */
.page-hero {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #061e3f;
  background-blend-mode: multiply;
  background-color: rgba(11, 31, 58, 0.4);
}





/* GRID */
.grid {
  display: grid;
  gap: 40px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* CARD */
.card {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.card span {
  font-size: 13px;
  color: #888;
  display: block;
  margin-bottom: 10px;
}

.card p {
  color: #555;
  line-height: 1.7;
}

.contact-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-section {
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  background: #081E3E;
  color: #fff;
  padding: 14px;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
}

.contact-form button:hover {
  opacity: 0.9;
}
.contact-form .grid {
  margin: unset;
}

/* HERO */
.hero-inner {
  text-align: center;
  color: var(--navy-light);
}

.hero-inner p {
  margin-top: 10px;
  color: var(--navy-light);
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* CARD */
.team-card {
  gap: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
  transition: 0.3s;
}

.team-section .team-card {
  display: block;
}

/* IMAGE */
.team-img img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
}

/* TEXT */
.team-info h3 {
  margin: 0;
  font-size: 18px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
}

.team-info span {
  font-size: 13px;
  color: #444;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.team-info p {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}

/* BUTTON */
.view-btn {
  margin-top: 10px;
  background: transparent;
  border: 1px solid #0B1F3A;
  padding: 6px 14px;
  cursor: pointer;
  font-size: 12px;
}

/* HOVER EFFECT */
.team-card:hover {
  transform: translateY(-6px);
  border-color: #0B1F3A;
}

.section.contact-section {
  text-align: center;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* CARD */
.blog-card {
  transition: 0.3s;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

/* IMAGE */
.blog-img {
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s;
}

/* CONTENT */
.blog-content {
  padding-top: 15px;
}

.blog-date {
  font-size: 12px;
  color: #888;
  letter-spacing: 1px;
}

.blog-content h3 {
  font-size: 18px;
  margin: 10px 0;
  line-height: 1.4;
}

.blog-content p {
  font-size: 14px;
  color: #555;
}
.blog-section {
  background-size: cover;
  padding: 100px 0;
}

/* READ MORE */
.read-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  text-decoration: none;
  color: #0B1F3A;
}

/* HOVER EFFECT */
.blog-card:hover img {
  transform: scale(1.08);
}

.blog-card:hover h3 {
  color: #0B1F3A;
}

/* MOBILE */
@media(max-width:768px) {
  .about-grid {
  display: block;
}
.team-grid {
  display: block;
}
.team-section .team-card {
  display: block;
  margin-bottom: 20px;
}
.flow-row {
  display: block;
}
.investment .grid {
  width: 100% !important;
  display: block!important;
}
.investment .card {
  margin-bottom: 15px;
}
.investment .center-card{
   margin-bottom: 15px;
}
.sector .title {
  font-size: 24px;
}
.sector .cards {
  grid-template-columns: 1fr;
  margin: 0;
  gap: 0;
  padding: 10px;
}
  .team-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .team-grid.container {
    grid-template-columns: 1fr;
  }

  .brand-logo img {
    width: 120px;
  }

  .hero-section {
    height: 60vh;
  }

  .logo-border-box img {
    width: 60px;
  }

  .section h2 {
    font-size: 28px;
  }

  .navbar-nav.ms-auto.text-uppercase {
    background: #fff;
    padding: 10px;
  }

html,body {
		width: 100%;
		margin: 0px;
		padding: 0px;
		overflow-x: hidden;
	}
}