* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Pontano Sans', sans-serif;
    
    }

    .first-header {
      height: 24px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      background-color: #2E2E2E;
      font-size: 12px;
    }

    .main-header {
      background-color: #fff;
      padding: 12px;
      border-bottom: 1px solid #ddd;
    }

    .header-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .logo-social {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .logo {
      height: 45px;
    }

    .nav-links {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .nav-links a {
      text-decoration: none;
      color: #000;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: #8d6d2a;
    }

    .header-buttons {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 10px;
    }

    .login-btn,
    .subscribe-btn {
      padding: 5px 15px;
      border: none;
      border-radius: 15px;
      font-weight: bold;
      cursor: pointer;
      color: white;
    }

    .login-btn {
      background-color: #8d6d2a;
    }

    .subscribe-btn {
      background-color: #000;
    }

    .search-bar-container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      padding-top: 14px;
    }
    .search-bar-bg {
  background-color: #2e2e2e;
  height: 24px;
  border-radius: 20px;
  margin-bottom: 10px;
  width: 70%;
}

    .search-box {
      position: relative;
      width: 170px;
    }

    .search-box input {
      width: 100%;
      height: 25px;
      padding: 5px 15px;
      padding-right: 35px;
      border: 1px solid #ccc;
      border-radius: 15px;
      outline: none;
    }

    .search-icon {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: #555;
      font-size: 16px;
      cursor: pointer;
    }

    .social-icons {
      display: flex;
      align-items: center;
      gap: 10px;
      
    }

    .social-icons i {
      color: #8d6d2a;
      font-size: 18px;
      cursor: pointer;
    }

    .hamburger {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: #8d6d2a;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }

      .nav-links,
      .header-buttons,
      .search-bar-container {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 10px;
      }

      .nav-links a {
        padding: 8px 0;
      }

      .mobile-active .nav-links,
      .mobile-active .header-buttons,
      .mobile-active .search-bar-container {
        display: flex;
        gap: 20px;
      }

      .search-box {
        width: 100%;
        margin-top: 10px;
      }

      .search-box input {
        width: 100%;
      }

      .social-icon {
        margin-bottom: -20px;
      }
      .search-bar-bg {
        width: 100%;
      }
    }
    .container2 {
      padding: 12px;
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      background-color: white;
      max-width: 1300px;
      margin: 20px auto;
    }

    .left-card {
      flex: 1;
      max-width: 250px;
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      text-align: center;
    }

    .left-card img {
      max-width: 100%;
      height: auto;
    }

    .main-card {
      flex: 2;
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid black;
      min-width: 280px;
    }

    .main-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    .main-card-content {
      padding: 20px;
    }

    .main-card h2 {
      font-size: 20px;
      margin-bottom: 10px;
    }

    .main-card p {
      font-size: 15px;
      line-height: 1.6;
      color: #333;
    }

    .date {
      color: #AE8B4C;
      font-size: 14px;
      margin-top: 12px;
      font-weight: bold;
    }

    .author {
      font-size: 14px;
      color: #888;
    }

    .latest-section {
      flex: 1;
      min-width: 280px;
    }

    .latest-section h3 {
      font-size: 20px;
      margin-bottom: 15px;
    }

    .latest-item {
      background: #fff;
      border: 1px solid black;
      padding: 12px 15px;
      border-radius: 10px;
      margin-bottom: 15px;
      transition: all 0.3s ease;
    }

    .latest-item:hover {
      border-color: #00AEEF;
    }

    .latest-item p {
      font-size: 14px;
    }

    .latest-item .date {
      color: #AE8B4C;
      font-weight: bold;
      margin-top: 6px;
    }

    .latest-item .author {
      font-size: 13px;
      color: #666;
    }

    .container3 {
      display: flex;
      flex-wrap: wrap;
      max-width: 1300px;
      margin: 20px auto;
      padding: 0 15px;
      background-color: white;
    }

    .sidebar {
      width: 25%;
      padding-right: 20px;
    }

    .sidebar img {
      width: 100%;
      margin-bottom: 10px;
    }

    .sidebar h4 {
      font-size: 16px;
      margin-bottom: 5px;
    }

    .sidebar p {
      font-size: 14px;
      margin-bottom: 10px;
      color: #333;
    }

    .main-content {
      width: 75%;
    }

    .banner {
      width: 100%;
      margin-bottom: 20px;
    }

    .banner img {
      width: 100%;
      height: auto;
      border: 1px solid #ccc;
    }

    h2 {
      margin-bottom: 20px;
      font-size: 24px;
      border-bottom: 2px solid #333;
      padding-bottom: 5px;
    }

    .cards {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .card {
      flex: 1;
      min-width: 219px;
      height: 350px;
      background: #D9D9D9;
      padding: 15px;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      border: 1px solid #ddd;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .card-body {
      flex: 1;
    }

    .card p {
      font-size: 14px;
      margin-bottom: 10px;
      color: #555;
    }

    .card small {
      font-size: 12px;
      color: #8d6d2a;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .container2 {
        flex-direction: column;
        align-items: center;
      }

      .container3 {
        flex-direction: column;
      }

      .sidebar, .main-content {
        width: 100%;
        padding-right: 0;
      }
    }

    @media (max-width: 768px) {
      .main-card h2 {
        font-size: 18px;
      }

      .main-card p,
      .latest-item p {
        font-size: 14px;
      }

      .cards {
        flex-direction: column;
      }

      .card {
        width: 100%;
        height: auto;
      }
    }

    @media (max-width: 480px) {
      .main-card-content {
        padding: 15px;
      }

      .latest-section h3 {
        font-size: 18px;
      }

      .card {
        padding: 12px;
      }

      .main-card h2 {
        font-size: 16px;
      }

      .main-card p {
        font-size: 13px;
      }

      .date,
      .author {
        font-size: 12px;
      }
    }
    .container3 {
      display: flex;
      max-width: 1300px;
      margin: 20px auto;
      padding: 0 15px;
      background-color: white;
     
    }

    .sidebar {
      width: 25%;
    }

    .sidebar img {
      width: 100%;
      margin-bottom: 10px;
    }

    .main-content {
      width: 75%;
    }

    .banner img {
      width: 100%;
      height: auto;
      border: 1px solid #ccc;
      margin-bottom: 20px;
    }

    h2 {
      margin-bottom: 15px;
      font-size: 24px;
      border-bottom: 2px solid #333;
      padding-bottom: 5px;
    }

    .cards {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    /* .card {
      flex: 1 1 calc(20% - 20px);
      background: #D9D9D9;
      padding: 15px;
      border-radius: 5px;
      border: 1px solid #ddd;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-width: 100px;
      height: 280px;
    } */

    .card p {
      font-size: 14px;
      color: #555;
      margin-bottom: 10px;
    }

    .card small {
      font-size: 12px;
      color: #8d6d2a;
    }

    .carousel-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      margin-top: 30px;
    }

    .carousel {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      gap: 10px;
      width: 100%;
      padding-bottom: 10px;
    }

    .carousel::-webkit-scrollbar {
      display: none;
    }

    .team-card {
      min-width: 240px;
      background: white;
      padding: 10px;
      border-radius: 6px;
      box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
      text-align: center;
      flex-shrink: 0;
    }

    .team-card img {
      width: 100%;
      border-radius: 4px;
      margin-bottom: 10px;
    }

    .team-card p {
      font-size: 14px;
      color: #444;
    }

    .team-card small {
      font-size: 12px;
      color: #8d6d2a;
    }

    .nav {
      background: #333;
      color: white;
      border: none;
      padding: 10px 15px;
      font-size: 20px;
      cursor: pointer;
      border-radius: 4px;
    }

    .nav:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }

    /* Tablet View */
    @media (max-width: 991px) {
      .container3 {
        flex-direction: column;
      }

      .sidebar,
      .main-content {
        width: 100%;
      }

      .card {
        flex: 1 1 100%;
      }
    }

    /* Mobile View */
    @media (max-width: 600px) {
      .carousel-wrapper {
        flex-direction: column;
      }

      .nav {
        margin: 5px 0;
        width: 100%;
      }

      .card {
        height: auto;
        padding: 10px;
      }
    }
    .container4 {
      background-color: black;
    }

    .sponsored-section {
      display: flex;
      gap: 20px;
      padding: 30px;
      flex-wrap: wrap;
    }

    .left-ad {
      width: 250px;
      background: #2b2b2b;
      padding: 20px;
      border-radius: 8px;
      font-size: 14px;
      height:673px;
      flex-shrink: 0;
    }

    .logo-img {
      width: 100%;
      height: auto;
      margin-bottom: 15px;
    }

    .left-ad a {
      color: #f9a825;
      text-decoration: none;
      display: inline-block;
      margin-top: 10px;
    }

    .content-area {
      flex: 1;
      max-width: calc(100% - 280px);
    }

    .content-area h2 {
      margin-bottom: 20px;
      color: white;
    }

    .top-post {
      display: flex;
      gap: 20px;
      background: #2c2c2c;
      padding: 20px;
      border-radius: 8px;
      margin-bottom: 25px;
   
    }

    .top-post img {
     
      border-radius: 6px;
    }

    .tag {
    
      padding: 4px 8px;
      font-size: 12px;
      border-radius: 4px;
      display: inline-block;
      margin-bottom: 10px;
      color: #f9a825;
    }

    .post-text {
      font-size: 15px;
      margin-bottom: 10px;
      color: white;
    }

    .btn-more {
      background: #f9a825;
      color: #000;
      padding: 6px 12px;
      border: none;
      border-radius: 20px;
      cursor: pointer;
      font-weight: bold;
      font-size: 13px;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 20px;
    }

    .card {
      background: #D9D9D9;
      padding: 15px;
      border-radius: 5px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .card img {
      width: 100%;
      height: 140px;
      object-fit: cover;
      border-radius: 5px;
      margin-bottom: 10px;
    }

    .card h4 {
      font-size: 14px;
      margin-bottom: 10px;
      color: #000;
      flex-grow: 1;
    }

    .container6 {
      background-color: white;
      padding: 20px;
    }

    /* 🔁 Responsive Breakpoints */
    @media (max-width: 1024px) {
      .sponsored-section {
        flex-direction: column;
      }

      .left-ad {
        width: 100%;
        height: auto;
      }

      .content-area {
        max-width: 100%;
      }

      .top-post {
        flex-direction: column;
      }

      .top-post img {
        max-width: 100%;
        height: auto;
      }
    }

    @media (max-width: 768px) {
      .card-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      }

      .btn-more {
        font-size: 12px;
        padding: 5px 10px;
      }
    }

    @media (max-width: 480px) {
      .card-grid {
        grid-template-columns: 1fr;
      }

      .left-ad h3 {
        font-size: 16px;
      }

      .post-text {
        font-size: 14px;
      }

      .card h4 {
        font-size: 13px;
      }
    }
    .container6 {
        background-color: white;
      max-width: 1300px;
      margin: 0 auto;
      display: flex;
      gap: 20px;
    }

    .container5 {
      display: flex;
      gap: 20px;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .middle img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      margin-bottom: 20px;
    }

    .left-section, .right-section {
      background-color: #fff;
      border-radius: 10px;
      padding: 10px;
    }

    .left-section {
      flex: 0.45;
      min-width: 300px;
    }

    .right-section {
      flex: 0.55;
      min-width: 300px;
    }

    /* Headings */
    .left-heading {
      text-align: center;
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .right-heading {
      text-align: right;
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .left-box {
      background: white;
      border-radius: 10px;
      padding: 15px;
      margin-bottom: 15px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.06);
    }

    .left-box img {
      width: 100%;
      border-radius: 10px;
      margin-bottom: 10px;
      height: 160px;
      object-fit: cover;
    }

    .left-box p {
      font-size: 14px;
      margin-bottom: 5px;
    }

    .left-box span {
      font-size: 12px;
      color: gray;
    }

    .right-box {
      background: white;
      border-radius: 12px;
      padding: 15px 18px;
      margin-bottom: 15px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    }

    .right-box h4 {
      font-size: 14.5px;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .right-box span {
      font-size: 12px;
      color: #999;
    }

    .more-btn {
      display: inline-block;
      margin-top: 10px;
      padding: 8px 14px;
      background-color: #f4f4f4;
      border: 1px solid #ddd;
      border-radius: 20px;
      font-size: 13px;
      color: #333;
      text-align: center;
      text-decoration: none;
      float: right;
      cursor: pointer;
      transition: all 0.3s;
    }

    .more-btn:hover {
      background-color: #ddd;
    }

    /* Tablet View */
    @media (max-width: 991px) {
      .container5 {
        flex-direction: column;
      }

      .middle {
        display: none;
      }

      .left-section,
      .right-section {
        width: 100%;
      }

      .right-heading {
        text-align: center;
      }
    }

    /* Mobile View */
    @media (max-width: 600px) {
      .left-box img {
        height: 140px;
      }

      .right-box h4 {
        font-size: 13.5px;
      }

      .more-btn {
        float: none;
        width: 100%;
        text-align: center;
      }

      .left-heading {
        text-align: center;
      }
    }
    .container8 {
      max-width: 980px;
    
      background-color: #fff;
      padding: 30px 25px 60px;
      border-radius: 10px;
      margin-left: 20%;
    }

    .banner img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 30px;
    }

    h2 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    /* Precious Metals */
    .precious-metals {
      
      border-radius: 8px;
      display: flex;
      overflow: hidden;
      margin-bottom: 40px;
    }

    .precious-metals img {
      width: 250px;
      height: auto;
      object-fit: cover;
    }

    .precious-content {
    
      padding: 18px 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .sponsored-tag {
      display: inline-block;
      font-size: 11px;
      color: #5a5a5a;
      border: 1px solid #5a5a5a;
      border-radius: 15px;
      padding: 2px 8px;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .precious-content p {
      font-size: 14px;
      font-weight: 600;
      line-height: 1.4;
      margin-bottom: 20px;
    }

    .more-btn {
      align-self: flex-end;
      background: #b79548;
      color: #2b1900;
      font-weight: 700;
      padding: 6px 16px;
      font-size: 13px;
      border: none;
      border-radius: 4px;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .more-btn svg {
      width: 14px;
      height: 14px;
      fill: #2b1900;
    }

    /* World News */
    .world-news {
     
      padding: 18px 20px;
    
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 40px;
      position: relative;
    }

    .world-news small {
      font-size: 11.5px;
      font-weight: 500;
      color: #976f38;
      display: block;
      margin-top: 20px;
    }

    .world-news .author {
      font-size: 12px;
      color: #572d0f;
    }

    .world-news .more-btn {
      position: absolute;
      bottom: 14px;
      right: 20px;
    }

    /* Split Section */
    .split-section {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .corporate-news {
      flex: 1 1 45%;
    }

    .corporate-news .card {
      background-color: #d9d9d9;
      border-radius: 8px;
      padding: 16px 20px;
      margin-bottom: 12px;
      font-size: 14px;
      font-weight: 600;
    }

    .corporate-news small {
      font-size: 11px;
      color: #976f38;
    }

    .corporate-news .author {
      font-size: 11px;
      color: #572d0f;
    }

    .magazine {
      flex: 1 1 45%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .magazine img {
      width: 100%;
      height: 286px;
      object-fit: cover;
      border-radius: 8px;
    }

   @media (max-width: 768px) {
      .container8 {
        padding: 20px 15px;
        margin: 0 10px;
      }

      .precious-metals {
        flex-direction: column;
      }

      .precious-metals img {
        width: 100%;
        height: auto;
      }

      .split-section {
        flex-direction: column;
        gap: 20px;
      }

      .magazine {
        grid-template-columns: 1fr;
      }

      .world-news .more-btn {
        position: relative;
        margin-top: 10px;
        right: 0;
        bottom: 0;
        align-self: flex-start;
      }
    }
    .section-wrapper {
      background: #f5f5f5;
      border-radius: 10px;
      padding: 30px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      flex-wrap: wrap;
    }

    .column {
      flex: 1;
      min-width: 250px;
    }

    .column h3 {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .column ul {
      list-style: none;
    }

    .column li {
      margin-bottom: 18px;
      padding-bottom: 6px;
      border-bottom: 1px solid #e0c79a;
      line-height: 1.4;
      font-size: 14px;
      color: #000;
    }

    .column li:last-child {
      border-bottom: none;
    }

    .highlight-box {
      
      padding: 5px;
      margin: 10px 0;
    }

    /* Tablet view */
    @media (max-width: 768px) {
      .section-wrapper {
        flex-direction: column;
      }
    }

    /* Phone view */
    @media (max-width: 480px) {
      .section-wrapper {
        padding: 20px;
      }

      .column h3 {
        font-size: 16px;
      }

      .column li {
        font-size: 13px;
      }
    }
    footer{
  background-color: black;
 ;

}
.footer-bottom{
  text-align: center;
}
.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 70px;
  max-width: 100%;
}

/* LINKS */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
  padding: 0 10px;
}

.footer-links a {
  color:white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #ac8a4a;
}

/* COPYRIGHT */
.footer-bottom {
  font-size: 14px;
  color: white;
  margin-bottom: 30px;
}

/* COMPANY LOGOS */
.company-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px 10px 0;
}

.company-logos img {
  width: 120px;
  max-width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
  .footer-links {
    gap: 15px;
    font-size: 0.9rem;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-logo img {
    height: 60px;
  }

  .footer-bottom {
    font-size: 13px;
  }

  .company-logos img {
    width: 100px;
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .company-logos {
    gap: 15px;
  }

  .company-logos img {
   
    padding: 6px;
  }
}

    .open-btn {
      padding: 15px 30px;
      font-size: 18px;
      background: #ac8a4a;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
    
    }

    /* Modal Styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.85);
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    .modal-content {
      position: relative;
      
      padding: 10px;
      border-radius: 12px;
      width: 90%;
      max-width: 960px;
      max-height: 95vh;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .modal-close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 28px;
      color: #fff;
      cursor: pointer;
      z-index: 100;
    }

    .fp-iframe {
      width: 100%;
      height: 80vh;
      border: 1px solid lightgray;
      border-radius: 10px;
    }

    /* Mobile Styles */
    @media screen and (max-width: 768px) {
      .modal-content {
        width: 95%;
        max-width: 400px;
        padding: 10px;
      }

      .fp-iframe {
        height: 65vh;
      }

      .modal-close {
        font-size: 24px;
        top: 5px;
        right: 10px;
      }
    }

    @media screen and (max-width: 480px) {
      .fp-iframe {
        height: 55vh;
      }
    }

    

 
 