
:root {
    --primary: #0f172a;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --text: #334155;
    --light-text: #64748b;
    --bg: #f8fafc;
    --card-bg: #ffffff;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Core Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Mobile Fluid Container */
.container {
    width: 100%;
    padding-inline: 1.25rem;
    margin-inline: auto;
}

/* Header & Nav Base (Mobile View) */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary);
}

.logo span {
    color: var(--accent);
}

/* Mobile Hamburger Button Button */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transition: transform 0.3s, opacity 0.3s;
}

/* Morph Hamburger to "X" when active */
.menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Dropdown Nav */
.main-nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: none;
}

.main-nav.active {
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
}

.btn-cta, .btn-primary {
    background: var(--accent);
    color: var(--white) !important;
    text-align: center;
    border-radius: 6px;
    padding: 0.75rem;
}



/* --- Utilities --- */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark);
    border: 2px solid var(--gray);
}

.btn-secondary:hover {
    background-color: var(--dark);
    color: var(--dark);
    border-color: var(--dark);
}

.btn-block {
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray);
}




/* --- Hero Section --- */
.hero {
    padding: 10rem 0 6rem 0;
    background: radial-gradient(circle at 90% 10%, #e0e7ff 0%, var(--light) 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

.hero-btns .btn {
    margin-right: 1rem;
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}




/* 2. Services Section Matrix */
.services h2{
	text-align:center;
	
}

.services { padding: 4rem 0; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    text-align: center;
}

.service-card i { font-size: 2.25rem; color: var(--accent); margin-bottom: 1.25rem; }

/* 3. About Section Matrix */
.about { padding: 4rem 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }

@media (min-width: 768px) { .about-grid { grid-template-columns: 1.2fr 0.8fr; } }

.about-stats { display: flex; gap: 1.5rem; }
.stat-box {
    flex: 1;
    background: var(--bg);
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.stat-box h3 { font-size: 2.25rem; color: var(--primary); margin-bottom: 0.5rem; }
.stat-box p { color: var(--light-text); font-size: 0.9rem; }

/* 4. Rewards Section Layout */
.rewards { padding: 4rem 0; }
.rewards-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 800px; margin: 0 auto; }

@media (min-width: 640px) { .rewards-grid { grid-template-columns: 1fr 1fr; } }

.reward-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.03);
    border: 1px solid #e2e8f0;
    position: relative;
}
.rewards h2{
	text-align:center;
}
.rewards .section-subtitle{
	text-align:center;
}
.reward-card.featured {
    border: 2px solid var(--accent);
    background: var(--primary);
    color: var(--white);
}

.reward-card.featured h3 { color: var(--white); }

.tier {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* 5. Contact Section Form Architecture */
.contact { padding: 4rem 0; background: var(--white); }
.contact-container { max-width: 600px; }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
	width:70%;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-weight: 600; font-size: 0.9rem; color: var(--primary); }

.form-group input, .form-group textarea {
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.btn-submit { width: 100%; text-align: center; }



/*--footer--*/

	footer{
		    background-color: #61DAFB;
			color: black;
			padding: 20px 0;
		}
		.footer-container{
		   display: flex;
		   flex-wrap: wrap;
		   justify-content: space-around;
		   max-width: 1200px;
		   margin: 0 auto;
		   padding: 20px;
		}
		
		.footer-section{
		   flex:1;
		   margin: 0 10px;
		   min-width: 200px;
		}
		
		.footer-section h4{
		   margin-bottom: 10px;
		}
		
		.footer-section ul{
		   list-style:none;
		   padding: 0;
		  
		}
		
		.footer-section ul li{
		  margin-bottom: 5px;
		}
		.footer-section ul li a{
		    color: black;
			text-decoration: none;
		}
		.footer-section ul li a:hover{
		    color: #fff;
			text-decoration: underline;
		}
		.footer-section .social-links{
		    display: flex;
			gap: 10px;
		}
		.footer-section .social-links li{
		    display: inline;
		
		}
		.footer-section .social-links li a{
		    color: #fff;
			text-decoration: none;
		
		}
		.footer-section .social-links li a:hover{
		    text-decoration: none;
		
		}
		
		.footer-section form {
		    display: flex;
			flex-direction: column;
		}
		.footer-section form 
		    input[type="email"]{
			padding: 10px;
			margin-bottom: 10px;
			border: none;
			border-radius: 5px;
			background-color: #fff;
			color: black;
			cursor: pointer;
		}
		.footer-section form button:hover{
		  background-color: #777;
		}
		.footer-botton{
		  text-align: center;
		  padding: 10px 0;
		  background-color: #fff;
		}
		.footer-botton p{
		    margin: 0;
		}

/*social links on footer*/
/* Container for the icon row */
.social-icon-container {
  display: flex;
  gap: 16px;              /* Space between icons */
  align-items: center;
  justify-content: center; /* Center horizontally (change to flex-start if placing in a footer left side) */
}

/* Base style for every link wrapper */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Base style for all SVG graphics */
.social-link svg {
  width: 32px;            /* Icon size width */
  height: 32px;           /* Icon size height */
  transition: transform 0.2s ease, filter 0.2s ease;
}

/* Hover dynamic effect for all icons */
.social-link:hover svg {
  transform: scale(1.1);   /* Pop effect */
  filter: brightness(1.2); /* Brightens the specific color slightly */
}

/* Brand specific colors */
.facebook svg  { fill: #1877F2; }
.instagram svg { fill: #E4405F; }
.linkedin svg  { fill: #0A66C2; }
.youtube svg   { fill: #FF0000; }
.tiktok svg    { fill: #000000; } /* Use #FFFFFF if your background is dark */




/* Desktop Scale Up (Tablets and Desktops) */
@media (min-width: 768px) {
    .container {
        max-width: 1200px;
        padding-inline: 2rem;
    }

    .menu-toggle {
        display: none;
    }

    .main-nav {
        position: static;
        display: block;
        width: auto;
        padding: 0;
        box-shadow: none;
        background: transparent;
    }

    .nav-links {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }

    .btn-cta {
        padding: 0.5rem 1.25rem;
    }
}