@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Epunda+Slab:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cedarville+Cursive&display=swap');

* {
  padding: 0%;
  margin: 0%;
}

h1,
h2 {
  font-family: "Noto Serif", serif;
  font-style: normal;
}

h1 {
  font-size: 30px;
}

h3 {
  font-family: "Epunda Slab", serif;
  font-weight: 400;
  font-style: normal;
}

.navbar {
  transition: background-color 0.3s ease;
  background-color: transparent;
}
.newNav {
  background-color: white ;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  /* change to your preferred color */}
.navbar.scrolled {
  background-color: white !important;
  /* change to your preferred color */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.nav-link{
    color: black;
    font-weight: bolder;
    margin: 0px 10px;
}
.nav-link:hover{
    color: #f26322;
}
.blogNav {
  background-color: white !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.mainColor {
  color: #f26322;
}

.tabs {
  text-decoration: none;
  color: white;
  padding: 10px 20px;
  font-weight: bolder;
}
.myBtn {
  background: linear-gradient(135deg, #ff7a18, #af002d 85%);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(175, 0, 45, 0.3);
  cursor: pointer;
}

.myBtn:hover {
  background: linear-gradient(135deg, #ff9966, #ff5e62);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 94, 98, 0.5);
}

.myBtn:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(255, 94, 98, 0.4);
}

.mainSlider {
  padding-top: 250px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.slider a{
    color: white;
}
footer {
  background-color: #080807;
}

footer p {
  color: white;
}

footer a {
  color: white;
}

.footer .social-media i {
  margin-right: 10px;
}

.footer a:hover {
  text-decoration: underline;
}

.mainSlider {
  position: relative;
  /* parent container */
}

.mainSlider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* semi-transparent black */
  z-index: 1;
  /* background overlay */
  pointer-events: none;
  /* allow clicks to pass through */
}


/* Text content on top */
.mainSlider>.d-flex {
  position: relative;
  z-index: 2;

}

.blog-article {
  background-color: #ffffff;
}

.blog-article .card {
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

.blog-article .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


.blog-article header h1 {
  color: #0077b6;
  letter-spacing: 0.5px;
}

.blog-article img {
  border-radius: 12px;
  transition: all 0.3s ease;
}

.blog-article img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-article figcaption {
  font-style: italic;
}

/* ===============================
   Text & Link Styling
   =============================== */

.blog-article p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.blog-article a {
  color: #0088cc;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.blog-article a:hover {
  color: #005f8f;
  text-decoration: underline;
}

/* ===============================
   Headings Inside Article
   =============================== */

.blog-article h2 {
  border-left: 5px solid #0077b6;
  padding-left: 10px;
  margin-top: 2.2rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.blog-article h3 {
  font-weight: 600;
  color: #004c6d;
}

/* ===============================
   Buttons
   =============================== */

.blog-article .btn-primary {
  background: linear-gradient(90deg, #0077b6, #0096c7);
  border: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.blog-article .btn-primary:hover {
  background: linear-gradient(90deg, #0096c7, #0077b6);
  box-shadow: 0 4px 10px rgba(0, 119, 182, 0.3);
  transform: translateY(-2px);
}

/* ===============================
   Divider Line
   =============================== */

.blog-article hr {
  border: none;
  border-top: 2px dashed #d8e2eb;
  margin: 2rem 0;
}

/* ===============================
   Responsive Design
   =============================== */

@media (max-width: 768px) {
  .blog-article .card-body {
    padding: 2rem 1.5rem;
  }

  .blog-article header h1 {
    font-size: 1.8rem;
  }

  .blog-article p {
    font-size: 1rem;
  }
}
.contact-section {
  background-color: #f8f9fa;
}

.contact-section h2 {
  color: #004d61;
}

.contact-section .contact-form {
  border: none;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-section .contact-form:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-section .form-control {
  border-radius: 10px;
  padding: 10px 15px;
}

.contact-section .btn-primary {
  background: linear-gradient(135deg, #00bcd4, #007bff);
  border: none;
  border-radius: 10px;
  padding: 10px 0;
  transition: 0.3s;
}

.contact-section .btn-primary:hover {
  background: linear-gradient(135deg, #007bff, #00bcd4);
  transform: translateY(-2px);
}
.about-journey {
  background: linear-gradient(180deg, #f9fbfc 0%, #eaf9ff 100%);
}

.about-journey h2 {
  color: #00334e;
}

.about-journey p {
  line-height: 1.7;
  color: #444;
}

.about-journey .blockquote {
  font-style: italic;
  color: #006680;
  border-color: #00bcd4;
}

.about-journey img {
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.about-journey img:hover {
  transform: scale(1.03);
}

.about-journey .btn-primary {
  background: linear-gradient(135deg, #00bcd4, #007bff);
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: 600;
}

.about-journey .btn-primary:hover {
  background: linear-gradient(135deg, #007bff, #00bcd4);
  transform: translateY(-2px);
}
.privacy-policy {
  background: #f9fbfc;
  color: #333;
}

.privacy-policy h1 {
  color: #004d61;
}

.privacy-policy h4 {
  color: #007bff;
}

.privacy-policy p, 
.privacy-policy li {
  line-height: 1.7;
}

.privacy-policy ul {
  margin-left: 20px;
}

.privacy-policy a {
  color: #007bff;
}

.privacy-policy a:hover {
  text-decoration: underline;
}
