/* --- BASE STYLES --- */
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; padding: 0; background-color: #0b0b0c; }

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: 18px; font-size: 14px; }
      .nav-overlay .dropdown ul { padding-left: 15px; margin-top: 10px; 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: 18px; font-size: 14px; }
      .nav-overlay .dropdown ul { padding-left: 15px; margin-top: 10px; 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: 60vh;
    max-width: 100%;
    margin: 0 auto;
    padding: 15px;
    /* Gradient logic moved here from body */
    background:
    radial-gradient(
      circle at 50% 35%,
      rgba(130, 95, 55, 0.45) 0%,
      rgba(80, 55, 30, 0.25) 25%,
      rgba(40, 30, 22, 0.8) 50%,
      rgba(18, 16, 15, 0.9) 75%,
      #0b0d14 100%
    ),
    linear-gradient(
      180deg,
      #1a1c24 0%,
      #111319 40%,
      #0b0d14 100%
    );
}


/* --- 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: 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: 45px; height: 45px;  }
.identity-logo img { width: 100%; height: 100%; object-fit: cover; }

.identity-title {
    font-family: "Roboto Slab", serif;
    font-size: 26px; margin: 0; font-weight: 500; color: #f3c963;
}

.identity-title2 {
    font-family: "Poppins", sans-serif;
    font-size: 11.5px; margin: 0; font-weight: 400; color: #f3c963;
}

.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: 5px 0; }

/* --- GRID SYSTEM --- */
.layout-grid { display: flex; align-items: center; gap: 10px; }
.grid-column { flex: 1; }

.features-container {
    display: grid; grid-template-columns: 1fr; gap: 10px; padding: 6px;
	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: 12px; align-items: center;
}

.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: 17px;
    color: #d7b46a; font-weight: 600; margin: 0;
}

.profile-role { margin: 4px 0 0; font-size: 12px; color: rgba(243,243,244,.85); font-weight: 500; }
.profile-role strong { color: #d7b46a; font-weight: 400; }
.profile-bio { margin: 3px 0 0; font-size: 11px; color: rgba(243,243,244,.8); }

/* --- 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;}
	.section-tagline { font-size: 9px; }
	.profile-image-box { margin: 0px auto 0; width: 40%; }
	.profile-name {font-size: 14px;}
.profile-role { font-size: 10px; }
.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; padding: 2px; }
    .feature-card { padding: 4px; flex-direction: inline; text-align: left; gap: 2px; }
    .feature-icon { width: 20px; height: 35px; font-size: 12px; margin-right: 4px; }
    .feature-label { font-size: 8.5px; }
    .identity-title { font-size: 27px; }
	.info-bar { padding: 6px;}
	.info-text {font-size: 10.2px;}
	.section-tagline { font-size: 9px; }
	.profile-image-box { margin: 0px auto 0; width: 40%; }
	.profile-name {font-size: 14px;}
.profile-role { font-size: 10px; }
.profile-bio { font-size: 9px; }
.content-box { padding: 3px 5px; }
}

/* --- SUMERU INFOSYSTEM STYLES --- */
main #sumeru
{
	background-color: #fdfbf5
	padding: 15px 0;
}
.sumeru-container {
    max-width: 1300px;
    margin: 15px auto;
    padding: 15px;
    font-family: "Poppins", sans-serif; 
    color: #f3f3f4;
	background-color: #fdfbf5;
}

.section-title-gold {
    color: #d62828;
    font-size: 2rem;
    margin-bottom: 7px;
    text-transform: capitalize;
	font-weight: 600;
}

.section-title-center {
    text-align: center;
    color: #d7b46a;
    font-size: 2rem;
    margin: 50px 0 30px;
}

.intro-text1 {
    line-height: 1.4;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 15px;
	font-weight: 500;
}

.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;
	font-weight: 500;
}

.intro-text i {
    color: /*#d7b46a*/#666;
	font-size: 0.75rem;        /* Small professional bullet size */
    margin-top: 6px;         /* Adjusts bullet to sit center with the first line of text */
    flex-shrink: 0;          /* Prevents the bullet from shrinking */
}

.intro-text span {
    flex: 1;                 /* Allows text to take up remaining width */
}

/* Approach Box Glassmorphism */
.approach-box {
    /*background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 2px 7px 7px 7px;*/
    margin-bottom: 15px;
}

.custom-bullets {
    list-style: none;
    padding: 5px 0 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 8px;
}

.custom-bullets li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
	font-weight: 500;
    color: #666;             /* Decent dark color for light background */
	text-align: justify;
}

.custom-bullets li i {
    color: /*#d7b46a*/#666;
	font-size: 0.75rem;
	padding-right: 2px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-item {
    background: linear-gradient(145deg, #ffffff 0%, #fff9e5 100%);
    border: 1px solid #d62828;
    padding: 10px;
    border-radius: 15px;
    transition: 0.3s ease;
	text-align: center;
}

.service-item:hover {
    border-color: #d62828;
    transform: translateY(-5px);
}

.s-icon {
    font-size: 2rem;
    color: #d62828;
    margin-bottom: 15px;
}

.service-item h4 {
    margin: 10px 0;
    color: #d62828;
}

.service-item p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
	font-weight: 600;
}

/* Technical Points */
.tech-box {
    background: #fffdf3;
    border-radius: 20px;
    padding: 10px;
    margin: 20px 0;
    text-align: center;
}

.tech-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.tech-point {
    padding: 15px;
    background: linear-gradient(145deg, #ffffff 0%, #fff9e5 100%);
    border-radius: 10px;
	border: 1px solid #d62828;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tech-point i {
    color: #d62828;
    font-size: 1.5rem;
}

.tech-point span {
    font-size: 1rem;
    font-weight: 600;
	color: #d62828;
	
}

/* CTA Section */
.sumeru-cta {
    text-align: center;
    padding: 10px;
    /* Soft gold to white gradient for the section background */
    background: #f6f6f6;
    border: 1px solid #eee;
    border-radius: 15px;
    margin: 15px auto;
    max-width: 1100px;
}

.cta-button {
    display: inline-block;
    background: #020844;
    color: #fff;
	font-size: 0.8rem;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin: 5px0;
    transition: 0.3s;
}

.cta-button:hover {
    background: #020844;
    color: #fff;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title-gold { font-size: 0.95rem; text-align: justify; }
	.intro-text, .intro-text1 { text-align: left; font-size: 0.85rem; }
    .sumeru-cta { padding: 10px 10px; }
    .services-grid { grid-template-columns: 1fr;}
.intro-text1 {
text-align: justify;
}

.intro-text {
    text-align: justify;	}
}

/* Responsive */
@media (max-width: 480px) {
    .section-title-gold { font-size: 0.88rem; text-align: justify;}
	.intro-text, .intro-text1 { text-align: left; font-size: 0.85rem; }
    .sumeru-cta { padding: 8px 8px; }
    .services-grid { grid-template-columns: 1fr; }
	.intro-text1 {
text-align: justify;
}

.intro-text {
    text-align: justify;	}
}

/* --- COLLAPSIBLE FAQ STYLES --- */
.sumeru-faq-collapsible {
    padding: 15px;
    background-color: #fdfbf5; /* Matches whitish-gold theme */
}

.faq-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-details {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff; /* Requested Gradient */
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-details[open] {
    border-color: #8e6d2a;
    box-shadow: 0 10px 15px rgba(142, 109, 42, 0.1);
}

/* Summary Header */
.faq-summary {
    padding: 7px;
    list-style: none; /* Removes default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #666;
    font-size: 0.9rem;
    outline: none;
}

/* Remove default arrow for Safari/Chrome */
.faq-summary::-webkit-details-marker {
    display: none;
}

/* Custom Icon Box */
.faq-icon-box {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.faq-icon-box i {
    color: #666; /* Decent Dark Gold */
    font-size: 11px;
}

/* Rotate icon when open */
.faq-details[open] .faq-icon-box {
    transform: rotate(180deg);
}

.faq-details[open] .faq-icon-box i {
    color: #8e6d2a;
}

/* Content Area */
.faq-expanded-content {
    padding: 0 10px 10px 10px;
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    border-top: 1px solid rgba(142, 109, 42, 0.05);
}

.faq-expanded-content p {
    margin: 12px 0 0;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .faq-summary {
        font-size: 0.85rem;
        padding: 8px;
    }
	.faq-expanded-content {
    color: #666;
    line-height: 1.3;
    font-size: 0.82rem;
    border-top: 1px solid rgba(142, 109, 42, 0.05);
}
}


/* --- FOOTER STYLES --- */
.main-footer {
    background: #08080a;
    border-top: 1px solid rgba(215, 180, 106, 0.2);
    padding: 15px 0 0;
    margin-top: 10px;
    font-family: "Poppins", sans-serif; 
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 15px;
    padding-bottom: 50px;
}

.footer-col h3 {
    color: #d7b46a;
    font-size: 14px;
    margin-bottom: 2x;
    position: relative;
}

/*.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: #d7b46a;
}*/

/* Brand Column */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
	text-align: center;
}

.footer-logo img { width: 50px; }
.footer-logo span { 
    color: #d7b46a; 
    font-weight: 600; 
    font-size: 18px; 
}

.about-col p {
    color: rgba(243, 243, 244, 0.7);
    line-height: 1.6;
    font-size: 12px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(215, 180, 106, 0.3);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #0064e0;
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: #0064e0;
    color: #fff;
}

/* Links Column */
.links-col ul {
    list-style: none;
    padding: 0;
}

.links-col ul li { margin-bottom: 8px; }
.links-col ul li a {
    color: rgba(243, 243, 244, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

/*.links-col ul li a:hover {
    color: #d62828;
    padding-left: 5px;
}*/

/* Contact Column */
.contact-item {
    display: flex;
    gap: 13px;
    margin-bottom: 12px;
    color: rgba(243, 243, 244, 0.7);
    font-size: 13px;
}

.contact-item i { color: #fff; margin-top: 4px; }

/* Small Form Column */
.footer-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-form input, .footer-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    color: #fff;
    border-radius: 5px;
    font-size: 13px;
    outline: none;
}

.footer-form input:focus, .footer-form textarea:focus {
    border-color: #d62828;
}

.footer-form button {
    background: #fff;
    color: #000;
    border: none;
    padding: 10px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-form button:hover { background: #fff; }

/* Bottom Copyright */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom a { color: #d62828; text-decoration: none; }

/* Back to Top Icon */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #d62828;
    color: #000;
    border-radius: 10px;
    display: grid;
    place-items: center;
    text-decoration: none;
    z-index: 1000;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.back-to-top:hover {
    background: #fff;
    transform: translateY(-5px);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-col { text-align: left; }
    /*.footer-col h4::after { left: 50%; transform: translateX(-50%); }*/
    .social-links { justify-content: left; }
    .contact-item { justify-content: left; }
}