@charset "utf-8";
/* CSS Document 

TemplateMo 602 Graph Page

https://templatemo.com/tm-602-graph-page

*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	background: #0a0e27;
	color: #ffffff;
	overflow-x: hidden;
}

/* Navigation */
nav {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 20px 50px;
	background: rgba(10, 14, 39, 0);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	z-index: 1000;
	transition: all 0.3s ease;
}

nav.scrolled {
	padding: 15px 50px;
	background: rgba(10, 14, 39, 0);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
}

.nav-img {
    height: 50px; /* Adjust height as needed */
    margin-right: 30px; /* Add space between the image and the links */
    margin-left: 50px;
    float: left;
    padding-left: 8px;
    padding-right: 300px;
    margin-top: 0px;
    margin-bottom: 0px;
}


.nav-links {
	display: flex;
	gap: 40px;
	list-style: none;
}

.nav-links a {
	color: #ffffff;
	text-decoration: none;
	font-size: 16px;
	transition: color 0.3s ease;
	position: relative;
}

.nav-links a::before {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, #ff6b6b, #ff8e53);
	transition: all 0.3s ease;
	transform: translateX(-50%);
	border-radius: 2px;
}

.nav-links a:hover {
	color: #ff8e53;
	text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.nav-links a:hover::before {
	width: 100%;
}

.nav-links a.active::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #00ffcc, #00ccff);
	transform: translateX(-50%);
	box-shadow: 0 0 15px rgba(0, 255, 204, 0.6);
	border-radius: 2px;
}



/* Hero Section */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
	/* background: linear-gradient(360deg, #01041a 0%, #1a1f3f 100%); */
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.4;
	background-image:
		linear-gradient(45deg, transparent 30%, rgba(0, 255, 204, 0.1) 50%, transparent 70%),
		linear-gradient(-45deg, transparent 30%, rgba(255, 0, 128, 0.1) 50%, transparent 70%);
	animation: bgShift 20s ease-in-out infinite;
}

@keyframes bgShift {

	0%,
	100% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(-20px, -20px);
	}
}

.geometric-shapes {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.shape {
	position: absolute;
	border: 2px solid rgba(0, 255, 204, 0.3);
}

.shape1 {
	width: 300px;
	height: 300px;
	top: 10%;
	left: -150px;
	transform: rotate(45deg);
	animation: float 15s ease-in-out infinite;
}

.shape2 {
	width: 200px;
	height: 200px;
	top: 60%;
	right: -100px;
	border-color: rgba(255, 0, 128, 0.3);
	animation: float 20s ease-in-out infinite reverse;
}

.shape3 {
	width: 150px;
	height: 150px;
	bottom: 20%;
	left: 10%;
	border-color: rgba(0, 204, 255, 0.3);
	transform: rotate(30deg);
	animation: float 18s ease-in-out infinite;
}

.shape4 {
	width: 250px;
	height: 250px;
	top: 15%;
	right: 5%;
	border-color: rgba(255, 0, 128, 0.25);
	transform: rotate(45deg);
	animation: float 16s ease-in-out infinite;
}

.shape5 {
	width: 180px;
	height: 180px;
	top: 55%;
	right: 12%;
	border-color: rgba(0, 255, 204, 0.25);
	transform: rotate(-30deg);
	animation: float 22s ease-in-out infinite reverse;
}

.shape6 {
	width: 120px;
	height: 120px;
	bottom: 15%;
	right: 8%;
	border-color: rgba(0, 204, 255, 0.25);
	transform: rotate(20deg);
	animation: float 19s ease-in-out infinite;
}

.hero-content {
	position: relative;
	z-index: 10;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 50px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-text {
	animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.hero-text h1 {
	font-size: 64px;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 30px;
	background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	padding-bottom: 8px;
}

.hero-text p {
	font-size: 18px;
	line-height: 1.6;
	color: #a0a0a0;
	margin-bottom: 40px;
	max-width: 500px;
}

.cta-button {
	display: inline-block;
	padding: 15px 40px;
	color: white;
	text-decoration: none;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

#cta-button-1 {
	background: linear-gradient(135deg, #ff6b6b, #ff8e53);
}
#cta-button-2 {
	border: 1px solid #134175b9;
	background-color: #0a0e27;
}


.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
	text-decoration: none;
	color: #ffffff;
}

.hero-visual {
	position: relative;
	animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.city-container {
	position: relative;
	width: 100%;
	height: 400px;
	perspective: 1000px;
}

.building {
	position: absolute;
	background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
	border: 1px solid rgba(0, 255, 204, 0.2);
	box-shadow:
		0 0 20px rgba(0, 255, 204, 0.1),
		inset 0 0 20px rgba(0, 255, 204, 0.05);
	overflow: hidden;
}

/* Building fill effect */
.building-fill {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	animation: pulse 3s ease-in-out infinite;
}

.building1 {
	width: 60px;
	height: 250px;
	bottom: 0;
	left: 20%;
}

.building1 .building-fill {
	height: 45%;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 204, 0.6) 100%);
}

.building2 {
	width: 80px;
	height: 320px;
	bottom: 0;
	left: 35%;
}

.building2 .building-fill {
	height: 60%;
	background: linear-gradient(180deg, transparent 0%, rgba(255, 0, 128, 0.6) 100%);
	animation-delay: 0.5s;
}

.building3 {
	width: 100px;
	height: 280px;
	bottom: 0;
	right: 25%;
}

.building3 .building-fill {
	height: 35%;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 204, 255, 0.6) 100%);
	animation-delay: 1s;
}

.building4 {
	width: 70px;
	height: 200px;
	bottom: 0;
	right: 10%;
}

.building4 .building-fill {
	height: 50%;
	background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 107, 0.6) 100%);
	animation-delay: 1.5s;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 0.6;
		transform: translateY(0);
	}

	50% {
		opacity: 1;
		transform: translateY(-5px);
	}
}

/* Building windows */
.building-windows {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: repeating-linear-gradient(0deg,
			transparent,
			transparent 8px,
			rgba(255, 255, 255, 0.05) 8px,
			rgba(255, 255, 255, 0.05) 10px);
	opacity: 0.8;
}

.neon-line {
	position: absolute;
	height: 2px;
	background: linear-gradient(90deg, transparent, #00ffcc, transparent);
	animation: scan 3s linear infinite;
}

.neon-line1 {
	width: 100px;
	top: 30%;
	left: 10%;
}

.neon-line2 {
	width: 150px;
	top: 50%;
	right: 15%;
	animation-delay: 1s;
}

@keyframes scan {
	0% {
		transform: translateX(-100%);
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		transform: translateX(200%);
		opacity: 0;
	}
}

/* Dashboard Section */
.dashboard-section {
	padding: 80px 50px;
	background-color: #0a0e27;
}

.dashboard-container {
	max-width: 1400px;
	margin: 0 auto;
}

.section-title {
	font-size: 36px;
	margin-bottom: 40px;
	text-align: center;
	background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Image Cards */
.images-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	
}

.image-card {
	/* background-color: #0a0e27;
	border: 0px solid rgba(255, 255, 255, 0.1); */
	border-radius: 22px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
  	max-width: 90%; /* Limits individual card width */
	max-height: 80%;
	margin: 0 auto;
}

.image-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.05);
  	box-shadow: 0 10px 30px rgba(0,255,204,0.2);
}

.image-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
}

.image-card img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  
}

/* Services list */
.service-box {
	background: rgba(255, 255, 255, 0);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 20px;
	position: relative;
	z-index: 10;
	max-width: 90%;
	max-height: 80%;
	margin: 0 auto;
}

.section-title {
    position: relative; /* Essential for z-index to work */
    z-index: 5;        /* Higher than the background's z-index (1) */
    /* You may also want to ensure the color is not being affected */
    color: #ffffff;    /* Ensure the text color is bright white */
}

/* Target the specific Services section container */
#services {
    position: relative; /* Essential for positioning the ::after pseudo-element */
    overflow: hidden; /* Ensures the background image stays within the section boundaries */
}

/* Create a pseudo-element to hold the background image and the gradient overlay */
#services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Place it *behind* the service-box content (which is z-index 2) */
    
    /* 1. Stacked Background: Gradient Overlay on top of the Image */
    background-image: 
        /* Gradient Overlay: Fades from solid dark on the left to transparent on the right */
        linear-gradient(to right, 
            #0a0e27 0%, /* Start solid dark color on the left (matches your background) */
            #0a0e27 35%, /* Solid dark color up to about 35% of the section width */
            rgba(10, 14, 39, 0.5) 55%, /* Fade out to 50% opacity at 55% */
            rgba(10, 14, 39, 0) 100% /* Fully transparent on the right */
        ),
        /* Image: Set as the second layer */
        url('background.jpeg'); 

    /* 2. Image Positioning and Sizing */
    background-size: cover; /* Cover the entire area of the pseudo-element */
    background-repeat: no-repeat;
    background-position: right center; /* Position the image starting from the right edge */
    opacity: 0.5; /* Reduce the overall intensity of the image */
}

.service-box:hover {
	background: rgba(255, 255, 255, 0.05);
}



.styled-list {
    list-style: none; /* Remove default numbering */
    padding: 0;
    margin: 0;
    position: relative;
    max-width: 100%; /* Control the list width */
    width: 100%;
	height: 80%;
}

/* 1. Creating the vertical line (timeline connector) */
.styled-list::before {
    content: '';
    position: absolute;
    top: 10px; /* Start below the first item */
    bottom: 10px; /* End above the last item */
    left: 20px; /* Position of the line */
    width: 2px;
    background: rgba(255, 255, 255, 0.15); /* Light gray line */
    z-index: 1;
}

.list-item {
    margin-bottom: 35px; /* Space between features */
    position: relative;
    padding-left: 60px; /* Space for the number/dot */
    min-height: 40px;
    display: flex;
    align-items: center;
    z-index: 2; /* Ensure items stack above the line */
}

/* 2. Customizing the numbers (connected dots) */
.list-item::before {
    content: counter(list-item); /* Use the list item counter */
    counter-increment: list-item;
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00ffcc 0%, #00ccff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #0a0e27; /* Dark text color for the number */
    /* box-shadow: 0 0 15px rgba(0, 255, 204, 0.5);  */
}

.feature-text {
    font-size: 18px;
    color: #ffffff; /* White text for the feature description */
    line-height: 1.5;
}


/* Device card */
.device-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(263px, 1fr));
	gap: 20px;
	margin-bottom: 80px;
}

.device-item {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 20px;
	text-align: center;
	transition: all 0.3s ease;
  	max-width: 80%;
  
}

.device-item:hover {
	transform: translateY(-3px);
	border-color: rgba(0, 255, 204, 0.3);
}

.device-value {
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 5px;
}

.device-label {
	font-size: 16px;
	color: #a0a0a0;
}
.device-item img {
  width: 100%;
}
#icon {
	height: 53%;
	width: 80%;
}
#icon-2{
	height: 53%;
	width: 100%;
}

/* --- SDG Contributions Section Styles --- */


/* 1. Create the 2x2 Grid Layout */
.sdg-grid-container {
    display: grid;
    /* Create 2 columns, each taking an equal fraction (1fr) of the space */
    grid-template-columns: 1fr 1fr;
    /* Spacing between the cards */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 2. Style the Individual Card */
.sdg-card {
    background: rgba(255, 255, 255, 0.03); /* Dark transparent background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px; /* Rounded corners */
    padding: 30px;
    color: #ffffff;
    height: 100%; /* Ensures all cards stretch to the same height */
    transition: transform 0.3s ease;
}

.sdg-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 204, 0.3); /* Optional hover effect */
}

/* 3. Style the Header (Icon and Title) */
.sdg-header {
    display: flex; /* Use Flexbox for icon and title alignment */
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.sdg-icon {
    width: 60px; /* Size of the SDG icon image */
    height: auto;
    border-radius: 5px; /* Keeps the square icon sharp */
}

.sdg-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.sdg-description {
    font-size: 16px;
    line-height: 1.6;
    color: #a0a0a0;
}


/* --- Team Section Styles --- */


.section-title {
    color: #ffffff; /* White title text */
    margin-bottom: 80px; /* Space below the title */
    font-size: 36px;
    font-weight: 700;
}

/* 1. Create the Grid for 6 Cards */
.team-grid {
    display: grid;
    /* On large screens, create 6 columns of equal width */
    grid-template-columns: repeat(6, 1fr); 
    gap: 30px; /* Space between cards */
    max-width: 1400px; /* Limit the overall width of the grid */
    margin: 0 auto; /* Center the grid container */
    padding-top: 50px; /* Space between title and first row of cards */
	padding-bottom: 50px;
}

/* 2. Style Individual Team Member Cards */
.team-member-card {
    background: rgba(255, 255, 255, 0.03); /* Dark transparent background */
    border-radius: 15px; /* Rounded corners */
    padding-bottom: 80px;
    text-align: center;
    position: relative; /* Needed for positioning the image */
    padding-top: 90px; /* Space for the image to overlap */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover .profile-image {
	filter: grayscale(0%);
}

.team-member-card:hover {
    transform: translateY(-5px); /* Lift card on hover */
    box-shadow: 0 10px 20px rgba(0, 255, 204, 0.2); /* Subtle glow on hover */
}

/* 3. Profile Image Styling (Circular and Overlapping) */
.profile-image-wrapper {
    position: absolute; /* Position relative to the card */
    top: -50px; /* Adjust to make it overlap the top edge */
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
    width: 150px; /* Size of the circular image wrapper */
    height: 150px;
    border-radius: 50%; /* Make it circular */
    background: #0a0e27; /* Background color behind the image */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Ensures image stays within the circle */
	transition: filter 0.5s ease;
}

.profile-image {
    width: 150px; /* Slightly smaller than wrapper to show border */
    height: 150px;
    border-radius: 50%; /* Keep the image itself circular */
    object-fit: cover; /* Ensures image covers the area without distortion */
	filter: grayscale(100%);
	transition: filter 0.5s ease;
}

/* 4. Text Styling */
.member-name {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px; /* Space after image (within card padding) */
    color: #ffffff;
}

.member-role {
    font-size: 14px;
    color: #a0a0a0;
    margin-top: 5px;
}

/* --- Feedback Section Styles --- */
/* Feedback Section  */
.feedback-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;          
}

/* Form Groups */
.feedback-form .form-group {
    margin-bottom: 25px;
}

/* Input + Textarea fields */
.feedback-form .form-control {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;   
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

/* Textarea adjustments */
.feedback-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
	max-width: 100%;
}

/* Focus style  */
.feedback-form .form-control:focus {
    outline: none;
    border-color: rgba(0, 255, 204, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.1);
}

/* Row spacing fix */
.feedback-form form .row {
    margin-bottom: 0;
}

/* Button styling */
.btnfeedback {
    width: 30%;
    border: none;
    border-radius: 30px;
    padding: 10px 15px;
    margin-top: 25px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3 ease;
}

.btnfeedback:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}



/* Footer content */
/* --- Footer Styles --- */

.main-footer {
	
    background: #0a0e27; /* Dark background matching the image */
    color: #ffffff;
    padding: 60px 20px 30px; /* Top, horizontal, bottom padding */
	width: 100%;
	bottom: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex; /* Arrange columns horizontally */
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
    justify-content: space-between; /* Distribute space between columns */
    gap: 40px; /* Space between columns */
    max-width: 100%;
    margin: 0 auto 10px auto; /* Center the content and add space above copyright */
}

.footer-col {
    flex: 1; /* Each column takes equal space initially */
    min-width: 150px; /* Minimum width before wrapping */
}

/* Specific styling for the logo column to prevent it from stretching too much */
.footer-col-logo {
    flex: 1.2; /* Give logo slightly more room */
    min-width: 200px;
}

.footer-logo img{
    max-width: 100%;
	height: auto;
	width: 80%;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff; /* Accent color for headings */
    text-transform: uppercase;
}

/* Contact List Styling */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start; /* Align icon and text at the top */
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #a0a0a0;
}

.contact-list li i {
    color: #34a6b8; /* Icon color */
    font-size: 16px;
    margin-top: 2px; /* Slight adjustment for icon alignment */
}

/* Quick Links Styling */
.quick-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links-list li {
    margin-bottom: 12px;
}

.quick-links-list a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block; /* For transform effect */
}

.quick-links-list a:hover {
    color: #33c0a4;
    transform: translateX(5px); /* Slide effect on hover */
}

/* Social Icons Styling */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Circular icons */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0e27; /* Dark icon color */
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-icon.facebook { background: #054eed; color: #ffffff; }
.social-icon.instagram { 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
	color: #ffffff;
}
.social-icon.whatsapp { background: #25d366; color: #ffffff; }
.social-icon.twitter { background: #000000; color: #ffffff; }
/* For the new 'X' logo (if you have font awesome 6) */
/* .social-icon.x-icon { background: #000000; color: #ffffff; } */


.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 255, 204, 0.4);
}

/* Footer Bottom (Copyright) */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Separator line */
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    color: #707070;
}

.footer-bottom a {
    color: #707070;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #33c0a4;
}

/* Mobile Menu */
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 6px;
	z-index: 1001;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: #ffffff;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

.nav-links-mobile {
	display: none;
	position: fixed;
	top: 70px;
	left: 0;
	width: 100%;
	background: rgba(10, 14, 39, 0.98);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	flex-direction: column;
	gap: 0;
	list-style: none;
	z-index: 1000;
	padding: 20px;
}

.nav-links-mobile.active {
	display: flex;
}

.nav-links-mobile a {
	color: #ffffff;
	text-decoration: none;
	padding: 15px 20px;
	display: block;
	border-left: 3px solid transparent;
	transition: all 0.3s ease;
}

.nav-links-mobile a:hover {
	border-left-color: #ff6b6b;
	background: rgba(255, 107, 107, 0.1);
	color: #ff8e53;
}

.nav-links-mobile a.active {
	border-left-color: #00ffcc;
	background: rgba(0, 255, 204, 0.1);
	color: #00ffcc;
}

/* ===================================================== */
/* RESPONSIVE DESIGN - AQUASENSE WEBSITE                 */
/* ===================================================== */

/* ---------------- NAVBAR ------------------ */
@media (max-width: 992px) {

    nav {
        padding: 15px 25px;
    }

    .nav-links {
        display: none;
    }

    #hamburger {
        display: block;
        cursor: pointer;
    }

    .nav-links-mobile {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        display: none;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .nav-links-mobile.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

/* -------------- HERO SECTION ---------------- */
@media (max-width: 992px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 30px 15px;
    }

    .hero-text {
        width: 100%;
        margin-top: 20px;
    }

    .hero-text h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-img img {
        width: 90%;
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-img img {
        width: 100%;
    }
}

/* -------------- DASHBOARD IMAGES GRID ---------------- */
@media (max-width: 992px) {
    .dashboard-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dashboard-images img {
        width: 100%;
        height: auto;
    }
}

/* -------------- FUNCTIONALITY DEVICES ---------------- */
@media (max-width: 992px) {
    .device-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .device-grid {
        grid-template-columns: 1fr;
    }
}

/* -------------- SDG CARDS SECTION ---------------- */
@media (max-width: 992px) {
    .sdg-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .sdg-grid {
        grid-template-columns: 1fr;
    }
}

/* -------------- TEAM SECTION ---------------- */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* -------------- METRICS GRID ---------------- */
@media (max-width: 992px) {
    .metrics-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

/* -------------- FEEDBACK FORM ---------------- */
@media (max-width: 768px) {

    .feedback-form {
        width: 100%;
        padding: 20px;
    }

    .feedback-form form {
        width: 100%;
    }

    .feedback-form input,
    .feedback-form textarea {
        width: 100%;
        font-size: 15px;
    }

    .btnfeedback {
        width: 100%;
        font-size: 16px;
        padding: 12px;
    }
}

/* -------------- FOOTER ---------------- */
@media (max-width: 992px) {
    footer .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* -------------- GLOBAL FIXES ---------------- */
@media (max-width: 992px) {

    section {
        padding: 60px 20px;
    }

    h2.section-title {
        font-size: 28px;
        text-align: center;
    }

    p {
        font-size: 16px;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

/* Remove horizontal scroll issues */
body {
    overflow-x: hidden;
}
