@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');



:root {

    --te-primary: #1b9ead;
    --te-dark: #0d4d54;
    --te-white: #ffffff;
    --te-accent: #22d3ee; 
    --te-text-muted: rgba(255, 255, 255, 0.85);


    /* Typography */
   
    --text-11:11px;
    --text-12:12px;
    --text-13:13px;
    --text-14:14px;
    --text-15:15px;
    --text-16:16px;
    --text-17:17px;
    --text-18:18px;
    --text-20:20px;
    --text-24:24px;
    --text-29:29px;
    --text-32:32px;
    --text-40:40px;
    --text-43:43px;
    --text-48:48px;
    --text-56:56px;

}
body, html {
    margin: 0;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

 
body {
    font-family: var(--te-font-main);
    color: var(--te-text-main);
    -webkit-font-smoothing: antialiased;
    font-size: var(--text-16);
     -webkit-font-smoothing: subpixel-antialiased;
    -webkit-text-stroke: 1px transparent;
}

img {
    max-width: 100%;
}

a,
button,
.btn {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.landing-header {position: sticky; left: 0; top: 0; width: 100%; z-index: 10; border-bottom: 1px solid #ddd; background-color:#fff;}

 
.landing-header .nav-logo {
    max-height: 48px;

}

.landing-header .nav-link {
    color: #010101 !important;
    font-weight: 600;
    position: relative; 
    padding-bottom: 5px; 
    transition: color 0.3s ease;
}

 
.landing-header .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #1b9ead; 
    transition: all 0.3s ease;
    transform: translateX(-50%);  
}
 
.landing-header .nav-link:hover, .landing-header .nav-link:focus {
    color:#1b9ead !important;
}

.landing-header .nav-link:hover::after {
    width: 80%; 
}


.landing-header .nav-link.active::after {
    width: 80%;
    background-color: var(--te-primary);
}

.landing-header .btn-login {
border-radius: 6px;
  border: 1px solid #1b9ead;
  color: #1b9ead;


  text-decoration: none;
  
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.landing-header .btn-login:hover, .landing-header .btn-login:focus {
  color: #fff;
  background-color: #1b9ead;
  border-color: #1b9ead;
}



.landing-header .btn-login:active {
    transform: translateY(0);                 /* Pushes back down when clicked */
}

/* 3. STRUCTURAL CENTERING */
.hero-master {
    background: linear-gradient(135deg, var(--te-dark) 0%, var(--te-primary) 100%);
    min-height: 85vh;
    display: flex;
    flex-direction: column;
}

.hero-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px; 
    padding-top: 90px;
}




/* 5. TYPOGRAPHY - Sized for one line on desktop */
.hero-title {
    font-size: var(--text-56); /* Balanced sizing */
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.text-accent { color: var(--te-accent); }

.hero-lead {
    font-size: var(--text-18);
    max-width: 850px;
    color: var(--te-text-muted);
}

/* 6. SEARCH BAR */
.search-box-container {
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
}

.search-grid {
    background: var(--te-white);
    padding: 10px;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr 180px;
    align-items: center;
    gap: 10px;
}

.search-input-group {
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.border-end-custom {
    border-right: 1px solid #edf2f7;
}

.search-input-group i {
    color: var(--te-primary);
    font-size: 1.2rem;
    margin-right: 12px;
}

.form-control-custom {
    border: none;
    width: 100%;
    padding: 12px 0;
    font-size: var(--text-16);
    outline: none;
    color: #1a202c;
}

.btn-search {
    background: var(--te-primary);
    color: white;
    border: none;
    height: 54px;
    border-radius: 14px;
    font-weight: 700;
}

/* 7. BUTTONS */
.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 62px;
    padding: 0 35px;
    border-radius: 15px;
    font-weight: 700;
    text-decoration: none;
    font-size: var(--text-18);
    min-width: 240px;
    transition: 0.3s ease;
}

.btn-white {
    background: var(--te-white);
    color: var(--te-dark);
}

.btn-white:hover { transform: translateY(-3px); }

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--te-white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--te-white);
    transform: translateY(-3px);
}

.cta-sub {
    font-size: var(--text-14);
    margin-top: 10px;
    display: block;
    color: var(--te-text-muted);
}

.badge-rocket {
    background: var(--te-white);
    color: var(--te-dark);
    display: inline-block;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: var(--text-14);
}

.ae-common-section {padding: 90px 0;}
.section-header {
  margin-bottom: 48px;
}
.section-header .btn-link {font-size: var(--text-16);}
.section-header .title-lg {
    font-size: var(--text-48);
    font-weight: 700;
    margin: 0;
}
.section-header .title-lg {
    font-size: var(--text-48);
    font-weight: 700;
    margin: 0;
}
.section-header .title-sm {
    font-size: var(--text-32);
    font-weight: 700;
    margin: 0;
}
.section-header .lead {font-size: var(--text-18); margin: 24px 0 0;}
.app-download-section h2 {font-size: var(--text-48);}
.app-download-section .lead:last-child {margin-bottom: 0;}
.app-download-section h5 {font-size: var(--text-20);}
.hiring-item {padding: 0 7px;}
.hiring-slider .slick-list {padding: 20px 0px;}
.hiring-slider .slick-arrow {width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #eef2f6;
  background:var(--te-white);
  color: var(--te-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-17);
  transition: all 0.3s ease;
  cursor: pointer; position: absolute; top: -65px; font-size: 0px;}

.hiring-slider .slick-arrow:hover, .hiring-slider .slick-arrow:hover:focus {
  background: var(--te-primary);
  color: var(--te-white);
  border-color: var(--te-primary);
  box-shadow: 0 4px 12px rgba(27, 158, 173, 0.2);
  opacity: 1;
}
.hiring-slider .slick-next {right: 0;}
.hiring-slider .slick-prev {right: 60px; left: auto;}

.hiring-slider .slick-next::before {
  content: "\f285";
  font-family: bootstrap-icons !important;
}
.hiring-slider .slick-prev::before {
  content: "\f284";
  font-family: bootstrap-icons !important;
}

.hiring-slider .slick-arrow:focus {color: var(--te-dark);}


/* 8. RESPONSIVE */
@media (max-width: 991px) {
    .search-grid {
        grid-template-columns: 1fr;
    }
    .border-end-custom {
        border-right: none;
        border-bottom: 1px solid #edf2f7;
    }
}

/* USP SECTION STYLES */
.text-te-primary {
    color: var(--te-primary) !important;
}

.usp-card {
    padding: 40px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.usp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05) !important;
    border-color: var(--te-primary);
}

.usp-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--te-dark);
    font-size: var(--text-24);
    margin: 0;
}
.usp-card .text-muted {margin: 15px 0 0;}

/* ICON WRAPPERS */
.usp-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(27, 158, 173, 0.1); /* Primary teal tint */
    color: var(--te-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: var(--text-29);
}

.usp-icon-wrap.accent {
    background: rgba(34, 211, 238, 0.1); /* Cyan tint */
    color: var(--te-accent);
}

.usp-icon-wrap.dark {
    background: rgba(13, 77, 84, 0.1); /* Dark teal tint */
    color: var(--te-dark);
}

.lead {
    font-size: var(--text-20);
    line-height: 1.7;
}

/* JOB CARD STYLES */
.job-app-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #eef2f6;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.job-app-card:hover {
    border-color: var(--te-primary);
    box-shadow: 0 15px 30px rgba(27, 158, 173, 0.1);
    transform: translateY(-5px);
}

/* Compact Metadata */

.job-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #64748b;
}

.job-meta span i {
    margin-right: 4px;
    color: var(--te-primary);
}

/* App-style Tag */
.card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--te-white);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.card-tag.featured {
    background: rgba(34, 211, 238, 0.1);
    color: var(--te-accent);
}

/* Small, colorful icon placeholders for logos */


.comp-logo.secondary { background: rgba(13, 77, 84, 0.1); color: var(--te-dark); }
.comp-logo.accent { background: rgba(34, 211, 238, 0.1); color: var(--te-accent); }

/* Conversion Button */
.btn-apply {
    background: #f8fafc;
    color: var(--te-dark);
    border: 1px solid #e2e8f0;
    font-weight: 700;
    font-size: var(--text-14);
    padding: 10px;
    border-radius: 10px;
    transition: 0.3s;
}

.job-app-card:hover .btn-apply {
    background: var(--te-primary);
    color: white;
    border-color: var(--te-primary);
}

/* Updated Tag Style */
.card-tag-inline {
    display: inline-block;
    background: #f1f5f9;
    color: var(--te-dark);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: var(--text-11);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    
}

/* Specific colors for different types */
.card-tag-inline.featured {
    background: rgba(34, 211, 238, 0.1);
    color: var(--te-accent);
}

/* Ensure the title container uses full width now */
.job-title {
    font-weight: 700;
    font-size: var(--text-17);
    color: var(--te-dark);
    line-height: 1.3;
    display: block;
}
.job-title a {color: var(--te-dark); text-decoration: none;}
.small, small {font-size: var(--text-14);}
/* Adjusting the logo alignment to top since text is taller now */
.job-app-card .d-flex {
    align-items: flex-start !important;
}


/* Updated Job Card Component */
.job-app-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
}


/* Badge Style for Top Right */
.card-tag-inline {
    background: #f1f5f9;
    color: var(--te-dark);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: var(--text-11);
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap; /* Prevents badge from breaking into two lines */
    margin-left: 10px;    /* Adds space between title and badge */
}

/* Responsive fix: If title is very long, it will wrap naturally */
.flex-grow-1 {
    min-width: 0; 
}

/* Job Card Container */
.job-app-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
}

/* Badge at the top */
.card-tag-inline {
    background: rgba(27, 158, 173, 0.08); /* Light teal tint */
    color: var(--te-primary);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: var(--text-11);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

/* Logo styling */
.comp-logo {
    width: 44px;
    height: 44px;
     min-width: 44px;
    min-height: 44px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    color: var(--te-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}



/* Meta info (Location/Salary) */
.job-meta {
    display: flex;
    gap: 8px;
    font-size:var(--text-14);
    color: #64748b;
    flex-wrap: wrap;
    flex-direction: column;
}

/* Conversion Button */
.btn-apply {
    background: #f8fafc;
    color: var(--te-dark);
    border: 1px solid #e2e8f0;
    font-weight: 700;
    border-radius: 12px;
    padding: 10px;
    transition: 0.3s;
}

.job-app-card:hover .btn-apply {
    background: var(--te-primary);
    color: white;
    border-color: var(--te-primary);
}

/* COMPANY CARD STYLES */
.company-card {
    display: block;
    padding: 30px 20px;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.company-card:hover {
    border-color: var(--te-primary);
    box-shadow: 0 10px 25px rgba(27, 158, 173, 0.08);
    transform: translateY(-5px);
}

.company-logo-large {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 16px;
    padding: 10px;
}

.company-logo-large img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.company-name {
    color: var(--te-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.open-positions-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 50px;
    font-size: var(--text-13);
    font-weight: 600;
    transition: 0.3s;
}

.company-card:hover .open-positions-badge {
    background: var(--te-primary);
    color: var(--te-white);
}

/* SLIDER NAVIGATION ICONS */
.btn-nav-round {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #eef2f6;
    background: var(--te-white);
    color: var(--te-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-18);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-nav-round:hover {
    background: var(--te-primary);
    color: white;
    border-color: var(--te-primary);
    box-shadow: 0 4px 12px rgba(27, 158, 173, 0.2);
    transform: translateY(-2px);
}

.btn-nav-round:active {
    transform: translateY(0);
}

/* Ensure the header row aligns icons perfectly with the text */
.hiring-companies h2 {
    line-height: 1.2;
}

/* THE 6-COLUMN GRID */
.company-six-col-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); 
    gap: 15px; /* Tighter gap for 6-wide */
}

.company-card {
    padding: 20px 10px; /* Slimmer padding */
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    min-height:162px;
}
.search-box-container .form-select:focus {box-shadow: none; outline: none;}

.company-logo-large {
    width: 56px; /* Scaled down for 6-wide layout */
    height: 56px;
    margin: 0 auto;
}

.company-name {
    font-size: var(--text-14); /* Smaller font to handle 6 columns */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Adds "..." if name is too long */
}

.open-positions-badge {
    font-size: var(--text-12);
    padding: 4px 10px;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1400px) {
    .company-six-col-grid {
        grid-template-columns: repeat(4, 1fr); /* Drop to 4 on smaller laptops */
    }
}

@media (max-width: 992px) {
    .company-six-col-grid {
        grid-template-columns: repeat(3, 1fr); /* Drop to 3 on tablets */
    }
}

@media (max-width: 576px) {
    .company-six-col-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 on mobile */
    }
}

/* WORKFLOW STYLES */
.workflow-column {
    border-radius: 24px;
    height: 100%;
    border: 1px solid #eef2f6;

}
.workflow-column h3 {font-size: var(--text-29);}
.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(27, 158, 173, 0.1);
    color: var(--te-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.icon-circle.accent {
    background: rgba(13, 77, 84, 0.1);
    color: var(--te-dark);
}

/* Timeline/Steps */
.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

/* Vertical line connecting steps */
.step-item:not(:last-of-type)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 45px;
    width: 2px;
    height: calc(100% - 15px);
    background: #f1f5f9;
}

.step-number {
    width: 42px;
    height: 42px;
    background: #f8fafc;
    border: 2px solid #eef2f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--text-13);
    color: var(--te-primary);
    flex-shrink: 0;
    z-index: 1;
}

.step-content h6 {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--te-dark);
    font-size: var(--text-16);
}

.step-content p {
    font-size: var(--text-15);
    color: #64748b;
    margin-bottom: 0;
}

/* Custom Buttons for the paths */
.btn-te-primary {
    background: var(--te-primary);
    color: white;
    font-weight: 700;
    padding: 14px;
    border-radius: 12px;
}
.btn-te-primary:hover, .btn-te-primary:focus {background-color:var(--te-dark);
  border-color: var(--te-dark);
  color: #fff;}

.btn-te-dark {
    background: var(--te-dark);
    color: white;
    font-weight: 700;
    padding: 14px;
    border-radius: 12px;
}

.btn-te-dark:hover, .btn-te-dark:focus {background-color: #1b9ead;
  border-color: #1b9ead;
  color: #fff;}


/* THE SQUARE ICON BOX */
.icon-square {
    width: 54px;
    height: 54px;
    background: rgba(27, 158, 173, 0.1); /* Light Teal */
    color: var(--te-primary);
    border-radius: 14px; /* "Squircle" shape */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-24); /* Size of the icon */
    flex-shrink: 0;
    border: 1px solid rgba(27, 158, 173, 0.2);
}

.icon-square.dark {
    background: rgba(13, 77, 84, 0.1); /* Light Dark Teal */
    color: var(--te-dark);
    border: 1px solid rgba(13, 77, 84, 0.2);
}

/* Ensure the icon itself is visible */
.icon-square i {
    line-height: 1;
    display: block;
}

/* EMPLOYER CTA STYLES */
.cta-card-wrapper {
    background: linear-gradient(135deg, var(--te-dark) 0%, var(--te-primary) 100%);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.bg-white-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.badge-accent {
    background: var(--te-accent);
    color: var(--te-dark);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size:var(--text-13);
    font-weight: 800;
    text-transform: uppercase;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: var(--text-14);
}

.cta-features li {
    display: flex;
    align-items: center;
}

.cta-features i {
    color: var(--te-accent);
}

/* Adjusting buttons inside the CTA */
.cta-card-wrapper .btn-main {
    min-width: unset; /* Allow buttons to fit the grid */
    height: 55px;
    font-size: var(--text-16);
}
.cta-card-wrapper .btn-white:hover, .cta-card-wrapper .btn-white:focus {color: #fff; border-color:#fff; background-color: rgba(255,255,255,0.1);}
.cta-card-wrapper .btn-outline:hover, .cta-card-wrapper .btn-outline:focus {color: var(--te-dark); border-color:#fff; background-color: #fff;}




.cta-card-wrapper h2 {font-size: var(--text-40); font-weight: 700;}
.cta-card-wrapper p {font-size: var(--text-20);
  line-height: normal;}

  .cta-card-wrapper h4 {font-size: var(--text-24); font-weight: 700;}
.seeker-cta h2 {font-size: var(--text-40); font-weight: 700;}
.seeker-cta .lead {font-size: var(--text-20); line-height: normal;}
.seeker-cta h5 {font-size: var(--text-20); font-weight: 700;}

@media (max-width: 991px) {
    .bg-white-glass {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* SEEKER CTA STYLES */
.seeker-card {
    border-radius: 30px;
    overflow: hidden;
    margin: 20px 0;
}

.border-custom {
    border: 1px solid #eef2f6;
}

.bg-light-teal {
    background: #f0f9fa;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* App Mockup UI */
.app-preview-card {
    background: white;
    border-radius: 20px;
    width: 280px;
}

.profile-avatar-mock {
    width: 45px;
    height: 45px;
    background: #e2e8f0;
    border-radius: 50%;
}

.progress-mock {
    height: 8px;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-mock {
    height: 100%;
    background: var(--te-primary);
}

.matching-badge {
    background: rgba(34, 211, 238, 0.1);
    color: var(--te-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
}

/* Seeker Specific Buttons */
.btn-outline-dark {
    border: 2px solid var(--te-dark);
    color: var(--te-dark);
    font-weight: 700;
    border-radius: 15px;
}

.btn-outline-dark:hover, .btn-outline-dark:focus {
    background: var(--te-dark);
     border-color: var(--te-dark);
    color: white;
}

/* FOOTER STYLES */
.footer-section {
    background: var(--te-dark);
    color: white;
}

.footer-logo {
    max-height: 40px;
    filter: brightness(0) invert(1);
}
.footer-logo img {max-height: 65px;}
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--te-accent);
    padding-left: 5px;
}

/* Social Icons */
.footer-socials a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: var(--te-primary);
    transform: translateY(-3px);
}

/* Newsletter Input */
.footer-newsletter .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px;
    border-radius: 10px 0 0 10px;
}

.footer-newsletter .form-control:focus {
    box-shadow: none;
    border-color: var(--te-primary);
}

.footer-newsletter .btn {
    border-radius: 0 10px 10px 0;
    padding: 0 20px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    text-decoration: none;
    margin-left: 15px;
}

.footer-bottom-links a:hover {
    color: white;
}

/* UPDATED APP SECTION STYLES */
.app-card-bg {
    background: linear-gradient(135deg, var(--te-dark) 0%, #157a85 100%);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-te-accent {
    color: var(--te-accent) !important;
}

/* Larger, more prominent badges */
.store-badge-large img {
    height: 65px; /* Increased size for visual impact */
    width: auto;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
}

.store-badge-large:hover img {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.4));
}

/* Adds a subtle decorative glow behind the buttons */
.app-card-bg::after {
    content: '';
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

@media (max-width: 991px) {
    .app-card-bg {
        text-align: center;
    }
    .store-badge-large img {
        height: 55px;
    }
}

/* Base style for the View All link */
.btn-link.text-te-primary {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

/* Hover state: Underline and Color */
.btn-link.text-te-primary:hover {
    color: var(--te-primary) !important; /* Ensures it stays teal */
    text-decoration: underline !important;
    text-underline-offset: 6px; /* Space between text and line */
    text-decoration-thickness: 2px;
}

/* Bonus: Make the arrow move slightly on hover */
.btn-link.text-te-primary i {
    transition: transform 0.3s ease;
}

.btn-link.text-te-primary:hover i {
    transform: translateX(5px);
}

/* Location Grid Layout */
.location-links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: white;
    border-radius: 12px;
    color: var(--te-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-15);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.location-link i {
    font-size: var(--text-13);
    color: var(--te-primary);
    transition: transform 0.3s ease;
}

/* Hover Effects */
.location-link:hover {
    background: white;
    border-color: var(--te-primary);
    color: var(--te-primary);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(27, 158, 173, 0.1);
}

.location-link:hover i {
    transform: translateX(3px);
}

/* TWO-COLUMN GRID */
.location-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Forces 2 columns */
    gap: 12px; /* Space between the cards */
}

.location-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: white;
    border-radius: 12px;
    color: var(--te-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-14); /* Slightly smaller for the 2-col fit */
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.location-link span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.location-link i {
    font-size: var(--text-15);
    color: var(--te-primary);
    opacity: 0.5;
    transition: all 0.3s ease;
}

/* Hover State */
.location-link:hover {
    border-color: var(--te-primary);
    color: var(--te-primary);
    transform: translateY(-3px); /* Lifts upward instead of sliding right */
    box-shadow: 0 5px 15px rgba(27, 158, 173, 0.1);
}

.location-link:hover i {
    opacity: 1;
    transform: scale(1.2);
}
