* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f5f5f5;
  color: #333;
}

    #preloader {
      position: fixed;
      inset: 0;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      z-index: 9999;
      transition: opacity 0.6s ease;
    }

    .preloader-logo-img {
      width: 180px; /* Increased size */
      max-width: 90%;
      animation: pulse 1.5s infinite ease-in-out;
      filter: drop-shadow(0 0 10px gold);
    }

    .preloader-spinner {
      margin-top: 25px;
      width: 50px;
      height: 50px;
      border: 5px solid rgba(255, 215, 0, 0.3);
      border-top-color: gold;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    @keyframes pulse {
      0%, 100% {
        filter: drop-shadow(0 0 10px gold);
      }
      50% {
        filter: drop-shadow(0 0 4px gold);
      }
    }

    body.loaded #preloader {
      opacity: 0;
      pointer-events: none;
    }

    main {
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
    }

    body.loaded main {
      opacity: 1;
    }

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 1%;
  /*padding*/
  background-color: white;

}




.logo img {
  height: 75px;
  /* Adjust logo size */
  transition: transform 0.3s ease-in-out;
}

.logo img:hover {
  transform: scale(1.05);
  /* Slightly enlarge on hover */
}

.navbar {
  display: flex;
  align-items: center;
  padding-right: 1%;
}

.navbar ul {
  list-style-type: none;
  padding: 0;
}

.navbar li {
  display: inline-block;
  position: relative;
  /* Needed for dropdown positioning */
}

.navbar a {
  display: block;
  color: black;
  padding: 14px 20px;
  text-decoration: none;
}

.navbar a:hover {
  background-color: #c4a12e;
  /* Lighter blue */
}

.dropdown {
  display: none;
  /* Hidden by default */
  position: absolute;
  /* Position the dropdown */
  background-color: black;
  /* White background */
  min-width: 160px;
  /* Set a minimum width */
  z-index: 1;
  /* Sit on top */
}

.dropdown li {
  float: none;
  /* Stack dropdown items vertically */
}

.dropdown a {
  color: #D4B248;
  /* Navy blue text */
  padding: 12px 16px;
  /* Padding for dropdown items */
  text-decoration: none;
  display: block;
  /* Make dropdown items block elements */
}

.dropdown a:hover {
  background-color: black;
  /* Light gray on hover */
}

@media (min-width: 1025px) {
  .navbar li:hover>.dropdown {
    display: block;
  }
}

/* Tablet & Mobile - Already Exists */
@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }

  .navbar {
    flex-direction: column;
    width: 100%;
    display: none;
    background-color: #D4B248;
  }

  .navbar.active {
    display: flex;
  }

  .navbar ul {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }

  .navbar li {
    width: 100%;
  }

  .navbar a {
    padding: 12px 20px;
    color: white;
  }

  .dropdown {
    position: relative;
    display: none;
    background-color: black;
    box-shadow: none;
  }

  .has-dropdown.active>.dropdown {
    display: block;
  }

  .navbar li:hover>.dropdown {
    display: none;
    /* Disable hover effect */
  }

  .header-buttons {
    width: 100%;
    justify-content: flex-end;
    margin-top: 10px;
    padding-right: 1rem;
  }

  .dropdown a {
    color: #D4B248;
  }
}

/* Desktop hover dropdown */
@media (min-width: 1025px) {
  .navbar li:hover>.dropdown {
    display: block;
  }
}




/* Responsive Styles */
@media (max-width: 768px) {
  .navbar li {
    display: block;
    /* Stack items vertically on small screens */
    text-align: left;
    /* Align text to the left */
  }

  .navbar {
    text-align: left;
    /* Align navbar items to the left */

  }


}

/* Mobile Navbar Toggle Button */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: black;
  cursor: pointer;
  padding-right: 1%;
  /* toggle */
}





/* Hide menu on small screens by default */
@media (max-width: 768px) {

  .align-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .navbar {
    width: 100%;
    display: none;
    flex-direction: column;
    background-color: #D4B248;
  }

  .navbar ul {
    width: 100%;
  }

  .navbar li {
    display: block;
    width: 100%;
  }

  .navbar a {
    padding: 10px 20px;
  }

  .navbar.active {
    display: flex;
  }

  .dropdown {
    position: static;
  }

  .navbar li:hover .dropdown {
    display: none;
    /* Disable hover dropdown on mobile */
  }

  .navbar li.active .dropdown {
    display: block;
  }
}




.header-buttons button {
  background-color: #D4B248;
  color: white;
  border: none;
  padding: 10px 15px;
  margin-left: 10px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
}

.header-buttons button:hover {
  background-color: #D4B248;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
  padding-top: 5%;
}

.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  border-radius: 8px;
  position: relative;

}



.modal-content h2 {
  margin-bottom: 15px;
  color: #D4B248;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.modal-content button[type="submit"] {
  background-color: #D4B248;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 4px;
}


/* Logo Styling */
.popup-logo2 {
  display: block;
  margin: 0 auto 25px;
  /* Center horizontally and add space below */
  max-width: 190px;
  /* Adjust size */
  width: 100%;
  height: auto;
  object-fit: contain;
}


.close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 24px;
  color: #D4B248;
  cursor: pointer;
}

.form {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-buttons {
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .header-buttons button {
    margin-left: 5px;
  }

  .dropdown {
    position: relative;
    width: 100%;
    box-shadow: none;
  }

  .dropdown a {
    padding-left: 30px;
  }
}

/* Desktop dropdown hover */
.navbar li:hover>.dropdown {
  display: block;
}

.icon {
  font-size: 28px;
  color: #ffc107;
  /* Gold/Yellow */
  margin-bottom: 10px;
}

/* Default: hide dropdowns */
.dropdown {
  display: none;
  position: absolute;
  background-color: black;
  min-width: 160px;
  z-index: 1;
  border-radius: 4px;
  top: 100%;
  left: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown li {
  display: block;
}

.dropdown a {
  color: #D4B248;
  padding: 10px 15px;
}

/* Mobile-friendly override */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    width: 100%;
    display: none;
  }

  .navbar.active {
    display: flex;
  }

  .navbar li {
    width: 100%;
  }

  .dropdown {
    position: relative;
    box-shadow: none;
  }

  .navbar .has-dropdown.active>.dropdown {
    display: block;
  }

  .navbar li:hover>.dropdown {
    display: none;
    /* Prevent hover on touch devices */
  }
}

/* Tablet & Kindle View */
@media (min-width: 769px) and (max-width: 1024px) {
  .align-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    font-size: 28px;
    padding: 10px;
  }

  .navbar {
    width: 100%;
    flex-direction: column;
    display: none;
    background-color: #D4B248;
  }

  .navbar.active {
    display: flex;
  }

  .navbar ul {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }

  .navbar li {
    width: 100%;
  }

  .navbar a {
    padding: 12px 20px;
  }

  .dropdown {
    position: relative;
    display: none;
    background-color: black;
    border-radius: 0;
    box-shadow: none;
  }

  .has-dropdown.active>.dropdown {
    display: block;
  }

  .navbar li:hover>.dropdown {
    display: none;
    /* Disable hover on tablet */
  }

  .header-buttons {
    width: 100%;
    justify-content: flex-end;
    margin-top: 10px;
  }
}

     


    /* Hero Section */
.hero {
  height: 100vh;
  background: url('image/hero-image.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-overlay {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0 3%;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* LEFT */
.hero-left {
  flex: 1;
  animation: fadeInLeft 2s ease;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 2.8rem);
  margin-bottom: 20px;
  font-weight: bold;
  white-space: nowrap;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  animation: slideUp 1s ease-out;
  color:white ;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 25px;
  animation: slideUp 1.3s ease-out;
}
.hero-btn-wrapper {
  text-align: left; /* 🖥 Default: left aligned */
}
.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: #D4B248;
  color: black;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
 
}

.hero-btn:hover {
  background-color: #D4B248;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .hero-btn-wrapper {
    text-align: center;
  }
}

/* RIGHT */
.hero-right {
  flex: 1;
  height: 80%;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.75);
  padding: 30px;
  border-radius: 16px;
  animation: fadeInRight 1.8s ease;
}

.news-box1 {
  max-width: 500px;
  margin: auto;
}

.news-box1 h2 {
  font-size: 2rem;
  color: #D4B248;
  border-bottom: 2px solid #D4B248;
  margin-bottom: 25px;
  padding-bottom: 10px;
}

.news-card1 {
  background-color: rgba(255, 255, 255, 0.06);
  padding: 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
  transition: background 0.3s;
}

.news-card1:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.news-card1 .date {
  color: #D4B248;
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: auto;
  }

  .hero-overlay {
    flex-direction: column;
    padding: 30px 20px;
  }

  .hero-left, .hero-right {
    width: 100%;
  }

  .hero-content h1 {
    white-space: normal;
    text-align: center;
    font-size: 2rem;
  }

  .hero-content p,
  .hero-btn {
    text-align: center;
    margin: 0 auto;
  }

  .hero-right {
    margin-top: 30px;
    height: auto;
  }
}


/* about section */
.about-section {
  padding: 80px 20px;
  background: #f7f9fc;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
  animation: fadeInUp 1.2s ease forwards;
}

.about-text h2 {
  font-size: 36px;
  color: #D4B248;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-points {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.about-points li {
  font-size: 17px;
  color: #D4B248;
  margin-bottom: 10px;
}

.about-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #D4B248;
  color: black;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.about-btn:hover {
  background-color: #D4B248;
}

.about-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
  animation: fadeInRight 1.5s ease forwards;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-text h2 {
    font-size: 32px;
  }

  .about-text p,
  .about-points li {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    padding: 0 10px;
  }

  .about-text {
    order: 2;
  }

  .about-image {
    order: 1;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p,
  .about-points li {
    font-size: 16px;
  }

  .about-btn {
    width: 100%;
    margin-top: 15px;
  }

  .about-image img {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .about-text h2 {
    font-size: 24px;
  }

  .about-text p {
    font-size: 15px;
  }

  .about-points li {
    font-size: 15px;
  }
}

/* Welcome Popup Styles */
.welcome-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.4s ease-in-out;
}

.popup-content {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 40px 30px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.05),
    inset 0 0 12px rgba(255, 255, 255, 0.04);
  color: #fff;
  text-align: center;
  position: relative;
  animation: slideDown 0.4s ease;

}

/* Logo Styling */
/* .popup-logo1 {
  width: 224px;
  height: 68px;
  margin-bottom: 15px;
} */


.popup-content h2 {
  font-size: 26px;
  margin-bottom: 12px;
  color: #D4B248;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.popup-content p {
  font-size: 15px;
  margin-bottom: 25px;
  color: #eee;
}

.popup-content input[type="email"] {
  width: 100%;
  padding: 13px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 14px;
  outline: none;
  margin-bottom: 15px;
}

.popup-content input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.popup-content button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  background: linear-gradient(135deg, #D4B248, #a6882c);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(212, 178, 72, 0.3);
  transition: background 0.3s ease;
}

.popup-content button:hover {
  background: linear-gradient(135deg, #bfa032, #947720);
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

.close-btn:hover {
  color: #FFD700;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 500px) {
  .popup-content {
    padding: 30px 20px;
  }

  .popup-content h2 {
    font-size: 22px;
  }

  .popup-content button {
    font-size: 15px;
  }
}

.popup-content {
  padding: 30px 20px;
  height: auto;
  /* Let it adapt */
}

.popup-logo1 {
  width: 224px;
}

.projects-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 36px;
  margin-bottom: 10px;
  color: #D4B248;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.projects-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.project-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 22px;
  color: #D4B248;
  margin-bottom: 10px;
}

.card-content a {
  text-decoration: none;
}

.card-content p {
  font-size: 15px;
  color: #666;
}

.projects-button-wrapper {
  margin-top: 40px;
  text-align: center;
}

.project-btn {
  display: inline-block;
  background-color: #D4B248;
  color: black;
  padding: 12px 30px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.project-btn:hover {
  background-color: #D4B248;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .projects-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* investor section */
.investor-section {
  padding: 80px 20px;
  background: #fff;
  /* border-top: 1px solid #ddd; */
}

.investor-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.investor-text {
  flex: 1;
  min-width: 300px;
  animation: fadeInUp 1.2s ease forwards;
}

.investor-text h2 {
  font-size: 36px;
  color: #D4B248;
  margin-bottom: 20px;
}

.investor-text p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* .investor-points {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.investor-points li {
  font-size: 17px;
  color: #D4B248;
  margin-bottom: 10px;
}
.investor-points li i{
  color: #D4B248;
  margin-right: 8px;


  font-size: 20px;
  display: inline-block;
  font-style: normal;
  font-weight: 600;
 
} */
.investor-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* space between rows */
}

.investor-points li {
  display: flex;
  align-items: center;
  /* vertical alignment */
  gap: 20px;
  /* space between icon and text */
  font-size: 18px;
  color: #D4B248;
  font-weight: 500;
}

.investor-points li i {
  font-size: 32px;
  /* big icons like in your image */
  color: #D4B248;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding-left: 50px;
}

.investor-points li span {
  line-height: 1;
  transform: translateY(1px);
 
}
.investor-points li span a {
  color: #D4B248;
  text-decoration: none;
  font-weight: 600;
}






.investor-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #D4B248;
  color: black;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.investor-btn:hover {
  background-color: #D4B248;
}

.investor-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
  animation: fadeInRight 1.5s ease forwards;
}

.investor-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .investor-container {
    flex-direction: column;
    text-align: center;
  }

  .investor-text h2 {
    font-size: 28px;
  }

  .investor-text p,
  .investor-points li {
    font-size: 16px;
  }

  .investor-btn {
    width: 100%;
  }

  .investor-image img {
    max-width: 90%;
  }
}

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

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #000;
}




/* Header */
.news-header {
  background-color: #000;
  color: #D4B248;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.news-header h2 {
  font-size: 24px;
  padding-left: 0.5%;
  padding-right: 1%;
  margin: 0;
}

.learn-more {
  background-color: #D4B248;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.learn-more a {
  text-decoration: none;
  color: black;
  font-size: 14px;
}

/* Carousel Wrapper */
.news-carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px; /* ⬅️ Balanced space for arrows */
}

.news-carousel-container {
  overflow: hidden;
}

.news-carousel {
  display: flex;
  gap: 24px;
  padding: 40px 0;
  transition: transform 0.5s ease;
  scroll-behavior: smooth;
}

/* News Cards */
.news-card {
  flex: 0 0 auto;
  width: 100%;
  max-width: 300px;
  background: linear-gradient(145deg, #ffffff, #f4f4f4);
  border-radius: 20px;
  border: 1px solid #ddd;
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); */
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: scale(1.05);
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); */
}

.news-card h3 {
  font-size: 20px;
  margin: 0 0 10px;
  color: #333;
}

.news-card h3 a {
  color: #1a1a1a;
  text-decoration: none;
}

.news-card h3 a:hover {
  text-decoration: underline;
}

.news-card p {
  margin-top: 12px;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #d4b248;
  border: none;
  color: white;
  font-size: 22px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); */
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-btn:hover {
  background: #bfa03e;
  transform: scale(1.1);
}

.carousel-btn.left {
  left: 2px; /* Equal padding on both sides */
}

.carousel-btn.right {
  right: 20px;
}

/* Responsive Cards */
@media (max-width: 768px) {
  .news-card {
    max-width: 90%;
    margin: 0 auto;
  }

  .news-carousel-wrapper {
    padding: 0 50px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .news-card {
    max-width: 45%;
  }
}

@media (min-width: 1025px) {
  .news-card {
    max-width: 23%;
  }
}

@media (max-width: 768px) {
  .news-card {
    max-width: 90%;
    margin: 0 auto;
  }

  .news-carousel-wrapper {
    padding: 0 50px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .carousel-btn.left {
    left: 2px; /* ✅ Updated for mobile */
  }

  .carousel-btn.right {
    right: 10px; /* ✅ Updated for mobile */
  }
}


body {
  background: #f7f7f7;
  color: #333;
}

.contact-header {
  background: #D4B248;
  color: black;
  text-align: center;
  padding: 60px 20px;
}

.contact-header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 1.1rem;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  padding: 40px 20px;
}

.contact-form,
.contact-info {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #D4B248;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  margin-top: 15px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  margin-top: 20px;
  background: #D4B248;
  color: black;
  border: none;
  padding: 14px 25px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background .3s ease;
}

.contact-form button:hover {
  background: #D4B248;
}

.contact-info .info-block {
  margin-bottom: 25px;
}

.contact-info .info-block h3 i {
  font-size: 24px;
  color: #D4B248;
  margin-right: 10px;
}

.contact-info .info-block h3 {
  margin-bottom: 8px;
  color: #D4B248;
}

.contact-info .info-block a {
  color: #D4B248;
  text-decoration: none;
}

.map-placeholder iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 8px;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}


/* Footer */
.site-footer {
  background-color: #000;
  color: #ddd;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-container h4 {
  color: #D4B248;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-container a {
  color: #ddd;
  text-decoration: none;
}

.footer-container a:hover {
  text-decoration: underline;
}

.contact-column,
.quick-links,
.social-column {
  flex: 1;
  min-width: 200px;
}

.quick-links ul {
  list-style: none;
  padding: 0;
}

.quick-links li {
  margin-bottom: 10px;
}

.social-icons a {
  margin-right: 15px;
  font-size: 20px;
  color: #ddd;
}

.social-icons a:hover {
  color: #D4B248;
}

.subscribe-form input[type="email"] {
  padding: 10px;
  flex: 1;
  background-color: #111;
  color: #D4B248;
  border: none;
  border: 3px solid #D4B248;
  border-radius: 4px;
}

.subscribe-form button {
  padding: 10px 16px;
  background-color: #D4B248;
  /* color: #000; */
  border: 3px solid #D4B248;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.subscribe-form button:hover {
  background-color: #D4B248;
}

.subscribe-message {
  margin-top: 10px;
  padding: 10px;
  background-color: #222;
  color: #D4B248;
  border-radius: 4px;
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .quick-links ul {
    display: inline-block;
  }
}



/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }

  .contact-image {
    width: 100%;
    height: 220px;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .contact-form h2 {
    font-size: 22px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 15px;
  }
}

@media (max-width: 480px) {

  .contact-form input,
  .contact-form textarea {
    padding: 10px;
    font-size: 14px;
  }

  .contact-form button {
    padding: 10px;
    font-size: 15px;
  }
}

/* Fix dropdown visibility for edge-case tablets */
@media (min-width: 820px) and (max-width: 1180px),
(min-width: 853px) and (max-width: 1280px),
(min-width: 912px) and (max-width: 1368px),
(min-width: 1024px) and (max-width: 1368px) {
  .navbar li:hover>.dropdown {
    display: block !important;
  }
}
.read-more-btn1 {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: #D4B248;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.read-more-btn1:hover {
  background: #D4B248;
}
