/* ========================= Root Colors ========================= */
:root {
    --primary-color: #0075ea;
    --secondary-color: #0062c4fe;
    --text-color: #fff;
    --background-color: #f1f1f1;
    --other-text-color: #080808;
    --shadow-color-white: #f8f8f895;
}

/* ========================= CSS Reset ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition-duration: .2s;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, #f5f9fc, #e8f1f8);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/* === Base Styles === */
.navbar {
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.5rem 1rem;
}

.navContainer {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar_list {
  list-style: none;
  display: flex;
  gap: 24px;
  align-items: center;
}

.navbar_list li {
  position: relative;
}

.navbar_list a {
  color: #eee;
  text-decoration: none;
  padding: 8px 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
}

.navbar_list > li:hover > a,
.dropdown li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

/* === Dropdown === */
.dropdown {
    list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(30, 30, 30, 0.95);
  padding: 0;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
  min-width: 180px;
}

.navbar_list li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  padding: 10px 14px;
  color: #ddd;
}

/* === Login/Profile === */
.loginSetup {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.loginButton,
#profileBtn {
  padding: 6px 16px;
  border-radius: 20px;
  border: none;
  background: #444;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

/* === Hamburger === */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #eee;
  border-radius: 3px;
}

/* === Mobile Responsive === */
@media (max-width: 768px) {
  .navbar_list {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(20, 20, 20, 0.95);
    position: absolute;
    top: 100%;
    left: 0;
    padding: 1rem;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  .navbar_list.show {
    display: flex;
  }

  .dropdown {
    position: static;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: none;
    padding-left: 1rem;
    box-shadow: none;
    display: none;
    flex-direction: column;
  }

  .has-dropdown.open .dropdown {
    display: flex;
  }

  .loginSetup {
    flex-direction: column;
  }

  .hamburger {
    display: flex;
  }
}

/* ========================= Mid Section ========================= */


/* Hero Section CSS */
.hero-section {
    /* background: linear-gradient(135deg, #4a90e2, #50e3c2); */
    background-image: url(../assets/Media/governerMeet.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    padding: 100px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-content{
    width: 60%;
    margin: auto;
}
.hero-content h1 {

    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-primary {
    background-color: #fff;
    color: #4a90e2;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary:hover {
    background-color: #3a78c2;
    color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

/* Features Section CSS */

/* Features Section CSS with Flexbox */
.features-section {
    padding: 80px 20px;
    background-color: #f9faff;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: 700;
}

.features-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    background: white;
    flex: 1 1 220px;
    /* Grow, shrink, base width */
    max-width: 240px;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(74, 144, 226, 0.15);
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(74, 144, 226, 0.3);
}

.feature-item i {
    color: #4a90e2;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #222;
}

.feature-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* ========================= Details Section ========================= */
/* Full-screen section */
/* Base Styles */

.homeSec {
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
}

/* Card-style containers */
.detailContainerNew {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 100%;
    max-width: 480px;
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}

.detailContainerNew:hover {
    transform: scale(1.02);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

/* Header */
.detailsheader {
    background: linear-gradient(to right, #0066ff, #00ccff);
    color: white;
    padding: 18px;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

/* Scrollable body */
.detailBody {
    padding: 14px 20px;
    height: 260px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: start;
    justify-content: start;
}

.scrollBox {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.scrollContent {
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: scrollUp 18s linear infinite;
}

/* Items inside scroll */
.detailsParagraph {
    display: flex;
    align-items: flex-start;
    background: white;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
    font-size: 15px;
    color: #333;
    transition: background 0.3s ease;
}

.detailsParagraph:hover {
    background: #e7f5ff;
}

.detailsParagraph i {
    color: #0077b6;
    margin-right: 10px;
    font-size: 16px;
    margin-top: 2px;
}

.detailsParagraph strong {
    color: #0077b6;
}

/* Scroll Animation */
@keyframes scrollUp {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}

/* ✅ Mobile Responsiveness */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .detailContainerNew {
        max-width: 90%;
    }

    .detailBody {
        height: 200px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 60px 20px;
    background-color: #f9faff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 0 auto 80px;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    font-weight: 700;
}

.marquee-row {
    overflow: hidden;
    white-space: nowrap;
    margin: 20px 0;
    border-radius: 12px;
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.12);
}

.marquee-track {
    display: inline-flex;
    gap: 20px;
    /* animate infinite scroll */
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: marqueeLeft;
    animation-duration: 30s;
}

.marquee-row.marquee-right .marquee-track {
    animation-name: marqueeRight;
    animation-duration: 35s;
}

.marquee-row.marquee-right.slow .marquee-track {
    animation-duration: 45s;
}

.marquee-track img {
    height: 140px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 6px 12px rgba(74, 144, 226, 0.2);
    user-select: none;
    pointer-events: none;
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .marquee-track img {
        height: 100px;
    }
}


/* ========================= Vision-Mission Section ========================= */
.infoInnerContainer {
    display: flex;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.10);
    margin-bottom: 40px;
    transition: box-shadow 0.3s;
    flex-wrap: wrap;
}

/* Gradient backgrounds for containers */
.gradient-yellow-orange {
    background: linear-gradient(135deg, #ffe259 0%, #ffa751 100%);
}

.gradient-cyan-pink {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.gradient-purple-pink {
    background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
}

.photoArea {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.photoArea img {
    width: 45%;
    max-width: 280px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(255, 183, 77, 0.18);
    opacity: 0;
    transform: scale(0.95);
    animation: fadeInPhoto 1s ease-out forwards;
}

.goalPhoto {
    box-shadow: 0 8px 32px rgba(171, 193, 238, 0.18);
}

.textArea {
    flex: 1.3;
    padding: 48px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;
}

.textArea h2 {
    font-size: 2.7rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    text-align: center;
    color: inherit;
    /* inherit color from gradient parent */
}

.textArea p {
    font-size: 1.18rem;
    color: #333;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

@keyframes fadeInPhoto {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .infoInnerContainer {
        flex-direction: column;
        border-radius: 24px;
    }

    .photoArea img {
        width: 70%;
        max-width: none;
    }

    .textArea {
        padding: 30px 20px;
    }
}


/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background-color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 75%;
    margin: 20px auto;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 34, 255, 0.1);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
    color: #222;
}

.faq-list {
    border-top: 2px solid #4a90e2;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    padding: 20px 30px;
    font-size: 1.15rem;
    font-weight: 600;
    background: #f0f5ff;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #d1defe;
}

.faq-toggle {
    font-size: 1.6rem;
    color: #4a90e2;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    background: #fff;
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Enough for the content */
    padding: 15px 30px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* CTA Section */
.cta-section {
    background: #4a90e2;
    color: white;
    padding: 70px 20px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 12px;
    margin: 60px auto;
    width: 75%;
    box-shadow: 0 12px 24px rgba(74, 144, 226, 0.4);
}

.cta-section h2 {
    font-size: 2.75rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background-color: white;
    color: #4a90e2;
    padding: 18px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-section .btn-primary:hover {
    background-color: #3a78c2;
    color: white;
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.5);
}

/* ========================= Footer Section ========================= */
.main-footer {
  background: #181c2f;
  color: #e0e6ed;
  padding: 48px 0 0 0;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 32px auto;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-col {
  flex: 1 1 220px;
  min-width: 180px;
}
.footer-col h3 {
  color: #fff;
  font-size: 1.18rem;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}
.footer-col ul li a {
  color: #e0e6ed;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #50e3c2;
}
.footer-social a {
  display: inline-block;
  margin-right: 16px;
  color: #e0e6ed;
  font-size: 1.4rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #50e3c2;
}
.footer-bottom {
  border-top: 1px solid #23284a;
  padding: 18px 0 12px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
  color: #fff;
}
.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.98rem;
}
.footer-legal a {
  color: #e0e6ed;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: #50e3c2;
}
@media (max-width: 900px) {
  .footer-top, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-bottom {
    align-items: flex-start;
  }
}

.FooterContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 16px 16px 16px;
    gap: 24px;
}

.footer-content {
    flex: 1 1 220px;
    min-width: 200px;
    margin-bottom: 16px;
}

.footer-content.brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-content .logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.footer-content h3 {
    margin: 0 0 12px 0;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #ffd86b;
    font-weight: 600;
}

.footer-content p,
.footer-content li {
    margin: 6px 0;
    font-size: 1rem;
    opacity: 0.95;
}

.footer-content .fa {
    margin-right: 8px;
    color: #ffd86b;
}

.social-icons {
    list-style: none;
    display: flex;
    gap: 16px;
    padding: 0;
    margin: 0;
}

.social-icons li a {
    color: #f3f3f3;
    font-size: 1.4rem;
    transition: color 0.2s, transform 0.2s;
}

.social-icons li a:hover {
    color: #ffd86b;
    transform: scale(1.15);
}

.bottom-bar {
    background: #0d47a1;
    text-align: center;
    padding: 12px 0 8px 0;
    font-size: 0.98rem;
    letter-spacing: 0.5px;
    margin-top: 0;
    color: #bdbdbd;
}

/* ========================= Media Queris ========================= */


/* ========================= Laptop M ========================= */

@media screen and (max-width: 1024px) {
    .navContainer {
        padding: 0px 10px;
    }

    .loginButton {
        font-weight: 400;
        font-size: 15px;
        padding: 5px 10px;
    }

    .navbar ul li a {
        font-size: 15px;
    }

    .midPart .image-container .sideText {
        width: 75%;
    }

    .midPart .image-container .sideText p {
        font-size: 20px;
    }

    .midPart .image-container .sideText button {
        font-size: 13px;
    }

    .row {
        margin: 10px 0px;
    }

    .detailContainer {
        margin: .5rem 1rem;
        padding: 0rem .5rem;
    }

    .detailContainer p {
        font-size: 10px;
    }

    .detailContainer h2 {
        font-size: 15px;
    }

    .textButton {
        font-size: 13px;
    }

    .footer-content h3 {
        font-size: 20px;
    }

    .footer-content p {
        width: 90%;
    }

    .footer-content .Footerlist li::before {
        width: 40px;
    }

    .footer-content .social-icons li a i {
        font-size: 20px;
    }

    .footer-content .Footerlist li {
        padding: 5px;
    }

    .footer-content .Footerlist li a {
        font-size: 13px;
    }

    .textArea p {
        font-size: 15px;
    }

    .textArea h2 {
        font-size: 1.7rem;
    }

    .bottam-bar p {
        font-size: 10px;
    }

    .footer-content .logo {
        width: 100px;
        border-radius: 25px;
    }

}

@media (max-width: 800px) {
    .FooterContainer {
        flex-direction: column;
        align-items: center;
        padding: 24px 8px 8px 8px;
        gap: 12px;
    }

    .footer-content {
        align-items: center;
        text-align: center;
    }
}

/* ========================= Tablet ========================= */

@media screen and (max-width: 768px) {
    .navbar .navContainer {
        padding: 0px 20px;
    }

    .hero-content{
        width: 100%;
    }

    .navbar ul li a {
        margin: 0px 2px;
        padding: 5px 7.5px;
        font-size: 13px;
    }

    .midPart .image-container .sideText {
        width: 70%;
    }

    .midPart .image-container .sideText p {
        font-size: 15px;
    }

    .midPart .image-container .sideText button {
        font-size: 15px;
    }

    .row {
        margin: 20px 0px;
    }

    .detailContainer {
        margin: .5rem 1rem;
        padding: 0rem .5rem;
    }

    .detailContainer p {
        font-size: 13px;
    }

    .detailContainer h2 {
        font-size: 20px;
    }

    .textButton {
        font-size: 15px;
    }

    .footer-content h3 {
        font-size: 25px;
    }

    .footer-content p {
        font-size: 10px;
        width: 100%;
    }

    .footer-content .Footerlist li::before {
        width: 50px;
    }

    .footer-content .social-icons li a {
        font-size: 30px;
    }

    .footer-content .Footerlist li {
        padding: 5px;
    }

    .footer-content .Footerlist li a {
        font-size: 15px;
    }

    .FooterContainer {
        margin: 0px 3px;
        gap: 5%;
    }

    .footer-content .logo {
        width: 50px;
        border-radius: 15px;
    }

    .textArea p {
        font-size: 10px;
        line-height: 1.5;
    }

    .textArea {
        padding: 28px 24px;
    }

    .textArea h2 {
        font-size: 1.2rem;
    }


    .bottam-bar p {
        font-size: 13px;
    }


}

/* ========================= Mobile L ========================= */

@media screen and (max-width: 425px) {

    .navbar ul li a {
        margin: 0px 2px;
        padding: 5px 7.5px;
        font-size: 10px;
    }

    .navbar ul li ul.dropdown li a {
        font-size: 8px;
    }

    .navbar .navContainer {
        height: 35px;
        padding: 0px 10px;
    }

    .loginButton {
        font-size: 10px;
        padding: 5px 10px;
    }


    .midPart .image-container .sideText {
        width: 70%;
    }

    .midPart .image-container .sideText p {
        font-size: 10px;
    }

    .midPart .image-container .sideText button {
        font-size: 9px;
        padding: 5px 20px;
    }

    .row {
        margin: 5px 0px;
    }

    .detailContainerNew {
        margin: .5rem 1rem;
    }

    .detailsParagraph i,
    .detailsParagraph span {
        font-size: 10px;
    }

    .detailContainerNew h3 {
        font-size: 15px;
    }

    .textButton {
        font-size: 10px;
    }

    .FooterContainer {
        margin: 0px 3px;
        gap: 5%;
    }

    .footer-content h3 {
        font-size: 15px;
    }

    .footer-content p {
        font-size: 10px;
        width: 90%;
    }

    .footer-content .Footerlist li::before {
        width: 30px;
    }

    .footer-content .social-icons li a i {
        font-size: 20px;
    }

    .footer-content .Footerlist li {
        padding: 5px;
    }

    .footer-content .Footerlist li a {
        font-size: 10px;
    }

    .bottam-bar p {
        font-size: 8px;
    }

    .infoContainer h2,
    .goalContainer h2 {
        font-size: 15px;
    }

    .infoContainer p,
    .goalContainer p {
        font-size: 10px;
    }

    .infoContainer ul li,
    .goalContainer ul li {
        font-size: 10px;
    }

    .profileBtn {
        padding: 5px 10px;
        font-size: 10px;
    }
}

/* ========================= Mobile L ========================= */

@media screen and (max-width: 375px) {
    .navContainer {
        padding: 0px 5px;
    }

    .navbar ul li a {
        padding: 5px 7.5px;
        font-size: 10px;
    }

    .navbar .navContainer {
        padding: 0px 10px;
    }

    .loginButton {
        font-size: 10px;
        padding: 5px 10px;
    }

    .navbar ul li ul.dropdown li a {
        font-size: 10px;
    }


    .midPart .image-container .sideText {
        width: 80%;
    }

    .midPart .image-container .sideText p {
        font-size: 10px;
    }

    .midPart .image-container .sideText button {
        font-size: 9px;
        padding: 5px 20px;
    }

    .row {
        margin: 5px 0px;
    }

    .detailContainerNew {
        margin: .5rem 1rem;
    }

    .updateSection marquee {
        height: 200;
    }

    .detailsParagraph i,
    .detailsParagraph span {
        font-size: 10px;
    }

    .detailContainerNew h3 {
        font-size: 15px;
    }

    .textButton {
        font-size: 10px;
    }

    .footer-content h3 {
        font-size: 15px;
    }

    .footer-content p {
        font-size: 10px;
        width: 100px;
        padding: 2px;
    }

    .footer-content .Footerlist li::before {
        width: 30px;
    }

    .footer-content .social-icons li a {
        font-size: 15px;
    }

    .footer-content .Footerlist li {
        padding: 5px;
    }

    .footer-content .Footerlist li a {
        font-size: 10px;
    }

    .bottam-bar p {
        font-size: 8px;
    }

    .infoContainer h2,
    .goalContainer h2 {
        font-size: 15px;
    }

    .infoContainer p,
    .goalContainer p {
        font-size: 10px;
    }

    .infoContainer ul li,
    .goalContainer ul li {
        font-size: 10px;
    }

    .profileBtn {
        padding: 5px 10px;
        font-size: 10px;
    }
}