/* ==============================
   Modern Corporate Light Theme
   ============================== */

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  color: #002B5B;
}

a {
  color: #002B5B;
  text-decoration: none;
  transition: 0.3s ease;
}

a:hover {
  color: #00509E;
}

header.navbar-fixed-top {
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 10px 0;
}


/* ==========================================
   Banner Section - Elegant Style
   ========================================== */
#banner {
  position: relative;
  background: url('../img/logo/bg_group.jpg') no-repeat center center;
  background-size: cover;
  padding: 120px 0;
  /* add more vertical padding for elegance */
  color: #002B5B;
  /* navy-blue accents */
  text-align: center;
  overflow: hidden;
}

/* Optional subtle overlay for light effect */
#banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  /* light white overlay for elegance */
  z-index: 1;
}

/* Banner content wrapper */
#banner .block {
  position: relative;
  z-index: 2;
  /* make sure content is above overlay */
}

/* Banner logo */
#banner .block img {
  max-width: 400px;
  /* smaller than original for elegance */
  height: auto;
  margin-bottom: 25px;
}

/* Banner heading */
#banner h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: #002B5B;
  margin-bottom: 15px;
}

/* Banner subheading */
#banner h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #004080;
}

/* Banner button */
#banner .buttons .btn-learn {
  background-color: #002B5B;
  color: #ffffff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
}

#banner .buttons .btn-learn:hover {
  background-color: #004080;
  transform: translateY(-3px);
}


section {
  padding: 70px 0;
}

.title h2 {
  font-size: 32px;
  color: #002B5B;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.title h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #00509E;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-radius: 2px;
}

@media (min-width: 992px) {}

/* ==========================================
   Elegant Partner Card Redesign
   ========================================== */

#features {
  background: #f8fafc;
  padding: 80px 0;
}

.feature-block {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  padding: 30px 25px;
  margin: 20px auto;
  max-width: 340px;
  transition: all 0.35s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* Logo container */
.feature-block .icon-box {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f6fa;
  margin-bottom: 20px;
}

/* Partner logos */
.feature-block img {
  max-height: 100px;
  max-width: 90%;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.feature-block:hover img {
  transform: scale(1.05);
  filter: none;
}

/* Partner title */
.feature-block h4 {
  font-size: 16px;
  color: #002B5B;
  margin-top: 5px;
  letter-spacing: 0.4px;
  font-weight: 600;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .feature-block {
    max-width: 100%;
    padding: 25px 20px;
  }

  .feature-block .icon-box {
    height: 120px;
  }

  .feature-block img {
    max-height: 80px;
  }
}


/* ==========================================
   Speaker Section - Circular Photos
   ========================================== */

#blog .block {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  text-align: center;
  padding: 25px 20px;
}

#blog .block:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

/* Center title for Speakers section */
#blog .title {
  text-align: center;
  margin-bottom: 50px;
  /* spacing below the title */
}

#blog .title h2 {
  font-size: 32px;
  font-weight: 600;
  color: #002B5B;
  /* Adjust based on background */
  display: inline-block;
  /* centers nicely with text-align center */
}


/* ==========================================
   Speaker Section - Elegant Uniform Design
   ========================================== */

#blog {
  background: #f8fafc;
  padding: 80px 0;
}

/* Speaker card container */
#blog .block {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 375px;
  /* Ensures uniform height */
  margin: 0 15px 30px 15px;
}

#blog .block:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* Circular Speaker Image */
#blog .block img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 15px;
  border: 3px solid #e6edf5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

#blog .block:hover img {
  transform: scale(1.05);
  border-color: #002B5B;
  box-shadow: 0 4px 14px rgba(0, 43, 91, 0.25);
}

/* Speaker content */
#blog .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 10px;
}

#blog .content h4 {
  color: #002B5B;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.3;
  min-height: 45px;
  /* Keeps names aligned */
}

#blog .content span {
  color: #555;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
  min-height: 35px;
  /* Keeps titles aligned */
}

#blog .content p {
  color: #333;
  font-size: 14px;
  line-height: 1.4;
  margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  #blog .block {
    height: 380px;
  }
}

@media (max-width: 768px) {
  #blog .block {
    height: auto;
    padding: 20px 15px;
  }

  #blog .block img {
    width: 130px;
    height: 130px;
  }
}



/* ==========================================
   Awards Section - Dark Theme + Gradient Background + Centered Cards
   background: linear-gradient(135deg, #002B5B 0%, #004080 100%);
   ========================================== */

.award-card {
  border: none;
  overflow: hidden;
  border-radius: 12px;
  transition: transform .35s ease, box-shadow .35s ease;
  cursor: pointer;
  background: #fff;
}

.award-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, .12);
}

.award-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  padding: 10px;

}

.award-body {
  padding: 1rem 1.1rem;
}

.award-super {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #8a2b2b;
  /* accent color */
  margin-bottom: .35rem;
}

.award-title {
  margin: 0;
  font-weight: 700;
  color: #222;
}

.award-sub {
  margin: 0;
  color: #0082ff;
}

/* responsive tweaks */
@media (max-width: 767px) {
  .award-img {
    height: 220px;
  }
}

/* Footer */
/* Footer - Dark but Different Color */
footer {
  background-color: #1A2A4A;
  /* Dark slate-blue, different from main sections */
  color: #ffffff;
  padding: 50px 0 20px;
  text-align: center;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  /* subtle separation */
}

footer img {
  height: 50px;
}

footer a {
  color: #ffffff;
  margin: 0 10px;
  font-size: 20px;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #00A6FB;
}

footer p {
  margin-top: 15px;
  font-size: 14px;
  color: #dce6f2;
}








/* ==========================================
   India CFO Icons - Seamless Continuous Reel
   ========================================== */

#gil-sec {
  background: #002B5B;
  color: #fff;
  overflow: hidden;
  padding: 60px 0;
}

.gil-track {
  display: flex;
  gap: 10px;
  /* Space between icons */
  animation: scrollIcons 25s linear infinite;
  align-items: center;
}

/* Each icon block */
.gil-track .text-center {
  flex: 0 0 auto;
}

/* Icon style */
.gil-track img {
  width: 450px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.gil-track img:hover {
  transform: scale(1.1);
}

/* Animation for seamless scroll */
@keyframes scrollIcons {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
    /* Moves half the track (since we duplicated) */
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .gil-track img {
    width: 140px;
  }
}

@media (max-width: 992px) {
  .gil-track img {
    width: 120px;
  }
}

@media (max-width: 768px) {
  .gil-track img {
    width: 100px;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .gil-track img {
    width: 80px;
    gap: 30px;
  }
}

#cert1 img {
  padding: 10px;
}

/* Style for the container to enable alignment */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;padding: 10px 0;
}

/* Optional: Style the new button slightly if needed */
/* Existing Styles */
.com-btn {
  background-color: #032074;
  color: #ffffff; /* Sets text color to white for the default state */
  text-decoration: none; /* Removes the underline that might appear */
  border: none; /* Explicitly removes any default border */
}

/* Hover State - Existing */
.com-btn:hover {
  background-color: #3068ca;
  color: #ffffff;
}

/* 🔥 FIX 1: Visited State (Text Color) 🔥 */
/* Prevents the browser from changing the text color after the link has been clicked (visited) */
.com-btn:visited {
  color: #ffffff; 
}

/* 🔥 FIX 2: Focus/Active States (Border and Color) 🔥 */
/* Prevents the border/outline from appearing when the button is clicked or focused via keyboard navigation */
.com-btn:focus,
.com-btn:active {
  color: #ffffff; /* Ensures text stays white */
  outline: none !important; /* Removes the default focus border/outline (use !important if needed to override framework) */
  box-shadow: none !important; /* Removes any default shadow that might look like a border */
  border: none !important; /* Ensures no border appears when active */
}

/* Optional: If the new header-content div is causing layout issues, 
   you might need to ensure the .container isn't already a flex container. 
   This setup assumes a standard Bootstrap/container setup. */

/* ==========================================
   India Finance Icons - Seamless Continuous Reel
   ========================================== */

#cert1-sec {
  background: #f8fafc;
  overflow: hidden;
  padding: 60px 0;
}

.cert1-track {
  display: flex;
  gap: 60px;
  animation: scrollFinanceIcons 25s linear infinite;
  align-items: center;
}

.cert1-track div {
  flex: 0 0 auto;
}

.cert1-track img {
  width: 450px;
  /* Icon size */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.cert1-track img:hover {
  transform: scale(1.1);
}

/* Animation */
@keyframes scrollFinanceIcons {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .cert1-track img {
    width: 140px;
  }
}

@media (max-width: 992px) {
  .cert1-track img {
    width: 120px;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .cert1-track img {
    width: 100px;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .cert1-track img {
    width: 80px;
    gap: 20px;
  }
}



/* ==========================================
   India CFO Icons - Seamless Continuous Reel + Hover Pause
   ========================================== */
.gil-track {
  display: flex;
  gap: 10px;
  animation: scrollIcons 25s linear infinite;
  align-items: center;
}

.gil-track:hover {
  animation-play-state: paused;
  /* Pause on hover */
}

@keyframes scrollIcons {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================
   India Finance Icons - Seamless Continuous Reel + Hover Pause
   ========================================== */
.cert1-track {
  display: flex;
  gap: 10px;
  animation: scrollFinanceIcons 20s linear infinite;
  align-items: center;
}

.cert1-track:hover {
  animation-play-state: paused;
  /* Pause on hover */
}

@keyframes scrollFinanceIcons {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Optional: smooth transition when paused/resumed */
.gil-track,
.cert1-track {
  animation-timing-function: linear;
}



/* Center titles for Icon sections */
#gil-sec .title,
#cert1-sec .title {
  text-align: center;
  margin-bottom: 10px;
  /* spacing below the title */
}

#gil-sec .title h2,
#cert1-sec .title h2 {
  font-size: 32px;
  font-weight: 600;
  color: #002B5B;
  /* Or white if on dark background */
  display: inline-block;
  /* centers nicely with text-align center */
}


.owl-prev {
  font-size: 50px;
  top: 50%;
  left: -50px;
  position: absolute;

}

.owl-next {
  font-size: 50px;
  top: 50%;
  right: -50px;
  position: absolute;
}