/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

/* Sticky Header */
.sticky-header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Navbar Layout */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo + Name + Tagline */
.nav-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Logo Styling */
.logo-image {
 height: 50px;
 width: auto;
  object-fit: contain;
  
  padding: 0.2rem;
  border-radius: 5px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.company-name {
  font-size: 1.8rem;
  font-weight: 600;
  color:black;
}

.tagline {
  font-size: 1 rem;
  color : black;
align-items: top;
}


/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a,
.nav-links a:visited,
.nav-links a:active,
.nav-links a:hover,
.nav-links a:focus {
   color: #1a365d;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover
 {
  color:  #2563eb;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* Responsive Nav */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}




/* Main Content */
main {
    margin-top: 80px;
}

.section {
    scroll-margin-top: 80px;
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.section-title {
    scroll-margin-top:80px ;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a365d;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a365d 0%, #2563eb 100%);
    color: white;
    text-align: center;
    padding: 8rem 2rem 6rem;
    margin-top: 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #1a365d;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* About Section */
.about {
    background: white;
}

.about-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* Services Section */
.services {
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 1rem;
    object-fit: cover;
}

.service-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Products Section */
.products {
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.product-content {
    padding: 1.5rem;
}

.product-card h3 {
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Team Section 
.team {
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: block;
    object-fit: cover;
}

.team-card h3 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.team-card .role {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 1rem;
} */

/* Clients Section */
.clients {
    background: white;
}
/* 
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.client-card {
    background: #f8f9fa;
    border-radius: 15px;
    text-align: center;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.client-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
width: 80px;
  height: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}

.client-card h3 {
  font-size: 1.2rem;
  color: #1a365d;
  margin-bottom: 0.5rem;
}

.client-card p {
  font-size: 0.95rem;
  color: #4a5568;
} */




.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* flexible columns */
  gap: 1.5rem; /* space between cards */
}

.client-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;

  background: #fff;

  height: 100%;              /* ensures all cards fill same height */
}

.client-card img {
  max-width: 120px;          /* keeps logos consistent */
  height: auto;
  margin-bottom: 1rem;
}

.client-card h3 {
  margin: 0.5rem 0;
}

.client-card p {
  flex-grow: 1;              /* pushes text evenly */
}


.client-card:hover {
     transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}



/* Contact Section */
.contact {
    background: linear-gradient(135deg, #1a365d 0%, #2563eb 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #60a5fa;
}

.contact-info p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background: #1a202c;
    color: white;
    text-align: center;
    padding: 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero {
        padding: 6rem 1rem 4rem;
    }

    .section {
        padding: 3rem 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}


.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-image {
    max-width: 100%;
    max-height: 150px; /* adjust depending on your design */
    object-fit: contain; /* keeps full image visible */
}
