@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f7f9fc;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}


.petronetAbout {
    padding: 50px 0;
}

.petronetAboutLeft h2 {
    position: relative;
    font-size: 38px;
    font-weight: 700;
    padding: 10px 0 22px;
}

/* Main underline */
.petronetAboutLeft h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
   background: linear-gradient(90deg, #010813, #657285);
    animation: lineGrow 1.2s ease forwards;
}

/* Accent dot */
.petronetAboutLeft h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 10px;
    height: 10px;
    background: #1e3b65;
    border-radius: 50%;
    animation: dotMove 1.2s ease forwards;
}

@keyframes lineGrow {
    from { width: 0; }
    to { width: 110px; }
}

@keyframes dotMove {
    from { left: 0; opacity: 0; }
    to { left: 110px; opacity: 1; }
}

.petronetAboutLeft p {
    color: #333;
    font-size: 15px;
    text-align: justify;
    line-height: 27px;
    max-width: 500px;
}

.petronetAboutRight img {
    height: 370px;
    border-radius: 10px;
}



.petronetAboutRight2 {
    max-width: 500px;
}

.petronetAboutRight2 img {
    height: 370px;
    border-radius: 10px;
}

.petronetAboutLeft2 h2 {
    position: relative;
    font-size: 38px;
    font-weight: 700;
    padding: 10px 0 22px;
}

/* Gradient underline */
.petronetAboutLeft2 h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #010813, #657285);
    animation: lineGrow2 1.2s ease forwards;
}

/* Moving accent dot */
.petronetAboutLeft2 h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 10px;
    height: 10px;
    background: #1e3b65;
    border-radius: 50%;
    animation: dotMove2 1.2s ease forwards;
}

@keyframes lineGrow2 {
    from { width: 0; }
    to { width: 110px; }
}

@keyframes dotMove2 {
    from { left: 0; opacity: 0; }
    to { left: 110px; opacity: 1; }
}

.petronetAboutLeft2 p {
    color: #333;
    font-size: 15px;
    text-align: justify;
    line-height: 27px;
    max-width: 500px;
}
.petronetAboutLeft2 ul{
    padding: 0 !important;
}
.petronetAboutLeft2 ul li {
    color: #333;
    font-size: 15px;
    text-align: justify;
    line-height: 27px;
    max-width: 500px;
    padding: 5px 0;
    list-style: none;
    display: flex;          
  align-items: flex-start; 
  gap: 10px; 
  text-align: justify;
}             
.petronetAboutLeft ul li i{
    color: #1e3b65 !important;
    margin-right: 5px;
      margin-top: 7px !important;

}
.petronetAboutLeft2 ul li i{
    color: #1e3b65 !important;
    margin-right: 5px;
    margin-top: 7px !important;
}
.petronetAboutLeft ul{
    padding: 0 !important;
}

.petronetAboutLeft ul li {
    color: #333;
    font-size: 15px;
    text-align: justify;
    line-height: 27px;
    max-width: 500px;
    padding: 5px 0;
    max-width: 500px;
     list-style: none;
      list-style: none;
    display: flex;          
  align-items: flex-start; 
  gap: 10px; 
  text-align: justify;
}


/* ===============================
   PETRONET NHB SECTION
================================ */

.petronetNHB {
  padding: 80px 0;
  background: #f4f6fa;
}

/* MAIN CARD */
.petronetNHBInner {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* SECTION TAG */
.section-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.2px;
  font-weight: 600;
  color: #1e3b65;
  margin-bottom: 15px;
}

/* LEFT IMAGE */
.petronetNHBInnerLeft {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.petronetNHBInnerLeft img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.petronetNHBInnerLeft:hover img {
  transform: scale(1.1);
}

/* RIGHT CONTENT */
.petronetNHBInnerRight {
  padding-left: 30px;
}

/* HEADING */
.petronetNHBInnerRight h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0b2c5f;
  margin-bottom: 15px;
  position: relative;
}

.petronetNHBInnerRight h3::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #1e3b65;
  display: block;
  margin-top: 10px;
  border-radius: 6px;
}

/* LEAD TEXT */
.lead-text {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* STATS */
.info-stats {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.stat-box {
  flex: 1;
  min-width: 140px;
  background: #f8f9fd;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.stat-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0b2c5f;
  margin-bottom: 5px;
}

.stat-box span {
  font-size: 13px;
  color: #666;
}

/* PARAGRAPH */
.petronetNHBInnerRight p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .petronetNHBInner {
    padding: 25px;
  }

  .petronetNHBInnerRight {
    padding-left: 0;
    margin-top: 25px;
  }

  .petronetNHBInnerRight h3 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .info-stats {
    flex-direction: column;
  }

  .stat-box {
    width: 100%;
  }
}






.agenda-section {
  background: #ddd;
  padding: 60px 20px;
}
.agenda-section h2{
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 20px;
}
.agenda-row {
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.agenda-time {
  min-width: 140px;
  font-weight: 600;
  color: #0f4c81;
  padding-top: 10px;
}

.agenda-title {
  color: #333;
  font-size: 14px;
}





.site-footer {
background: linear-gradient(135deg, #1e3b65, #425875, #1e3b65);
    padding: 50px 15px 30px;
    color: #ffffff;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.footer-subtitle {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.footer-address {
    font-size: 14px;
    line-height: 1.7;
    color: #dcdcdc;
    margin-bottom: 20px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #00c6ff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links .divider {
    margin: 0 10px;
    color: #888;
}

.footer-copy {
    font-size: 13px;
    color: #bdbdbd;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}



@media screen and (max-width: 500px){
    .petronetAboutLeft h2 {
    font-size: 24px;
}
.petronetAbout {
    padding: 18px 0;
}
.petronetAboutLeft p {
    font-size: 14px;
    line-height: 22px;
}
.petronetAboutRight img {
    height: 300px;
}
.petronetAboutRight2 img {
    height: 300px;
}
.petronetAboutLeft2 h2 {
    font-size: 24px;
}
.petronetAboutLeft2 ul li {
    font-size: 13px;
    line-height: 21px;
}
.petronetAboutLeft ul li {
  font-size: 13px;
    line-height: 21px;
}
.agenda-section {
    background: #ddd;
    padding: 30px 10px;
}
.agenda-section h2 {
    font-size: 24px;
    padding-bottom: 15px;
}
.petronetNHBInnerLeft img {
    height: 290px;
}
.petronetNHBInnerRight h3 {
    font-size: 18px;
}
.petronetNHBInnerRight p {
    font-size: 14px;
    line-height: 22px;
}
.pdf-btn {
    padding: 10px 10px !important;
   font-size: 13px !important;
}
.petronetNHB {
    padding: 30px 0;
}
}



.pdf-btn {
  padding: 12px 22px !important;
  font-weight: 600;
  border-radius: 5px;
  background: #1e3b65 !important;
  color: #fff !important;
  animation: pulse 2s infinite;
}


@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #1e3b65;
  }
  70% {
    box-shadow: 0 0 0 15px rgba(13,110,253,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(13,110,253,0);
  }
}



.logo-header {
  background: #ffffff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.logo-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between; /* left & right */
}

.logo img {
    max-width: 150px; /* adjust if needed */
}

/* button styling optional */
.pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 14px;
}



/* Mobile */
@media (max-width: 768px) {
  .logo img {
    max-height: 42px;
  }
}



/* Font Awesome UL List */
.fa-ul-list {
  list-style: none; /* remove default bullets */
  padding-left: 0;
  margin-top: 20px;
}

.fa-ul-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 15.5px;
  line-height: 1.8;
  color: #555;
}

.fa-ul-list li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #1e3b65 !important;
  font-size: 18px;
}
