:root {
    --color-primary-blue: #1A376F;
    --color-accent-green: #4CAF50;
    --color-dark-text: #333;
    --color-light-text: #666;
    --color-background-light: #f4f7f9;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-dark-text);
    line-height: 1.6;
    background-color: white;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3em;
    color: var(--color-primary-blue);
}

h2 {
    font-size: 2em;
    color: var(--color-primary-blue);
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.25em;
    font-weight: 600;
    color: var(--color-primary-blue);
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    color: var(--color-light-text);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    text-transform: uppercase;
}

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

.btn-primary:hover {
    background-color: #388e3c;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-primary-blue);
    color: white;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #12284c;
    transform: translateY(-2px);
}

.main-header {
    background-color: white;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: auto;
    max-height: 40px;
    vertical-align: middle;
}

.solution-icon{
	
}
.solution-icon img {
    width: auto;
    max-height: 40px;
    vertical-align: middle;
    display: block;
    margin-bottom: 15px;

}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li a {
    text-decoration: none;
    color: var(--color-dark-text);
    padding: 10px 15px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--color-accent-green);
}

nav ul li a.active {
    color: var(--color-accent-green);
    font-weight: 600;
}

.hero-section {
    background: var(--color-background-light);
	display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-container { 
    display: flex;
    align-items: center; 
    justify-content: space-between;
    gap: 40px; 
}

.hero-content {
    flex: 1; 
    max-width: 550px; 
}

.hero-section h1 {
    font-size: 3.5em;
    max-width: 600px;
}

.hero-section .subtitle {
    font-size: 1.3em;
    max-width: 600px;
    margin-bottom: 40px;
    color: var(--color-light-text);
}

.hero-artwork {
    flex-shrink: 0; 
    max-width: 50%;
}

.hero-artwork img {
    width: 100%; 
    height: auto;
    display: block;
}

section {
    padding: 80px 0;
}

.services-section {
    background-color: white;
}

.solutions-section {
	background-color: var(--color-background-light);
}
.about-section {
    background-color: white;
}

.contact-section {
	background-color: var(--color-background-light);
    text-align: center;
}

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

.service-card, .solution-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover, .solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card .icon {
    font-size: 2.5em;
    display: block;
    margin-bottom: 15px;
    color: var(--color-accent-green);
}

.solution-card .icon {
    font-size: 2.5em;
    display: block;
    margin-bottom: 15px;
    color: var(--color-accent-green);
}

.about-content {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1em;
}

.key-goal {
    background-color: var(--color-background-light);
    padding: 20px;
    border-left: 5px solid var(--color-accent-green);
    margin: 30px 0;
    border-radius: 5px;
}

.key-goal h3 {
    color: var(--color-primary-blue);
    margin-bottom: 5px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

#contactPopupLink {
    color: var(--color-dark-text);
    font-weight: 600; 
    text-decoration: none; 
    transition: color 0.3s;
}

#contactPopupLink:hover {
    color: var(--color-accent-green);
    text-decoration: none; 
}

.social-icons-footer a,
.social-icons-contact a {
    color: white;
    font-size: 1.2em;
    margin: 0 8px;
    transition: color 0.3s ease;
}

.social-icons-contact a {
    color: var(--color-light-text);
    font-size: 1.3em;
}

.social-icons-footer a:hover,
.social-icons-contact a:hover {
    color: var(--color-accent-green);
}

footer .container {
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.social-icons-footer {
    margin-left: 20px;
    display: flex;
    gap: 5px;
}

.social-icons-contact {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.contact-info p {
    font-size: 1.1em;
    margin: 5px 0;

}

footer {
    background-color: var(--color-primary-blue);
    color: white;
    padding: 20px 0;
    font-size: 0.9em;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
}

.footer-right {
    display: flex; 
    align-items: center;
    gap: 20px; 
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s;
}

.footer-links .separator {
    color: white;
    margin-left: 15px;
}

.social-icons-footer a {
    color: white; 
    font-size: 1.2em;
    margin: 0 5px; 
    transition: color 0.3s ease;
}

.social-icons-footer a:hover {
    color: var(--color-accent-green); 
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-accent-green);
}

.footer-links span {
    margin-left: 15px;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1000; 
	left: 0;
	top: 0;
	width: 100%; 
	height: 100%; 
	overflow: auto; 
	background-color: rgba(0,0,0,0.7);
	padding-top: 50px;
}

.modal-content {
	background-color: #fefefe;
	margin: 5% auto;
	padding: 30px;
	border-radius: 8px;
	width: 90%; 
	max-width: 500px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.3);
	position: relative;
}

.close-btn {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	line-height: 20px;
	cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
	color: #333;
	text-decoration: none;
	cursor: pointer;
}

.modal-content h3 {
	border-bottom: 2px solid #007bff;
	padding-bottom: 10px;
	margin-top: 0;
	margin-bottom: 15px;
}

.contact-section h2 {
	 margin-bottom: 20px;
}
		
.contact-content-wrapper {
    display: flex;
    gap: 30px;
    align-items: stretch;
    margin-top: 20px;
}

.map-container {
    flex: 3;
    height: 450px; 
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-info {
    flex: 2;
	margin-top: 15px;
    border-radius: 8px;
}

.contact-details-column .address-info p,
.contact-details-column .contact-info p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 35px;
}

.contact-details-column .address-info h4 {
    font-size: 1.1rem;
    margin-top: 15px; 
    margin-bottom: 5px;
}

.contact-details-column .fas {
    font-size: 1.1rem; 
    vertical-align: middle;
}
.contact-info h3 {
    color: var(--color-primary-blue);
    margin-top: 0;
}

.social-icons-contact {
    margin-top: 15px; 
    display: flex;
    justify-content: flex-start;
    gap: 10px; 
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
   
    margin-top: 40px;
}

.contact-details-column {
    padding-right: 0px;
	text-align: left;
}

.contact-details-column .fas {
    margin-right: 8px; 
    color: var(--color-accent-green); 
}
.contact-details-column h3, 
.map-column h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.address-info h4 {
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 5px;
}

.map-column .map-container {

    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.solutions-grid a {
    text-decoration: none;
    color: inherit;
    display: block; 
}

.solutions-grid a .solution-card {
    height: 100%;
}

.solution-card .solution-icon img {
    width: auto;
    max-height: 50px;
    display: block;
    margin-bottom: 15px;
}

.solution-card .icon {
    font-size: 2.5em;
    display: block;
    margin-bottom: 15px;
    color: var(--color-accent-green);
}

@media (max-width: 768px) {
	.contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
	
    .main-header .container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li a {
        padding: 5px 10px;
    }

    .hero-section {
        padding: 80px 0 60px;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.5em;
        max-width: 100%;
    }

    .hero-section .subtitle {
        font-size: 1.1em;
        max-width: 100%;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        order: 2;
    }

    .hero-artwork {
        max-width: 80%;
        margin-bottom: 30px;
        order: 1;
    }
	
    .services-grid {
        grid-template-columns: 1fr;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin-top: 10px;
    }
	
	footer .container {
		flex-direction: column;
		gap: 10px;
    }
	
    .social-icons-footer {
        margin-top: 15px;
        margin-left: 0;
    }
	
	footer .container {
		flex-direction: column;
		text-align: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 10px; 
        margin-top: 10px;
    }
    
    .footer-links {
        display: flex; 
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 3em;
    }
    
    .hero-content .subtitle {
        font-size: 1.2em;
    }
}

/* Floating Social Links */
.floating-social-bar {
    position: fixed;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-social-bar a {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 20px;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 4px 13px rgba(0,0,0,0.25);
    transition: 0.3s ease;
}

/* WhatsApp */
.floating-social-bar a .fa-whatsapp {
    background: #25D366;
    padding: 12px;
    border-radius: 50%;
}

/* Facebook */
.floating-social-bar a .fa-facebook-f {
    background: #1877F2;
    padding: 12px;
    border-radius: 50%;
}

/* Instagram (Gradient) */
.floating-social-bar a .fa-instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    padding: 12px;
    border-radius: 50%;
}

/* LinkedIn */
.floating-social-bar a .fa-linkedin-in {
    background: #0077B5;
    padding: 12px;
    border-radius: 50%;
}

/* Hover effect (no color override) */
.floating-social-bar a:hover {
    transform: scale(1.2);
}