:root {
    --primary-color: #3c7d74;
    --text-color: #555;
    --heading-color: #3c7d74;
    --bg-color: #fff;
    --font-family: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: arial, sans-serif;
    color: var(--text-color);
    background-color: #fff;
    background-image: url('pagebg.png');
    background-size: auto;
    background-repeat: repeat;
    background-position: top left;
    line-height: 1.6;
    overflow-y: auto;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column ;   font-size: 13px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}


/* Header */
header {
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.logo-container {
    display: flex;
    flex-direction: column;
}

.logo img {
    display: block;
}

.slogan {
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-style: italic;
    margin-top: 4px;    text-align: center; text-transform: uppercase;
}

nav {
    margin-top: 40px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #000;
    opacity: 1;
}

nav ul li a.active {
    font-weight: 600;
}

/* Main Content */
main {
    flex: 1;
    position: relative;
    padding-top: 20px; padding-bottom: 30px;
    display: flex;
    flex-direction: column; 
}
.main_bg{background-position: bottom ;background: url("images/illustration.jpg") no-repeat;    background-size: 100%;    background-position-y: bottom;background-attachment: fixed }

.main-content {
    display: flex;
    justify-content: flex-end;   font-size: 13px;
    
}

/* About Page Content */
.about-content {
    display: flex;
    gap: 60px;
    padding-bottom: 40px;
}

.about-us,
.founders {
    flex: 1;   
}

.about-us h1,
.founders h1 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-us p {
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.4;
    text-align: justify;  font-family: arial, sans-serif;
}

.founder-item {
    margin-bottom: 15px;
}

.founder-item h2 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.founder-item p {
    font-size: 15px;
    line-height: 1.3;
    text-align: justify;
}

/* Contact Page Content */
.contact-section {
   width: 100%; float: left; height: auto;
}
.map_div {
   width: 70%; float: left; height: auto;margin-right: 15px;
}


.contact-section h2 {
    color: var(--heading-color);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.email-info p a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 13px;
}

.detail-info ul {
    list-style: none;
}

.detail-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
    align-items: flex-start;
}

.detail-info .text {
    font-size: 14px;
    line-height: 1.5;
}

.detail-info .icon {
    margin-top: 3px;
}

.detail-info a{
    color: #3c7d74; text-decoration: none;
}
/* Privacy Page Content */
.privacy-content {
    max-width: 1000px;
    padding-bottom: 60px;
}

.privacy-content h1 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 24px;
    font-weight: 600;
}

.privacy-content p {
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.5;
    text-align: justify;
}

.privacy-content h2 {
    color: var(--primary-color);
    font-size: 17px;
    margin: 20px 0 10px;
    font-weight: 600;
}

.privacy-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-content li {
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Skyline */
.skyline-container {
    width: 100%;
    margin-top: auto;
    pointer-events: none;
    display: flex;
    justify-content: center;
    overflow: visible;
    position: relative;
}

.skyline {
    width: 100%;
    max-width: 1400px;
    height: auto;
    display: block;
    opacity: 0.95;
    z-index: 1;
}

/* Products Page Content */
.products-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0px 0;
    flex-wrap: wrap;
    perspective: 1000px;
    /* Added for 3D effect */
}

.product-bubble {
    width: 380px;
    height: 380px;
    background-color: transparent;
    cursor: pointer;
}

.bubble-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.product-bubble:hover .bubble-inner {
    transform: rotateY(180deg);
}

.bubble-front,
.bubble-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-image: url('images/Slide-2-bubble.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 60px;
}

.bubble-back {
    transform: rotateY(180deg);
}

.bubble-content {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    max-width: 220px;
}
.bubble-content_fo {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    max-width: 220px;
}

/* Footer */
footer {
    padding: 30px 0 20px;
    text-align: center;
    font-size: 15px;
    color: #444;
    position: relative;
    z-index: 10;
}
.bottom_mar{margin-bottom: 200px;}

/* Responsive */
@media (max-width: 992px) {
    .founders {
       padding-bottom: 10px;
}
    .bottom_mar{margin-bottom: 10px;}
    .slider-container h3
{  font-size: 18px;}
    .nav ul {    gap: 10px;}
	.map_div{width: 100%}
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
		.slider-container h3
{
 	   font-size: 18px;
}
.nav ul li a{ font-size: 12px;}
}

@media (max-width: 768px) {
    .nav ul li a{ font-size: 12px; letter-spacing:0px;}
        .founders {
    flex: 1;    padding-bottom: 10px;
}
    .bottom_mar{margin-bottom: 10px;}
    .slider-container h3
{  font-size: 18px;}
       .nav ul {    gap: 10px;}
	.map_div{width: 100%}
	.nav ul li a{ font-size: 12px;}
	.slider-container h3
{
 	   font-size: 18px;
}
    .header-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .main-content {
        justify-content: center;
        padding-right: 0;
    }

    .nav {
        margin-top: 20px;
    }
}