* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 1140px;
    margin: auto;
    padding: 20px;
}

header {
    background: white;
    color: #fff;
    padding: 20px 0;
}

.logo {
    height: 120px; /* Make logo bigger */
    display: inline-block;
}

nav {
    float: right;
}

nav a {
    color: green;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: green;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.btn-container {
    display: flex;
    justify-content: center;
}

.btn {
    background: #fff;
    color: #007bff;
    padding: 12px 28px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.btn:hover {
    background: #0056b3;
    color: #fff;
}
.services {
    background: #fff;
    padding: 60px 20px;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
}

.cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    flex: 1 1 30%;
    padding: 20px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    border-radius: 5px;
}

.contact {
    padding: 60px 20px;
    background: #e9ecef;
}

.contact h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact form {
    max-width: 600px;
    margin: auto;
}

.contact input,
.contact textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
}

.contact button {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    font-weight: bold;
    border-radius: 5px;
}

footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 60px;
}
/* Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Zoom */
.hover-zoom {
    transition: transform 0.3s ease;
}
.hover-zoom:hover {
    transform: scale(1.05);
}

/* Partner Section */
.partners {
    background-color: #f1f1f1;
    padding: 60px 20px;
    text-align: center;
}
.partners h2 {
    margin-bottom: 30px;
}
.partner-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.partner-logos img {
    height: 60px;
    filter: grayscale(100%);
    transition: filter 0.3s, transform 0.3s;
}
.partner-logos img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
/* Dynamic Service Card Animation */
.slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards Grid Responsive & Styled */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
}

.card h3 {
    margin-bottom: 10px;
    color: #28a745;
    font-size: 20px;
}

.card p {
    color: #444;
    font-size: 15px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
/* .about-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
}
.about-section h1, .about-section h2 {
    color: #333;
}
.about-section p, .about-section ul {
    color: #555;
    line-height: 1.6;
}
.about-section ul {
    list-style-type: disc;
    margin-left: 20px;
} */

.about-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center; /* Center all inline content */
}

.about-section h1,
.about-section h2 {
    color: #333;
    margin-bottom: 10px;
}

.about-section p,
.about-section ul {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Center list visually while keeping bullets aligned left */
.about-section ul {
    list-style-type: disc;
    display: inline-block;        /* Shrink-wrap content */
    text-align: left;             /* Keep bullets left-aligned */
    margin-left: 0;               /* Reset default margin */
    padding-left: 20px;           /* Proper bullet spacing */
}

/* @keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.8s ease-out both;
}

.delay-150 { animation-delay: 0.15s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; } */

/* public/css/custom.css */
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.8s ease-out both;
}
.delay-150 { animation-delay: 0.15s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }


.team-section {
    padding: 60px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

.team-grid {
    display: flex;
    flex-wrap: nowrap; /* Keep everything in a single line */
    justify-content: center;
    overflow-x: auto;   /* Allow horizontal scroll on small screens */
    gap: 20px;
    padding: 10px;
}

.team-card {
    background-color: white;
    border-radius: 10px;
    width: 160px;               /* smaller width */
    flex-shrink: 0;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.2s;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 100px;               /* smaller image */
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
}

.features-section {
    padding: 60px 0;
    background: #f9f9f9;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.feature-card h3 {
    padding: 15px;
    font-size: 18px;
    color: #333;
}

.feature-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.feature-card h3 {
    padding: 15px;
    font-size: 18px;
}

.hero-section {
    position: relative;
    background-image: url('../images/Data Analytics Wallpapers.jpg'); /* 🔁 Change to your actual background image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 120px 20px;
    text-align: center;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* 🌓 Optional dark overlay for contrast */
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section p {
    margin-bottom: 20px; /* Add spacing below paragraph */
    font-size: 18px;
    color: white;
}

.hero-section h1 {
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
}

.hero-section a.btn {
    padding: 12px 24px;
    background-color: #1e40af;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}

header {
    background: green;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

header .logo {
    height: 40px;
    width: auto;
}

header nav a {
    margin-left: 20px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

header nav a:hover {
    color: #007bff;
}

header {
    background: #fff;
    padding: 5px 0; /* Reduced height */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

header .logo {
    height: 60px; /* Bigger logo */
    width: auto;
}

header nav a {
    margin-left: 20px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

header nav a:hover {
    color: #007bff;
}

/* Contact Section Styling */
.contact {
  background: linear-gradient(135deg, #e8f5e9, #f1fff6);
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact .container {
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease-in-out;
}

.contact h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #1b5e20;
  font-size: 28px;
}

/* Input & Textarea Styles */
.contact input[type="text"],
.contact input[type="email"],
.contact textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #a5d6a7;
  border-radius: 8px;
  background-color: #f9fff9;
  font-size: 16px;
  transition: border-color 0.3s;
}

.contact input:focus,
.contact textarea:focus {
  border-color: #388e3c;
  outline: none;
  background-color: #ffffff;
}

/* Button Styling */
.contact button {
  background-color: #2e7d32;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.contact button:hover {
  background-color: #1b5e20;
}

/* Success Message */
p[style*="color: green"] {
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  color: #2e7d32 !important;
}

/* Responsive Design */
@media (max-width: 600px) {
  .contact .container {
    padding: 20px;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.green-header {
    background-color: var(--primary); /* uses your defined green */
    padding: 1rem 0;
    box-shadow: 0 5px 15px rgba(24, 115, 28, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
}

.green-text {
    color: green; /* uses your defined green */
}



.green-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
main {
    padding-top: 100px; /* Add space equal to header height */
}
.logo {
    max-height: 60px; /* Optional: Keep logo height consistent */
}

.newlogo {
    width: 150px;
    height: auto;
}



