
/* slider */
.gallery-section {
  padding: 60px 20px !important;
}

.gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 25px;
}

.gallery-item {
  width: 100% !important;
  border-radius: 18px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(213, 183, 110, 0.45);
}

/* Modal */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.4s ease;
}

.modal-img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 20px;
  border: 4px solid #d5b76e;
  animation: zoomIn 0.4s ease;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #d5b76e;
  cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.7); }
  to { transform: scale(1); }
}

/* Tablet */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile – SINGLE IMAGE */
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Wrapper with background */
.partners-wrapper {
  background: url("../img/service-2.jpg") no-repeat center center / cover;
  border-radius: 50px;
  margin-bottom: 60px;
  overflow: hidden;
}

/* Dark overlay for readability */
.partners-overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 70px 20px;
}

/* Section Header */
.section-heading {
  color: #d5b76e;
  font-size: 36px;
  margin-bottom: 10px;
}

.section-subtext {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 50px;
}

/* Partners Grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: center;
}

/* Partner Card */
.partner-card {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  transition: all 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-6px);
  background: rgba(213, 183, 110, 0.12);
}

/* Logo */
.partner-logo {
  max-width: 140px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

/* Name */
.partner-name {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 992px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .partners-wrapper {
    border-radius: 25px;
  }

  .partners-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .section-heading {
    font-size: 28px;
  }
}

.downloads-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.section-title {
  color: #d5b76e;
  font-size: 36px;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #555;
  margin-bottom: 50px;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.download-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.download-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(213,183,110,0.35);
}

/* PDF Icon */
.pdf-icon {
  width: 60px;
  height: 60px;
  background: #d5b76e;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

/* Title */
.download-card h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #222;
}

/* Buttons */
.download-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.btn-view,
.btn-download {
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

/* View */
.btn-view {
  background: transparent;
  border: 1px solid #d5b76e;
  color: #d5b76e;
}

.btn-view:hover {
  background: #d5b76e;
  color: #fff;
}

/* Download */
.btn-download {
  background: #d5b76e;
  color: #fff;
}

.btn-download:hover {
  background: #b89a56;
}

/* Responsive */
@media (max-width: 992px) {
  .downloads-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .downloads-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }
}


/* profile */

