:root {
    --brand-blue: #00aeef;
    --text-dark: #1a1a1a;
    --text-gray: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #ffffff;
    color: #0b0f1a;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}
















/* Hero section */
.hero {
  padding: 80px 30px;
   background-color: lightblue; 
  /* background-image: linear-gradient(45deg, #93a5cf 0%, #e4efe9 100%); */
}

.hero-inner {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Left text */
.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 38px;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 18px;
}

.hero-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  max-width: 420px;
  margin-bottom: 26px;
}

/* Button */
.hero-btn {
  padding: 12px 26px;
  background-color: #1d4ed8;
  color: #ffffff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}


/*right side animision*/

.Ram1{
  width: 400px;
  height: 350px;
}
/* Right image 
.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding: 20px;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.25);
  object-fit: cover;
}

/* Responsive 
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image {
    justify-content: center;
  }
}*/


/* .hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* THIS IS IMPORTANT FOR YOUR 1500x1500 JSON 
.Ram1 {
  width: 100%;
  max-width: 550px;   /* Best size for 1500x1500 
  height: auto;
}

.Ram1 svg {
  width: 100% !important;
  height: auto !important;
}

/* ===== RESPONSIVE ===== 
@media (max-width: 992px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .Ram1 {
    max-width: 420px;
    margin-top: 40px;
  }

  .hero-text h1 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .Ram1 {
    max-width: 300px;
  }

  .hero-text h1 {
    font-size: 28px;
  }
} */

/* Base */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f9fafb;
}

/* Section */
.jobs-section {
  max-width: 1150px;
  margin: 40px auto 60px;
  padding: 0 20px;
}

.jobs-section h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
  color: #111827;
}

/* Top bar */
.jobs-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.pagination button {
  border: none;
  background: transparent;
  color: #111827;
  font-size: 14px;
  cursor: pointer;
  margin-right: 8px;
}

.pagination .page {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 14px;
  margin-right: 4px;
  cursor: pointer;
}

.pagination .page.active {
  background-color: #1d4ed8;
  color: #ffffff;
}

.actions button {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid #d1d5db;
}

.actions .outline {
  background-color: #ffffff;
  color: #111827;
}

.actions .filled {
  background-color: #16a34a;
  color: #ffffff;
  border-color: #16a34a;
}

/* Grid */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}








/* Center HR card AND keep same width */
.jobs-grid > .job-card:nth-child(4) {
  grid-column: 2 / span 1; /* keeps grid logic */
  width: 100%;
  max-width: 360px;       /* SAME visual width as other cards */
  justify-self: center;
}




@media (max-width: 900px) {
  .jobs-grid > .job-card:nth-child(4) {
    grid-column: auto;
    max-width: none;
  }
}





/* Reset on tablet/mobile */
/* @media (max-width: 900px) {
  .jobs-grid > .job-card:nth-child(4) {
    grid-column: auto;
    justify-self: stretch;
  }
}
 */


/* Card */
.job-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px 18px 18px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
}



.job-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
}






/* Tag */
.tag {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: #1d4ed8;
  background-color: #e0ecff;
  margin-bottom: 6px;
}

/* Text */
.job-card h2 {
  font-size: 18px;
  margin: 0 0 4px;
  color: #111827;
}

.meta {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

.desc {
  font-size: 13px;
  color: #4b5563;
  margin: 10px 0 14px;
}

/* Card buttons */
.card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.primary,
.ghost {
  flex: 1;
  padding: 8px 0;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
}

.primary {
  background-color: #1d4ed8;
  color: #ffffff;
  border: none;
}

.ghost {
  background-color: #ffffff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

/* Responsive */
@media (max-width: 900px) {
  .jobs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .jobs-topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Base */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Section */
.culture, .perks-section {
  margin: 0;
  padding: 0;
  background-color: lightblue; 
}

.common-bg {
  /*background-color: #699cd6;  add your desired background color */
  padding: 60px 20px; /* add padding to the common-bg class */
}
.culture {
  padding: 60px 60px;
}

.culture-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Text block */
.culture-text {
  flex: 1;
}

.culture-text h1 {
  font-size: 32px;
  margin-bottom: 18px;
  color: #111827;
}

.culture-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
  max-width: 560px;
  margin-bottom: 14px;
}


/*animation*/

.Ram2{
  width: 450px;
  height: 400px;
}
/* Image block 
.culture-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.culture-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.25);
  object-fit: cover;
}

/* Responsive 
@media (max-width: 900px) {
  .culture-inner {
    flex-direction: column;
  }

  .culture-text h1,
  .culture-text p {
    text-align: left;
  }

  .culture-image {
    justify-content: center;
  }
}*/


/* Page background */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.perks-section{
  margin: 0px;
}
/* Section wrapper */
.perks-section {
  /*max-width: 1100px;*/
  /*margin: 60px auto;*/
  padding: 0 100px 80px;
  text-align: center;
  /* background-color: #00c7ef; */
}
svg path {
  fill: #0c78ed;
}

/* Title */

.perks-section h1 {
  margin-bottom: 40px;
  font-size: 32px;
  color: #111827;
}

/* Grid layout */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

/* Individual card */
.perk-card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
}

.perk-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.1);
}

/* SVG hover effect - zoom in/out animation */
.perk-card svg {
  transition: transform 0.3s ease;
  transform-origin: center;
}

.perk-card:hover svg {
  animation: svgPulse 0.6s ease-in-out infinite;
}

@keyframes svgPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* SVG path hover effect */
.perk-card svg path {
  transition: fill 0.3s ease;
}

.perk-card:hover svg path {
  fill: #0066FF !important;
}

/* Card heading */
.perk-card h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111827;
}

/* Card text */
.perk-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #6b7280;
}

/* Responsive: 2 columns on tablets */
@media (max-width: 900px) {
  .perks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Responsive: 1 column on mobiles */
@media (max-width: 600px) {
  .perks-grid {
    grid-template-columns: 1fr;
  }
}
























/* footer */
.footer {
    background: #ffffff;
    padding: 60px 0 30px;
    border-top: 1px solid #eee;
}

/* FOOTER LINKS FIX */
.footer a {
    text-decoration: none;
    /* remove underline */
    color: #6b7280;
    /* same color as text */
}

.footer a:hover {
    color: #1677ff;
    /* optional hover color */
}
.footer-top {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.brand img {
    display: block;
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.brand-text {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 14px;
}

.footer-col ul li {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 14px;
}

.social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    text-align: center;
    padding: 22px 0;
    font-size: 13px;
    color: #6b7280;
}




























/* image of login */
* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    background: #ffffff;
}

.login-wrapper {
    display: flex;
    height: 100vh;
    padding: 40px 60px;
    gap: 40px;
}

/* LEFT */
.login-form {
    width: 45%;
    padding: 40px 20px;
}

.login-form h1 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #111827;
}

.subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 32px;
}

label {
    font-size: 14px;
    color: #374151;
    display: block;
    margin-bottom: 6px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    margin-bottom: 18px;
    font-size: 14px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.remember {
    font-size: 14px;
    color: #374151;
}

.forgot {
    font-size: 14px;
    color: #1677ff;
    text-decoration: none;
}

.primary-btn {
    width: 100%;
    padding: 14px;
    background: #1677ff;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
}

.divider {
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
    margin: 28px 0 20px;
}

.social-login {
    display: flex;
    gap: 12px;
}

.social-btn {
    flex: 1;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
}

.terms {
    font-size: 12px;
    color: #6b7280;
    margin: 24px 0;
}

.terms a {
    color: #1677ff;
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
}

/* RIGHT */
.login-image {
    width: 55%;
    background: #1677ff;
    padding: 10px;
    border-radius: 8px;
}

.login-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* Image 4 specific: Social icons are BLACK */
.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.social-icons i {
    font-size: 18px;
    color: #333;
}



.social-icons a {
    text-decoration: none;
    color: inherit;
}

.social-icons a:hover i {
    color: #1677ff;
}

/* Contact info links styling */
.contact-info a,
.contact-item a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.contact-info a:hover,
.contact-item a:hover {
    color: #1677ff;
}










/* Image 4 specific: Contact icons are BLUE */
.contact-info p i,
.contact-item i {
    color: #1677ff;
    width: 20px;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 60px;
}

@media (max-width: 768px) {

    .footer-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }
}
html {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

