/* ===== Global Reset & Base Styling ===== */

 :root {
     --primary-color: #00A1E0;
     --secondary-color: #E6B325;
     --dark-color: #121212;
     --light-color: #ffffff;
     --text-dark: #333333;
     --text-light: #f5f5f5;
     --transition-speed: 0.3s;
 }

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


body {
    font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
    background-color: var(--light-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* ===== Header & Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    background-color: var(--light-color) !important;
    transition: none !important;
}

.logo-img {
    height: 75px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    background-color: var(--light-color);
}

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

.nav-links a {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 1px;
    padding: 5px 0;
    position: relative;
    transition: color var(--transition-speed) ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
     background-color: #00A1E0;
    transition: width var(--transition-speed) ease;
}





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

/* ===== Hamburger Menu ===== */
.menu-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.menu-toggle span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
    top: 0;
    transform-origin: left center;
}

.menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}

.menu-toggle span:nth-child(3) {
    bottom: 0;
    transform-origin: left center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, -1px);
    width: 100%;
    background: var(--primary-color);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, 1px);
    width: 100%;
    background: var(--primary-color);
}

/* ===== Page Wrapper ===== */
.page-content {
    padding-top: 80px;
    background-color: var(--light-color);
}

/* ===== Hero Section ===== */
.careers-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)),
    url('career.png') center/cover no-repeat;
    color: var(--light-color);
    text-align: center;
    padding: 150px 0 100px;
    min-height: 650px;
    display: flex;
    align-items: center;
    .careers-hero {
    position: relative;
    z-index: 1;
}
}

.careers-hero .section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin: 30px auto;
    max-width: 600px;
    margin-bottom: 70px;
}

/* ===== Job Openings Section ===== */
.job-openings {
    padding: 80px 0;
    background-color: var(--light-color);
}

.job-openings .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.job-openings h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.job-openings h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.jobs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.job-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: all var(--transition-speed) ease;
}

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

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.job-header h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    font-weight: 600;
}

.job-type {
    background-color: #e1f5fe;
    color: #0288d1;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.job-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: #666;
}

.job-details i {
    margin-right: 0.3rem;
}

.job-description {
    margin-bottom: 1.5rem;
    color: #555;
    font-weight: 300;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.job-skills span {
    background-color: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #555;
}

/* Apply Button */
.apply-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    width: 100%;
    letter-spacing: 0.5px;
}

.apply-btn:hover {
    background-color: #007AB0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Call-To-Action Button */
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    color: var(--light-color);
    background-color: var(--primary-color);
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #007AB0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* Apply Now Section */
.apply-now {
    background-color: var(--light-color);
    padding: 40px 0;
    text-align: center;
}

.apply-now .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.apply-now .cta-button {
    padding: 13px 35px;
    font-size: 1.1rem;
}


/* ===== Footer ===== */
.site-footer {
    background-color: rgba(18, 18, 18, 0.9);
    color: var(--text-light);
    padding: 60px 10% 30px;
    font-size: 0.95rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    font-size: 1.2rem;
    color: var(--light-color);
    margin-bottom: 15px;
    position: relative;
}

.footer-column h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    margin-top: 8px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #bbb;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

.footer-column a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 20px;
    height: auto;
    max-width: 100%;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #aaa;
    font-size: 0.85rem;
}



/* ===== Responsive Queries ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        cursor: pointer;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 80px);
        padding-top: 40px;
        background-color: var(--light-color);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        transition: right 0.3s ease;
        z-index: 9999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
        padding-left: 30px;
        width: 100%;
    }

    .nav-links a {
        color: var(--text-dark);
        font-size: 1.2rem;
        display: block;
        width: 100%;
    }

    .careers-hero {
        padding: 100px 0 60px;
        min-height: 500px;
    }
    .careers-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)),
    url('career.png') center/cover no-repeat;
    }
    .careers-hero .section-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 50px;
    }

    .jobs-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .careers-hero {
        padding: 80px 0 40px;
        min-height: 400px;
    }

    .careers-hero .section-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .job-openings h2 {
        font-size: 2rem;
    }
}

/*=====career end ======*/
/*=====integration start ======*/



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

 body {
     font-family: 'Montserrat', sans-serif;
     background-color: var(--light-color);
     color: var(--text-dark);
     line-height: 1.6;
     overflow-x: hidden;
     scroll-behavior: smooth;
 }

 /* Page Content */
 .page-content {
     padding-top: 80px;
 }

 /* Hero Section */
 .integration-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('IntegrationCover.png') center/cover no-repeat;
    background-attachment: fixed; 
    color: var(--light-color);
    text-align: center;
    padding: 120px 0 80px;
    min-height: 69vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


 .integration-hero h1 {
     font-size: 3.5rem;
     margin-bottom: 20px;
     font-weight: 700;
 }

 .integration-hero p {
     font-size: 1.4rem;
     max-width: 800px;
     margin: 0 auto;
     font-weight: 300;
 }

 /* Content Sections */
 .content-section {
     padding: 10px 5%;
     max-width: 1200px;
     margin: 0 auto;
 }

 .section-title {
     font-size: 2.5rem;
     color: var(--primary-color);
     margin-bottom: 40px;
     text-align: center;
     position: relative;

 }

 .section-title::after {
     content: "";
     position: absolute;
     bottom: -15px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 3px;
     background-color: var(--primary-color);
     
 }

 .expertise-content {
     font-size: 1.1rem;
     line-height: 1.8;
     margin-bottom: 40px;
     text-align: center;
     

 }

 .stats-container {
     display: flex;
     justify-content: center;
     margin: 50px 0;
 }

 .stat-item {
     text-align: center;
     padding: 0 30px;
     border-right: 1px solid #ddd;
     opacity: 0;
     transform: translateY(20px);
     transition: opacity 0.8s ease, transform 0.8s ease;
 }

 .stat-item.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .stat-item:last-child {
     border-right: none;
 }

 .stat-number {
     font-size: 3rem;
     font-weight: 700;
     color: var(--primary-color);
     margin-bottom: 10px;
 }

 .stat-label {
     font-size: 1.1rem;
     color: var(--text-dark);
 }

 /* Integration List */
 .integration-list {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
     gap: 20px;
     margin: 2px 0;
 }
.section-title{
    padding-top: 50px;
}
 .integration-item {
     padding: 15px 20px;
     background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
     border-left: 4px solid var(--primary-color);
     transition: transform 0.3s ease;
     opacity: 0;
     transform: translateX(-20px);
     transition: opacity 0.6s ease, transform 0.6s ease;
 }

 .integration-item.visible {
     opacity: 1;
     transform: translateX(0);
 }

 .integration-item:hover {
     transform: translateY(-5px);
 }

 /* Example Projects Section */
 .example-projects {
     display: flex;
     align-items: stretch;
     /* ensures both sides equal height */
     gap: 50px;
     margin: 5px 0;
     padding-top: 50px;
      margin-bottom: 0px;

 }

 .example-links {
     flex: 1;
     display: flex;
     flex-direction: column;
     justify-content: center;
     background: #f8f9fa;
     /* subtle background */
     border-radius: 8px;
     padding: 20px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 }

 .example-image {
     flex: 1;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* Image styling */
 .example-image img {
     
     max-width: 512px;
     height: 200px;
     /* fixed height */
     object-fit: cover;
     border-radius: 8px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 /* Smaller, compact links */
 .example-link {
     display: block;
     padding: 2px 10px;
     margin-bottom: 5px;
     color: var(--primary-color);
     text-decoration: none;
     transition: all 0.3s ease;
     border-left: 3px solid var(--primary-color);
     font-size: 14px;
     font-weight: 500;
 }

 .example-link:hover {
     background: var(--primary-color);
     color: #fff;
     transform: translateX(5px);
 }


 /* App Links */
 .app-links {
     padding-top: 0px;
     padding-bottom: 30px;
 }

 .app-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
     gap: 20px;
     
 }

 .app-item {
     padding: 20px;
     background: #f8f9fa;
     border-radius: 8px;
     transition: all 0.3s ease;
     opacity: 0;
     transform: translateY(20px);
     transition: opacity 0.6s ease, transform 0.6s ease;
 }

 .app-item.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .app-item:hover {
     background: var(--primary-color);
     color: white;
 }

 .app-item a {
     color: var(--primary-color);
     text-decoration: none;
     font-weight: 500;
     display: flex;
     align-items: center;
     transition: color 0.3s ease;
 }

 .app-item:hover a {
     color: white;
 }

 .app-item i {
     margin-right: 10px;
 }

 /* Footer */
 .site-footer {
     background-color: var(--dark-color);
     color: var(--text-light);
     padding: 60px 5% 30px;
 }

 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
 }

 .footer-column h3 {
     font-size: 1.3rem;
     margin-bottom: 20px;
     position: relative;
 }

 .footer-column h3::after {
     content: "";
     position: absolute;
     bottom: -10px;
     left: 0;
     width: 40px;
     height: 2px;
     background-color: var(--primary-color);
 }

 .footer-column ul {
     list-style: none;
 }

 .footer-column li {
     margin-bottom: 10px;
 }

 .footer-column a {
     color: #bbb;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-column a:hover {
     color: var(--primary-color);
 }

 .footer-bottom {
     margin-top: 40px;
     padding-top: 20px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     text-align: center;
     color: #aaa;
     font-size: 0.9rem;
 }

 /* Responsive */
 @media (max-width: 992px) {
     .integration-list {
         grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
     }

     .example-projects {
         flex-direction: column;
     }

     .example-image {
         height: 300px;
     }
 }

 @media (max-width: 768px) {
     .integration-hero h1 {
         font-size: 2.5rem;
     }

     .integration-hero p {
         font-size: 1.1rem;
     }

     .stats-container {
         flex-direction: column;
         align-items: center;
     }

     .stat-item {
         border-right: none;
         border-bottom: 1px solid #ddd;
         padding: 20px 0;
         width: 100%;
         max-width: 300px;
     }

     .stat-item:last-child {
         border-bottom: none;
     }
 }

 @media (max-width: 576px) {
     .integration-hero {
         padding: 100px 0 60px;
     }

     .section-title {
         font-size: 2rem;
     }

     .content-section {
         padding: 60px 5%;
     }
 }

/*=====integration end ======*/


/* Hero Section */
.airtable-hero {
  background: url('https://astreait.com/images/Airtable-Cover-bg.png') center/cover no-repeat;
  background-attachment: fixed; 
  color: var(--light-color);
  text-align: center;
  padding: 120px 0 80px;
  min-height: 76.5vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 
}

.airtable-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color : white;
}
.airtable-hero p {
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
}

