* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Pontano Sans', sans-serif;
    
    }
    
   
/* popup */
        .corner-popup {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  background: #000;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.popup-content {
  position: relative;
  padding: 10px;
  border-radius: 8px;
}

/* Close Button */
/* .close-btn {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  font-size: 18px;
  text-align: center;
  line-height: 25px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 0 5px #333;
} */
 .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.75);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 999;
      padding: 15px;
      box-sizing: border-box;
      animation: fadeInBg 0.4s ease-in-out;
    }
#popup2 {
  display: none; /* by default hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
    /* Popup Box with glassmorphism */
    .subscribe-box {
      position: relative;
      background: rgba(30, 30, 30, 0.7);
      border: 1px solid rgba(167, 124, 44, 0.4);
      backdrop-filter: blur(12px);
      border-radius: 16px;
      padding: 30px 25px;
      max-width: 420px;
      width: 100%;
      text-align: center;
      color: #fff;
      box-shadow: 0 0 25px rgba(167, 124, 44, 0.5);
      animation: scaleIn 0.4s ease-in-out;
    }

    .subscribe-box img {
      width: 200px;
      margin-bottom: 15px;
      animation: float 3s ease-in-out infinite;
    }

    .subscribe-box h2 {
      font-size: 22px;
      margin: 5px 0 8px;
      font-weight: bold;
      letter-spacing: 1px;
      text-transform: uppercase;
      background: linear-gradient(90deg, #ffda8b, #ae8a4c);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .subscribe-box p {
      font-size: 14px;
      color: #ddd;
      margin-bottom: 20px;
    }

    /* Input + button inline */
    .form-group {
      display: flex;
      gap: 8px;
      width: 100%;
      margin-bottom: 18px;
    }

    .subscribe-box input[type="email"] {
      flex: 1;
      padding: 12px 14px;
      border-radius: 8px;
      border: 1px solid #ae8a4c;
      background: rgba(42, 42, 42, 0.8);
      color: #fff;
      font-size: 15px;
      outline: none;
    }

    .subscribe-box input::placeholder {
      color: #bbb;
    }

    .subscribe-box button {
      padding: 12px 18px;
      border: none;
      border-radius: 8px;
      background: linear-gradient(135deg, #ffd27d, #ae8a4c);
      color: #111;
      font-size: 15px;
      font-weight: bold;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.3s;
    }

    .subscribe-box button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(193, 151, 76, 0.5);
    }

    /* Close button */
    .close-btn {
      position: absolute;
      top: 12px;
      right: 16px;
      font-size: 24px;
      color: #fff;
      cursor: pointer;
      font-weight: bold;
      transition: transform 0.2s;
    }

    .close-btn:hover {
      transform: rotate(90deg);
      color: #ffd27d;
    }

    /* Animations */
    @keyframes fadeInBg {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes scaleIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .subscribe-box {
        max-width: 95%;
        padding: 22px 18px;
      }
      .form-group {
        flex-direction: column;
      }
      .subscribe-box button {
        width: 100%;
      }
    }
.first-header {
  height: 50px; /* ek line ke height ke barabar */
  overflow: hidden;
  position: relative;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.news-slider {
  display: flex;
  flex-direction: column;
  animation: slideNews 8s infinite;
}

.news-slider p {
  height: 50px;
  line-height: 50px;
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: white;
  text-align: center;
  width: 100%;
}

/* Animation - each step stops text at center */
@keyframes slideNews {
  0%, 20%   { transform: translateY(30px); }        /* 1st text */
  25%, 45%  { transform: translateY(-30px); }    /* 2nd text */
  50%, 70%  { transform: translateY(-30px); }   /* 3rd text */
  75%, 95%  { transform: translateY(-30px); }   /* 4th text */
  100%      { transform: translateY(0); }        /* loop back */
}

    .first-header:hover{
      text-decoration: underline;
    color: white;
    }
    /* main-header */

   .main-header {
      margin-bottom: 10px;
      background-color: #fff;
      padding: 5px;
      border-bottom: 1px solid #ddd;
    }

    .header-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .logo-social {
      
    padding-top: 6px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      padding-left: 12px;
    }

    .logo {
      height: 100px;
 
  
      
    }
   

    .nav-links {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      
    }

    .nav-links a {

      text-decoration: none;
      color: #000;
   
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: #8d6d2a;
    }

    .header-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-right: 16px;
}

  
.login-btn,
.subscribe-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 100px;      /* same width */
  padding: 8px 16px;     /* same padding */
  border: none;
  border-radius: 15px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  color: black;
  text-align: center;
  box-sizing: border-box;
}


    .login-btn {
      background-color:#ae8a4c;
    }

    .subscribe-btn {
     background-color: #ae8a4c;
    }
    .new{
      display: flex;
    }

   
 .search-bar-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 5px;
}
.search-bar-container-lasts{
  padding-top: 50px;
}

.search-bar-bg {
  background-color: #292929;
  height: 24px;
  border-radius: 20px;
  
  width: 100%;
  overflow: hidden;
  position: relative;
}

.scrolling-track {
  display: flex;
  width: max-content;
  animation: scroll-loop 50s linear infinite;
      padding-top: 3px;
      gap: 24px;
}

.scrolling-content {
  display: flex;
  white-space: nowrap;
  color: white;
  gap: 24px;
  font-size: 12px;
}

.up {
  color: #22ed00;
}
.down {
  color: #ff0000;
}

@keyframes scroll-loop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}


.search-box {
      position: relative;
      width: 140px;
    
      
    }

    .search-box input {
      width: 90%;
      height: 25px;
      padding: 5px 15px;
      padding-right: 35px;
      border: 1px solid #ccc;
      border-radius: 20px;
      outline: none;
      font-size: 14px;
    }

    .search-icon {
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: #555;
      font-size: 16px;
      cursor: pointer;
    }
    .search-box-wrapper {
  display: flex;
  align-items: center;
  gap: 10px; /* search aur hamburger ke beech gap */
}

.search-box {
  flex: 1; /* search box full width le le, hamburger ke sath */
}

.hamburger2 {
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  display: block; /* laptop/mobile dono pe visible */
  padding-right:20px ;
    color: #ae8a4c; /* golden color */
}
.hamburger-menu {
  display: none;
  position: absolute;
  top: 160px;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 30px 50px;
  z-index: 999;
}
#dropdownMenu {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr)); /* 3 neat columns */
  gap: 20px;
  padding: 15px;
  min-width: 600px;  /* keeps dropdown wide and aligned */
}

/* Tabs */
/* Tabs + content wrapper ek row me */
.hamburger-menu .menu-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* Tabs left me column wise */
.hamburger-menu .menu-tabs {
  display: flex;
  flex-direction: column; /* tabs ek ke niche ek */
  min-width: 200px; /* thoda fix width rakho */
  border-right: 1px solid #ddd;
  padding-right: 20px;
}

/* Tab items */
.hamburger-menu .menu-tabs p {
  margin: 8px 0;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
}

.hamburger-menu .menu-tabs p.active {
  color: #ae8a4c;
}

/* Content right side me */
.hamburger-menu .menu-content {
  flex: 1;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px 40px;
}

.hamburger-menu .menu-content.active {
  display: grid;
}
.menu-content a{
  text-decoration: none;
  color: #000;
}

@media (max-width: 768px) {
  .hamburger2 {
    display: none; /* phone screen pe hide ho jayega */
  }
 
}






    /* Animated text */
    .animated-text-container {
       position: absolute;
    left: 15px;
    top: 45%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #999;
    font-size: 12px;
    overflow: hidden;
    height: 20px;
}
    

    .animated-text-container span {
      display: block;
      animation: slideText 3s ease-in-out infinite;
    }

    @keyframes slideText {
      0% {
        transform: translateY(100%);
        opacity: 0;
      }
      10% {
        transform: translateY(0);
        opacity: 1;
      }
      40% {
        transform: translateY(0);
        opacity: 1;
      }
      50% {
        transform: translateY(-100%);
        opacity: 0;
      }
      100% {
        transform: translateY(-100%);
        opacity: 0;
      }
    }

    /* Hide animated text when user types */
    .search-box input:focus + .animated-text-container,
    .search-box input:not(:placeholder-shown) + .animated-text-container {
      display: none;
    }
 

    .social-icons {
      
      display: flex;
      align-items: center;
      gap: 10px;
      padding-left: 16px;
    
      
    }

    .social-icons i {
     background-color: black;
      
     
      color: #ae8a4c;
      font-size: 18px;
      cursor: pointer;
    }

    .hamburger {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: #ae8a4c;
    }

    @media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  /* Search-bar always visible */
  .search-bar-container {
    display: flex !important; /* hamesha visible rahe */
    width: 100%;
    flex-direction: row;
    align-items: center;
    margin-top: 10px;
  }
  .social-icons{
    display: none;
  }
  

  /* Nav links & buttons toggle only */
  .nav-links,
  .header-buttons {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
  }
  /* On hamburger click, show nav-links + header-buttons + search + social-icons */
   .mobile-active .nav-links,
  .mobile-active .header-buttons,
  .mobile-active .search-bar-container,
  .mobile-active .social-icons {
    display: flex;
    gap: 10px;
  }

  .mobile-active .search-bar-bg,
.mobile-active .scrolling-track,
.mobile-active .social-icons {
  display: none !important;
}

  .nav-links a {
    padding: 8px 0;
  }

  .search-box {
    width: 100%;
    margin-top: 0;
  }

  .search-box {
   display: none;
  }

  .search-bar-bg {
    width: 100%;
  }
}
/* main-header */
/* === Header / Dropdown Toggle === */
    .topbar {
      background: #1f1f1f;
      color: #fff;
      padding: 15px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
    }

    .topbar h1 {
      font-size: 20px;
      font-weight: normal;
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
    }

    .topbar h1 i {
      font-size: 12px;
      transition: transform 0.3s ease;
    }

    .topbar h1.rotate i {
      transform: rotate(180deg);
    }

    .dropdown-links {
      display: none;
      /* background: #1f1f1f; */
      padding: 10px 30px;
      flex-wrap: wrap;
      gap: 15px;
      font-size: 14px;
      border-top: 1px solid #333;
    }

    .dropdown-links a {
      color:black;
      text-decoration: none;
      margin-right: 15px;
      transition: 0.3s;
    }

    .dropdown-links a:hover,
    .dropdown-links a.active {
      color:#ae8a4c;
      border-bottom: 2px solid #ae8a4c;
      padding-bottom: 3px;
    }

    .dropdown-links.show {
      display: flex;
    }
/* Overlay Menu (mobile) */
    .menu-overlay {
      position: fixed;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: #fff;
      transition: left 0.3s ease;
      z-index: 999;
      overflow-y: auto;
    }

    .menu-overlay.open {
      left: 0;
    }

    .menu-overlay .close-btn {
      text-align: right;
      padding: 16px;
      font-size: 24px;
      cursor: pointer;
    }

    .menu-overlay ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
.menu-overlay .submenu {
  display: none;
  list-style: none;
  padding-left: 15px;
  margin-top: 5px;
}
.menu-overlay .submenu li {
  margin-bottom: 5px;
}

.menu-overlay {
  overflow-y: auto; /* page scroll enable */
}
    .menu-overlay ul li {
      border-bottom: 1px solid #eee;
    }

    .menu-overlay ul li a,
    .menu-overlay ul li button {
      display: block;
      width: 100%;
      padding: 16px;
      text-decoration: none;
      color: #333;
      background: none;
      border: none;
      text-align: left;
      font-size: 16px;
      cursor: pointer;
    }

    .menu-overlay ul li button .fa-chevron-down {
      float: right;
    }

    .submenu {
      display: none;
      background: #f9f9f9;
    }

    .submenu li a {
      padding-left: 32px;
      font-size: 14px;
    }

    /* Desktop Tabs Menu */
    .desktop-tabs {
      display: none;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background: #fff;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      z-index: 999;
    }

    .desktop-tabs .tab-content {
      display: none;
      padding: 16px;
    }

    .desktop-tabs .tab-content.active {
      display: block;
    }

    .desktop-tabs .tab-btns {
      display: flex;
      gap: 16px;
      border-bottom: 1px solid #eee;
      padding: 0 16px;
    }

    .desktop-tabs .tab-btns .tab-btn {
      cursor: pointer;
      padding: 10px 0;
      font-weight: bold;
      color: #333;
    }

    .desktop-tabs .tab-btns .tab-btn.active {
      border-bottom: 2px solid #ae8a4c;
      color: #ae8a4c;
    }
    /* Dropdown rotation */
#newsToggle i {
  transition: transform 0.3s ease;
}

#newsToggle.rotate i {
  transform: rotate(180deg);
}

/* Dropdown items */
.dropdown-links {
  display: none;
  flex-direction: column;
  padding-left: 20px;
  gap: 10px;
}

.dropdown-links.show {
  display: flex;
}

/* Navigation item with dropdown wrapper */
.nav-item-with-dropdown {
  position: relative;
  display: inline-block;
}

/* Desktop dropdown positioning */
@media (min-width: 900px) {
  .nav-item-with-dropdown .dropdown-links {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 1000;
    padding: 15px;
  }

  .nav-item-with-dropdown .dropdown-links.show {
    /* display: flex;
    flex-direction: column; */
    display: none;
  }

  .nav-item-with-dropdown .dropdown-links a {
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color 0.2s;
  }

  .nav-item-with-dropdown .dropdown-links a:hover {
    background-color: #f5f5f5;
    color: #ae8a4c;
  }
}

    

    /* Responsive */
    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }
      .nav-links,
      .header-buttons {
        display: none;
      }
      #dropdownMenu {
 display: flex;
 flex-direction: column;

 
    }
     .header-top {
    display: flex;
    justify-content: space-between; /* logo left, hamburger right */
    align-items: center;
    width: 100%;
    gap: 27%;
  }
  #dropdownMenu1{
  display: flex;
  flex-direction: column;
}
   

  .logo {
    height: 70px; 
  }

  .hamburger {
    display: block;
    font-size: 24px;
    background: none;
    border: none;
    color: #ae8a4c;
    padding-right: 11px;
  }

  /* nav links column में */
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    background: #fff;
    padding: 10px 15px;
    border-top: 1px solid #ddd;
  }

  .nav-links a {
    padding: 12px 0;
    width: 100%;
    /* border-bottom: 1px solid #eee; */
    color: #000;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }


  .mobile-active .nav-links {
    display: flex;
  }

 
  .header-buttons {
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 10px 15px;
  }

  .mobile-active .header-buttons {
    display: flex;
  }

  /* Search aur ticker remove in mobile */
  /* .search-bar-container {
    display: none !important;
  } */

  /* dropdown links accordion style */
  .dropdown-links {
    display: none;
    flex-direction: column;
    padding-left: 15px;
    width: 100%;
  }

  .dropdown-links.show {
    display: flex;
  }

  .dropdown-links a {
    padding: 8px 0;
    border: none;
    font-size: 14px;
  }
  }
    /* Hide News Section dropdown on desktop */
/* Desktop: make it appear non-interactive and ensure dropdown hidden by default */
@media (min-width: 900px) {
  #newsToggle {
    cursor: pointer;        /* not pointer */
    pointer-events: auto;   /* keep link focusable if you want; we block behavior in JS */
  }
  #newsToggle i {
  transition: transform 0.3s ease;
  display: none;
}
  .nav-links a i.fas.fa-chevron-down {
    display: none;
  }
    .desktop-link { display: inline-block; }
  .mobile-toggle { display: none; }


  /* ensure dropdown panel is not shown on desktop even if .show gets added */

}

/* Mobile: hide main link, show mobile toggle */
@media (max-width: 991px) {
  .desktop-link { display: none; }
  .mobile-toggle { display: block; }
}


   
/* drop-down */



/* fullweb */

 
 .fullweb {
  display: flex;
  flex-direction: column;
  padding: 10px;
  margin: 0 auto;       /* center align container */
  max-width: 100%;      /* responsive width */
  box-sizing: border-box; /* include padding in width */
}

.container2 {
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background-color: white;
  max-width: 1300px;
  width: 100%;
  
  justify-content: center;
}


/* Left card styling */
/* .left-card {
  flex: 1;
  max-width: 250px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.left-card img {
  max-width: 100%;
  height: auto;
  padding-top: 10px;
  
} */
.sidebar-container {
  display: flex;
  justify-content: center;
  align-items: flex-start; /* to keep sticky top */
  width: 70%;
}

.leftslidebar
 {
  width: 120px;
  height: calc(100vh - 120px);
  position: sticky;
  top: 100px;
  overflow-y: auto;
  background: #fff;
 
  border-radius: 6px;
 

  /* Hide scrollbar */
  scrollbar-width: none;   /* Firefox */
  -ms-overflow-style: none; /* IE & Edge */

}

.left-sidebar::-webkit-scrollbar,
.right-sidebar::-webkit-scrollbar {
  display: none;  /* Chrome, Safari */
}

    .leftslidebar .box {
      background: white;
      padding: 15px;
      margin-bottom: 20px;
    }

    .leftslidebar .box img {
      width: 100%;
      height: auto;
    }
    
  
/* Main card styling */
.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 h2:hover {
 color: #ae8a4c;
}

.main-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}
.main-card p:hover {
 color: #ae8a4c;
}

.date {
  color: #ae8a4c;
  font-size: 14px;
  margin-top: 12px;
  font-weight: bold;
}
.read-more-main{
  color:#ae8a4c;
  font-weight: bold;
  text-decoration: none;
}

.author {
  font-size: 14px;
  color: #ae8a4c;
}

/* Latest section styling */
.latest-section {
  flex: 1;
  min-width: 280px;
}

.latest-section h3 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 15px;
}

.latest-item {
  background: #fff;
  border: 1px solid #ae8a4c;
  padding: 12px 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.latest-title:hover{
 color: #AE8A4C;
}

.latest-item:hover {
  border-color:#AE8A4C;
}

.latest-item p {
  font-size: 14px;
}
.latest-item p:hover {
  text-decoration: underline;
}


.latest-item .date {
  color: #ae8a4c;
  font-weight: bold;
  margin-top: 6px;
}

.latest-item .author {
  font-size: 13px;
  color: #666;
}
/* Default title color */
.main-title-link,
.latest-title-link {
  color: #000;         /* black */
  text-decoration: none; /* optional: remove underline */
  transition: color 0.3s ease; /* smooth hover effect */
}

/* Hover effect */
.main-title-link:hover,
.latest-title-link:hover {
  color:#ae8a4c;        /* brown on hover */
}



/* Mobile screens (less than 768px) */
@media (max-width: 767px) {
  .leftslidebar{
    display: none;
  }
  .container2 {
    flex-direction: column;
    align-items: center;
  }

  .left-card,
  .main-card,
  .latest-section {
    width: 100%;
    max-width: 100%;
  }

  .main-card {
    margin: 10px 0;
  }
}
/* Tablets (768px and above) */
@media (min-width: 768px) {
 
  .fullweb {
    flex-direction: row;
  }

  .container2 {
    flex-direction: row;
    justify-content: space-between;
  }

  .left-card,
  .main-card,
  .latest-section {
    max-width: unset;
  }

  .left-card {
    flex: 1;
  }

  .main-card {
    flex: 2;
    margin: 0 10px;
  }

  .latest-section {
    flex: 1;
  }
}
/* 📲 Tablets (iPad Portrait & Landscape) 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .fullweb {
    flex-direction: column;
    align-items: center;
  }

  .container2 {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 90%; /* edges से थोड़ा gap */
  }

  .leftslidebar { display: none; } /* tablet पर sidebar छुपा दो */

  .main-card, .latest-section {
    width: 100%;
    max-width: 800px;
  }

  .main-card { margin-bottom: 20px; }
}
/* 💻 Large desktop / 2K+ resolution (2560px and above) */
@media (min-width: 1920px) {
  .sidebar-container {
    display: flex
;
    justify-content: center;
    align-items: flex-start;
    width: 10%;
  }
  .container2 {
    max-width: 1600px;   /* prevent content from stretching too much */
    gap: 30px;           /* add more spacing between sections */
    padding: 20px;
  }

  .left-card {
    max-width: 200px;    /* make side card a bit wider */
  }

  .main-card {
    flex: 2.5;           /* give more space to main card */
    min-width: 300px;
  }

  .main-card h2 {
    font-size: 24px;     /* slightly bigger title */
  }

  .main-card p {
    font-size: 17px;     /* improve readability */
  }

  .latest-section {
    min-width: 350px;    /* wider for balance */
  }

  .latest-section h3 {
    font-size: 22px;
  }

  .latest-item p {
    font-size: 15px;
  }
}





/* 🖥️ 4K Screens (2560px and above) */
/* @media (min-width: 2560px) {
  .container2 { */
    /* max-width: 2400px;   */
    /* gap: 40px;           
    padding: 30px;
  }

  .left-card {
    max-width: 400px;
    padding: 30px;
  }

  .main-card {
    flex: 3;
    min-width: 400px;
  }

  .main-card h2 { font-size: 28px; }
  .main-card p { font-size: 18px; }

  .latest-section { min-width: 400px; }
  .latest-section h3 { font-size: 26px; }
  .latest-item p { font-size: 18px; }
} */



    /* container3 */
    .container3 {
      display: flex;
      flex-wrap: wrap;
     width: 100%;
      margin: 20px auto;
      padding: 0 15px;
      background-color: white;
    }

   

  
    .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;
    }

 
.card {
  flex: 1 1 calc(25% - 30px);
  background: white;
  border-radius: 15px; /* Rounded corners on all sides */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}


    .card-body {
      flex: 1;
    }
  .head-sec {
  padding: 12px 16px;
  background:#ae8a4c;

  font-weight: bold;
  font-size: 16px;
  color: #333;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

    .card p {
     

      font-size: 14px;
      margin-bottom: 10px;
      color:black;
      background-color: d9d9d9;
    }

   .center {
  padding: 14px 16px;
  font-size: 14px;
  color: #222;
  line-height: 1.5;
  flex-grow: 1;
  
}

.card small {
  padding: 12px 16px;
  font-size: 12px;
  color: #777;
  border-top: 1px solid #eee;
  background-color: #f9f9f9;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}


 

    .main-content {
      width: 100%;
    }
.cards {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }
      
    .card small {
      font-size: 12px;
      color: #AE8A4C;
    } 
    .center:hover{
      text-decoration: underline;
      color: #AE8A4C;
    }

 @media (min-width: 1920px) {
  .cards {
    max-width: 1550px;   /* center carousel, prevent stretching */
   
  }
 }
/* container3 */
  

 
    /* week-card */
  
    .carousel-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      
    }

    .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;
      
      border-radius: 6px;
     border: 1px solid black;
      
      flex-shrink: 0;
        border-radius: 12px;
  border: 1px solid #ddd;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .team-card img {
      width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;

    }

  .team-card p {
    padding: 5px;
  font-size: 15px;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: 500;
}

.team-card small {
  padding: 5px;
  font-size: 13px;
  color: #ae8a4c;
  /* font-style: italic; */
}

.nav {
  color: black;
  
  border: none;
  padding: 10px 14px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}

.nav:hover {
  background-color: #AE8A4C;
}
.meta{
  display: flex;
  flex-direction: column;
}
/* 💻 Large desktop / 2K resolution (2560px and above) */
@media (min-width: 1920px) {
  .carousel-wrapper {
    max-width: 2000px;   /* center carousel, prevent stretching */
    margin: 0 auto;
    gap: 20px;
  }

  .carousel {
    gap: 20px;           /* more spacing between cards */
    padding-bottom: 20px;
    max-width: 1450px;
  }

  .team-card {
    min-width: 700px;    /* wider cards */
    border-radius: 14px;
  }

  .team-card img {
    height: 200px;       /* bigger image */
    border-radius: 12px;
  }

  .team-card p {
    font-size: 18px;     /* larger readable text */
    line-height: 1.6;
  }

  .team-card small {
    font-size: 15px;     /* slightly bigger subtitle */
  }

  .nav {
    font-size: 28px;     /* bigger arrows */
    padding: 14px 18px;
  }
}



    /* Tablet View */
    @media (max-width: 991px) {
      .container3 {
        flex-direction: column;
      }

      .sidebar
     {
       
        display: none;
      }

      .card {
        flex: 1 1 100%;
      }
    }

    /* Mobile View */
    @media (max-width: 600px) {
      .carousel-wrapper {
       
      }

      .nav {
      display: none;
        
      }

      .card {
        height: auto;
        padding: 10px;
      }
    }
    .container4 {
      background-color: black;
    }
    .popular .black{
      padding: 10px;
      margin: 20px 0px;
      background-color:black;
      color: white;
    }

    .sponsored-section {
      display: flex;
      gap: 20px;
      padding: 30px;
      flex-wrap: wrap;
    }
    .logo-img {
      width: 100%;
      height: auto;
      margin-bottom: 15px;
    }

    .left-ad {
      
      
      
    border-radius: 8px;
    font-size: 14px;
height: auto;
    flex-shrink: 0;
    

    }

    

    .left-ad a {
      color: #ae8a4c;
      text-decoration: none;
      display: inline-block;
      margin-top: 10px;
    }

    .content-area {
      flex: 1;
      
    }

    .content-area h2 {
      margin-bottom: 20px;
      color: white;
    }

    .top-post {
      display: flex;
      gap: 20px;
     border: 1px solid white;
      padding: 20px;
      border-radius: 8px;
      margin-bottom: 25px;
      
   
    }

    .top-post img {
     
      width: 600px;
  height: 355px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
    }

    .tag {
    
      padding: 4px 8px;
      font-size: 12px;
      border-radius: 4px;
      display: inline-block;
      margin-bottom: 10px;
      color:white;
      border: 1px solid white;
    }
    .tag-post{
       padding: 4px 8px;
      font-size: 12px;
      border-radius: 4px;
      display: inline-block;
      margin-bottom: 10px;
      color:white;
      border: 1px solid white;
      border-radius: 10px;
      width: fit-content;
        
    }

    .post-text {
      font-size: 15px;
      margin-bottom: 10px;
      color: white;
    }
    .post-text:hover{
      color: #ae8a4c;
    }

    .btn-more {
     
      background-color: black;
       border: 1px solid #ae8a4c;
     color: #AE8A4C;
      padding: 6px 12px;
    
      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;
    }

    .card1 {
      color: white;
      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);
      border: 1px solid white;
      border-radius: 10px;
    }
.card1 img {
  width: 100%;
  height: auto;   /* original ratio में image दिखेगी */
  border-radius: 5px;
  margin-bottom: 10px;
}

    .card1 h4 {
      font-size: 14px;
      margin-bottom: 10px;
      color: white;
      flex-grow: 1;
    }
    .card1 h4:hover{
      color: #ae8a4c;
    }

    .container6 {
      background-color: white;
      
    }
  

    /* 🔁 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{
        display: none;
      }

      .left-ad h3 {
        font-size: 16px;
      }

      .post-text {
        font-size: 14px;
      }

      .card h4 {
        font-size: 13px;
      }
    }
  
    
    /* 💻 Large desktop screens (2K / 2560px and above) */
@media (min-width: 1920px) {
  .sponsored-section {
    max-width: 1550px;   /* keep content centered */
    
    gap: 30px;
    padding: 40px;
  }

  .left-ad {
    flex-basis: 340px;   /* wider sidebar */
    font-size: 16px;
    height: auto;  
    width: 300px;      /* let it adjust naturally */
  }

  .content-area h2 {
    font-size: 26px;     /* bigger section title */
  }

  .top-post {
    gap: 30px;
    padding: 25px;
  }

  .post-text {
    font-size: 18px;
    line-height: 1.6;
  }

  .btn-more {
    font-size: 15px;
    padding: 8px 16px;
  }

  /* ✅ Fix card grid for big screens */
  .card-grid {
    grid-template-columns: repeat(4, 1fr); /* exactly 4 cards per row */
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
  }

  .card1 {
    padding: 20px;
  }

  .card1 img {
    height: 200px; /* bigger images */
  }

  .card1 h4 {
    font-size: 16px;
  }
}

/* container5 */
 .container5 {
  display: flex;
  gap: 25px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 30px;
}

    .middle img {
      max-width: 100%;
      height: auto;
    
      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: left;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.video-card {
  margin-bottom: 20px;
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
  transform: scale(1.03);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: white;
  background-color: rgba(0,0,0,0.6);
  padding: 10px 15px;
  border-radius: 50%;
}

.video-title {
  font-size: 15px;
  margin-top: 10px;
  font-weight: 600;
  color: #222;
}


/* === Right Section - News Headlines === */
.right-section {
  flex: 1;
  min-width: 300px;
  background-color: #fff;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.right-heading {
  text-align: left;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.right-box {
  box-shadow: rgba(0, 0, 0, 0.04) 0px 4px 8px, rgba(0, 0, 0, 0.1) 0px 10px 20px, rgba(0, 0, 0, 0.05) 0px 15px 40px;
  border-left: 3px solid #ae8a4c;
  padding: 15px 18px;
  margin-bottom: 15px;
  background-color: #f8f4ec;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.right-box:hover {
  background-color: #f8f4ec;
  text-decoration: underline;
}

.right-box h4 {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
  line-height: 1.4;
}
.right-box a {
  color: #000000;           /* black */
  text-decoration: none;    /* optional: remove underline */
  transition: color 0.3s ease;
}

.right-box a:hover {
  color: #ae8a4c;             /* brown on hover */
}


.right-box span {
  font-size: 12px;
  color:#ae8a4c;
}

.more-btn {
  /* display: inline-block;
  padding: 10px 16px;
  background-color: #ae8a4c;
  color: white;
  font-size: 13px;
  border-radius: 25px;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s; */
  float: right;
}

.more-btn:hover {
  background-color: #ae8a4c;
}

/* === Tablet & Mobile === */
@media (max-width: 991px) {
  .container5 {
    flex-direction: column;
  }

  .left-section,
  .right-section {
    width: 100%;
  }

  .more-btn {
    float: none;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .video-thumbnail img {
    height: 160px;
  }

  .right-box h4 {
    font-size: 14px;
  }

  .left-heading,
  .right-heading {
    text-align: center;
  }
}
    .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%;
      }
      a {
        text-decoration: none;
      }

      .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 {
    width: 25%;
    margin: 0 auto;   /* center align */
    display: block;   /* ensure it's centered */
    text-align: center;
  }

      .left-heading {
        text-align: center;
      }
    }
    /* 💻 Large Desktop - 1920px and above (good for 2560x2120 screens) */
@media (min-width: 1920px) {
  .container5 {
    max-width: 1500px;   /* center layout */
    margin: 0 auto;
    gap: 50px;
    padding-top: 60px;
  }

  /* Left Section - Videos */
  .left-section {
    flex: 0.4;    /* narrower for balance */
    padding: 30px;
  }

  .left-heading {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .video-thumbnail img {
    height: 260px; 
  }

  .play-button {
    font-size: 45px;
    padding: 20px 25px;
  }

  .video-title {
    font-size: 20px;
    margin-top: 14px;
  }

  /* Right Section - News */
  .right-section {
   
    padding: 35px;
  }

  .right-heading {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .right-box {
    padding: 22px 28px;
    margin-bottom: 20px;
  }

  .right-box h4 {
    font-size: 20px;
    line-height: 1.6;
  }

  .right-box span {
    font-size: 14px;
  }

  .more-btn {
    font-size: 16px;
    padding: 14px 24px;
  }
}

   
    .container8 {
      /* max-width: 1100px; */
      max-width: 1200px;
    
      background-color: #fff;
      padding: 30px 25px 60px;
      border-radius: 10px;
      
    }

    .banner img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 30px;
    }

    h2 {
      font-size: 23px;
     font-weight: bolder;
      margin-bottom: 15px;
    }

    /* Precious Metals */
 .precious-metals {
  background-color: #fdfdfd;
  border-radius: 14px;
  display: flex;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 10px 20px rgba(0, 0, 0, 0.10),
    0 15px 40px rgba(0, 0, 0, 0.05); /* Layered shadow */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  
}
.precious-metals:hover {
  transform: translateY(-6px);
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.08),
    0 14px 28px rgba(0, 0, 0, 0.12),
    0 20px 50px rgba(0, 0, 0, 0.1); /* Enhanced hover shadow */
}

    .precious-metals img {
      width: 145px;
      height: 145px;
      object-fit: cover;
    }

   .precious-content {

    display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative; /* important for absolute positioning */
}

.sponsored-tag {
  display: inline-block;
  font-size: 11px;
  color: #d9d9d9;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.precious-content p {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 25px;
  color: #333;
}



    
.more-btn {
   
    border: 1px solid #ae8a4c;
    color: #AE8A4C;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 13px;







  
}


   .more-btn:hover {
  background-color: #ae8a4c;
  color: #fff;
  border-color: #ae8a4c;
}

.more-btn svg {
  width: 14px;
  height: 14px;
  fill: #ae8a4c;
  transition: fill 0.3s ease;
}

.more-btn:hover svg {
  fill: #fff;
}

    /* World News */
    .world-news {
      padding: 18px 20px;
      font-size: 14px;
      font-weight: 700;
      
      position: relative;
    }

    .world-news small {
      font-size: 11.5px;
      font-weight: 500;
      color: #ae8a4c;
      display: block;
      margin-top: 20px;
    }

    .world-news .author {
      font-size: 12px;
      color: #ae8a4c;
    }
.card-news{
 box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 10px 20px rgba(0, 0, 0, 0.10),
    0 15px 40px rgba(0, 0, 0, 0.05); /* Layered shadow */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
margin: 10px;
padding: 10px;
border-radius: 10px;
 border-left: 3px solid #ae8a4c;
  padding: 15px 18px;
  margin-bottom: 15px;
  background-color: #fdfdfd;
  border-radius: 8px;
  transition: background 0.3s ease;
  background-color: #f8f4ec;
}
.card-news a:hover{
  text-decoration: underline;
}

.world-news .more-btn {
  position: absolute;
  bottom: 14px;
  right: -175px;
}



    
.world-news a {
  color: #000000;          /* black by default */
  text-decoration: none;   /* optional: remove underline */
  transition: color 0.3s ease;
}

.world-news a:hover {
  color:#ae8a4c;            /* brown on hover */
}
    /* Split Section */
    .split-section {
      display: flex;
      gap: 40px;
      
      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: #ae8a4c;
    }

    .corporate-news .author {
      font-size: 11px;
      color: #ae8a4c;
    }

    /* .magazine {
     
      flex: 1 1 45%;
      display: grid;
    
      gap: 10px;
      height: 20%;
    } */
    .magazines-wrapper{
      display: flex;
      gap: 20px;
    }

    .magazine img {
      width: 100%;
      height: 350px;
      object-fit: cover;
      border-radius: 20px;
      padding: 5px;
    }
    .box1{
      border: 1px solid black;
      border-radius: 10px;
      background-color: #d9d9d9;
    }
    .box2{
       border: 1px solid black;
       border-radius: 10px;
       background-color: #d9d9d9;
    }
   .content {
  text-align: center;
}

.content button {
  color: #ae8a4c;
  padding: 10px  20px;
  margin: 10px auto; /* auto margins for extra centering */
  display: inline-block;
  border-radius: 20px;
  background-color: #000;
  border:1px solid black;
}

.card-news a {
  color: #000000;          /* black by default */
  text-decoration: none;   /* optional: remove underline */
  transition: color 0.3s ease;
}

.card-news a:hover {
  color:#ae8a4c;            /* brown on hover */
}


.magazines-wrapper {
  display: flex;
  gap: 20px;

}

.magazine img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  padding: 5px;
}

.box1,
.box2 {
  border: 1px solid black;
  border-radius: 10px;
  background-color: #d9d9d9;
}

.content {
  text-align: center;
}

/* .content button {
  color: #ae8a4c;
  padding: 10px 20px;
  margin: 10px auto;
  display: inline-block;
  border-radius: 20px;
  background-color: #000;
  border: 1px solid black;
} */

.card-news a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.card-news a:hover {
  color: #ae8a4c;
}

/* ✅ Responsive for mobile screens */
@media (max-width: 768px) {
  .magazines-wrapper {
    flex-direction: column;   /* stack items vertically */
    gap: 15px;
  }

  .magazine {
    flex: 1 1 100%;          /* full width on phone */
  }

  .magazine img {
    height: auto;            /* prevent image cutoff */
    max-height: 450px;       /* control height */
  }

  .content button {
    width: 100%;             /* button takes full width */
    max-width: 250px;        /* but not too wide */
  }
}

   @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;
      }
    }
    /* === Ultra-Wide Desktop (2560px and up) === */
@media (min-width: 1920px) {
  .container8 {
    max-width: 2000px;   /* expand container for large screens */
    padding: 50px 40px 80px;
  }

  .banner img {
    margin-bottom: 50px;
    border-radius: 12px;
    width: 94%;
  }

  h2 {
    font-size: 30px;
    margin-bottom: 25px;
  }

  /* Precious Metals Section */
  .precious-metals {
    margin-bottom: 60px;
    gap: 30px;
    max-width: 1500px;
  }


  .precious-metals img {
    width: 320px; /* bigger image for large screen */
    height: 200px;
  }

  .precious-content {
    padding: 30px 40px;
  }

  .precious-content p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .more-btn {
    font-size: 16px;
    padding: 10px 22px;
    border-radius: 12px;
  }

  /* World News */
  .world-news {
    font-size: 18px;
    padding: 24px 28px;
    margin-bottom: 50px;
  }

  .world-news small {
    font-size: 14px;
  }

  .world-news .author {
    font-size: 14px;
  }

  /* Split Section */
  .split-section {
    gap: 60px;
    margin-bottom: 50px;
    max-width: 1500px;
  }

  .corporate-news .card {
    padding: 22px 28px;
    font-size: 16px;
  }

  .corporate-news small,
  .corporate-news .author {
    font-size: 13px;
  }

  /* Magazine Grid */
  .magazine {
    gap: 20px;
    grid-template-rows: repeat(2fr);
  }

  .magazine img {
    height: 360px;
  }

  /* Box adjustments */
  .box1, .box2 {
    border-radius: 14px;
  }

  .content {
    padding: 30px;
    font-size: 16px;
  }
}


     .section-wrapper {
  margin: 20px;
  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;
}

/* Each column */
.column {
  flex: 1;
  min-width: 250px;
}

.column h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.column ul {
  list-style: none;
  padding-left: 0;
}
.column li {
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 6px;
  line-height: 1.4;
  font-size: 14px;
  color: #000;
}

.column li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;                 /* or use 50% + transform for center */
  width: 50%;              /* control border length here */
  border-bottom: 1px solid #e0c79a;
}


.column a{
  text-decoration: none;
   color: #000;
  
}
.column a:hover{
  color: #ae8a4c;
}





.highlight-box {
  padding: 5px;
  margin: 10px 0;
}
.announcement-item a {
  color: #000000;          /* black by default */
  text-decoration: none;   /* optional: remove underline */
  transition: color 0.3s ease;
}

.announcement-item a:hover {
  color:#ae8a4c;            /* brown on hover */
}


.whats-on-item a {
  color: #000000;          /* black by default */
  text-decoration: none;   /* optional: remove underline */
  transition: color 0.3s ease;
}

.whats-on-item a:hover {
  color:#AE8A4C;            /* brown on hover */
}

@media (min-width: 1920px) {
  .section-wrapper{
    max-width: 1615px;   /* keep content centered */
    
   
  }
}

/* ---------------------------
   Responsive Breakpoints
----------------------------*/

/* For tablets (768px - 1023px) */
@media (max-width: 1023px) {
  .section-wrapper {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }

  .column {
    flex: 1 1 45%;
    min-width: unset;
  }


}


/* For mobile (up to 767px) */
@media (max-width: 767px) {
  .section-wrapper {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .column {
    flex: 1 1 100%;
  }

  .column h3 {
    font-size: 16px;
    text-align: center;
  }

  .column li {
    font-size: 13px;
    text-align: center;
  }
   .column li::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
/* Laptop screens (1024px - 1440px) */
@media (min-width: 1024px) and (max-width: 1440px) {
  .section-wrapper {
    flex-direction: row;
    justify-content: space-between;
     }

  .column {
    flex: 1 1 30%;   /* 3 columns, evenly spaced */
    min-width: 300px;
  }
}


/* video-section */
.section-title {
  font-size: 22px;
  margin-bottom: 15px;
}

.slider-container {
  position: relative;
  display: flex;
  align-items: center;
}

.video-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 15px;
  padding: 10px;
  width: 100%;
}

.video-slider::-webkit-scrollbar {
  display: none;
}

.video-card {
  background: #fff;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.video-iframe-wrapper {
  position: relative;
  width: 100%;
  height: 190px; /* same as thumbnail ki height */
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.video-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px 12px 0 0;
}
/* .close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.7);
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 4px 10px;
  border-radius: 50%;
  cursor: pointer;
}
.close-btn:hover {
  background: red;
} */



.video-card:hover {
  transform: translateY(-5px);
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  border-radius: 12px 12px 0 0;
  background: #000; /* ya white, gap fill ke liye */
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 18px 22px;
  pointer-events: none;
}


  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    background-color: rgba(0,0,0,0.6);
    border-radius: 50%;
    padding: 20px 25px;
  }

.video-info {
  padding: 12px 15px;
  text-align: center;

}

.video-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 8px 0 4px;
  color: #000000;
}

.video-info p {
  color: #555;
  font-size: 13px;
  margin-bottom: 6px;
}
.video-info h4:hover{
  color: #ae8a4c;
}

.arrow {
  position: absolute;
  background: #fff;
  border: none;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
  font-size: 20px;
  cursor: pointer;
  z-index: 1;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.arrow.left {
  left: -10px;
}

.arrow.right {
  right: -10px;
}
@media (min-width: 1920px) {
 .slider-container {
 max-width: 1500px;
}
}
/* Responsive tweaks */
@media (max-width: 768px) {
  .video-card {
    min-width: 260px;
  }

  .play-button {
    font-size: 32px;
    padding: 14px 18px;
  }

  .video-info h4 {
    font-size: 15px;
  }

  .video-info p {
    font-size: 12px;
  }
}

/* game */
    .section-title::after {
      content: '';
      width: 60px;
      height: 4px;
      
      display: block;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
      gap: 30px;
      
      margin: auto;
    }

   .media-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 2px solid transparent;
  position: relative;
}
    .media-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .media-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .media-card:hover img {
      transform: scale(1.05);
    }

    .card-content {
      padding: 15px 20px;
    }

    .card-title {
      font-size: 1.2rem;
      font-weight: bold;
      color: #333;
      margin-bottom: 5px;
    }

    .card-subtitle {
      font-size: 0.95rem;
      color: #777;
    }

    @media (max-width: 600px) {
      .section-title {
        font-size: 1.5rem;
      }
    }

    
 
/* Top Logo Slider */
        /* .logo-slider {
      overflow: hidden;
 background-color: white;
      padding: 30px 0;
    }
    .logo-slider h2{
      text-align: center;
    }

    .slider-track {
      display: flex;
      animation: scroll 10s linear infinite;
    }

    .slide {
      border-radius: 10px;
      background-color: white;
      flex: 0 0 auto;
      margin: 0 25px;
      border: 1px solid black;
    }

    .slide img {
      border-radius: 10px;
      max-height: 70px;
      max-width: 140px;
      object-fit: contain;
      filter: brightness(1.1);
      padding: 10px;
     
    }

    .slide img:hover {
      transform: scale(1.1);
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    } */
     .logo-slider {
 
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  position: relative;
}

.logo-slider h2 {
  text-align: center;
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

.slider-track {
  display: flex;
  width: calc(260px * 20); /* 10 original + 10 duplicated */
  animation: scroll 40s linear infinite;
}

.heads{
  text-align: center;
  border-bottom: 2px solid black;
  padding-bottom: 12px;
}
.slide {
     width: 190px;
    flex-shrink: 0;
    display: flex
;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
    border: 1px solid black;
    border-radius: 10px;
    margin: 20px;
}

.slide img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}

/* Smooth scroll keyframes */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

   .footer-container {
  background-image: url(./image/footer-bg\ 1.png);
  background-size: cover;
  background-position: center;
  padding: 60px 100px 30px;
  color: #fff;
  position: relative;
 
}
.social-iconss{
  padding-bottom: 10px;
      display: flex
;
    gap: 15px;
}

.divider {
  width: 1px;
  background: #444;
  height: 60%;
  position: absolute;
  left: 50%;
  top: 10%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
 padding-top  :30px ;
  margin: auto;
  gap: 30px;
}

.footer-left {
  flex: 1;
  min-width: 280px;
  padding-right: 40px;
}

.social-iconss img {
  height: 24px;
}

.footer-left p {
  font-size: 20px;
  
  

  max-width: 580px;
  color: #ddd;
}

.footer-left .socials {
  margin-top: 20px;
}

.footer-left .socials i {
  margin-right: 15px;
  font-size: 20px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-left .socials i:hover {
  color:#ae8a4c ;
}

.footer-center {
  min-width: 220px;
  padding-left: 20px;
}

.footer-center ul {
  list-style: none;
  padding: 0;
}

.footer-center li {
  margin-bottom: 12px;
}

.footer-center a {
  font-size: 15px;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-center li:first-child a {


  font-size: 16px;
}

.footer-center a:hover {
  color: #ae8a4c;
}


.footer-right {
  flex: 1;
  min-width: 280px;
  padding-left: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.footer-right img {
  height: 60px;
  width: 100px;
  object-fit: contain;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
  transition: transform 0.3s;
}

.footer-right img:hover {
  transform: scale(1.05);
}

.search-boxs {
  position: relative;
  width: 180px;
 
}

.search-boxs input {
  width: 100%;
  height: 25px;
  padding: 5px 15px;
  padding-right: 35px;
  border: 1px solid #ccc;
  border-radius: 20px;
  outline: none;
}


.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #aaa;
}

/* -------- RESPONSIVE -------- */

@media (max-width: 1024px) {
  .footer-container {
    padding: 50px 30px 25px;
  }
  .footer-content {
    gap: 25px;
  }
}

@media (max-width: 768px) {
 
  .footer-container {
    padding: 40px 20px 20px;
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .footer-left, .footer-center, .footer-right {
    padding: 0;
    min-width: 100%;
  }

  .footer-right {
    justify-content: flex-start;
  }

  .divider {
    display: none;
  }

  .footer-left p {
    max-width: 100%;
  }

  .search-boxs {
    width: 50%;
  }
 
}

@media (max-width: 480px) {
  .footer-left img,
  .footer-right img {
    height: 26px;
    width: 29px;
  }

  .footer-left p {
    font-size: 14px;
  }

  .footer-center li,
  .footer-left .socials i {
    font-size: 14px;
  }

  .footer-center li:first-child {
    font-size: 15px;
  }

  .footer-bottom {
    font-size: 12px;
    margin-top: 30px;
  }
}

    
    /* 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;
      }
    }

    











                         
 /* footer */
 
 
                      


















 