@charset "utf-8";



/* ===========================
   Afcarcont Section
=========================== */

/* ---------- Parent container ---------- */
.Afcarcont {
  margin-top: -100px; /* adjust if overlapping navbar */
  padding: 40px 15px;
  box-sizing: border-box;
}

/* ---------- Row inside container ---------- */
.Afcarcont .rowmuch {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  align-content: flex-end;
}

/* ---------- Hover card ---------- */
.Afcarcont .rowmuch .hover-4 {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background-color: #fefefe; /* slight gray base */
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.4s ease;
  height: 300px;
}

.Afcarcont .rowmuch .hover-4:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  background-color: #ffffff; /* brighter white on hover */
}

/* ---------- Card image ---------- */
.Afcarcont .rowmuch .hover-4 img {
  background-color: transparent; /* perfect */
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;              /* ← remove rounding here */
  transition: transform 0.3s ease;
}

.Afcarcont .rowmuch .hover-4:hover img {
  transform: scale(1.05);
}

/* ---------- Overlay ---------- */
.Afcarcont .rowmuch .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0); /* transparent by default */
  transition: background 0.4s ease;
  z-index: 90;
}

.Afcarcont .rowmuch .hover-4:hover .hover-overlay {
  background: rgba(255, 255, 255, 0.9); /* more white on hover */
}

/* ---------- Content inside card ---------- */
.Afcarcont .rowmuch .hover-4-content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  padding: 15px;
  z-index: 99;
}

/* ---------- Title (always visible) ---------- */
.Afcarcont .rowmuch .hover-4-content .hover-4-title .Cap {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 100px;
  color: #E0CB0C;
  text-decoration: none;
}

/* ---------- Description (hidden initially) ---------- */
.Afcarcont .rowmuch .hover-4-content .hover-4-description {
  font-size: 15px;
  line-height: 1.4;
  margin: 0;
  opacity: 0.3; /* hidden by default */
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  color: #5E5050;
  text-decoration: none;
}

/* ---------- Remove underline from links ---------- */
.Afcarcont .rowmuch .hover-4-content .hover-4-description a {
  text-decoration: none;
  color: inherit;
}

/* ---------- Show description on hover ---------- */
.Afcarcont .rowmuch .hover-4:hover .hover-4-content .hover-4-description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}


/* Remove underline from all link elements inside hover cards */
.Afcarcont .rowmuch .hover-4 a,
.Afcarcont .rowmuch .hover-4 a:hover,
.Afcarcont .rowmuch .hover-4 a:focus,
.Afcarcont .rowmuch .hover-4 a:active {
  text-decoration: none !important;
  border-bottom: none !important;
  outline: none;
  color: inherit; /* keeps same color for text */
}

/* =====================================================
   WELCOME SECTION — MUKTA (HEADINGS) + INTER (PARAGRAPH)
   ===================================================== */

.welcome {
  width: 100%;
  padding: 60px 0;
}

/* ------------------------
   HEADINGS — MUKTA
--------------------------- */

.welcome h5 {
  font-family: 'Mukta', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color:#576594;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}
.welcome h6 {
  font-family: 'Mukta', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color:#475C6B;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
text-align: justify;
}

.welcome h3 {
  font-family: 'Mukta', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color:#D16507;
  line-height: 1.35;
  margin-bottom: 22px;
}

/* ------------------------
   PARAGRAPHS — INTER
--------------------------- */

.welcome p,
.welcome h6.darkgrey {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #444;
  line-height: 1.55;
  margin-bottom: 16px;
  letter-spacing: 0.2px; /* enhances readability */
}

/* ------------------------
   IMAGES
--------------------------- */
.welcome img {
  width: 100%;
  height: auto;
  display: block;
}

/* ------------------------
   BUTTON
--------------------------- */
.welcome a.btn {
  font-family: 'Mukta', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 6px;
}

/* =====================================================
   GLOBAL SPACING UTILITIES (SOP STANDARD)
   ===================================================== */

/* Vertical spacing */
.sp-10 { margin-top: 10px; margin-bottom: 10px; }
.sp-15 { margin-top: 15px; margin-bottom: 15px; }
.sp-20 { margin-top: 20px; margin-bottom: 20px; }
.sp-30 { margin-top: 30px; margin-bottom: 30px; }
.sp-40 { margin-top: 40px; margin-bottom: 40px; }

/* Top only */
.sp-top-20 { margin-top: 20px; }
.sp-top-30 { margin-top: 30px; }

/* Bottom only */
.sp-bottom-20 { margin-bottom: 20px; }
.sp-bottom-30 { margin-bottom: 30px; }
/* ===========================
   Responsive Adjustments
=========================== */
@media (max-width: 992px) {
  .Afcarcont {
    margin-top: -50px;
    padding: 30px 10px;
  }

  .Afcarcont .rowmuch {
    justify-content: center;
  }

  .Afcarcont .rowmuch .hover-4 {
    height: 250px;
  }

  .Afcarcont .rowmuch .hover-4-content .hover-4-title .Cap {
    font-size: 20px;
  }

  .Afcarcont .rowmuch .hover-4-content .hover-4-description {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  /*
	.Afcarcont .rowmuch {
    flex-direction: column;
    align-items: center;
  }

  .Afcarcont .rowmuch .hover-4 {
    width: 80%;
    max-width: 320px;
    height: 220px;
    margin-bottom: 20px;
  }

  .Afcarcont .rowmuch .hover-4-content {
    padding: 10px;
  }
}
	*/
	  .Afcarcont {
    display: none !important;
  }
}


/* Hide desktop version on mobile */

.social-section {
    background-color: #f9f9f9;
}

.social-section h4 {
    font-weight: 700;
    color: #0e3481; /* blue */
}

.social-section .instagram-media,
.social-section .fb-post,
.social-section .twitter-timeline {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Mobile adjustments */

@media (max-width: 767.98px) {
    .social-section .instagram-media,
    .social-section .fb-post,
    .social-section .twitter-timeline {
        max-width: 100% !important;
        margin: 0 auto 20px;
    }
}
{
	
	 /*
  .Afcarcont { display: none !important; }
}

/* Mobile alternative section 
.Afcarcont-mobile {
  padding: 20px 15px;
  background: #EDEDED;
}
 /*
.Afcarcont-mobile .mob-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform .2s ease;
}

.Afcarcont-mobile .mob-card:hover {
  transform: scale(1.02);
}

.Afcarcont-mobile img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.Afcarcont-mobile h5 {
  margin: 10px 12px 5px;
  color: #E0CB0C;
  font-weight: 700;
}

.Afcarcont-mobile p {
  margin: 0 12px 15px;
  color: #5E5050;
  font-size: 14px;
  line-height: 1.4;
}

*/
	/* ------------------------
   RESPONSIVE (MOBILE)
--------------------------- */

/* ------------------------
   RESPONSIVE — MOBILE
--------------------------- */

  .welcome {
    padding: 40px 0;
  }

  .welcome h3 {
    font-size: 26px;
  }

  .welcome h6 {
    font-size: 16px;
  }

  .welcome p {
    font-size: 14.5px;
  }

  .welcome .col-md-4,
  .welcome .col-md-8 {
    text-align: center;
  }

  .welcome img {
    max-width: 75%;
    margin: 0 auto 20px;
  }
}
