:root{
  --purple: #6a0dad;
  --yellow: #ffcc00;
  --white: #ffffff;
  --grey-light: #f5f5f5;
  --grey-dark: #333333;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --card:#0b1220;
  --muted:#36393b;
  --glass: rgba(255,255,255,0.03);
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  background-color: var(--white);
  color: var(--grey-dark);
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
}

p {
  font-weight: 500;
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1.0), rgba(255, 255, 255, 0.7));
  backdrop-filter: blur(3px);
  padding: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between; /* space between logo & menu */
  z-index: 1000;
}

/* Logo styles */
.logo img {
  height: 50px; /* adjust size */
  display: block;
}

/* Navigation links */
.nav-links {
  list-style: none;
  display: flex;
  padding-right: 50px;
  margin: 0px;
}

.nav-links li {
  margin-left: 10px;
  margin-right: 10px;
}

.nav-links a {
  color: rgb(21, 21, 71);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  
  display: inline-block;    /* or block */
  padding: 10px 15px;       /* increase clickable area */
  border-radius: 4px;       /* optional, for nicer hover */
}

.nav-links a:hover {
  color: #5537ff;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 50px;
  height: 3px;
  background-color: rgb(21, 21, 71);
  border-radius: 2px;
}

.hero {
  height: 100vh; /* Full screen height */
  background: url('Images/header.jpg') no-repeat center center/cover; /* Background image */
  display: flex;
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
  text-align: center;
  position: relative;
  color: white;
}

/* Optional: dark overlay to make text stand out */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(127deg, rgba(104, 0, 145, 0.8), rgba(255, 255, 255, 0)); /* semi-transparent black */
}

/* Content inside hero */
.hero-content {
  position: relative; /* so it appears above the overlay */
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.0rem;
  margin-bottom: 25px;
}

.btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: #ffcc00;
  color: #333;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #ffdb4d;
}

.section {
  padding: 60px 40px;
}

.partnership-section {
  padding: 5rem 2rem;
  background-color: #f9fafb; /* light gray */
  font-family: Arial, sans-serif;
  color: #334155; /* slate-700 */
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.header-content {
  text-align: center;
  margin-bottom: 3rem;
}

.title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #0f172a; /* slate-900 */
  margin-bottom: 0.5rem;
}

.highlight {
  color: #570091; /* teal-500 */
}

.description {
  font-size: 1.125rem;
  color: #64748b; /* slate-500 */
  max-width: 600px;
  margin: 0 auto;
}

.content-block {
  background: white;
  border-radius: 2rem;
  box-shadow: 0 12px 24px rgba(79, 5, 144, 0.32);
  padding: 3rem;
  
  display: flex;           /* Make children align horizontally */
  gap: 3rem;
  align-items: center;     /* Vertically center items */
  justify-content: space-between;
  flex-wrap: wrap;         /* Wrap on smaller screens */
  transition: transform 0.3s ease, box-shadow 0.3s ease
}

.content-inner {
  flex: 1 1 60%;           /* Text side: take about 55% width */
  min-width: 300px;        /* Prevent too narrow */
}

.content-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 201, 8, 0.3);
}

/* Partner Info */
.partner-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
}

.icon-circle img {
  width: 40px;         /* adjust as needed */
  height: 40px;        /* adjust as needed */
  border-radius: 50%;  /* makes it circular */
  object-fit: cover;   /* ensures it fills the circle nicely */
}

.partner-name {
  font-weight: 800; /* thicker font */
  font-size: 1.6rem;
  color: #4b0082; /* deep purple */
  margin: 0;
}

.partner-tagline {
  margin: 0;
  color: #6b7280; /* greyish */
  font-weight: 600;
  font-style: italic;
}

/* Text */
.partner-text {
  color: #374151; /* dark grey */
  font-size: 1rem;
  line-height: 1.6;
  max-width: 500px;
  font-weight: 500;
}

.partner-link {
  color: var(--purple); /* bright yellow */
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.partner-link:hover {
  color: var(--yellow); /* darker yellow on hover */
}

/* Testimonial */
.testimonial {
  margin-top: 2rem;
  max-width: 500px;
  font-family: 'Poppins', sans-serif;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.125rem;
  color: #4b0082;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-icon {
  width: 40px;
  height: 40px;
  background-color: #f3e8ff; /* pale purple */
  border-radius: 50%;
  color: #6a0dad;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.author-name {
  font-weight: 700;
  color: #4b0082;
}

.author-company {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Image block */
.image-block {
  flex: 1 1 40%;           /* Image side: about 40% width */
  max-width: 350px;
  position: relative;
  border-radius: 2rem;
  box-shadow: 0 12px 20px rgba(0,0,0,0.1);
}


.partner-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 2rem;
}

/* Active partnership badge */
.active-partnership {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background: white;
  border-radius: 1rem;
  border: 1px solid #3c2a5e; /* yellowish border */
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 8px rgba(106, 13, 173, 0.15);
}

.pulse {
  width: 12px;
  height: 12px;
  background-color: #4cb24c; /* yellow pulse */
  border-radius: 50%;
  animation: pulse 2s infinite;
}


@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.6);
    opacity: 0.6;
  }
}

.product.section {
  height: 50vh; /* half viewport height */
  display: flex;
  align-items: center; /* vertically center content */
  background: #f9fafb; /* light background for contrast */
  color: #1f2937; /* dark slate */
}

.product .container {
  display: flex;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  gap: 2rem;
  height: 100%;
  align-items: center;
}

/* Description on the left */
.product-descript {
  flex: 1;
}

.product-head h2 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.product-sub .sub {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.5;
  text-align: left;
}

/* Image on the right */
.product-img {
  flex: 1;
  max-height: 350px;
  object-fit: contain;
  border-radius: 1rem;

  width: 100%;      /* Make image take full container width */
  height: auto;     /* Maintain aspect ratio */
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .product-img {
    max-height: 200px;  /* Smaller max height on small screens */
    border-radius: 0.5rem;

  }

  /* If the container is flex, you might want to stack content vertically */
  .product-img-block {
    margin-top: 1rem;  /* spacing when stacked */
  }
}

.service_head{
  margin: 0px 15px 50px 15px
}
.services h2{font-size:35px;margin:0 0 6px;text-align: center;}
.sub{color:var(--muted);margin-bottom:18px;text-align: center;font-size: small;}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}
/* Tablet */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Phone */
@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
.feature-card {
  width: 280px;
  aspect-ratio: 1 / 0.7;
  background: #fbf6ff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  user-select: none;
  cursor: default;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
  background: linear-gradient(127deg, #e2c3fcae, rgba(248, 237, 255, 0.582));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  transform: translateY(-8px);
}

.icon {
  font-size: 2rem;
  color: #6a0dad; /* Purple tone to match your theme */
  margin-bottom: 12px;
}

.feature-card h3 {
  margin: 0 0 15px 0;
  font-size: 1.5rem;
  color: #111;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.4;
}

.process ol {
  max-width: 600px;
  margin: 0 auto;
}
.contact-section {
  color: #333;
  padding: 40px 0px;
  width:100%;
  margin: 0;
  background-color: #f5f5f5;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: #555;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Top: Icon + Contact Info */
.contact-info-top {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-main-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ccc;
}

/* Contact items inline */
.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 200px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers everything horizontally */
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  width: 200px; /* optional fixed width */
}

.contact-icon {
  background-color: #3a004fc8; /* match card bg */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.contact-icon img {
  width: 50px;
  height: 50px;
}

.contact-item-title {
  margin: 5px 0;
  font-weight: 600;
  font-size: 1.1rem;
  color: rgb(0, 0, 0);
}

.contact-link {
  color: #007BFF;
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
}



/* Bottom: Why choose card */
.why-choose-card {
  background: #ffcc001b;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 40%;
  position: relative;
  align-self: center;
}

.why-choose-title {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;

}

.why-choose-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.why-choose-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;

}

.why-choose-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info-top {
    flex-direction: column;
    align-items: center;
  }
}



.footer {
  background-color: #1e293b; /* dark slate */
  color: white;
  padding: 4rem 2rem;
  font-family: Arial, sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 3rem 2rem 3rem;
  gap: 2rem;
}

.footer-bottom  {
    margin: -1rem 3rem -2rem 3rem;
  }

.footer-left {
  max-width: 600px;
}

.company-name {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.company-desc {
  color: #94a3b8; /* lighter slate */
  line-height: 1.5;
}

.footer-right {
  text-align: right;
}



.footer-title {
  font-size: 1.0rem;
  font-weight: 600;
  text-align: center;
  margin-top: 0rem;
  margin-bottom: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: 0.75rem;
  background-color: #334155; /* slate-700 */
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 1.25rem;
  transition: background-color 0.3s;
}

.social-links a:hover {
  background-color: #6a0dad; /* purple */
  color: white;
}

.social-icon {
  width: 60px;       /* smaller icon to fit inside the 40x40 box */
  height: 60px;
  object-fit: contain;
  filter: invert(1); /* white icons inside dark background */
}

  .footer p{
    color:#7d7d7d;
  }

/* Responsive fixes for smaller devices */
@media (max-width: 1024px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    margin: 0 1rem 2rem 1rem;
  }
  .footer-right {
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .footer-left, .footer-right {
    max-width: 100%;
    text-align: center;
  }
  .company-name {
    font-size: 0.9rem;
  }
  .footer-title {
    font-size: 1rem;
  }
  .social-links a {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* Responsive tweaks added for mobile and tablet below */

/* Tablet screens */
@media (max-width: 1024px) {


  /* Hero text size smaller */
  .hero h1 {
    font-size: 3.2rem;
  }
  .hero p {
    font-size: 0.9rem;
  }

  /* Content block stacks vertically */
  .content-block {
    flex-direction: column;
    padding: 2rem;
  }
  .content-inner, .image-block {
    flex: unset;
    max-width: 100%;
  }
  .image-block {
    max-width: 100%;
    margin-top: 1.5rem;
  }

  /* Partnership section padding */
  .partnership-section {
    padding: 3rem 1.5rem;
  }

  /* Features grid 2 columns */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Why choose card width */
  .why-choose-card {
    width: 60%;
  }

  /* Footer - stack footer top */
  .footer-top {
    flex-direction: column;
    align-items: center;
    margin: 0 1rem 2rem 1rem;
    gap: 1.5rem;
  }

  .footer-bottom  {
    text-align: center;
    align-items: center;
  }

  .footer-right {
    text-align: center;
    width: 100%;
  }
}

/* Mobile phones */
@media (max-width: 640px) {


  /* Hero text smaller */
  .hero h1 {
    font-size: 2.6rem;
  }
  .hero p {
    font-size: 0.85rem;
  }
  .hero-content {
    padding: 10px;
    max-width: 90%;
  }

  .title{
    font-size:2rem;
  }

  /* Content block stacks vertical */
  .content-block {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .content-inner, .image-block {
    flex: unset;
    max-width: 100%;
  }
  .image-block {
    max-width: 100%;
    margin-top: 1rem;
  }

  /* Partnership padding */
  .partnership-section {
    padding: 2rem 1rem;
  }

  .product-head h2{
    font-size: 2rem;
  }

  .product.section{
    height: 70vh;
  }

  /* Features grid 1 column */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* Feature card width */
  .feature-card {
    width: 90%;
  }

  /* Product image adjustments */
  .product-img {
    max-height: 180px;
    border-radius: 0.5rem;
  }

  /* Product container stack */
  .product .container {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Why choose card full width */
  .why-choose-card {
    width: 60%;
  }

  /* Contact content spacing */
  .contact-content {
    gap: 20px;
  }

.contact-title {
    font-size: 2.0rem;

}

.contact-subtitle {
    font-size: 1.0  rem;

}

  /* Contact info top stack vertically */
  .contact-info-top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  /* Footer - stack items vertically, center */
  .footer-top {
    flex-direction: column;
    align-items: center;
    margin: 0 1rem 2rem 1rem;
    gap: 1rem;
  }
  .footer-left, .footer-right {
    max-width: 100%;
    text-align: center;
  }
  .footer-bottom  {
    text-align: center;
    align-items: center;
  }

  /* Reduce font sizes for footer */
  .company-name {
    font-size: 0.9rem;
  }
  .footer-title {
    font-size: 1rem;
  }
  .social-links a {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .footer p{
    color:#7d7d7d;
  }
}



/* Scroll padding offset for fixed navbar on mobile */
@media (max-width: 640px) {
  html {
    scroll-padding-top: 70px; /* offset fixed navbar height */
  }
}


/* Responsive styles */
@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 70px; /* below navbar */
    right: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(3px);
    width: 200px;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
    z-index: 999;
    border-left: 1px solid #ddd;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    margin: 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-links a {
    width:100%;
  }
}