body, h1, h2, h3, p, ul, li, a, button {
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}
.custom-line {
    border: none;
    border-top: 2px solid #333;
    margin: 20px 0;
    width: 100%;
}
.financial-goals-section {
    background-color: #f6f5f5; /* Light pinkish background for the section */
    padding: 3rem 1rem;
}

.container {
/*
    max-width: 1200px;
*/
    margin: 0 auto;
    text-align: center;
    /*font-weight: bold;*/
}
/*.welcome-message {
    font-size: 24px;
    margin-bottom:40px;
    text-align: center;
}*/


.container .section-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: center !important;
}
.text-center{
    text-align: center;
    justify content:center;
}


/*.section-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}*/


.help-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}
.steps-section {
    display: flex !important;
    gap: 3rem;
    justify-content: center;
}

/*.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.step img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 1rem;
    color: black;
}
*//* Reflection Section Styles *//*
.reflection-section {
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;

    margin: 50px auto;
    overflow: hidden;
    position: relative;
    animation: fadeIn 1.5s ease-in-out;
}

*//* Heading Style *//*
.reflection-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
}

*//* List Styling *//*
.reflection-section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.reflection-section ul li {
    font-size: 1.2rem;
    margin: 10px 0;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transform: translateX(-50px);
    opacity: 0;
    animation: slideIn 0.8s ease-in-out forwards;
}

.reflection-section ul li:nth-child(2) {
    animation-delay: 0.2s;
}

.reflection-section ul li:nth-child(3) {
    animation-delay: 0.4s;
}

*//* Button Styling *//*
.reflection-section .cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff;
    background: #e74c3c;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    animation: buttonPulse 1.5s infinite;
}

.reflection-section .cta-button:hover {
    background: #c0392b;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.6);
    transform: scale(1.05);
}

*//* Keyframe Animations *//*
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(231, 76, 60, 0.6);
    }
    50% {
        box-shadow: 0 0 20px rgba(231, 76, 60, 0.8);
    }
}


@media (max-width: 768px) {
    .goal-circle {
        width: 120px;
        height: 120px;
    }

    .goal-item h3 {
        font-size: 1rem;
    }

    .goal-description {
        font-size: 0.9rem;
    }

    .help-cards {
        flex-direction: row;
        align-items: center;
    }
}*/

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    position: sticky;
    color: #c20000;
    top: 0;
    z-index: 1000;
    box-shadow: 5px solid red;
}

.logo img {
    height: 90px;
    width: 115px;
    object-fit: cover;
}
.menu-toggle {
display: none;
background: none;
border: none;
font-size: 24px;
cursor: pointer;
}
@media (max-width: 768px) {
 .menu-toggle {
 display: block;
 }
.nav-links {
display: none;
flex-direction: column;
background-color: white;
position: absolute;
top: 80px;
left: 0;
width: 100%;
padding: 10px;
}
.nav-links.active {
display: flex;
 }
 }

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    font-size: 1.2rem !important;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #8b0000;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.2rem;

}



/* Buttons inside Navigation */
.nav-links button {
    background: transparent;
    border: none;
    color: #9b1d1d;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}


/* Dropdown Menu */
.dropdown .dropdown-toggle {
    background: transparent;
    border: none;
    color: #900000;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.2rem;
}

.dropdown .dropdown-toggle:hover {
    transform: scale(1.05);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    min-width: 200px;
    z-index: 1000;
    padding: 0;
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        display: none;
        background: linear-gradient(90deg, #3B82F6, #EF4444);
        width: 100%;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        text-align: center;
    }
}


/* === Navigation Bar Responsive Fix === */

/* Tablets and small desktops (max-width: 991px) */
@media (max-width: 991px) {
  nav {
    padding: 5px 15px;
  }

  .logo img {
    height: 70px;
    width: 90px;
  }

  .nav-links {
    font-size: 1rem !important;
    gap: 15px;
  }

  .dropdown-menu {
    min-width: 160px;
  }
}

/* Medium devices (max-width: 768px) */
@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
    padding: 5px 10px;
  }

  .logo img {
    height: 60px;
    width: 80px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: linear-gradient(90deg, #3B82F6, #EF4444);
    position: absolute;
    top: 70px;
    left: 0;
    padding: 10px 0;
    gap: 0;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    width: 100%;
  }

  .nav-links a,
  .nav-links button,
  .dropdown .dropdown-toggle {
    padding: 12px 0;
    font-size: 1rem !important;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0;
  }
}

/* Small devices / phones (max-width: 576px) */
@media (max-width: 576px) {
  nav {
    padding: 5px 5px;
  }

  .logo img {
    height: 50px;
    width: 70px;
  }

  .nav-links a,
  .nav-links button,
  .dropdown .dropdown-toggle {
    font-size: 0.95rem !important;
    padding: 10px 0;
  }

  .dropdown-menu li a {
    padding: 8px 0;
    font-size: 0.9rem;
  }
}

/* Extra small devices (max-width: 400px) */
@media (max-width: 400px) {
  .logo img {
    height: 45px;
    width: 60px;
  }

  .nav-links a,
  .nav-links button,
  .dropdown .dropdown-toggle {
    font-size: 0.85rem !important;
    padding: 8px 0;
  }

  .dropdown-menu li a {
    font-size: 0.8rem;
    padding: 6px 0;
  }
}


/* Extra small devices (phones, <480px) *//*
@media screen and (max-width: 479px) {
  .hero-section .container {
    padding: 20px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-section .text-content {
    width: 100% !important;
    text-align: center !important;
  }

  .hero-section h1 {
    font-size: 1.8rem !important;
  }

  .hero-section .welcome-message {
    font-size: 1rem !important;
    margin-bottom: 20px !important;
  }

  .highlight-section {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    align-items: center !important;
  }

  .highlight-section .card {
    width: 90% !important;
  }

  .btn.btn-success {
    width: 100% !important;
    padding: 12px !important;
    font-size: 1.1rem !important;
  }
}

*//* Small devices (480px to 767px) *//*
@media screen and (min-width: 480px) and (max-width: 767px) {
  .hero-section .container {
    padding: 30px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-section .text-content {
    width: 100% !important;
    text-align: center !important;
  }

  .hero-section h1 {
    font-size: 2.2rem !important;
  }

  .hero-section .welcome-message {
    font-size: 1.1rem !important;
    margin-bottom: 25px !important;
  }

  .highlight-section {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 20px !important;
  }

  .highlight-section .card {
    width: 30% !important;
    min-width: 180px !important;
  }

  .btn.btn-success {
    padding: 12px 20px !important;
    font-size: 1.2rem !important;
  }
}

*//* Medium devices (768px to 991px) *//*
@media screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section .container {
    padding: 40px !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
  }

  .highlight-section {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 25px !important;
    justify-content: flex-start !important;
  }

  .highlight-section .card {
    width: 45% !important;
    min-width: 200px !important;
  }
}

*//* Large devices (992px and up) *//*
@media screen and (min-width: 992px) {
  .hero-section .container {
    padding: 40px !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
  }

  .highlight-section {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 30px !important;
  }
}*/

/* Header */
header {
    color: black;
    text-align: center;
    animation: gradientAnimation 6s ease infinite;
}

/*header h1 {
    font-size: 50px;
    font-family: "Manrope", sans-serif;
    text-align: center;

}

header p {
    font-size: 1rem;
    font family: "Manrope", sans-serif;

}

header a {
    font style: "Manrope", sans-serif;
    padding: 0.75em 1.5em;
    border-radius: 25px;
    background: #690d03;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

header a:hover {
    background:black;
    transform: scale(1.05);
}

*//* Scroll-to-Top Button *//*
#scrollTopBtn {
    position: fixed;
    bottom: 1.5em;
    right: 1.5em;
    background:#200103;
    color: #fff;
    padding: 0.75em;
    border-radius: 50%;
    border: none;
    display: none;
    cursor: pointer;
    transition: background 0.3s;
}

#scrollTopBtn:hover {
    background: #22c55e;
}*/

/* Responsive Flexbox */
.container {
    justify-content: space-between; /* Ensures proper spacing */
    align-items: center; /* Aligns items vertically */
    flex-wrap: wrap; /* Ensures responsiveness */
}

/*.text-content {
    flex: 1 1 50%; *//* Adjusted width *//*
}

.image-content {
    flex: 1 1 50%; *//* Adjusted width *//*
}*/

.img-fluid{
width: 100%;
height: auto;
}


@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
}

/* Gradient Animation */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.no-gap {
    margin: 0;
}


.why-ongolbulls {
    text-align: center;
    padding: 50px 20px;
    //background: #fff;
    margin: 20px;
    border-radius: 10px;
}

.why-ongolbulls h2 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 20px;
}

.why-ongolbulls p {
    font-size: 1.1em;
    color: black;
    margin-bottom: 40px;
}

.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    max-width: 300px;
    text-align: center;
    padding: 20px;
   // background: white;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
   // box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1em;
    color: black;
}

/*.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

*//* Responsive Design *//*
@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        max-width: 90%;
    }
}

.overview-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

.overview-section img {
    width: 40%;
    border-radius: 10px;
    animation: fadeInLeft 1s ease-in-out;
}

.overview-content {
    width: 55%;
    animation: fadeInRight 1s ease-in-out;
}

.overview-content h2 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 20px;
}

.overview-content p {
    font-size: 1.2em;
    color: black;
    line-height: 1.8;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {
    .overview-section {
        flex-direction: column;
        text-align: center;
    }

    .overview-section img,
    .overview-content {
        width: 100%;
    }

    .overview-section img {
        margin-bottom: 20px;
    }
}*/

/*
.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 40px 0; */
/* Increased padding to increase height *//*


}

*/
/* Service Card Styling *//*

.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    width: 250px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    border: 2px solid transparent;
    position: relative;
}

*/
/* Hover Effect - Expanding Width & Adding Gradient *//*

.service-card:hover {
    transform: scale(1.05); */
/* Slightly increasing size *//*

    width: 300px;
    border-color: #004d00; */
/* Dark Green Border *//*

    background: linear-gradient(135deg, #005c00, #002400); */
/* Dark Green Gradient *//*

    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

*/
/* Image Styling *//*

.service-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-bottom: 2px solid #004d00;
    transition: opacity 0.3s ease-in-out;
}

*/
/* On Hover - Reduce Image Opacity *//*

.service-card:hover .service-img {
    opacity: 0.8;
}

*/
/* Service Info *//*

.service-info {
    padding: 15px;
    transition: color 0.3s ease-in-out;
}

*/
/* Service Title *//*

.service-title {
    font-size: 18px;
    margin: 10px 0;
    color: #bc4509;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

*/
/* On Hover - Change Text Color *//*

.service-card:hover .service-title {
    color: #fff; */
/* White color *//*

}

*/
/* Service Text *//*

.service-text {
    font-size: 14px;
    color: black;
    margin-bottom: 15px;
    transition: color 0.3s ease-in-out;
}

*/
/* On Hover - Change Text Color *//*

.service-card:hover .service-text {
    color: #d4d4d4; */
/* Light gray *//*

}

*/
/* Responsive Adjustments *//*

@media screen and (max-width: 768px) {
    .service-card {
        width: 90%;
    }

    .service-card:hover {
        width: 95%;
    }
}

@media screen and (max-width: 480px) {
    .service-card {
        width: 100%;
    }

    .service-card:hover {
        width: 100%;
    }
}
*/


.investment-section {
    text-align: center;
    background-color: #0f0a09;
    padding: 40px 20px;
    color: #fff;
}

.investment-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.investment-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.investment-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.investment-item {

    text-align: center;
    padding: 20px;
    cursor: pointer;

}

.investment-item img {
    max-width: 60px;
    margin-bottom: 15px;
}

.investment-item span {
    font-size: 1.1rem;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .investment-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media screen and (max-width: 480px) {
    .investment-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
}

/* Principles Section */
#principles {
    text-align: center;
    padding: 60px 20px;
    background-color: #f9f9f9;
}

#principles h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
}

.principles-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.principle {
    width: 220px;
    height: 250px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.principle h3 {
    font-size: 1.5rem;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.principle p {
    font-size: 1rem;
    color: black;
}

.principle:hover {
    transform: scale(1.05);
    background-color: #e3e3e3;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}


.principle:hover {
    transform: scale(1.05);
    background-color: #ff5722;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.icon {
    width: 50px;
    height: 50px;
    background-color: #333;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.principle:hover .icon {
    transform: rotate(360deg);
    background-color: #fff;
}

h3 {
    font-size: 1.5rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    color: #211d1d;
    line-height: 1.5;
    opacity: 0.8;
}

.principle:hover h3,
.principle:hover p {
    color: white;
}

@media (max-width: 768px) {
    .principles-container {
        flex-direction: column;
        gap: 20px;
    }
}
#contact {
    background: linear-gradient(135deg, #4f1704, #010108);
    padding: 80px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(230, 228, 228, 0.2);
    color: white;
    position: relative;
    z-index: 1;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 700;

    letter-spacing: 2px;
    text-align: center;

}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    z-index: 2;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.contact-item {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 15px;
    width: 220px;
    max-width: calc(100% - 40px);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
}

.contact-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background-color: #333;
}

.contact-item:hover .icon {
    transform: translateY(-5px) rotate(360deg);
    color: #ff5722;
}

.icon {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-item p {
    font-size: 1.2rem;
    color: #fff;
    transition: color 0.3s ease;
    word-wrap: break-word; /* Prevents overflow of long content */
}

.contact-item:hover p {
    color: #ff5722;
}

.contact-item a {
    color: #ff5722;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.contact-item a:hover {
    color: #fff;
    text-shadow: 0 0 10px #ff5722, 0 0 20px #ff5722;
}

@media (max-width: 768px) {
    #contact {
        padding: 60px 20px;
    }

    h2 {
        font-size: 2.2rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .contact-item {
        width: 100%; /* Take full width on smaller screens */
        max-width: 280px;
        margin: 0 auto;
    }
}

   /* Hover effect for quick links */
   .quick-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.quick-link:hover {
    color: #8e3908; /* Change the color to white on hover */
    text-decoration: underline;
}

/* Hover effect for buttons */

 /* Hover effect for the Chat with Us button */
 #chatBtn:hover {
    background-color: #ff3e3e; /* Darker red on hover */
}

/* Responsive Chat Button */
@media (max-width: 768px) {
    #chatBtn {
        font-size: 1.2rem;
        padding: 12px;
        left: 10px;
        bottom: 70px;
    }
}

@media (max-width: 480px) {
    #chatBtn {
        font-size: 1rem;
        padding: 10px;
        left: 10px;
        bottom: 60px;
    }
}
#principles {
    background-color: #f4f4f4; /* Light background color */
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 20px 0;
}

#principles h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.principles-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.principle {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 200px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.principle:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.principle:active {
    background: linear-gradient(135deg, #ff416c, #ff4b2b); /* Red and pink gradient */
    color: white;
    border-color: transparent;
}

.icon {
    font-size: 2.5rem; /* Large size for icons */
    margin-bottom: 10px;
    color: #ff416c; /* Default icon color */
    transition: color 0.3s ease;
}

.principle:hover .icon {
    color: #ff4b2b; /* Change icon color on hover */
}

.principle h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.principle p {
    font-size: 1rem;
    color: black;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .principles-container {
        flex-direction: column;
        align-items: center;
    }

    .principle {
        width: 100%;
        max-width: 300px;
    }
}
.icon {
    width: 60px; /* Set a fixed or responsive width for the icon */
    height: 60px; /* Set a fixed or responsive height for the icon */
    display: flex; /* Flexbox to center the image */
    align-items: center; /* Vertically center the image */
    justify-content: center; /* Horizontally center the image */
    border-radius: 50%; /* Optional: Make the icon circular */
    overflow: hidden; /* Ensure the image doesn't overflow the container */
    background-color: #f4f4f4; /* Optional: Background color for the icon */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add hover animation */
    cursor: pointer; /* Optional: Add pointer cursor */
}

.icon img {
    width: 80%; /* Make the image fill the container */
    height: 80%; /* Maintain aspect ratio */
    object-fit: cover; /* Ensure the image scales properly within the container */
}

.icon:hover {
    transform: translateY(-5px) scale(1.1); /* Add hover effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
}
/* Overview Infographic Section */
.overview-infographic {
    text-align: center;
    padding: 40px 20px;
    background: #f4f4f4; /* Light background color */
    border-radius: 10px;
}

.overview-infographic h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.infographic-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.infographic-step {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.infographic-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.financial-image {
  text-align: center; /* Center the image */
  margin-bottom: 20px; /* Add some space */
}

.responsive-img {
  max-width: 100%;
  height: auto;
}

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

.btn-primary {
  display: inline-block;
  padding: 10px 20px;
  background-color: #35556c;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  align text:center;
  align item:center;
}
.btn btn-primary{
display: inline-block;
    padding: 10px 20px;
    background-color: #35556c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center
}


/* Override Bootstrap styles */
.btn-success {
    background-color: #34546b !important;  /* Change to your preferred color */
}


.me-2 {
    margin-right: 1rem !important; /* Change margin */
}


./*circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.circle img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.infographic-step h3 {
    font-size: 1.2rem;
    color: #ff5722; *//* Highlighted text color *//*
    margin-bottom: 10px;
}

.infographic-step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}
*/
@media (max-width:576px) {

.goals-container,.steps-section
{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}
    .goal-item,.step
    {
            -ms-flex: 0 0 50%;
            flex: 0 0 50%;
            max-width: 100%
    }
}


.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}

.nav-btn {
  border: none;
  color: black;
  font-size: 20px;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  margin-bottom:80px;
}

.nav-btn:hover {
  background-color: #a80015;
  transform: scale(1.1);
}

.dots {
  display: flex;
  gap: 10px;
  margin-bottom:80px;
}

.dots span {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.dots span.active {
  background-color: #d1001c;
  transform: scale(1.3);
}
