* {
    box-sizing: border-box;
}

body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    background:
        radial-gradient(circle at top,#f8fff6,#eef5ee 60%);
	background: #eef5ee;
	overflow-x: hidden;
	font-family: "Inter", sans-serif;
}

/* Logo watermark background */

body::before {

    content: "";

    position: fixed;

    inset: 0;

    background-image: url("../images/logo.png");

    background-repeat: repeat;

    background-size: 220px;

    background-position: center;

    opacity: 0.035;

    pointer-events: none;

    z-index: -1;
}

section h2 {
	font-size: 1.2rem;
}

.container {
    width: min(92%, 700px);
    margin: 15px auto 10px;
    padding: 20px 30px 30px;
    background: honeydew;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(47,125,50,.12);
}


h1,
h2 {
    text-align: center;
}

.contact-info p {
    margin: .7rem 0;
}

.social-links,
.community-links {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
}

.social-links a,
.community-links a {
    display: block;
    padding: 12px;
    text-align: center;
    background: #0b7a3b;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: .2s;
}

.social-links a:hover,
.community-links a:hover {
    background: #095f2d;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin: 20px 0 30px;
}

.social-grid a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 105px;

    background: #2f7d32; /* RAYASAM-style green */
    color: white;

    text-decoration: none;
    border-radius: 14px;

    transition: 
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.social-grid a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.social-grid i {
    font-size: 34px;
    margin-bottom: 10px;
}

.social-grid span {
    font-size: 14px;
    font-weight: 600;
}


/* Platform hover colors */

.social-grid a:nth-child(1):hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}
/* Instagram */


.social-grid a:nth-child(2):hover,
.social-grid a:nth-child(9):hover {
    background: #229ED9;
}
/* Telegram */


.social-grid a:nth-child(3):hover {
    background: #0A66C2;
}
/* LinkedIn */


.social-grid a:nth-child(4):hover,
.social-grid a:nth-child(8):hover {
    background: #25D366;
}
/* WhatsApp */


.social-grid a:nth-child(5):hover {
    background: #16a085;
}
/* Bale */


.social-grid a:nth-child(6):hover {
    background: #8e44ad;
}
/* Eitaa */


.social-grid a:nth-child(7):hover {
    background: #7b2cbf;
}
/* Rubika */


.contact-section, 
.social-section,
.community-section {
	position: relative;
    padding-top: 25px;
}


.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}


.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 18px;

    background: #f8fbf8;
    border: 1px solid #dcebdc;

    border-radius: 14px;

    color: #222;
    text-decoration: none;

    transition: 
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


.contact-card:hover {

    transform: translateY(-4px);

    border-color:#2f7d32;

    box-shadow:
        0 10px 25px rgba(47,125,50,.15);
}

.contact-card:hover .contact-icon {

    transform: scale(1.08);

}

.contact-card i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f7d32;
    border-radius: 50%;
    font-size: 22px;
}


.contact-card strong {
    display: block;
    font-size: 14px;
    color: #2f7d32;
}


.contact-card span {
    display: block;
    margin-top: 4px;
    font-size: 14px;
}

.hero {
    text-align: center;
}

.hero h1,
h2 {
    font-family: "Montserrat", sans-serif;
}

.hero::after {
    content: "";
    display: block;
    width: 90%;
    height: 4px;
    margin: 18px auto 0;
    border-radius: 10px;
    background: linear-gradient(90deg,#2f7d32,#7cb342);
}

.logo {
    display: block;
    width: min(150px,40vw);
    width: min(200px,40vw);
    height: auto;
    margin: 0 auto 0px;
}

.hero h1 {
    margin: 0;
    color: #2f7d32;
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    font-weight: 700;
    letter-spacing: 1px;
}

.tagline {
    margin: 4px 0 0;
    color: #666;
    font-size: 1rem;
}

h2 {
    color: #2f7d32;
    text-align: center;
    margin-bottom: 22px;
    position: relative;
}

.contact-section h2{
    text-align:center;
    margin-bottom:25px;
    color:#2f7d32;
}

.card-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:18px;
}

.contact-card{
    display:flex;
    align-items:center;
    gap:18px;

    padding:18px;

    background: honeydew;

    border-radius:16px;

    border:1px solid #e3ece3;

    text-decoration:none;

    color:inherit;

    transition:.25s;
}

.contact-card:hover{
    transform:translateY(-4px);

    border-color:#2f7d32;

    box-shadow:0 12px 24px rgba(47,125,50,.12);
}

.contact-icon{
    width:56px;
    height:56px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background: #dde9e6;
    color:white;
    font-size:22px;
	transition: transform .2s ease;
}

.contact-icon img {
	width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.contact-content{
    display:flex;
    flex-direction:column;
}

.contact-title{
    font-size:.85rem;
    font-weight:600;
    color:#2f7d32;
    margin-bottom:4px;
}

.contact-value{
    font-size:.95rem;
    color:#444;

    word-break:break-word;
}

@media(max-width:650px){

    .card-grid{
        grid-template-columns:1fr;
    }

}


.instagram{
    background: #e7dde9;
}

.telegram{
    background: #d9e7ed;
}

.linkedin{
    background: #0A66C2;
}

.whatsapp{
    background: #bce1c0;
}

.social-icon{
    background: #dde9e6;
}

.bale img {
	width: 40px;
	height: 40px;
}

{
    background: #cec6d5;
}

footer {
    text-align:center;
    margin:10px;
    color:#777;
    font-size:.85rem;
}

