
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
  --primary: #0f172a;
  --navi: #2f4f4f;
  --secondary: #2563eb;
  --bg-light: #f8fafc;
  --bg-dark: #181818;
  --text-dark: #334155;
  --text-muted: #64748b;
  --white: #ffffff;
  --border: #e2e8f0;
  --black: #000000;
}

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

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

.top-banner {
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  padding: 0.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: var(--navi);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
}

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

nav a {
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
}

nav a:hover, nav a.active {
  color: #0f1c2d;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        display: none; 
        flex-direction: column;
    }
    nav.active {
        display: flex;
    }
    nav ul {
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
        gap: 0;
    }
    nav ul li {
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid #1e293b;
    }
    nav ul li:last-child {
        border-bottom: none;
    }
}

.hero {
  background: linear-gradient(135deg, var(--bg-light) 0%, #e2e8f0 100%);
  padding: 6rem 5%;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.btn {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

section {
  padding: 5rem 5%;
}

.bg-light {
  background-color: var(--bg-light);
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 10px auto 0;
    border-radius: 2px;
}

.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.card .price {
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.1rem;
}

.founder-card .role {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.list-services {
    list-style: none;
}
.list-services li {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
}
.list-services li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: bold;
    margin-right: 15px;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
input, textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
}
input:focus, textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

footer {
  background: #020617;
  color: #94a3b8;
  padding: 4rem 5% 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: var(--white);
}

.footer-col p, .footer-col a {
  color: #cbd5e1;
  text-decoration: none;
  margin-bottom: 0.8rem;
  display: block;
}
.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  font-size: 0.9rem;
}

/* Background Image Section with Dark Overlay */
.bg-image-1 {
    /* The linear-gradient acts as a dark tint over the image */
    background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('bg-image-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white); /* Makes the regular text white */
}

/* Ensure headings inside this section are also white */
.bg-image-1 .section-title,
.bg-image-1 h1,
.bg-image-1 h2,
.bg-image-1 h3 {
    color: var(--white); 
}

/* Background Image Section with Dark Overlay */
.bg-image-2 {
    /* The linear-gradient acts as a dark tint over the image */
    background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('bg-image-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white); /* Makes the regular text white */
}

/* Ensure headings inside this section are also white */
.bg-image-2 .section-title,
.bg-image-2 h1,
.bg-image-2 h2,
.bg-image-2 h3 {
    color: var(--white); 
}

/* Background Image Section with Dark Overlay */
.bg-image-3 {
    /* The linear-gradient acts as a dark tint over the image */
    background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('bg-image-3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white); /* Makes the regular text white */
}

/* Ensure headings inside this section are also white */
.bg-image-3 .section-title,
.bg-image-3 h1,
.bg-image-3 h2,
.bg-image-3 h3 {
    color: var(--white); 
}

/* Background Image Section with Dark Overlay */
.bg-image-4 {
    /* The linear-gradient acts as a dark tint over the image */
    background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('bg-image-4.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white); /* Makes the regular text white */
}

/* Ensure headings inside this section are also white */
.bg-image-4 .section-title,
.bg-image-4 h1,
.bg-image-4 h2,
.bg-image-4 h3 {
    color: var(--white); 
}

/* Background Image Section with Dark Overlay */
.bg-image-5 {
    /* The linear-gradient acts as a dark tint over the image */
    background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('bg-image-5.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white); /* Makes the regular text white */
}

/* Ensure headings inside this section are also white */
.bg-image-5 .section-title,
.bg-image-5 h1,
.bg-image-5 h2,
.bg-image-5 h3 {
    color: var(--white); 
}

/* Background Image Section with Dark Overlay */
.bg-image-6 {
    /* The linear-gradient acts as a dark tint over the image */
    background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('bg-image-6.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white); /* Makes the regular text white */
}

/* Ensure headings inside this section are also white */
.bg-image-6 .section-title,
.bg-image-6 h1,
.bg-image-6 h2,
.bg-image-6 h3 {
    color: var(--white); 
}

/* Background Image Section with Dark Overlay */
.respect {
    /* The linear-gradient acts as a dark tint over the image */
    background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('respect.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white); /* Makes the regular text white */
}

/* Ensure headings inside this section are also white */
.respect .section-title,
.respect h1,
.respect h2,
.respect h3 {
    color: var(--white); 
}

/* Background Image Section with Dark Overlay */
.consistency {
    /* The linear-gradient acts as a dark tint over the image */
    background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('consistency.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white); /* Makes the regular text white */
}

/* Ensure headings inside this section are also white */
.consistency .section-title,
.consistency h1,
.consistency h2,
.consistency h3 {
    color: var(--white); 
}

/* Background Image Section with Dark Overlay */
.creativity {
    /* The linear-gradient acts as a dark tint over the image */
    background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('creativity.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white); /* Makes the regular text white */
}

/* Ensure headings inside this section are also white */
.creativity .section-title,
.creativity h1,
.creativity h2,
.creativity h3 {
    color: var(--white); 
}

/* Background Image Section with Dark Overlay */
.deliverability {
    /* The linear-gradient acts as a dark tint over the image */
    background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('deliverability.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white); /* Makes the regular text white */
}

/* Ensure headings inside this section are also white */
.deliverability .section-title,
.deliverability h1,
.deliverability h2,
.deliverability h3 {
    color: var(--white); 
}

/* Background Image Section with Dark Overlay */
.recycle {
    /* The linear-gradient acts as a dark tint over the image */
    background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('recycle.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white); /* Makes the regular text white */
}

/* Ensure headings inside this section are also white */
.recycle .section-title,
.recycle h1,
.recycle h2,
.recycle h3 {
    color: var(--white); 
}

/* Background Image Section with Dark Overlay */
.banner {
    /* The linear-gradient acts as a dark tint over the image */
    background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('banner.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white); /* Makes the regular text white */
}

/* Ensure headings inside this section are also white */
.banner .section-title,
.banner h1,
.banner h2,
.banner h3 {
    color: var(--white); 
}

.chutneys {
    /* The linear-gradient acts as a dark tint over the image */
    background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('chutneys.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white); /* Makes the regular text white */
}

/* Ensure headings inside this section are also white */
.chutneys .section-title,
.chutneys h1,
.chutneys h2,
.chutneys h3 {
    color: var(--white); 
}

.shimmernest {
    /* The linear-gradient acts as a dark tint over the image */
    background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('shimmernest.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white); /* Makes the regular text white */
}

/* Ensure headings inside this section are also white */
.shimmernest .section-title,
.shimmernest h1,
.shimmernest h2,
.shimmernest h3 {
    color: var(--white); 
}

.FishbowlLogo {
    /* The linear-gradient acts as a dark tint over the image */
    background-image: url('FishbowlLogo.jpeg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white); /* Makes the regular text white */
}

/* Ensure headings inside this section are also white */
.FishbowlLogo .section-title,
.FishbowlLogo h1,
.FishbowlLogo h2,
.FishbowlLogo h3 {
    color: var(--white); 
}

.thinkroboticslogo {
    /* The linear-gradient acts as a dark tint over the image */
    background-image: url('thinkroboticslogo.jpeg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white); /* Makes the regular text white */
}

/* Ensure headings inside this section are also white */
.thinkroboticslogo .section-title,
.thinkroboticslogo h1,
.thinkroboticslogo h2,
.thinkroboticslogo h3 {
    color: var(--white); 
}


