@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Global Font Style */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
}
a {
  text-decoration: none;
}
       /* Navbar Styling */
    .navbar {
        background-color: #167d86;
      }
      .navbar-brand, .nav-link {
        color: #FFF !important;
        position: relative;
        text-decoration: none;
        padding-bottom: 5px;
      }
      .nav-link::before {
        content: '';
        position: absolute;
        width: 0;
        height: 3px;
        bottom: 0;
        left: 0;
        background-color: red;
        transition: width 0.3s ease;
      }
      .nav-link:hover::before {
        width: 100%;
      }
      .dropdown-menu {
        background-color: #167d86;
      }
      .dropdown-item {
        color: #167d86 !important;
      }
      .dropdown-item:hover {
        background-color: #167d86 !important;
        color: #FFF !important;
        font-weight: 500;
      }

      /* Hero Section Styling */
.hero-section {
    background: url('Crude oil i.jpg') no-repeat center center / cover;
    height: 100vh;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    position: relative;
  }
  
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /background-color: rgba(22, 125, 134, 0.7); /* Dark overlay */
  }
  
  .hero-content {
    z-index: 1;
    max-width: 700px;
  }
  
  h1 {
    font-size: 48px;
    font-weight: 700;
  }
  
  .hpcl {
    font-size: 18px;
    margin-top: 20px;
    color: #FFF !important;
  }
  
  .cta-btn {
    background-color: #FFF;
    color: #167d86;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    margin-top: 30px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .cta-btn:hover {
    background-color: #167d86;
    color: #FFF;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    h1 {
      font-size: 36px;
    }
    p {
      font-size: 16px;
    }
    .cta-btn {
      font-size: 16px;
      padding: 10px 24px;
    }
  }
/* About Section Styling */
.about-us {
  background-color: #167d86;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.about-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.about-header p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.8;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.about-card {
  background: #ffffff;
  color: #167d86;
  padding: 30px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.about-card:hover {
  transform: scale(1.05);
}

.about-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.about-card p {
  font-size: 1rem;
  line-height: 1.6;
}

.expertise {
  margin-top: 40px;
  font-size: 1.2rem;
  font-weight: bold;
  opacity: 0.9;
}


  
  /* Responsive Design */
  @media (max-width: 768px) {
    h2 {
      font-size: 36px;
    }
    h3 {
      font-size: 24px;
    }
    p {
      font-size: 15px;
    }
  }
/* Services Section */
.services-section {
    background-color: #FFFFFF;
    color: #333;
    padding: 80px 0;
  }
  
  .container {
    text-align: center;
  }
  
  /* Section Heading */
  h2 {
    font-size: 42px;
    font-weight: 700;
    color: #167d86;
  }
  
  .intro-text {
    font-size: 18px;
    color: #167d86;
    margin-bottom: 40px;
  }
  
  /* Card Design */
  .service-card {
    background-color: #FFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
  }
  
  /* Card Title and Text */
  .card-title {
    font-size: 24px;
    color: #167d86;
    font-weight: 600;
  }
  
  .card-text {
    font-size: 16px;
    color: #333;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    h2 {
      font-size: 36px;
    }
    .card-title {
      font-size: 22px;
    }
    .card-text {
      font-size: 14px;
    }
  }
/* Market Insights Section */
.market-insights-section {
    background-color: #f8f9fa;
    padding: 80px 0;
  }
  
  h2 {
    font-size: 42px;
    font-weight: 700;
    color: #167d86;
    text-align: center;
  }
  
  .intro-text {
    font-size: 18px;
    color: #167d86;
    text-align: center;
    margin-bottom: 40px;
  }
  
  /* Market Card Styling */
  .market-card {
    background-color: #FFF;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
    text-align: center;
  }
  
  .card-title {
    font-size: 24px;
    color: #167d86;
    font-weight: 600;
  }
  
  .card-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
  }
  .drpbtn{
    background-color:#167d86 !important;
    font-weight: 500;
  }
  /* Button Styling */
  .btn-primary {
    background-color: #167d86;
    border-color: #167d86;
    color: #FFF;
  }
  
  .btn-primary:hover {
    background-color: #333;
    border-color: #333;
  }
  
  /* Carousel Controls */
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: #167d86;
    border-radius: 50%;
    width: 50px;
    height: 50px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    h2 {
      font-size: 36px;
    }
    .card-title {
      font-size: 22px;
    }
    .card-text {
      font-size: 14px;
    }
  }
        /* Footer Section */
.footer-section {
    background-color: #167d86;
    color: #FFF;
    padding: 60px 0 20px;
  }
  
  .footer-section h5 {
    color: #FFF;
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .footer-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #FFF;
  }
  
  .footer-section a {
    color: #FFF;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-section a:hover {
    color: #333;
  }
  
  /* Footer Links */
  .footer-links {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    font-size: 16px;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-section h5 {
      font-size: 20px;
    }
    .footer-section p,
    .footer-links a {
      font-size: 14px;
    }
  }
/* Blog Section */
.blog-section {
    background-color: #FFFFFF;
    padding: 80px 0;
  }
  
  h2 {
    font-size: 42px;
    font-weight: 700;
    color: #167d86;
    text-align: center;
  }
  
  .intro-text {
    font-size: 18px;
    color: #167d86;
    text-align: center;
    margin-bottom: 40px;
  }
  
  /* Blog Card Styling */
  .blog-card {
    background-color: #FFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
  }
  
  /* Card Title and Text */
  .card-title {
    font-size: 24px;
    color: #167d86;
    font-weight: 600;
  }
  
  .card-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
  }
  
  /* Read More Button */
  .btn-primary {
    background-color: #167d86 !important;
    border-color: #167d86;
    color: #FFF;
  }
  
 
  
  /* Responsive Design */
  @media (max-width: 768px) {
    h2 {
      font-size: 36px;
    }
    .card-title {
      font-size: 22px;
    }
    .card-text {
      font-size: 14px;
    }
  }
/**************************************************************/
    