* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
}

.logo {
    max-width:30%;
    height: auto;
} 

.active {
    color: #053a22;
    font-family: "Ancizar Sans", sans-serif;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.15rem;
    padding: 1.5px 24px;
    background-color: #ffffff;
    border-radius: 5px;
}

 .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #053a22;
    position: relative;
    z-index: 11;
    box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}

.navbar .nav-links {
    display: flex;
    gap: 2rem;
}

.navbar .nav-links a {
    color: #ffffff;
    font-family: "Ancizar Sans", sans-serif;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.15rem;
}

.navbar .nav-links a:hover {
    color: #d6ad68;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background:#f5f5f5;
}

.fullscreen-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease-in-out;
    z-index: 10;
}

.fullscreen-menu a {
    font-family: "Ancizar Sans", sans-serif;
    color: #053a22;
    font-size: 2rem;
    margin: 1rem 0;
    text-decoration: none;
}

.fullscreen-menu a:hover {
    color: #d6ad68;
}

.fullscreen-menu.active {
    left: 0;
}

.no-scroll {
    overflow: hidden !important;
    height: 100vh !important;
}

.container {
    position: relative;
    text-align: center;
    color: white;
}

.centered {
    font-family: "Ancizar Sans", sans-serif;
    font-size: 3rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.countdown {
    display: flex;
    gap: 7px;
    font-size: 1.4rem;
    text-align: center;
}

#countdown div {
    background: #f5f5f5;
    color:#053a22;
    padding: 12px;
    border-radius: 10px;
    min-width: 80px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.countdown span.label {
    display: block;
    font-size: 1rem;
    margin-top: 0.5rem;
    color: #696880;
}

.g20-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 10%;
    min-height: 50vh;
    background:#053a22;
}

.g20-container {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    max-width: 1200px;
    width: 80%;
    align-items: center;
}

.g20-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.word {
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Anton", sans-serif;
    color: #f5f5f5;
    font-size: 4rem;
    line-height: 1;
    transform-origin: center;
}

.g20-right {
    flex: 2;
    font-family: "Ancizar Sans", sans-serif;
    color: #f5f5f5;
}

.btn-group {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.counters-section {
    position: relative;
    display: flex;             
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;           
    padding: 60px 20px;
    text-align: center;
    overflow: hidden;          
}

.counters-section .bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;                
}

.counters-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 58, 34, 0.65); 
    z-index: 0;                 
    pointer-events: none;
}

.counter-box {
    position: relative;
    z-index: 1;                
    flex: 0 1 220px;          
    margin: 0;                 
    background: transparent;    
    border-radius: 0;           
    padding: 0;
}

.counter {
    font-size: 5rem;
    font-weight: bold;
    color: #ffffff;  
    font-family: "Ancizar Sans", sans-serif;
}

.counter-box p {
    font-size: 1.2rem;
    margin-top: 8px;
    color: #ffffffcc;
    font-family: "Ancizar Sans", sans-serif;
}

.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 10%;
    min-height: 50vh;
    background: #053a22;
    overflow: hidden;
    flex-wrap: wrap;
}

.text {
    width: 75%;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.text.show {
    opacity: 1;
    transform: translateX(0);
}

.image {
    width: 20%;
    text-align: center;
}

.image img {
    max-width: 150%;
    height: auto;
    border-radius: 10px;
}

.title {
    font-family: "Ancizar Sans", sans-serif;
    color:#d6ad68;
}

.sec-txt{
    font-family: "Ancizar Sans", sans-serif;
    color:#ffffff;
    text-align: justify;
}

.sec-txt-j{
    font-family: "Ancizar Sans", sans-serif;
    color: #696880;
    text-align: justify;
}

.button {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1rem;
    font-family: "Ancizar Sans", sans-serif;
    color: white;
    background-color: transparent;
    border: 1px solid #d6ad68;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.button:hover {
    background-color:#d6ad68;
    transform: translateY(-2px);
}

.com-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 45vh;
    flex-wrap: wrap;
    text-align: center;
    overflow: hidden;
}

.com-section .bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;       
}

.com-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 58, 34, 0.65);
    z-index: 1;        
    pointer-events: none;
}

.com-section > *:not(.bg-img):not(.overlay) {
    position: relative;
    z-index: 2;
}

.com-txt {
    color: #ffffff;
    font-size: 2rem;
    width: 100%;
    border:0;
}

.sec-head {
    font-family: "Ancizar Sans", sans-serif;
    color: #ffffff;
    font-size: 3rem;
}

.carousel-wrapper {
    position: relative;
    width: 90vw;
    max-width: 500px;
    overflow: hidden;
    margin: 0;
}

.slide {
    position: relative;
    width: 100vw;
    max-width: 580px;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.circle-button {
    flex: 0 0 33.33%;
    padding: 12px;
}

.circle-button button {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 2px solid white;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background: transparent;
}

.circle-button:hover {
    transform: scale(1.05);
}

.circle-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    pointer-events: none;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: white;
    border: none;
    font-size: 1.5em;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
}

.arrow.left {
    left: -5px;
}

.arrow.right {
    right: -5px;
}

  :root{
    --bg-overlay: rgba(5, 58, 34, 0.5);
    --panel-bg: #053a22;
    --card-radius: 10px;
    --content-padding: 30px;
  }

.sec1-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 10%;
    gap: 30px;
    flex-wrap: wrap;
    overflow: hidden;
}

.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    z-index: -1;
}

.section1 {
    flex: 1 1 600px;
    position: relative;
    border-radius: var(--card-radius);
    padding: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.4s ease;
    min-width: 300px;
}

.tab-controls {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
}

.tab-controls button {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 10px 16px;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    font-family: "Ancizar Sans", sans-serif;
    font-size: 1rem;
    transition: background .2s, border-color .2s;
}

.tab-controls button[aria-selected="true"]{
    background: #fff;
    color: #053a22;
    border-color: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.tab-card {
    background: var(--panel-bg);
    color: white;
    border-radius: 0 0 var(--card-radius) var(--card-radius);
    padding: var(--content-padding);
    box-shadow: 0 8px 30px rgba(2,10,8,0.35);
    overflow: hidden;
}

.tab-panels {
    display: block;
}

.tab-panel {
    display: none;
}

.tab-panel[aria-hidden="false"]{
    display: block;
}

.letter-title {
    font-family: "Ancizar Sans", sans-serif;
    font-size: 1.6rem;
    color: white;
    margin: 0 0 8px 0;
}

.letter-txt{
    background-color: #f5f5f5;
    font-family: "Ancizar Sans", sans-serif;
    font-size: 1rem;
    color: #000;
    border-radius: 10px;
    padding: 18px;
    position: relative;
    overflow: hidden;
    max-height: 180px;
    transition: max-height 0.45s ease;
}

.letter-txt.open {
    max-height: 2000px;
}

.fade-txt {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 60px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(245, 245, 245, 0), rgba(245,245,245,0.85));
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.letter-actions {
    margin-top: 12px;
}

.read-toggle {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-family: "Ancizar Sans", sans-serif;
}

.images-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    min-width: 220px;
}

.portrait-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;   
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 6px;
}

.portrait-row .portrait-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.portrait-row .portrait-item img {
    width: 160px;
    height: auto;
    border-radius: 0;
    object-fit: contain;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    display: block;
}

.portrait-row .portrait-item figcaption{
    font-family: "Ancizar Sans", sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    text-align: center;
    line-height: 1.2;
    max-width: 160px;
    word-wrap: break-word;
}

.partners-section-wrapper .partners-section .heading{
    text-align: center;
    font-weight: 800;
    letter-spacing: 8px;
    font-size: clamp(24px, 4vw, 44px);
    margin: 0 0 36px;
    color: #053a22;
    font-family: "Ancizar Sans", sans-serif;
}

.partners-section-wrapper .partners-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 3.5vw, 48px);
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.partners-section-wrapper .partner{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    padding: 8px 12px;
    box-sizing: border-box;
    min-height: 220px;
}

.partners-section-wrapper .partner .role{
    font-weight: 600;
    font-size: clamp(14px, 1.6vw, 18px);
    line-height: 1.1;
    margin-bottom: 6px;
    color: #053a22;
    font-family: "Ancizar Sans", sans-serif;
}

.partners-section-wrapper .partner .logo-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 240px;
    padding: 8px;
    background: transparent;
    box-sizing: border-box;
} 

.partners-section-wrapper .partner img{
    width: 100%;
    height: auto;
    max-height: 110px;
    object-fit: contain;
    display: block;
    transition: transform .25s ease, filter .25s ease;
    filter: saturate(.9);
}

.partners-section-wrapper .partner:hover img{
  transform: translateY(-6px) scale(1.02);
  filter: saturate(1);
}

@media (min-width: 1100px){
  .partners-section-wrapper .partners-grid { align-items: center; }
  .partners-section-wrapper .partner{ padding-top: 12px; }
}

@media (max-width: 900px){
  .partners-section-wrapper .partners-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px){
  .partners-section-wrapper .partners-section{
    padding: 36px 5%;
  }
  .partners-section-wrapper .partners-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .partners-section-wrapper .partner{
    min-height: auto;
    gap: 12px;
  }
  .partners-section-wrapper .partner img{
    max-height: 64px;
  }
  .partners-section-wrapper .partners-section .heading{
    letter-spacing: 6px;
    margin-bottom: 22px;
  }
  .portrait-row .portrait-item img {
    width: 140px;
  }
  .portrait-row .portrait-item figcaption{
    font-size: 0.9rem;
    max-width: 140px;
  }
}

.sec-map {
    padding: 40px 10%;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
}

.map-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: #053a22;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    overflow: hidden;
    max-width: 1100px;
    width: 100%;
}

.map-embed {
    flex: 1 1 60%;
    min-width: 300px;
    height: 350px;
    position: relative;
}
.map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-info {
    flex: 1 1 40%;
    min-width: 250px;
    color: #fff;
    font-family: "Ancizar Sans", sans-serif;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.map-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.map-link {
    text-decoration: none;
    color: #053a22;
    background: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: bold;
    transition: background .3s ease, transform .2s ease;
}
.map-link:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}

#toggleBtn {
    margin-top: 10px;
    padding: 8px 16px;
    cursor: pointer;
    background: transparent;
    font-family: "Ancizar Sans", sans-serif;
    color: white;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}
#toggleBtn:hover {
    font-weight: bold;
}

.footer {
    padding: 50px 10%;
    min-height: 50vh;
    background: #053a22;
    overflow: hidden;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-left {
    display: flex;
    flex: 3;
}

.footer-links-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 120px;
}

.footer-section1 {
    flex: 1;
    min-width: 120px;
    padding-top: 7%;
}

.footer h3 {
    color: #d6ad68;
    font-family: "Ancizar Sans", sans-serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-links a {
    display: block;
    font-family:  "Ancizar Sans", sans-serif;
    color: #fff;
    margin-bottom: 8px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d6ad68;
}

.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    min-width: 220px;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.footer-logo {
    max-width:75%;
    height: auto;
    padding-bottom: 20px;
} 

.iisp-logo {
    max-width:35%;
    height: auto;
    padding-bottom: 15px;
}

.footer-txt {
    font-family: "Ancizar Sans", sans-serif;
    color:#fff;
    padding-bottom: 5px;
}

.cr {
    font-family: "Ancizar Sans", sans-serif;
    color:#fff;
    font-size: 1rem;
}

/*register*/

.reg-section {
    width: 100%;
    margin: 0;
    background: #053a22;
    position: relative;
    overflow: hidden;
    padding: clamp(32px, 6vw, 72px) 20px; 
    box-sizing: border-box;
}

.reg-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    color: #fff;
    padding-inline: clamp(12px, 4vw, 32px);
}

.reg-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('imgs/flags.png');
    background-size: clamp(240px, 60vw, 900px);
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.reg-section > * {
    position: relative;
    z-index: 0;
}

.reg-subhead,
.reg-subhead-b {
    font-family: "DM Serif Text", serif;
    color: #d6ad68;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

.reg-subhead-c {
    font-family: "DM Serif Text", serif;
    color: #053a22;
    font-size: clamp(1.2rem, 2.8vw, 1.75rem);
}

.reg-head {
    font-family: "DM Serif Text", serif;
    color: #f5f5f5;
    font-size: clamp(2rem, 6vw, 3.5rem);
}

.reg-head1 {
    font-family: "Ancizar Sans", sans-serif;
    color: #f5f5f5;
    font-size: clamp(1.6rem, 5vw, 3rem);
    text-align: center;
}

.sub-txt{
    width: 100%;
    max-width: 75ch;
    margin: 0 auto;
    font-family: "Ancizar Sans", sans-serif;
    color:#f5f5f5;
    font-size: clamp(0.95rem, 2.2vw, 1rem);
}

.con-details {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    color: #f5f5f5;
}

.con-details table {
    width: 100%;
    min-width: 560px;
}

.con-details tr,
.con-details td {
    padding: clamp(8px, 1.8vw, 14px);
    text-align: left;
}


.con-details table,
.con-details tr,
.con-details th,
.con-details td {
    border: 1px solid #f5f5f5;
    border-collapse: collapse;
    font-family: "Ancizar Sans", sans-serif;
}


.pd {
    background: #053a22;
    padding-top: 40px;
}

.pay-details {
    width: 60%;
    height: auto;
    color: #f5f5f5;
    overflow-x: auto;
}

.pay-details, tr, td {
    border: 1px solid #f5f5f5;
    border-collapse: collapse;
    font-family: "Ancizar Sans", sans-serif;
    padding: 5px;
}

.pay-details, td {
    width: 50%;
}

.con-top {
    background-color: #d6ad68;
    color: #f5f5f5;
}

.con-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 10px;
}

.con-title {
    color: white;
    font-family: "Ancizar Sans", sans-serif;
    font-size: 2rem;
    margin: 0;
    text-align: center;
}

.box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
}

.box {
    display: grid;
    grid-template-rows: auto 1fr;
    place-items: center;
    width: 28vmin;
    height: 28vmin;
    background-color: #d6ad68;
    color: white;
    font-family: "Ancizar Sans", sans-serif;
    text-align: center;
    font-size: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    padding: 10px;
}

.step-number {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 3px;
}

.step-text {
    font-size: 1.1rem;
    line-height: 1.3;
}

.flg {
    width: 50%;
    height: auto;
    opacity: 0.7;
}

/* about */

.head-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 18 / 7;
    overflow: hidden;
}

.head-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.head-img-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 58, 34, 0.5);
}

.head-txt {
    font-size: 5rem;
    font-family: "Ancizar Sans", sans-serif;
    color: lightgray;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.tag {
    font-size: 3rem;
    font-family: "Ancizar Sans", sans-serif;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.abt-section {
    width: 100%;
    margin: 0;
    background: #053a22;
    position: relative;
    overflow: hidden;
    padding: clamp(32px, 6vw, 72px) 20px; 
    box-sizing: border-box;
}

.abt-wrapper {
    width: 70%;
    max-width: 1100px;
    margin: 0 auto;
    color: #fff;
    padding-inline: clamp(12px, 4vw, 32px);
}

.abt-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('imgs/flags.png');
    background-size: clamp(168px, 42vw, 630px);
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.abt-section > * {
    position: relative;
    z-index: 0;
}

.abt-subhead {
    font-family: "DM Serif Text", serif;
    color: #053a22;
    font-size: 2rem;
}

.section-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 40px 10%;
    max-width: 1200px;
    margin: auto;
}

.text-content {
    flex: 1 1 55%;
    padding: 20px;
}

.text-content p {
    font-family: "Ancizar Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #696880;
}

.image-content {
    flex: 1 1 45%;
    text-align: center;
    padding: 20px;
}

.image-content img {
    max-width: 50%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.caption {
    margin-top: 10px;
    font-size: 0.9rem;
    color:#696880;
    font-style: italic;
    font-family: "Ancizar Sans", sans-serif;
}

.social {
    min-height: 25vh;
    background: #053a22;
}

.s-wrapper {
    padding: 50px;
}

.sec-theme{
    background-color: #053a22;
    min-height: 20vh;
    padding-top: 18px;
    padding-bottom: 25px;
}

.sec-theme p {
    max-width: 80%;
    text-align: center;
}

.iisp {
    max-width: 30%;
    height: auto;
    display: block;
}

/*committees*/

.committee-section { 
    min-height: 80vh; 
    padding: 20px; 
    display: grid; 
    place-items: center; 
    text-align: center; 
    font-family: "Ancizar Sans", sans-serif;
    background-color: #053a22;
}

.wrap {
    width: min(1100px,100%);
}

.hero-heading {
    margin: 0 0 10px 0;
    font-weight: 800;
    font-size: clamp(32px, 6vw, 60px);
    color: #d6ad68;
}

.hero-heading:hover,
.hero-heading:focus-visible {
    outline: none;
    transform: translateY(-2px);
}

.subcopy {
    margin: 0 auto 28px;
    max-width: 70ch;
    color: var(--muted);
    font-size: 1rem;
    color: #f5f5f5;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(14px, 2.2vw, 24px);
    align-items: stretch;
}

.logo-btn {
    border: 2px solid #d6ad68;
    padding: 18px;
    display: grid; 
    place-items: center;
    cursor: pointer;
    border-radius: 20px;
}

.logo-btn:hover,
.logo-btn:focus-visible {
    outline: none;
    transform: translateY(-3px);
}

.logo-btn img {
    width: min(400px, 90%);
    height: auto; 
    display: block;
}

.iispg20-flags {
    background: #f5f5f5;
    padding: 2.25rem 1rem;
    box-sizing: border-box;
}

.iispg20-flags h1 {
    margin: 0 0 1.25rem 0;
    color: #053a22;
    font-family: "Ancizar Sans", sans-serif;
    font-size: 2rem;
    text-align: center;
    letter-spacing: 0.2px;
}

.flags-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 1rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.flag-item {
    flex: 0 0 calc(20% - 1rem); 
    box-sizing: border-box;
    text-align: center;
    padding: 0.5rem;
}

.flag-item img {
    display: block;
    width: 100%;     
    aspect-ratio: 16 / 10; 
    max-width: 160px;    
    height: auto;       
    margin: 0 auto 0.5rem;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    background: #fff;
    object-fit: cover;    
}

.flag-label {
    display: block;
    font-size: 1rem;
    color: #0b2f1d;
    font-family: "Ancizar Sans", sans-serif;
}

/* committee-pages */

.iisip-about {
    background: #f5f5f5;
    padding: clamp(2rem, 4vw, 4rem);
    box-sizing: border-box;
}

.iisip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: clamp(1rem, 2.5vw, 2.5rem);
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.iisip-text {
    flex: 1 1 520px;
    min-width: 260px;
}

.iisip-title {
    margin: 0 0 .4rem 0;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    line-height: 1.05;
    color: #053a22;
    font-weight: 700;
    font-family: "Ancizar Sans", sans-serif;
}

.iisip-subtitle {
    margin: 0 0 1rem 0;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    color: #d6ad68; 
    font-weight: 600;
    letter-spacing: .2px;
    font-family: "Ancizar Sans", sans-serif;
}

.iisip-body {
    margin: 0;
    color: #696880; 
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    line-height: 1.65;
    font-family: "Ancizar Sans", sans-serif;
}

.iisip-art {
    flex: 0 1 420px;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    border-radius: 50px;
    border: 2px solid #d6ad68;
}

.iisip-art img {
    width: 100%;
    height: auto;
    max-width: 520px;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(10,10,15,0.06);
}

.bgr {
    width: 100%;
    min-height: 25vh;
    background-color: #053a22;
    display: flex;         
    justify-content: center;    
    align-items: center;      
    text-align: center;         
    padding: 1rem;               
    box-sizing: border-box;
}


.bgr-txt {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #d6ad68;
    font-family: "Ancizar Sans", sans-serif;
    margin: 0;
}

@media (max-width: 1100px) {
  .flag-item { flex: 0 0 calc(20% - 1rem); }
}

@media (max-width: 900px) {
  .flag-item { flex: 0 0 calc(25% - 1rem); }
}

@media (max-width: 700px) {
  .flag-item { flex: 0 0 calc(33.3333% - 1rem); }

  .sec1-wrapper {
    padding: 28px 6%;
    gap: 18px;
   }

  .section1 {
    flex: 1 1 100%;
    order: 1;
   }

  .images-column {
    flex: 1 1 100%;
    order: 2;
    width: 100%;
   }

  .portrait-row img {
    width: 140px;
   }

  .tab-controls {
    overflow-x: auto;
   }
}

@media (max-width: 420px) {
  .flag-item { flex: 0 0 calc(50% - 1rem); }
  .iispg20-flags { padding: 1.25rem 0.5rem; }
  .iispg20-flags h2 { font-size: 1.125rem; }
}

@media (max-width: 679px) {
    .centered {
    font-size: 1.2rem;
   }
}


@media (max-width: 280px) {
  .flag-item { flex: 0 0 calc(100% - 1rem); }
}


@media (max-width: 900px) {
  .logo-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 560px) {
  .logo-grid { 
    grid-template-columns: 1fr; 
  }
  .iisp {
    max-width: 60%;
  }

  .iisip-about {
    padding: 1.5rem 1rem;
  }

  .iisip-text {
    padding: 0 .5rem;
    text-align: left; 
  }

  .iisip-title { font-size: 1.25rem; }
  .iisip-subtitle { font-size: 1rem; }
  .iisip-body { font-size: .95rem; line-height: 1.55; }
  .iisip-art img {
    max-width: 100%; 
    border-radius: 6px;
  }
}

@media (max-width: 320px) {
  .countdown { font-size: 1rem; text-align: center; }
  .countdown div {
    background: #1e1e1e; padding: 13px; border-radius: 10px;
    min-width: 50px; box-shadow: 0 0 10px rgba(0,0,0,0.3);
  }  
  .countdown span.label { font-size: 0.5rem; }
}

@media (max-width: 480px) { 
  .logo { max-width:60%; height: auto; } 

  .button {
    width: 100%;
    text-align: center;
    padding: 14px 0;
    font-size: 1rem;
  }

  .arrow.left { left: -5px; }
  .arrow.right { right: -5px; }

  .reg-section { padding: clamp(24px, 7vw, 48px) 14px; }
  .reg-section::before { opacity: 0.12; }

  .box-container { flex-direction: column; align-items: center; }
  .box { width: 80%; height: auto; aspect-ratio: 1 / 1; font-size: 0.9rem; }
  .step-number { font-size: 2.4rem; }
  .con-details { font-size: 0.9rem; }
  .pay-details { font-size: 0.9rem; }
  .con-title { font-size: 1.5rem; }
}

@media (max-width: 520px) {
  .gallery { gap: 16px; }
  .core-card { width: 100%; max-width: 360px; }
  .title { text-align: center; }
}

@media (max-width: 768px) {
  .counters-section { gap: 1.25rem; }

  .section { flex-direction: column; padding: 18px 10%; }
  .text { width: 80%; margin: 20px 0; }
  .sec-txt { text-align: center; }
  .title { text-align: center; }

  .image { width: 50%; height: auto; padding-right: 14%; }

  #toggleBtn { font-size: 0.9rem; padding: 6px 12px; margin-top: 12px; }

  .flag-strip img { width: 60px; }
  .flag-strip { gap: 10px; }

  .footer-container { flex-direction: column; }
  .footer-left, .footer-right { width: 100%; }
  .footer-links-wrapper { flex-direction: column; gap: 20px; }
  .footer-right { margin-top: 30px; align-items: flex-start; }
  .footer-logo {max-width:50%; height: auto; padding-bottom: 20px;}

  .box { width: 40vmin; height: 40vmin; font-size: 1rem; }
  .step-number { font-size: 2.8rem; }
  
  .section-container { flex-direction: column; padding: 20px; }
  .text-content, .image-content { flex: 1 1 100%; text-align: center; }

  .g20-container { flex-direction: column; text-align: center; gap: 35px; }
  .word { font-size: 3rem; }
  .btn-group { justify-content: center; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .text { font-size: 1.125rem; width: 70%; }

  .footer h3 { font-size: 2rem; }
  .footer-links a { font-size: 1.2rem; }
  .footer-txt { font-size: 1.125rem; }

  .footer-section1 { flex: 1; min-width: 120px; padding-top: 10%; }

  .box { width: 30vmin; height: 30vmin; font-size: 4rem; }
  .step-number { font-size: 4rem; }
  .step-txt {font-size: 1.2rem;}

  .sec-txt { text-align: center; font-size: 1.125rem; }
  .title { text-align: center; }
}

@media (min-width: 768px) and (max-width: 820px) {
  .footer-logo { max-width:40%; height: auto; padding-bottom: 20px; } 
  .iisp-logo { max-width:30%; height: auto; padding-bottom: 15px; }
}

@media (min-width: 820px) and (max-width: 1024px) {
  .footer-logo { max-width:60%; height: auto; padding-bottom: 20px; } 
  .iisp-logo { max-width:50%; height: auto; padding-bottom: 15px; }
}

@media (min-width: 680px){
  .countdown {
    display: flex; gap: 20px; font-size: 5.45rem; text-align: center;
  }
  .countdown div {
    background: #1e1e1e; padding: 17px; border-radius: 10px;
    min-width: 80px; box-shadow: 0 0 10px rgba(0,0,0,0.3);
  }  
  .countdown span.label { font-size: 1.5rem; }
  .centered {
    font-family: "Ancizar Sans", sans-serif;
    font-size: 2rem; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 1024px) {
  .navbar .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .iisp {
    max-width: 60%;
  }
  .iisip-inner {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .iisip-text, .iisip-art {
    flex-basis: 78%;
    text-align: center;
    margin: 0 auto;     
    display: block;
  }
  .iisip-text {
    padding: 0 1rem;
  }
  .iisip-art img {
    max-width: 60%;   
    margin: 0 auto;     
    display: block;
  }
}

@media (min-width: 1200px){
  .sec1-wrapper {
    align-items: flex-start;
  }
  .section1 {
    flex: 1 1 720px;
  }
  .images-column {
    min-width: 280px;
  }
  .portrait-row img {
    width: 180px;
  }
}



