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

body {
  font-family: Arial, sans-serif;
  background: #f6f8fb;
  color: #172033;
  overflow-x: hidden;
}

.gallery-section {
  padding: 18px 0;
}

.gallery-section.alt {
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: white;
  border: 1px solid rgba(23, 32, 51, 0.08);
  box-shadow: 0 16px 44px rgba(23, 32, 51, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 60px rgba(23, 32, 51, 0.16);
}

.gallery-card img {
  width: 100%;
  height: 280px;
  display: block;
  object-fit: contain;
  background: #eef3f8;
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card img {
    height: 240px;
  }
}

/* ========================== */
/* FOOTER SECTION STYLES */
/* ========================== */

/* FOOTER BACKGROUND */
.fort {
  background: linear-gradient(45deg, rgb(140, 0, 255), #0da6ff);
   background-attachment: fixed;
  padding-top: 20px;
  padding-bottom: 20px;
  
}

/* PREVENT COLUMN STRETCHING */
.fort .row {
  align-items: flex-start;
}

/* COLUMN TEXT */
.fort .col {
  font-weight: 500;
  font-size: 15px;
  color: white;
}

/* HEADINGS */
.fort h3 {
    color: white;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

/* PARAGRAPH */
.parAbout {
  
  font-size: 20px;
  line-height: 1.6;
  max-width: 250px;
  margin-bottom: 8px;
  color: white;
}

/* LIST STYLE (SCOPED TO FOOTER ONLY) */
.fort ul {
  margin: 0;
  padding: 0;
}

.fort ul li {
  list-style: none;
  color: white;
  margin-bottom: 6px;
  transition: 0.3s;
}

/* LINK STYLE */
.opts a {
  color: white;
  text-decoration: none;
}

/* LINK HOVER */
.opts ul li:hover {
  text-decoration: underline;
  transform: translateX(5px);
}

/* SMALL ICONS */
.fa-arrow-right {
  font-size: 14px;
  margin-right: 5px;
}

/* SOCIAL CONTAINER */
.social {
  display: flex;
  gap: 12px;
  padding-left: 10px;
}

/* SOCIAL ICONS */
.social i {
  font-size: 22px;
  transition: 0.3s ease;
  display: inline-block;
}

/* HOVER EFFECT */
.social i:hover {
  transform: scale(1.2);
}

/* INDIVIDUAL COLORS */
.fa-x-twitter:hover {
  color: #000;
}

.fa-facebook:hover {
  color: #1877f2;
}

.fa-instagram:hover {
  background: linear-gradient(
    45deg,
    #f58529,
    #dd2a7b,
    #8134af,
    #515bd4
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fa-youtube:hover {
  color: #ff0000;
}

.fa-tiktok:hover {
  color: #25f4ee;
}

/* ACTIVE CLICK EFFECT */
.social i:active {
  color: rgb(53, 245, 28);
}

/* DIVIDER LINE */
.footerhr {
  border: none;
  height: 1px;
  background:white;
  margin: 20px 0;
}

/* COPYRIGHT */
.copyright {
  text-align: center;
  color: white;
  font-size: 14px;
  font-weight: 500;
}

/* COPYRIGHT ICONS */
.fa-heart {
  color: red;
  font-size: 14px;
}

.fa-circle {
  font-size: 10px;
}

.fa-circle-dot{
  font-size: 7px;
}
