@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

/* WordPress Theme Global Styles with Bootstrap 5 */
:root {
    --primary-color: #0073aa;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #fff933;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --bg-one: #dbedfa;
    --bg-two: #f7f1ef;
    --color-main: #e8594b;
    --color-main-two:#7b39f8;
    --color-bg:#f5f6f9;
    
    --body-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --heading-font: 'Anton', sans-serif;

    --line-height-base: 1.6;
    --border-radius: 0.25rem;
    --transition-base: all 0.3s ease;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 1rem;
    line-height: var(--line-height-base);
    color: #212529;
    background-color: #ffffff;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    margin: 0;
    padding: 0;
    padding-top: 120px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1, .h1 { font-size: calc(1.375rem + 1.5vw); }
h2, .h2 { font-size: calc(1.325rem + 0.9vw); }
h3, .h3 { font-size: calc(1.3rem + 0.6vw); }
h4, .h4 { font-size: calc(1.275rem + 0.3vw); }
h5, .h5 { font-size: 1.25rem; }
h6, .h6 { font-size: 1rem; }

@media (min-width: 1200px) {
    h1, .h1 { font-size: 2.5rem; }
    h2, .h2 { font-size: 2rem; }
    h3, .h3 { font-size: 1.75rem; }
    h4, .h4 { font-size: 1.5rem; }
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover, a:focus {
    color: #005177;
    text-decoration: underline;
}

a:focus {
    outline: thin dotted;
    outline-offset: 2px;
}

/* Lists */
ul, ol {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

ul ul, ul ol, ol ol, ol ul {
    margin-bottom: 0;
}

li {
    margin-bottom: 0.5rem;
}

/* Tables */
table {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
    background-color: transparent;
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
    border-top: 2px solid #dee2e6;
}

.table-bordered {
    border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border-style: none;
}

figure {
    margin: 0 0 1rem;
}

/* Forms */
button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button, input {
    overflow: visible;
}

button, select {
    text-transform: none;
}

button, [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
}

button:not(:disabled), [type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled) {
    cursor: pointer;
}

/* WordPress Specific Classes */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter {
    display: block;
    margin: 1rem auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 1rem;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: #6c757d;
    text-align: center;
    margin-top: 0.5rem;
}

.gallery {
    margin-bottom: 1.5rem;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    margin: 0 0 1.5rem;
    padding: 0 1rem;
    width: 100%;
}

.gallery-caption {
    display: block;
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.sticky {
    position: relative;
}

.bypostauthor {
    display: block;
}

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* WordPress Blocks Compatibility */
.wp-block-group {
    margin-bottom: 2rem;
}

.wp-block-separator {
    margin: 2rem auto;
    border: none;
    border-bottom: 2px solid #dee2e6;
}

.wp-block-quote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
}

.wp-block-pullquote {
    border-top: 4px solid #dee2e6;
    border-bottom: 4px solid #dee2e6;
    padding: 2rem 0;
    margin: 2rem 0;
    text-align: center;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

/* Responsive Embeds */
.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive::before {
    display: block;
    content: "";
    padding-top: 56.25%;
}

.embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* WordPress Navigation Menus */
.main-navigation {
    display: block;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
}

.main-navigation .sub-menu {
    display: none;
    position: absolute;
    z-index: 999;
    background: #ffffff;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    min-width: 200px;
}

.main-navigation .menu-item-has-children:hover > .sub-menu {
    display: block;
}

/* Media Queries */
@media (max-width: 767.98px) {
    .main-navigation .sub-menu {
        position: static;
        box-shadow: none;
    }
}

/* Print Styles */
@media print {
    *,
    *::before,
    *::after {
        text-shadow: none !important;
        box-shadow: none !important;
    }
    
    a:not(.btn) {
        text-decoration: underline;
    }
    
    img {
        page-break-inside: avoid;
    }
    
    p, h2, h3 {
        orphans: 3;
        widows: 3;
    }
    
    h2, h3 {
        page-break-after: avoid;
    }
    
    body {
        min-width: 992px !important;
    }
}

.site-branding img{
	width: 201px;
}


.donation-button {
    background: #e8594b;
    color: #ffffff;
    border-radius: 9px;
    transition: all 0.3s ease;
    padding: 10px 20px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
  }
  
  .donation-button:hover {
    background: #d94c3f;
    transform: scale(1.05);
    color: #ffffff;
    text-decoration: none;
  }


  /* Navbar base styles */
.navbar {
    background-color: #ffffff;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
  }
  
  .navbar-nav > li > a,
  .navbar-nav .nav-link {
    color: #000 !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease-in-out;
    text-decoration: none !important;
  }
  
  
/* Base styles for the hero section */
.hero {
    background-color: #7b39f8;
    padding: 80px 0;
}
 
.hero-inner h1 {
    color: var(--light-color);
    font-size: 60px;
    line-height: 1.2;
}
 
/* Style for the static text */
.hero-inner .static-text {
    display: block;
    margin-bottom: 10px;
}
 
/* Style for the text animation container */
.hero-inner .text-animation {
    position: relative;
    height: 70px;
    display: block;
    overflow: hidden;
}
 
/* Style for each animated text element */
.hero-inner .text-animation span {
    color: var(--danger-color);
    font-weight: 700;
    position: absolute;
    left: 0;
    width: 100%;
   
    /* Initial state - all hidden */
    opacity: 0;
    transform: translateY(20px);
    
    /* Add transition for smooth animation */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Active state for the current text */
.hero-inner .text-animation span.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-inner h1 {
        font-size: 40px;
    }
   
    .hero-inner .text-animation {
        height: 50px;
    }
}

/* Slider styling */
.slider-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    transition: transform 0.5s ease, opacity 0.5s ease;
}
 
/* Animate active slide */
.single-slider .slick-active img {
    transform: scale(1.05);
    opacity: 1;
    border-radius: 15px;
}
 
.slider-item {
    overflow: hidden; /* Crucial for border-radius to work */
    border-radius: 15px; /* Optional: add to parent too */
}
section {
    position: relative;
    display: block;
    overflow: hidden;
  }
.level-one {
background-color: var(--bg-one)
}
.level-one .mv{
    background: var(--light-color);
  border-radius:
10px;
}
.level-two {
    background-color: var(--bg-two);
    }


    .inner-sr-card {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        cursor: pointer;
      }
      
      .inner-sr-card img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
        transition: transform 0.5s ease;
      }
      
      /* Card heading overlay */
      .card-heading {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(232, 89, 75, 0.6);
        padding: 10px 15px;
        text-align: center;
        transition: background 0.3s ease, opacity 0.5s ease;
        opacity: 0;
        
      }
      
      /* Show heading on hover */
      .inner-sr-card:hover .card-heading {
        opacity: 1;
      }
      
      .card-heading h6 {
        margin: 0;
        font-size: 18px;
      }
      
      .card-heading h6 a {
        color: #fff;
        text-decoration: none;
        letter-spacing: 2px;
        font-family: var(--body-font);
        text-transform: uppercase;
      }
      
      .card-heading h6 a:hover {
        text-decoration: none;
        color: #ffd700;
      }
      
      /* Zoom image on hover */
      .inner-sr-card:hover img {
        transform: scale(1.1);
      }
      
      
      .site-footer{
        background-color: #e6e8fc;
        display: block;
        position:relative;
        overflow: hidden;
      }
      
      .footer-inner ul{
        list-style: none;
        margin: 0;
        padding: 0;
      }
      .footer-inner ul li {
        
      }
      .footer-inner ul li a{
        color: #000;
        text-decoration: underline;
      }
      .fa-instagram {
        color: #ec5858;
      }
      
      .contact-box h3 {
        font-size: 20px;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 5px;
      }
      
      .contact-box .line {
        content: "";
        height: 1px;
        width: 30px;
        background-color: white;
        display: inline-block;
      }
      
      .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 15px;
      }
      
      .contact-item i {
        font-size: 18px;
        margin-top: 4px;
      }
      
      .contact-item p {
        margin: 0;
        line-height: 1.5;
      }
      .contact-item a{
        color: #000 !important;
        text-decoration: none;
      }
      .level-three{
        background-color: #f4f9fb;
      }

      .blog-link {
        text-decoration: none;
        color: inherit;
      }
      
      .blog-front {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
      
      .blog-front img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
        transition: transform 0.4s ease;
      }
      
      .front-blog-info {
        position: absolute;
        bottom: 0;
        padding: 20px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        width: 100%;
        color: #fff;
        transition: background 0.4s ease;
      }
      
      .blog-meta {
        font-size: 14px;
        color: #ffd700;
        display: block;
        margin-bottom: 8px;
      }
      
      .blog-title {
        margin-bottom: 10px;
        color: var(--light-color);
        font-size: 18px;
        font-family: var(--body-font);
        font-weight: 600;
        margin-bottom: 10px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
      }
      
      .read-more {
        background-color: var(--color-main);
        color: var(--bg-one);
        border: none;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        transition: background 0.3s ease, color 0.3s ease;
      }
      
      .read-more:hover {
        background-color: #ffdd57;
        color: #000;
      }
      
      .blog-front:hover {
        transform: scale(1.03);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      }
      
      .blog-front:hover img {
        transform: scale(1.05);
      }
      

      .btn-gradient-purple {
        background: var(--color-main);
        border: none;
      }
    .btn-gradient-purple:hover{
        background: var(--color-main);
        text-decoration: none;
    }
      .btn-gradient-blue {
        background: var(--color-main-two);
        border: none;
      }
      .btn-gradient-blue:hover{
        background: var(--color-main-two);
        text-decoration: none;
      }
    
      .btn:hover {
        opacity: 0.9;
        transform: translateY(-2px);
        transition: all 0.3s ease-in-out;
      }
      .level-four{
        background-color: var(--color-bg);
      }
      .header-img {
        background-color: #000; /* Black background */
  background-image:
    repeating-linear-gradient(
      to right,
      transparent,
      transparent 30px,
      rgba(255, 255, 255, 0.2) 30px,
      rgba(255, 255, 255, 0.2) 32px
    ),
    repeating-linear-gradient(
      to bottom,
      transparent,
      transparent 30px,
      rgba(255, 255, 255, 0.2) 30px,
      rgba(255, 255, 255, 0.2) 32px
    );
      }

      .header-img h1{
        color: #fff;
        letter-spacing: 2px;
        font-size: 50px;
      }

      .abt-inner-img img{
        border-radius: 27px;
      }
      .content-abt {
        background:
#f8fdfe;
  padding:
17px;
  border-radius:
21px;
  margin-left: -96px;
  margin-top: 94px;
      }

      .contact-map {
        position: relative;
        display: block;
        z-index: 0;
      }
      .content-contact {
        background:
        #f8fdfe;
          padding:
        17px;
          border-radius:
        21px;
          margin-left: -96px;
          margin-top: 94px;
          position: relative;
      }


      #wpcf7-f29-o1 .wpcf7-submit {
        background-color: var(--color-main);
        color: var(--light-color);

}      


.header-image-cpt {
  width: 100%;
  background-size: cover;
  height: 300px;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center; /* Vertical center */
}

.header-content {
  width: 100%;
}
.header-image-cpt h1{
  color: var(--color-bg);
  text-transform: uppercase;
  letter-spacing: 7px;
}
.cpt-cont {
  margin-top: -75px;
    z-index: 1;
    position: relative;
    background: #fff;
    padding: 21px;
    border-radius: 17px;
}
.cpt-cont h1{
  color: var(--color-main);
}

/* Remove underline from all navbar links */
.navbar .nav-link:hover,
.navbar .dropdown-item:hover {
    text-decoration: none;
}
/* Main dropdown fixes */
.navbar .dropdown-menu {
  max-width: 300px;
  white-space: normal;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.navbar .dropdown-item {
  white-space: normal;
  word-break: break-word;
  padding: 0.5rem 1.25rem;
  margin: 2px 0;
  border-radius: 4px;
  transition: all 0.2s;
}

/* Hover styles from previous request */
.navbar .dropdown-item:hover {
  background-color: #e8594b;
  color: #f8f9fa;
  transform: translateX(3px);
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #e8594b; /* Your main color */
  color: #f8f9fa; /* Your light color */
  border: none;
  cursor: pointer;
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top:hover {
  background-color: #d04a3d; /* Slightly darker on hover */
  transform: translateY(-3px);
}

.back-to-top i {
  font-size: 1.2rem;
}


.blg-list .card-title a{
  color: var(--color-main) !important;
}
.blg-list .btn {
  background: var(--color-main);
    border: solid 1px var(--color-main);
    font-weight: 400;
    border-radius: 0;
    font-size: 21px;
}
.wp-block-heading {
  color: var(--color-main);
  margin-top: 5px;
}
.wp-block-latest-posts__list li a{
  color: var(--color-main-two);
}
.wp-block-latest-posts__list li{
  border-bottom: solid 1px var(--color-main-two);
}
ul.wp-block-archives-list{
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
ul.wp-block-archives-list a{
  color: var(--color-main-two);
}

ul.wp-block-categories-list{
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
ul.wp-block-categories-list a{
  color: var(--color-main-two);
}
.featured-img-wrapper {
  position: relative;
}
.entry-header {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff !important;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
}
.entry-header a {
  color: #fff !important;
  text-decoration: none;
}
.spost {
  color: var(--light-color);
  font-size: 36px;
  letter-spacing: 2px;
}

.donation-form .btn {
  background-color: var(--color-main);
}
.priv ul{

margin: 0;
padding-left: 61px;
}



/* Mobile responsiveness */
@media (max-width: 991.98px) {
  .navbar .dropdown-menu {
    max-width: 100%;
    box-shadow: none;
  }
}










@media (max-width: 575.98px) {
  .cpt-main .w-75{
    width: 100% !important;
  }
	.content-contact{
		margin-left:0px;
	}		
}

/* Add to your theme's CSS */
@media (min-width: 992px) {
  #navbarNav .navbar-nav .nav-link {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Optional: Add more space around the Donate button */
  .cta-button {
    margin-left: 2rem;
  }
}

.level-three{
	display:none;
}

.pagess .entry-header{
  position: relative;
  display: block;
  width: 100%;
}
#gform_submit_button_1 {
  background-color: var(--color-main) !important;
}
.gform_heading {
  display: none !important;
}


#wpcf7-f129-o1 input{
  border-radius: 0;
  height: 50px;
  background: #f6f7fa;
}
#wpcf7-f129-o1 select{
    border-radius: 0;
  height: 50px;

}
#wpcf7-f129-o1 textarea{
    border-radius: 0;
  height: 150px;
  background: #f6f7fa;
}

#wpcf7-f129-o1 .wpcf7-list-item input{
  height: 12px;
}

#wpcf7-f129-o1 .wpcf7-submit {
  background: #e8594b;
  border: solid 1px #e8594b !important;
}



@media (max-width: 575.98px) {
   .hero-inner h1 {
    font-size: 26px;
  }
	.footer-inner{
		text-align:center;
	}
	.contact-item{
		display:inline-block !important;
		text-align:center !important;
	}
	footer p{
		font-size:10px !important;
	}
	body{padding-top:105px !important;}
	.site-branding img{
		width:170px !important;
	}
	.level-one .p-5{
		padding: 1rem !important;
	}
	.level-one .col-md-6{
		margin-bottom:15px !important;
	}
}


	
