/* --- BASE STYLES --- */
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; padding: 0; background-color: #fff; }

body {
    color: #f3f3f4;
    font-family: "Poppins", sans-serif; 
	font-family: "Google Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* --- SHARED NAV STRUCTURE --- */
    nav ul { list-style: none; padding: 0; margin: 0; display: flex; }
    nav a { text-decoration: none; color: #f3f3f4; transition: 0.3s; }

/* --- MOBILE STYLES (Default / Up to 480px) --- */
    @media (max-width: 768px) {
      .nav-overlay {
        position: fixed; top: 0; left: -100%; width: 100%; height: 100%;
        background: #0b0b0c; z-index: 1000; transition: 0.3s;
        padding: 80px 24px; overflow-y: auto;
      }
      .nav-overlay.active { left: 0; }
      .nav-overlay ul { flex-direction: column; }
      .nav-overlay li { margin-bottom: 17px; font-size: 13.5px; }
      .nav-overlay .dropdown ul { padding-left: 15px; margin-top: 15px; border-left: 1px solid rgba(215,180,106,.35); font-size: 11px; }
      .close-menu { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--gold); font-size: 30px; }
	  
    }
	


    /* --- MOBILE STYLES (Default / Up to 480px) --- */
    @media (max-width: 480px) {
      .nav-overlay {
        position: fixed; top: 0; left: -100%; width: 100%; height: 100%;
        background: #0b0b0c; z-index: 1000; transition: 0.3s;
        padding: 40px 24px; overflow-y: auto;
      }
      .nav-overlay.active { left: 0; }
      .nav-overlay ul { flex-direction: column; }
      .nav-overlay li { margin-bottom: 17px; font-size: 13.5px; }
      .nav-overlay .dropdown ul { padding-left: 15px; margin-top: 15px; border-left: 1px solid rgba(215,180,106,.35); }
      .close-menu { position: absolute; top: 20px; right: 20px; background: none; border: none; color: #d7b46a; font-size: 30px; }
    }

    /* --- DESKTOP STYLES (Regular Horizontal Menu > 480px) --- */
    @media (min-width: 481px) {
      .burger, .close-menu { display: none !important; }
      
      .nav-overlay {
        position: static; width: auto; height: auto; background: transparent;
        padding: 0; display: block; margin-bottom: 20px;
      }

      .nav-overlay > ul {
        justify-content: center; gap: 25px;
        border-bottom: 1px solid rgba(215,180,106,.35); padding-bottom: 15px;
      }

      .nav-overlay a { font-size: 14px; font-weight: 600; }
      .nav-overlay a:hover { color: #d7b46a; }

      /* Dropdown Logic for Desktop */
      .dropdown { position: relative; }
      .dropdown ul {
        position: absolute; top: 100%; left: 0; background: #1a1a1e;
        flex-direction: column; min-width: 220px; border: 1px solid rgba(215,180,106,.35);
        display: none; z-index: 10; border-radius: 8px; padding: 10px 0;
      }
      .dropdown:hover > ul { display: flex; }
      .dropdown ul li { margin: 0; }
      .dropdown ul li a { padding: 10px 20px; display: block; text-transform: none; }
      .dropdown ul li a:hover { background: rgba(215,180,106,0.1); }
	  
    }

    /* --- HERO UI --- */
    .burger { width: 34px; height: 34px; border: 1px solid rgba(215,180,106,.35); background: rgba(255,255,255,.04); border-radius: 10px; cursor: pointer; 
	display: grid; place-items: center; }
    .burger span, .burger span::before, .burger span::after { content: ""; display: block; width: 18px; height: 2px; background: #f3f3f4; 
	position: relative; transition: 0.3s; }
    .burger span::before { top: -6px; position: absolute; }
    .burger span::after { top: 6px; position: absolute; }

/* --- PAGE WRAPPER (Now containing the gradients) --- */
.page-wrapper {
    min-height: 90vh; /* Changed from 60vh to ensure the image covers the full screen height */
    max-width: 100%;
    margin: 0 auto;
    padding: 15px;
    
    /* Background Image Implementation */
    background-image: url('background-image.jpeg'); /* Replace 'background-image.jpg' with your actual file path */
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    /*background-attachment: fixed;  */
}


/* --- HEADER & TOP BAR --- */
.header-container {
    max-width: 1300px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.info-bar {
    flex: 1;
    padding: 6px 3px;
    border: 1px solid rgba(215,180,106,.35);
    border-radius: 11.5px;
    background: rgba(0,0,0,.22);
    box-shadow: 0 22px 55px rgba(0,0,0,.55);
    text-align: center;
}

.info-text {
    font-size: 13px;
    color: rgba(215,180,106,.92);
    font-weight: 500;
    text-transform: capitalize;
}

/* --- NAVIGATION & MENU --- */
.navigation-menu a { text-decoration: none; color: #f3f3f4; transition: 0.3s; }

.menu-toggle {
    width: 34px; height: 34px;
    border: 1px solid rgba(215,180,106,.35);
    background: rgba(255,255,255,.04);
    border-radius: 10px;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
    content: ""; display: block; width: 18px; height: 2px;
    background: #f3f3f4; position: relative; transition: 0.3s;
}
.menu-toggle span::before { top: -6px; position: absolute; }
.menu-toggle span::after { top: 6px; position: absolute; }

/* --- MAIN CONTENT CONTAINER --- */
.content-section {
    max-width: 1300px;
    margin: -25px auto 0 auto;
    /*border: 1px solid rgba(215,180,106,.28);
    border-radius: 15px;*/
    
    overflow: hidden;
}

/*.content-section::before {
    content:"";
      position:absolute;
      inset:-2px;
      
      pointer-events:none;
}*/

.content-box { padding: 5px; position: relative; }

/* --- BRAND IDENTITY --- */
.identity-block {
    display: flex; 
	flex-direction: column; 
	align-items: center;
    gap: 5px; 
	margin-top: 5px; 
	text-align: center;	
}

.identity-logo { width: 100px; height: 100px; z-index: 2;}
.identity-logo img { width: 100%; height: 100%; object-fit: cover; margin-top: 10px; z-index: 1;}

.identity-title {
    font-family: "Poppins", sans-serif;
    font-size: 26px; margin: 0; font-weight: bold; color: #f3c963;
}

.identity-title2 {
    font-family: "Poppins", sans-serif;
    font-size: 10px; margin: 0; font-weight: 400; color: #fff; padding-left: 10px;
}

.suicide-free-planet-btn {
	padding: 10px 10px 10px 0;
	font-size: 30px;
	font-weight: 600;
	color: #e9f7f3;
	text-align: center;
	border-radius: 16px;
	background: rgba(29, 80, 109, 0.45);
border: 2px solid rgba(170, 230, 220, 0.35);
box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.25),
    inset 0 -4px 10px rgba(0, 0, 0, 0.25),
 0 0 18px rgba(120, 255, 220, 0.25),
    0 8px 24px rgba(0, 0, 0, 0.35);
margin-top: -10px;
z-index: 1;
}

.suicide-free-planet-btn span {
font-weight: bold;
  background: linear-gradient(
    120deg,
    #ffffff 35%,
    #aedaaa 50%,
    #ffffff 70%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 6px rgba(156, 198, 152, 0.35),
    0 0 12px rgba(170, 240, 220, 0.25);
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
  letter-spacing: 0.5px;
}


.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(215,180,106,.55), transparent);
    margin: 10px 0 12px;
}

.section-tagline { text-align: center; font-size: 13px; color: #f3f3f4; margin: 10px 0; }


/* --- GRID SYSTEM --- */
.layout-grid { display: flex; align-items: center; gap: 10px; }
.grid-column { flex: 1; }

.features-container {
    display: grid; grid-template-columns: 1fr; 
	padding: 6px;
	/*gap: 10px; 
	border: 1px solid rgba(215,180,106,.35);
    background: rgba(0,0,0,.22);
    border-radius: 12px;*/}

.feature-card {
    /*border: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.22);
    border-radius: 12px;
    padding: 12px;*/
    display: flex; gap: 10px; padding: 6px;
	background: rgba(29, 80, 109, 0.45);
border: 2px solid rgba(170, 230, 220, 0.35);
    border-radius: 12px;
	color: #eafbf6;
	border: 1.8px solid rgba(170, 230, 220, 0.35);
}

.feature-icon {
    width: 50px; height: 50px; 
	/*border-radius: 5px;
    border: 1px solid rgba(215,180,106,.35);
    background: rgba(215,180,106,.10);*/
    display: grid; place-items: center; flex: 0 0 auto;
}

.feature-label {
    margin: 0; font-size: 20px; font-weight: 500; font-family: "Poppins", sans-serif;
}

/* --- PROFILE DETAILS --- */
.profile-image-box { margin: 5px auto 0; width: 40%; }
.profile-img img { width: 100%; display: block; }

.profile-details { text-align: center; padding: 4px 0; font-family: "Poppins", sans-serif; }
.profile-name {
    font-family: "Poppins", sans-serif; font-size: 19px;
    color: #015159; font-weight: 600; margin: 0;
}

.profile-role { margin: 0 0; font-size: 14px; color: #015159; font-weight: 800; }
.profile-role strong { font-size: 14px; color: #015159; font-weight: 800; }
.profile-bio { margin: 4px 0 0; font-size: 11px; color: #555;
font-weight: 800;  }

/* --- DESKTOP NAVIGATION --- */
@media (min-width: 481px) {
    .menu-toggle, .menu-close { display: none !important; }
    .nav-links {
        list-style: none; padding: 0; margin: 0 0 20px;
        display: flex; justify-content: center; gap: 25px;
        border-bottom: 1px solid rgba(215,180,106,.35); padding-bottom: 15px;
    }
    .nav-links a { font-size: 14px; font-weight: 600; }
    .nav-links a:hover { color: #d7b46a; }

    .has-submenu { position: relative; }
    .submenu {
        position: absolute; top: 100%; left: 0; background: #1a1a1e;
        display: none; flex-direction: column; min-width: 220px;
        border: 1px solid rgba(215,180,106,.35); border-radius: 8px;
        padding: 10px 0; z-index: 10; list-style: none;
    }
    .has-submenu:hover .submenu { display: flex; }
    .submenu li a { padding: 10px 20px; display: block; font-size: 13px; }
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .navigation-menu {
        position: fixed; top: 0; left: -100%; width: 100%; height: 100%;
        background: #0b0b0c; z-index: 1000; transition: 0.3s;
        padding: 80px 24px; overflow-y: auto;
    }
    .navigation-menu.active { left: 0; }
    .nav-links { flex-direction: column; list-style: none; padding: 0; }
    .menu-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: #d7b46a; font-size: 30px; }
    .layout-grid { flex-direction: column; }
	.identity-title { font-size: 27px; }
	.info-bar { padding: 6px;}
	.info-text {font-size: 10.2px;}
	.suicide-free-planet-btn {font-size: 28px;}
	.identity-title {font-size: 20px;}
	.section-tagline { font-size: 11px; }
	.profile-image-box { margin: 0px auto 0; width: 60%; }
	.profile-name {font-size: 16px;}
.profile-role { font-size: 8px; }
.profile-bio { font-size: 9px; }
.content-box { padding: 3px 5px; }
	
}

/* --- SMALL MOBILE --- */
@media (max-width: 480px) {
    .features-container { grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .feature-card { padding: 4px 4px 4px 0; flex-direction: inline; text-align: left; gap: 2px; }
    .feature-icon { width: 20px; height: 25px; font-size: 12px; margin-right: 0px; }
    .feature-label { font-size: 9px; padding-left: 0px;}
    .identity-title { font-size: 27px; }
	.info-bar { padding: 6px;}
	.info-text {font-size: 10.2px;}
	.suicide-free-planet-btn {font-size: 28px;}
	.section-tagline { font-size: 11px; }
	.profile-image-box { margin: 0px auto 0; width: 60%; }
	.profile-name {font-size: 16px;}
.profile-role { font-size: 8px; }
.profile-bio { font-size: 9px; }
.content-box { padding: 3px 5px; }
}

/* --- UPDATED MAIN CONTAINER --- */
main #suicide-free-planet-container {
    background-color: #fff; /* Lightest Blue (AliceBlue) */
    padding: 5px 0;
}

.suicide-free-planet-container {
    max-width: 1200px;
    padding: 5px;
    font-family: "Poppins", sans-serif; 
    color: #333; /* Darker text for readability on light blue */
    background-color: #fff;
}

.section-title-gold {
    color: #d62828; /* Decent Blue Headings */
    font-size: 1.4rem;
    margin-top: 15px;
    margin-bottom: 0px;
    text-transform: capitalize;
    font-weight: 600;
}

.intro-text1 {
    display: flex;           /* Aligns bullet and text side-by-side */
    align-items: flex-start; /* Keeps bullet at the top of the first line */
    gap: 8px;               /* Space between bullet and text */
    line-height: 1.4;
    font-size: 0.85rem;
	font-weight: 500;
    color: #666;             /* Decent dark color for light background */
	text-align: justify;
}

.intro-text {
    display: flex;           /* Aligns bullet and text side-by-side */
    align-items: flex-start; /* Keeps bullet at the top of the first line */
    gap: 8px;               /* Space between bullet and text */
    line-height: 1.4;
    font-size: 0.85rem;
	font-weight: 500;
    color: #666;             /* Decent dark color for light background */
	text-align: justify;
}

.intro-text i {
    color: /*#d7b46a*/#666;
	font-size: 0.8rem;        /* Small professional bullet size */
    margin-top: 6px;         /* Adjusts bullet to sit center with the first line of text */
    flex-shrink: 0; 
}

.intro-text span {
    flex: 1;
}

.approach-box {
    margin-bottom: 25px;
    padding: 8px 15px;
    background: white;
    border-radius: 15px;
}

/* CTA Section Styles */
.sumeru-cta {
    text-align: center;
    padding: 0 8px 8px 8px;
    background: #fff; /* Slightly deeper light blue */
    border: 1px solid #eee;
    border-radius: 15px;
    max-width: 1100px;
}

.cta-button {
    display: inline-block;
    background: #020844; /* Decent Blue Button */
    color: #fff !important;
    font-size: 0.82em;
    padding: 7px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 3px;
    transition: 0.3s;
}

.cta-button:hover {
    background: #020844;
    color: #fff;
    transform: scale(1.03);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .section-title-gold { font-size: 0.95rem; text-align: justify; }
    .intro-text, .intro-text1 { text-align: justify; font-size: 0.82rem; margin-bottom: 3px; }
    .sumeru-cta { margin: 8px; }
}

@media (max-width: 480px) {
    .section-title-gold { font-size: 0.88rem; text-align: justify; }
	.intro-text, .intro-text1 { text-align: justify; font-size: 0.82rem; margin-bottom: 3px; }
    .suicide-free-planet-container { padding: 0px; }
}


/* --- LAYOUT RATIO 3:1 --- */
.split-layout { display: flex; gap: 40px; align-items: center; margin-bottom: 25px; }
.content-side { flex: 3; }
.image-side { flex: 1; min-width: 200px; }

/* Thumbnail Style */
.expandable-img {
    width: 100%; border-radius: 12px; cursor: zoom-in;
    transition: 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* --- ENHANCED MODAL STYLES --- */
.modal {
    display: none; position: fixed; z-index: 99999;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto; /* Allows scrolling if image is zoomed */
}

.modal-zoom-container {
    display: flex; justify-content: center; align-items: center;
    min-height: 100vh; padding: 40px;
}

.modal-content {
    margin: auto; display: block;
    width: auto; max-width: 90%; max-height: 85vh; /* Initial "Fit to Screen" size */
    transition: all 0.4s ease;
    cursor: zoom-in;
    border-radius: 5px;
}

/* Zoomed State - Crucial for Readability */
.modal-content.zoomed {
    max-width: 150%; /* Allows image to be larger than screen for reading */
    max-height: none;
    cursor: zoom-out;
    margin-top: 50px;
}

.close-modal {
    position: fixed; top: 20px; right: 35px;
    color: #fff; font-size: 50px; font-weight: bold;
    cursor: pointer; z-index: 100001;
}

.modal-caption {
    position: fixed; bottom: 20px; left: 0; width: 100%;
    text-align: center; color: #ccc; font-size: 14px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .split-layout { flex-direction: column; text-align: center; }
    .reverse-desktop { flex-direction: column-reverse; }
    .modal-content { max-width: 95%; }
    .modal-content.zoomed { max-width: 250%; } /* Extra zoom for mobile reading */
}


/* --- FOOTER STYLES --- */
.site-footer {
    background: rgba(11, 13, 20, 0.95); /* Deep navy to blend with cosmic background */
    color: #f3f3f4;
    padding: 10px 15px;
    margin-top: 10px;
    border-top: 1px solid rgba(26, 95, 180, 0.3);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 12px;
}

.footer-col h3 {
    color: #f3c963; /* Decent Blue */
    font-size: 16px;
    margin-bottom: 7px;
}

/* About Section */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.footer-logo-img { width: 20px; height: 20px; }
.footer-brand { font-size: 17px; font-weight: bold; color: #f3c963; }
.footer-mission { font-size: 13px; line-height: 1.5; color: #fff; }

/* Contact List */
.contact-list { list-style: none; padding: 0; }
.contact-list li { 
    margin-bottom: 12px; 
    display: flex; 
    gap: 12px; 
    font-size: 13px; 
    color: #fff;
}
.contact-list .icon { color: #fff; }

/* Social Icons */
.social-links { display: flex; gap: 10px; margin-top: 10px; }
.social-icon {
    width: 35px; height: 35px;
    background: rgba(26, 95, 180, 0.2);
    border: 1px solid #d62828;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; color: white; font-size: 12px;
    transition: 0.3s;
}
.social-icon:hover { background: #d62828; transform: translateY(-3px); }

/* Footer Form */
.contact-form { display: flex; flex-direction: column; gap: 10px; }
.contact-form input, .contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(26, 95, 180, 0.4);
    padding: 10px;
    border-radius: 6px;
    color: white;
    font-size: 13px;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #d62828;
}
.btn-submit {
    background: #fff;
    color: #000;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}
.btn-submit:hover { background: #004a99; }

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    margin-top: 5px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: rgba(243, 243, 244, 0.5);
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #d62828;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: none; /* Hidden by default */
    z-index: 1001;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container { grid-template-columns: 1fr; gap: 5px; }
}