body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}
.bg-light {
    --bs-bg-opacity: 1;
    background-color: #eef8ed!important;
}
p {
 
    line-height: 26px;
}
/* Logo */
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 26px;
  color: #8b1e1e !important;
}
.mt-6 {
    margin-top: 60px;
}
/* Hero Background Animation */
/* HERO SECTION */
.hero {
    height: 100vh;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background-image: url(banner.jpg);
    background-size: cover;
    background-position: left;
    background-attachment: fixed;
}
/* Gradient Overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    -45deg,
    rgba(139, 30, 30, 0.85),
    rgba(30, 30, 30, 0.85),
    rgba(68, 68, 68, 0.85),
    rgba(139, 30, 30, 0.85)
  );
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
  z-index: 1;
}

/* Gradient Animation */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* SVG Architectural Lines */
/* SVG Container */
.arch-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Base Line Style */
/* Circular SVG Container */
.arch-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: .3;
    width: 130vmin;
    height: 130vmin;
    CONTAIN-INTRINSIC-BLOCK-SIZE: AUTO 100PX;
    z-index: 2;
    pointer-events: none;
    animation: rotateCircle 40s linear infinite;
}

/* Base Circle Style */
.loop {
  fill: none;
  stroke: rgba(255,255,255,0.7);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 15 20;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.6));
}

/* Different Speeds */
.loop1 {
  animation: dashFlow 6s linear infinite;
}

.loop2 {
  animation: dashFlow 9s linear infinite reverse;
}

.loop3 {
  animation: dashFlow 12s linear infinite;
}

/* Dash Flow */
@keyframes dashFlow {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -600; }
}

/* Slow Global Rotation */
@keyframes rotateCircle {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Optional Glow Pulse */
.loop {
  animation-composition: replace;
}

.loop1, .loop2, .loop3 {
  animation-name: dashFlow, pulseGlow;
}

@keyframes pulseGlow {
  0%   { stroke-opacity: 0.4; }
  50%  { stroke-opacity: 1; }
  100% { stroke-opacity: 0.4; }
}


/* Hero Content */
.hero-content {
  z-index: 3;
}

/* Hero Text */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 70px;
  animation: fadeUp 1.2s ease forwards;
}

.hero-subtitle {
  letter-spacing: 2px;
  margin-top: 10px;
  animation: fadeUp 1.8s ease forwards;
}

.hero-date {
  font-size: 18px;
  margin-top: 10px;
  animation: fadeUp 2.2s ease forwards;
}

/* Text Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }

  .hero-title {
    font-size: 44px;
  }
}


/* Section */
.section-padding {
  padding: 100px 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  color: #8b1e1e;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all .6s ease;
      font-weight: 600;
}

.section-title.active {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn-custom {
  background: #8b1e1e;
  color: #fff;
  padding: 10px 30px;
}

.btn-custom:hover {
  background: #6d1515;
  color: #fff;
}


section#categories ul {
    list-style: none;
    padding-left: 10px;
}

section#categories li {
    line-height: 36px;
        list-style: none!important;
}

section#categories i.fa {
  padding-right: 5px;
      color: #8b1e1e;
}

section#categories h5 {
    font-weight: 600;
}
.card {
    box-shadow: none;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12);
    border-radius: 2px;
    background-color: #fff;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 20px;
    min-height: 280px;
}





section#aim ul {
    list-style: none!important;
    padding-left: 10px;
}

section#aim li {
    line-height: 36px;
        list-style: none!important;
}

section#aim i.fa {
  padding-right: 5px;
    color: #8b1e1e;
}

section#aim h5 {
    font-weight: 600;
}

.points li {
    display: flex;
    align-items: baseline;
}
.points {
    display: flex;
}

/* Fade Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media(max-width:768px){
  .hero-title{
    font-size:45px;
  }
    .hero {
    background-attachment: scroll;
  }
  .hero {
    background-position: center;
   
}
.section-padding {
    padding: 80px 10px;
}
}
