:root {
  /* 
   * Color system 
   */
  --primary-hue: 210;
  --primary-saturation: 100%;
  --primary-lightness: 50%;
  
  --primary: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
  --primary-dark: hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) - 10%));
  --primary-light: hsl(var(--primary-hue), var(--primary-saturation), calc(var(--primary-lightness) + 10%));
  
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  
  /* Body */
  --body-bg: #ffffff;
  --body-color: #212529;
  
  /* Typography */
  --font-family-sans-serif: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --font-size-base: 1rem;
  --line-height-base: 1.6;
  
  /* Spacing */
  --spacer: 1rem;
  
  /* Border radius */
  --border-radius: 0.375rem;
  --border-radius-lg: 0.5rem;
  --border-radius-sm: 0.25rem;
  
  /* Box shadow */
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: var(--line-height-base);
  color: var(--body-color);
  background-color: var(--body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 
 * Typography
 * ========================================================================== */

/* Fluid typography for modern responsive design */
@media (min-width: 576px) {
  html {
    font-size: calc(14px + (16 - 14) * ((100vw - 576px) / (1200 - 576)));
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 1rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: inherit;
}

h1 { font-size: calc(1.375rem + 1.5vw); }
h2 { font-size: calc(1.325rem + 0.9vw); }
h3 { font-size: calc(1.3rem + 0.6vw); }
h4 { font-size: calc(1.275rem + 0.3vw); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

@media (min-width: 1200px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
  h4 { font-size: 1.5rem; }
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Modern link styling */
a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

a:hover {
  color: var(--primary-dark);
/*  text-decoration: underline;*/
}

/* 
 * Spacing utilities
 * ========================================================================== */

.mt-6 {
  margin-top: 4rem !important;
}

.mb-6 {
  margin-bottom: 4rem !important;
}

.py-6 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

/* 
 * Components
 * ========================================================================== */

/* Buttons */
.btn {
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  border-radius: var(--border-radius);
  padding: 0.5rem 1.25rem;
  transition: all 0.2s ease-in-out;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Cards */
.card {
  border: none;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-sm);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

/* Forms */
.form-control {
  padding: 0.5rem 0.75rem;
  border-radius: var(--border-radius);
  border: 1px solid #ced4da;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 0.25rem rgba(var(--primary-hue), var(--primary-saturation), var(--primary-lightness), 0.25);
}

/* 
 * Layout
 * ========================================================================== */

/* Container max widths for modern screen sizes */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  padding-right: calc(var(--spacer) * 1.5);
  padding-left: calc(var(--spacer) * 1.5);
}

@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}

/* 
 * Utility classes
 * ========================================================================== */

/* Modern focus styles for accessibility */
.focus-style:focus {
  outline: 2px solid var(--primary-light);
  outline-offset: 2px;
}

/* Smooth transitions */
.transition {
  transition: all 0.3s ease;
}

/* 
 * Dark mode (optional)
 * ========================================================================== */

@media (prefers-color-scheme: dark) {
  :root {
    --body-bg: #121212;
    --body-color: #f8f9fa;
    --dark: #f8f9fa;
    --light: #212529;
  }
  
  .bg-light {
    background-color: var(--light) !important;
  }
  
  .text-dark {
    color: var(--dark) !important;
  }
}

.btn-orange {
    background-color: #e74c3c;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.5s ease;
}

.btn-orange:hover {
    background-color: #c0392b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}




/* Navbar initial state */
.navbar {
  background-color: transparent !important;
  color: white !important;
  border-bottom:1px solid rgba(100, 100, 100, 0.4);
  transition: background-color 1s ease-in-out;
  padding: 30px 10px;
}

/* Navbar scrolled state */
.navbar.scrolled {
  background-color: #101010 !important;
  transition: background-color 1s ease-in-out !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Ensure text stays white */
.navbar,
.navbar .nav-link,
.navbar .navbar-brand {
  color: white !important;
}

/* Search icon color */
.search-icon {
  color: white !important;
}
/* Optional: Add some spacing for better visual appearance */
.navbar-nav .nav-item {
  padding: 0 0.5rem;
}
.right-section {
  margin-left: auto;
}

.nav-phone{
  width: 45px;
  height: 45px;
  background-color: #cfcfcf;
  color: #333333;
}

.nav-num{
  font-size: 1.7rem !important;
  font-weight: 500;
}
/* Search input with icon */
.search-container {
  position: relative;
}
.search-input {
  padding-right: 2.5rem;
  border-radius: 20px;
}
.search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #6c757d;
}
.search-icon:hover {
  color: #0d6efd;
}

/* Dropdown menu styling */
.dropdown-menu {
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.dropdown-item {
  padding: 0.5rem 1.5rem;
}
.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #0d6efd;
}

@media (max-width: 991.98px) {
  .mobile-search {
    display: flex !important;
    flex-grow: 1;
    justify-content: center;
    margin: 0 1rem;
  }
  .desktop-search {
    display: none !important;
  }
  /* Mobile dropdown styling */
  .dropdown-menu {
    border: none;
    box-shadow: none;
  }
  .dropdown-item {
    padding: 0.5rem 1rem;
  }
}
@media (min-width: 992px) {
  .mobile-search {
    display: none !important;
  }
}


/*******************************/
/*  HERO SECTION
/*******************************/

.hero-section {
    position: relative;
/*    height: 100vh;*/
    height: 750px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation: zoom 15s linear infinite;
    animation-delay: 1.5s;
}

.hero-slide.active {
    opacity: 1;
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.5);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 40px;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}


.hero-pages {
    position: relative;
    
    background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(107, 18, 10, 0.7)),
    url("../images/church.jpg");
    height: 400px;
    overflow: hidden;
}

.page-name{
  margin-top:17%;
  z-index: 10;
}

.page-name h1{
    font-size: 3.4rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-tree a:hover, .page-tree span{
  color: #ff776b;
}

.page-tree a, .page-tree p{
  color: #fff;
  font-variant: small-caps;
  font-size: 1.3rem;
  letter-spacing: 4px;
}


/*******************************/
/*  STATS SECTION
/*******************************/

.stats-section {

  background-color: #fefefe;
  margin: 90px 0;
}

.stat-item {
  background: none;
  position: relative;
  width: 98%;
  
}

.stat-item::after{
    content: "";
    position: absolute;
    top: 60px;
    right: -20px;
    width: 1px;
    height: 30%;
    background-color: #e9e9e9;
    border-radius: 2px;
    box-shadow: 0 3px 5px rgba(255,255,255,0.1);
}

/*.stat-item:last-child::after{
  content: none;
}
*/
.stat-number{
  font-size: 9rem;
  color: #E9E9E9;
  text-align: center;
  font-family: 'Syabil', sans-serif;
  font-weight: bolder;
  line-height: 100%;
}


/*.stat-item:hover {
  transform: translateY(-5px);
}
*/
.stat-count {
  margin-bottom: 1.5rem;
}

.stat-label {
  position: absolute;
  top: 40%;
  
  width: 100%;
  font-weight: bolder;
  text-align: center;
  color: #121212;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border-top: 3px solid #ffffff75;
  border-bottom: 3px solid #ffffff75;
}


/*******************************/
/*  ABOUT SECTION
/*******************************/
.about-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.about-page {
    padding: 100px 0;
    background-color: #fff;
    margin-top: 100px;
}

.about-image{
  width: 90%;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #7f8c8d;
}

.lead-text::before{
    content: "";
    position: absolute;
    top: 0;
    left: -20px;
    width: 4px;
    height: 100%;
    background-color: #e74c3c;
    border-radius: 2px;
}

.normal-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 40px;
}

.divider {
    width: 100px;
    height: 3px;
    background-color: #e74c3c;
    margin: 40px 0;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.btn-readmore {
    background-color: #e74c3c;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-readmore:hover {
    background-color: #c0392b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
ul.blist{
  margin-bottom: 35px;
}

ul.blist li{
  padding: 5px 0 !important;
}

.p-list{
    display: block;
    padding: 5px;
}

/*******************************/
/*  SERVICE ICON SECTION
/*******************************/

.service-section{
  margin-top: 60px;

}



.service-item{
  margin: 30px 0;
/*  border-right: 1px solid #333333;*/
  padding-left: 20px;
  padding-right: 20px;
  height: 320px;
  position: relative;
  cursor: pointer;
}

.service-item:hover .service-icon, .service-item:hover .service-more{
  color: #C0392B;
}


.service-item::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 80%;
  background-color: #f3f3f3; /* Faint gray */
  box-shadow: 1px 0 3px rgba(0, 0, 0, 0.06); /* Very light shadow */
  pointer-events: none; /* So it doesn't interfere with mouse */
}

.last-item::after {
  content: none;
}

.service-icon{
  font-size: 4rem;
  margin: 30px 0;
  color: #48484888;
}

.service-title{
  font-size: 1.6rem;
  margin: 25px 0;
  color: #48484888;
}

.service-more{
  font-size: 1.5rem;
  margin: 25px 0;
  color: #48484888;
  font-weight: 900;
  transition: all 0.5s ease;
}

.service-item:hover .service-more{
  font-weight: bolder;
  transform: translateX(14px);
}

.service-section-2{
  background-color: #FAFAF8;
  padding: 100px 0;
}

.service-section-2 .card{
  border: 1px solid #9c9c9c99;
  min-height: 200px;
  margin: 12px 0;
}

.service-section-2 .card:hover .sicon{
  color: #e74c3c;
}

.service-section-2 .card:hover {
  border: 1px solid #e74c3c !important;
}

.service-section-2 .sicon{
  font-size: 2.3rem;

}

.service-section-2 h2{
  font-size: 1.3rem !important;
}

/*******************************/
/*  EDUCATION SECTION
/*******************************/

.education-section{
  background-color: #FAFAF8;
  margin: 100px 0 0 0;
  padding: 70px 0;
}

.edu-item{
  margin-bottom: 10px;
}

.edu-thumb{
  width: 20%;
}
.edu-content{
  width: 80%;
  padding-left: 30px;
  font-size: 100%;
}

.edu-title{
  font-size: 1.2rem;
  font-weight: 700;
}

.edu-text{
  font-size: 1rem;
}

.edu-icon{
  width: 120px; 
  height: 120px; 
  background-color: #f3f3f3;
  font-weight:bolder;
  font-size: 1.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px 10px 15px 15px;
}


/*******************************/
/*  OUTREACH SECTION
/*******************************/

.gallery-item {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-title {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    padding: 40px 0;
    margin-bottom: 40px;
    color: white;
    border-radius: 0 0 50px 50px;
}


/*******************************/
/*  TEAM SECTION
/*******************************/

.team-carousel .carousel-inner {
            padding: 1rem 0;
        }
        
        .team-carousel .carousel-item {
            transition: transform 0.6s ease;
        }
        
        .team-member {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            margin: 0 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .team-member img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .team-member-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .team-member:hover .team-member-overlay {
            transform: translateY(0);
        }
        
        .team-member:hover img {
            transform: scale(1.05);
        }
        
        .member-name {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .member-title {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 10px;
        }
        
        .member-desc {
            font-size: 0.85rem;
            margin-bottom: 15px;
        }
        
        .member-link {
            color: #fff;
            text-decoration: none;
            font-size: 0.8rem;
            display: inline-flex;
            align-items: center;
        }
        
        .member-link:hover {
            text-decoration: underline;
        }
        
        .member-link i {
            margin-left: 5px;
        }
        
        /* Desktop - show multiple items */
        @media (min-width: 768px) {
            .team-carousel .carousel-inner {
                padding: 1rem 3rem;
            }
            
            .team-carousel .carousel-item.active,
            .team-carousel .carousel-item-next,
            .team-carousel .carousel-item-prev {
                display: flex;
            }
            
            .team-carousel .carousel-item-right.active,
            .team-carousel .carousel-item-next {
                transform: translateX(33.333%);
            }
            
            .team-carousel .carousel-item-left.active, 
            .team-carousel .carousel-item-prev {
                transform: translateX(-33.333%);
            }
            
            .team-carousel .carousel-item-right,
            .team-carousel .carousel-item-left {
                transform: translateX(0);
            }
        }

/*******************************/
/*  GOOD NEWS SECTION
/*******************************/

.good-news {
 
  background: 
    linear-gradient(to right, rgba(0, 0, 0, 1), rgba(107, 18, 10, 0.7)),
    url("../images/church.jpg") no-repeat center center;
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
  height: 700px;
  width: 100%;
}

.church-left{
  height: 600px;
}

.church-left h1{
  font-family: "Arial Black", Gadget, sans-serif;
  color: #fff;
  font-weight: bolder;
  font-size: 2.6rem;
}

.good-news .normal-text{
  color: #fff;
}

.church-right{

}

.live{
  text-align: center;
  width: auto;
  font-size: 2rem;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 40px;
}

.zoom-logo {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #2D8CFF 0%, #2D8CFF 50%, #0B5ED7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(45, 140, 255, 0.3);
    display: inline-block;
    padding: 0 8px;
    border-radius: 8px;
    position: relative;
  }

  /* Optional: Add a subtle container to mimic Zoom's rounded box */
  .zoom-logo::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, rgba(45, 140, 255, 0.2), rgba(13, 92, 217, 0.2));
    border-radius: 10px;
    z-index: -1;
  }

  .church-right table{
    width: 100% !important;
    color: #fff;
  }
  .church-right table th, .church-right table td{
    border: 1px solid #fff !important;
    padding: 10px;
  }


/*******************************/
/*  TAGLINE SECTION
/*******************************/

.tag-line {
  margin-top: 150px;
  background: 
    linear-gradient(to right, rgba(0, 0, 0, 1), rgba(20, 3, 1, 0.8)),
    url("../images/bg-1.jpg") no-repeat center center;
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
  height: 600px;
  width: 100%;
  color: #fff;
  text-align: center;
}

.tagline{
  font-family: 'Dancing Script', cursive;
  font-size: 1.7rem;
  background: linear-gradient(90deg, white, #e74c3c, white);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  animation: gradientFlow 3s linear infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
.church-left{
  height: 600px;
}

.church-left h1{
  font-family: "Arial Black", Gadget, sans-serif;
  color: #fff;
  font-weight: bolder;
  font-size: 2.6rem;
}

.tag-line .normal-text{
  color: #fff;
}



/*******************************/
/*  EDUCATION PAGE
/*******************************/
.accordion-container {
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 6px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    transform: translateY(-2px);
}

.accordion-button {
    padding: 20px 25px;
    border-radius: 12px !important;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    background: white;
}


.accordion-button:not(.collapsed) {
    color: #e74c3c;
    background: #f8f9fa;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(13, 110, 253, 0.25);
}

.accordion-button::after {
    background-image: none;
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
    color: #6c757d;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    color: #E74C3C;
}

.accordion-body {
    padding: 20px 25px;
    color: #495057;
    line-height: 1.6;
    background: white;
}

.feature-icon {
    margin-right: 12px;
    color: #E74C3C;
    font-size: 1.2rem;
}

.badge-custom {
    margin-left: 10px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.8rem;
}

.progress {
    height: 8px;
    margin-top: 15px;
    border-radius: 4px;
}

.list-group-item {
    border: none;
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.status-icon {
    margin-right: 10px;
}

.image-preview {
    border-radius: 8px;
    margin-top: 15px;
}




/*******************************/
/*  TESTIMONIALS SECTION
/*******************************/

.testimonial-slider-container {
    position: relative;
}

.testimonial-section {
    background-color: #C0392B; /* The vibrant pink from the image */
    color: #ffffff;
    border-radius: 1rem;
    overflow: hidden; /* Ensures the rounded corners apply to children */
}

.testimonial-quote {
    font-size: 1.5rem; /* Base font size */
    font-weight: 300;
    line-height: 1.6;
    border-left: 4px solid rgba(255, 255, 255, 0.5);
    padding-left: 1.5rem;
}

/* Responsive font size for the quote */
@media (min-width: 768px) {
    .testimonial-quote {
        font-size: 2rem;
    }
}

.author-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid #ffffff;
}

.author-details p {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-details .author-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-visit-university {
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 50rem; /* pill shape */
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
}

.btn-visit-university:hover {
    background-color: #ffffff;
    color: #C0392B;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-visit-university .fa-stack {
    transition: all 0.3s ease-in-out;
}

.btn-visit-university:hover .fa-stack .fa-circle {
   color: #C0392B;
}
 .btn-visit-university:hover .fa-stack .fa-inverse {
   color: #ffffff !important;
}

/* Slider Controls Styling */
.tns-controls {
    position: absolute;
    top: 50%;
    left: -15px;
    right: -15px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.tns-controls button {
    background: #fff;
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #C0392B;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.tns-controls button:hover {
    background: #C0392B;
    color: #fff;
}

/* Hiding controls on smaller screens where they might overlap content */
@media (max-width: 767.98px) {
    .tns-controls {
        left: 5px;
        right: 5px;
    }
     .tns-controls button {
        width: 35px;
        height: 35px;
     }
}

.tns-nav {
  text-align: center;
  margin-top: 1rem;
}
.tns-nav button {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border: none;
  border-radius: 50%;
  margin: 0 5px;
  padding: 0;
  transition: all 0.3s ease;
}
.tns-nav-active {
  background-color: #dd0a7e !important;
}



/*******************************/
/*  RESEARCH SECTION
/*******************************/
.research-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}
.research-wrapper{
/*  background-color: #E74C3C;*/
  background: linear-gradient(to right, rgba(231, 76, 60, 0.6), rgba(0, 6, 73, 0.9), rgba(63, 5, 0, 1)),
    url("../images/research-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 40px;
  color: #fff;
}

.research-h1{
/*  margin:auto 0;*/
font-variant: small-caps;
}

.research-section p{
  text-align: justify-all;

}

.box-logos-partner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.box-logos-partner .item-partner {
  display: inline-block;
  width: 25%;
  margin-bottom: 40px;
}






/*******************************/
/*  FOOTER
/*******************************/
img {
    max-width: 100%;
    height: auto;
}
/*section {
    padding: 60px 0;
}*/
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.socials, .contact-area {
    border-bottom: 1px solid #353C46;
}

.contact-content p {
    font-size: 15px;
    margin: 30px 0 60px;
    position: relative;
}

.contact-content p::after {
    background: #353C46;
    bottom: -30px;
    content: "";
    height: 1px;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    width: 80%;
}

.contact-content h6 {
    color: #8b9199;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
}

.contact-content span {
    color: #353c47;
    margin: 0 10px;
}

.contact-social {
    margin-top: 30px;
}

.contact-social > ul {
    display: inline-flex;
}

.contact-social ul li a {
    border: 1px solid #8b9199;
    color: #8b9199;
    display: inline-block;
    height: 40px;
    margin: 0 10px;
    padding-top: 7px;
    transition: all 0.4s ease 0s;
    width: 40px;
}

.contact-social ul li a:hover {
    border: 1px solid #FAB702;
    color: #FAB702;
}

.contact-content img {
    max-width: 210px;
}

#contact, footer {
    background: #1A1E25;
    color: #868c96;
    font-size: 1rem;
}

footer p {
    padding: 40px 0;
    text-align: center;
}

footer img {
    width: 44px;
}

/*******************************/
/*  RESPONSIVE DESIGN
/*******************************/

/* Base styles (mobile-first approach) - no media query needed */
/* These styles apply to all devices */
body {
  font-size: 16px;
  line-height: 1.5;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  /* Your styles for small devices here */
  body {
    font-size: 17px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  /* Your styles for medium devices here */
  body {
    font-size: 18px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  /* Your styles for large devices here */
  body {
    font-size: 19px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  /* Your styles for extra large devices here */
  body {
    font-size: 20px;
  }
}

/* XXL devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  /* Your styles for XXL devices here */
}

/* Custom media queries for specific needs */
/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
  /* Specific styles for this range */
}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
  /* Specific styles for mobile and small tablets */
}

/* Portrait phones */
@media (max-width: 575px) {
  .navbar {
    padding: 18px 0;
  }
  .hero-content h1 {
    font-size: 2.6rem;
    margin-top: 60px;
    text-align: center;
  }

  .hero-content p {
    text-align: center;
      font-size: 1rem;
      margin-top: 40px;
  }

  .page-name{
    margin-top:50%;
    z-index: 10;
  }


}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Styles for retina displays */
}

/* Print styles */
@media print {
  /* Styles for printed documents */
  body {
    background: white;
    color: black;
    font-size: 12pt;
  }
  
  /* Hide non-essential elements */
  .no-print {
    display: none !important;
  }
}

/* Dark mode preference */
@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #121212;
    --text-color: #ffffff;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}




