/* ========== Base Styles ========== */
:root {
    --primary-color: #8fbf36;     /* Green */
    --secondary-color: #22abd7;   /* Blue */
    --dark-color: #706f6f;        /* Dark Gray */
    --text-color: #333333;
    --light-text: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --border-color: #dddddd;
    --font-primary: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}


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

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
}

/* Header styles */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.site-header a{
    display: flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
}

.site-header a:hover{
    color: var(--secondary-color);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px ;
}

.site-header .logo img
{
  max-width: 230px;
  height: auto;
}
/* Hero section */
.hero {
    background: linear-gradient(rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.5)), 
                url("/images/pointing-on-tablet.jpg");
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Account for fixed header */
    color: #fff;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 45px;
    margin-bottom: 20px;
}

.hero .hero-cta-button {
    margin-top: 30px;
}

.hero .hero-cta-button .cta-button {
    background: var(--secondary-color);
    color: var(--light-text);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;

}

.hero .hero-cta-button .cta-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Testimonial section */
.testimonial {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

blockquote {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}

blockquote footer {
    margin-top: 20px;
}

blockquote cite {
    font-weight: 500;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

/* ========== About Section ========== */
.about {
    background-color: #ffffff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 1;
    width: 50%;
}

.about-image img {
  max-width: 400px;
  height: 600px;
  object-fit: cover;
}

.industry-image img {
  max-width: 400px;
  height: 400px;
  object-fit: cover;
}

.about-text {
    flex: 1;
}

.about-divider
{
  width: 200px;
  height: 1px;
  margin: 20px;
  opacity: 0.3;
}
.about-testimonial 
{
  display: flex;
  flex-direction: column;
  text-align: start;
}

.view-services{
  color: rgba(143, 191, 54, 1);
  font-weight: bold;
  margin: 40px 0;
  text-decoration: none;

}
/* Services section */
.services {
    padding: 80px 0;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-intro h2 {
    font-size: 30px;
    background: linear-gradient(to right, rgba(143, 191, 54, 1), rgba(34, 171, 215, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
  background-size: cover;
  background-position: center;
  height: 400px;
  position: relative;
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 500px;
}

.service-card:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.75), transparent);
}

.service-card h3 {
    position: relative;
    font-size: 30px;
    z-index: 1;
}

/* CTA section */
.cta {
    background: linear-gradient(rgba(34, 171, 215, 1), rgba(143, 191, 54, 1));
    padding: 80px 0;
    color: #fff;
    text-align: center;    background-size: cover;
    background-position: center;

}

.cta .cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta h2 {
    font-size: 38px;
    max-width: 800px;
    text-align: start;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--light-text);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    height: fit-content;
}

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

/* Footer */
.site-footer {
    background: #fff;
    padding: 60px 0 0;
}

.site-footer .footer-logo img
{
  max-width: 220px;
}

.footer-widgets {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 100px 50px;
}

.widget {
  width: 33.33%;
}

.widget h4 {
    color: rgba(143, 191, 54, 1);
    font-weight: bold;
    margin-bottom: 15px;
}

.widget select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
}

.widget address i{
  color: var(--dark-color);
}
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: var(--dark-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.copyright {
    background: #706f6f;
    padding: 20px 0;
    text-align: center;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .services-intro h2,
    .cta h2 {
        font-size: 24px;
    }
    
    .service-card h3 {
        font-size: 24px;
    }
}