/* Smooth scrolling for the entire page */
html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

/* Intern Benefits Highlight Section */
.intern-benefits-highlight {
    grid-column: span 2;
    position: relative;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(70, 147, 229, 0.2);
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);

    /* Background with subtle white overlay */
    background:
        /* White overlay with low opacity */
        linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
        /* Background image */
        url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;

    /* Subtle blue accent in the corners */
    position: relative;
    overflow: hidden;
}

/* Add subtle blue accent to corners */
.intern-benefits-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(70, 147, 229, 0.1) 0%, transparent 20%),
        linear-gradient(315deg, rgba(70, 147, 229, 0.1) 0%, transparent 20%);
    pointer-events: none;
}

.intern-benefits-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.benefits-content {
    position: relative;
    z-index: 2;
}

.benefits-icon {
    font-size: 2.5rem;
    color: #4693e5;
    margin-bottom: 1.5rem;
}

.benefits-content h4 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.benefits-content h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2b6cb0, #4299e1);
    border-radius: 3px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Benefits list item animations */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }

    80% {
        transform: translateX(5px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.benefits-list {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
    overflow: hidden;
    counter-reset: benefit-counter;
}

/* Initial state */
.benefits-list li {
    position: relative;
    padding: 1rem 1.5rem 1rem 3.5rem;
    margin: 0.8rem 0;
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    counter-increment: benefit-counter;
    border-left: 4px solid transparent;
    backdrop-filter: blur(5px);
}

/* Numbered list with gradient */
.benefits-list li::before {
    content: counter(benefit-counter);
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.8rem;
    height: 1.8rem;
    background: linear-gradient(135deg, #2b6cb0, #4299e1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(43, 108, 176, 0.3);
    transition: all 0.3s ease;
}

/* Animation when in view */
.in-view .benefits-list li {
    opacity: 1;
    transform: translateX(0);
    border-left-color: #4299e1;
}

/* Staggered animation with bounce effect */
.in-view .benefits-list li {
    animation: slideInFromLeft 0.7s forwards;
    opacity: 0;
}

.in-view .benefits-list li:nth-child(1) {
    animation-delay: 0.1s;
    transition-delay: 0.1s;
}

.in-view .benefits-list li:nth-child(2) {
    animation-delay: 0.3s;
    transition-delay: 0.3s;
}

.in-view .benefits-list li:nth-child(3) {
    animation-delay: 0.5s;
    transition-delay: 0.5s;
}

.in-view .benefits-list li:nth-child(4) {
    animation-delay: 0.7s;
    transition-delay: 0.7s;
}

/* Hover effect */
.benefits-list li:hover {
    transform: translateX(8px) !important;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 20px rgba(43, 108, 176, 0.15);
}

.benefits-list li:hover::before {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.4);
}

/* Fresher Growth Journey Section */
.fresher-journey-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8faff 0%, #f0f7ff 100%);
    overflow: hidden;
}

.fresher-journey-section .section-header {
    margin-bottom: 3.5rem;
}

/* Fresher Growth Journey Section */
.fresher-journey-section {
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
}

.fresher-journey-section .section-header {
    margin-bottom: 3rem;
}

.fresher-journey-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #1e8fab, #08d3e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /* Fallback for non-WebKit browsers */
}

.fresher-journey-section .section-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 700px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

.fresher-journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

/* Journey Content */
.fresher-journey-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.journey-highlight-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(203, 213, 224, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.journey-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2b6cb0 0%, #4299e1 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(66, 153, 225, 0.3);
}

.journey-highlight-card h3 {
    font-size: 1.75rem;
    color: #2d3748;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #2b6cb0, #4299e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.journey-highlight-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Features List */
.journey-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    border: 1px solid rgba(203, 213, 224, 0.5);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    border-color: #bee3f8;
    box-shadow: 0 5px 20px rgba(66, 153, 225, 0.1);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: #ebf8ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3182ce;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #2b6cb0 0%, #4299e1 100%);
    color: white;
    transform: scale(1.1);
}

.feature-text h4 {
    color: #2d3748;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Visual Side */
.fresher-journey-visual {
    flex: 1;
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
}

.journey-image-container {
    background: linear-gradient(135deg, #e6f0ff 0%, #f0f7ff 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(203, 213, 224, 0.4);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-placeholder {
    text-align: center;
    color: #a0aec0;
    font-size: 1.1rem;
}

.image-placeholder i {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    color: #cbd5e0;
}

.journey-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.stat-item {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(203, 213, 224, 0.4);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(90deg, #2b6cb0, #4299e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.5;
}

/* CTA Section */
.cta-container {
    margin-top: 4rem;
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(203, 213, 224, 0.3);
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2b6cb0, #4299e1);
}

.cta-text {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(90deg, #2b6cb0, #4299e1);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(43, 108, 176, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(43, 108, 176, 0.4);
    color: white;
}

/* Background Elements */
.journey-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(40px);
    z-index: -1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #4299e1, #90cdf4);
    top: 10%;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #2b6cb0, #63b3ed);
    bottom: 20%;
    left: -50px;
    animation: float 12s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #ebf8ff, #bee3f8);
    top: 60%;
    right: 20%;
    animation: float 18s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .fresher-journey-grid {
        gap: 2rem;
    }

    .journey-highlight-card {
        padding: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 1024px) {
    .fresher-journey-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .fresher-journey-visual {
        position: static;
    }

    .journey-image-container {
        max-width: 600px;
        margin: 0 auto;
    }

    .journey-stats {
        max-width: 600px;
        margin: 0 auto;
    }

    .benefits-list li {
        padding: 0.8rem 1.2rem 0.8rem 3rem;
        font-size: 1rem;
    }

    .benefits-list li::before {
        width: 1.6rem;
        height: 1.6rem;
        font-size: 0.8rem;
    }
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    background: linear-gradient(90deg, #2b6cb0, #4299e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.benefits-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .intern-benefits-highlight {
        grid-column: span 1;
    }
}
/* Base styles and existing navbar styles remain the same */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
padding: 40px 10px 15px;
    /* Top: 40px, Left/Right: 50px, Bottom: 15px */
  background-color: #ffffff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  position: relative;
}

.logo {
  width: 40px;
  height: 40px;
  transition: all 0.3s;
}

.logo-text {
  margin-left: 10px;
  font-size: 20px;
  font-weight: bold;
  visibility: visible;
  opacity: 1;
  transition: 0.3s;
  background: linear-gradient(90deg, teal, #406b6b, rgb(20, 41, 63));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-container:hover .logo-text {
  opacity: 1;
}

/* Navbar Styles */
.navbar {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  font-family: 'Poppins';
  font-size: 0.97rem;
  background: transparent;
  justify-content: flex-end;
  flex: 1;
  padding-right: 10px;
  margin-top: -100px;
  margin-bottom: -100px;
}

.nav-item {
  position: relative;
  padding: 6px 0 8px 0;
  cursor: pointer;
  transition: color 0.2s;
  font-weight: 500;
  color: #232b3b;
  font-size: 0.97rem;
  gap: 4px;
  display: flex;
  align-items: center;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 4px;
  background: linear-gradient(90deg, #003973 0%, #005fa3 40%, #38b2ac 100%);
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.nav-item:hover,
.nav-item:focus-within {
  color: #005fa3;
}

.nav-item:hover::after,
.nav-item:focus-within::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Dropdown Styles */
.nav-item .dropdown {
  display: none;
  position: absolute;
left: 50%;
  top: 110%;
transform: translateX(-50%);
  background: #fff;
transition: none !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-radius: 0 0 10px 10px;
  min-width: 240px;
  z-index: 100;
padding: 8px 0;
  max-height: none;
  height: auto;
  overflow: visible;
}

.nav-item .mega-dropdown {
left: 50%;
    top: 110%;
    transform: translateX(-50%);
    transition: none !important;
  min-width: 700px;
max-width: 800px;
  width: auto;
  max-height: none;
  height: auto;
  overflow: visible;
  flex-shrink: 0;
  position: absolute;
  z-index: 1000;
transition: none !important;
}

@keyframes dropdownFade {
  from { 
    opacity: 0; 
    transform: translateY(-8px);
  }
  to { 
    opacity: 1; 
    transform: translateY(0);
  }
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  display: block;
}

.nav-item .mega-dropdown.frozen {
  display: block !important;
}

.nav-item .dropdown p {
  margin: 0;
  padding: 8px 20px;
  color: #232b3b;
  background: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  font-size: 0.97rem;
  white-space: nowrap;
  position: relative;
}

.dropdown-column p {
  padding: 3px 0;
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  line-height: 1.3;
}

.nav-item .dropdown p::before {
  content: "⮞";
  display: inline-block;
  margin-right: 8px;
  color: #00bfff;
  font-weight: bold;
  font-size: 1.2em;
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-item .dropdown p:hover::before {
  transform: translateX(4px);
  color: #66989e;
}

.nav-item .dropdown p:hover {
  background: linear-gradient(90deg, #7ceff3 0%, #33c6d4e7 100%);
  color: #005fa3;
  border-radius: 4px;
}

.dropdown-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 25px;
  width: 100%;
  max-height: none;
  height: auto;
  overflow: visible;
  flex-shrink: 0;
}

.dropdown-row {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
  width: 100%;
  max-height: none;
  height: auto;
  overflow: visible;
  flex-shrink: 0;
}

.dropdown-column {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  flex: 1;
  overflow: visible;
  max-height: none;
  height: auto;
  flex-shrink: 0;
}

.dropdown-column h4 {
  margin: 4px 0 2px 0;
  font-size: 1rem;
  color: #005fa3;
  padding-left: 0;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 4px;
}

.dropdown-column h4:hover {
  background: linear-gradient(90deg, #7ceff3 0%, #33c6d4e7 100%);
  color: #003973;
  transform: translateX(3px);
  box-shadow: 0 2px 8px rgba(0, 95, 163, 0.2);
}

.dropdown-icon {
  font-size: 0.8em;
  margin-left: 5px;
  transition: transform 0.2s;
  color: #666;
}

.nav-item:hover .dropdown-icon {
  transform: rotate(180deg);
  color: #005fa3;
}

.apply-button {
background: linear-gradient(135deg, #00CED1, #191970);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(25, 25, 112, 0.2);
}

.apply-button:hover {
  background: linear-gradient(135deg, #0f0f5a, #00a0a0);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(25, 25, 112, 0.4);
}

.hero-btn {
  background: linear-gradient(135deg,#00CED1, #191970);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(25, 25, 112, 0.2);
}

.hero-btn:hover {
  background: linear-gradient(135deg, #0f0f5a, #00a0a0);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(25, 25, 112, 0.4);
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
    overflow-x: hidden;
    padding-top: 20px;
        /* Reduced from 100px to 20px to move content up */
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-section {
    position: relative;
    min-height: calc(100vh - 60px);
        /* Account for fixed header */
        padding: 100px 0 30px;
        /* Top padding to move content down, bottom padding for spacing */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-animated-bg {
    position: absolute;
    top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    background: linear-gradient(135deg, #191970 0%, #00CED1 50%, #191970 100%);
    z-index: -1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: -2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: -4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: -1s;
}

.shape-5 {
    width: 40px;
    height: 40px;
    top: 10%;
    left: 60%;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(25, 25, 112, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 64rem;
    margin-top: 10px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #ffffff, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.scroll-indicator {
    display: flex;
    justify-content: center;
}

.scroll-arrow {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.scroll-arrow i {
    width: 1.5rem;
    height: 1.5rem;
    color: #67e8f9;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

.fade-in-up-delay {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.slide-in-left.in-view {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-out;
}

.slide-in-right.in-view {
    opacity: 1;
    transform: translateX(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FIXED: Life at Cognithorz section - adjusted padding */
.life-section {
    padding: 5rem 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
        /* Reduced from 4rem */
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(to right, #051d3f, #14284f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    line-height: 1.2;
    position: relative;
    padding: 0.1em 0;
    transform: translateZ(0); /* Fix for Chrome rendering */
}

.section-description {
    font-size: 1.25rem;
    color: #374151;
    max-width: 48rem;
    margin: 0 auto 2rem auto;
        /* Added bottom margin */
    line-height: 1.6;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #f3f5f8;
    font-style: italic;
    max-width: 64rem;
    margin: 0 auto;
}
/* FIXED: Centered subtitle for internships section */
.section-subtitle-centered {
    font-size: 1.25rem;
    color: #f3f5f8;
    font-style: italic;
    max-width: 64rem;
    margin: 0 auto;
    text-align: center !important;
        margin-bottom: 3rem !important;
}
.section-subtitle-f {
    font-size: 1.25rem;
    color: #325d9d;
    font-style: italic;
    max-width: 64rem;
    margin: 0 auto;
}
.highlight-cyan {
    font-weight: 600;
    color: #00CED1;
}

.highlight-blue {
    font-weight: 600;
    color: #191970;
}

/* Enhanced Culture Grid with Background Images */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
        /* Reduced from 4rem to bring cards closer */
}

.culture-card {
    position: relative;
    text-align: center;
    padding: 0;
    border-radius: 1.5rem;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
}

/* Background Images for Each Culture Card */
.innovation-card {
    background: linear-gradient(135deg, rgba(25, 25, 112, 0.85), rgba(0, 206, 209, 0.85)), 
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=400&h=300&fit=crop') center/cover;
}

.collaborative-card {
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.85), rgba(25, 25, 112, 0.85)), 
                url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=400&h=300&fit=crop') center/cover;
}

.inclusive-card {
    background: linear-gradient(135deg, rgba(25, 25, 112, 0.85), rgba(0, 206, 209, 0.85)), 
                url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?w=400&h=300&fit=crop') center/cover;
}

.purpose-card {
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.85), rgba(25, 25, 112, 0.85)), 
                url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=400&h=300&fit=crop') center/cover;
}

.culture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 25, 112, 0.1), rgba(0, 206, 209, 0.1));
    transition: all 0.4s ease;
}

.culture-content {
    position: relative;
    z-index: 2;
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.culture-card:hover {
    transform: translateY(0px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 206, 209, 0.3);
    border-color: #00CED1;
}

.culture-card:hover .culture-overlay {
    background: linear-gradient(135deg, rgba(25, 25, 112, 0.2), rgba(0, 206, 209, 0.2));
}

.culture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s ease;
    z-index: 3;
}

.culture-card:hover::before {
    left: 100%;
}

.culture-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.culture-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.culture-card:hover .culture-icon {
    transform: rotateY(360deg) scale(1.2);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6rem;
    height: 6rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.culture-card:hover .icon-glow {
    opacity: 1;
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
    }
}

.culture-icon i {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.culture-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.culture-card:hover h3 {
    transform: scale(1.05);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.culture-card p {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 1rem;
    line-height: 1.6;
}

.culture-card:hover p {
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Team stays section - positioned lower */
.team-stays-section {
    background: linear-gradient(135deg, #191970, #00CED1);
    border-radius: 1.5rem;
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
        /* Added margin to push it lower */
}

.team-stays-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.team-stays-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.team-stays-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.team-stays-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.team-stays-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.team-stays-icon-container {
    flex-shrink: 0;
    position: relative;
}

.team-stays-icon {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.team-stays-item:hover .team-stays-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.team-stays-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: #67e8f9;
}

.team-stays-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-stays-item p {
    color: #a5f3fc;
}

/* Wellness Section */
.wellness-section {
    padding: 0;
        /* Removed top/bottom padding */
        background: linear-gradient(to bottom, rgba(0, 206, 209, 0.1) 0%, rgba(25, 25, 112, 0.05) 100%);
}

.wellness-placeholder {
    text-align: center;
    padding: 3rem 0;
        /* Reduced padding */
}

.wellness-placeholder p {
    font-size: 1.25rem;
}

/* Employee Wellness & Engagement Section */
.wellness-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9), rgba(236, 254, 255, 0.9)),
        url('https://images.unsplash.com/photo-1516383740770-fbcc5ccbece0?crop=entropy&cs=srgb&fm=jpg&ixid=M3w3NTY2NjZ8MHwxfHNlYXJjaHwyfHxyZXdhcmRpbmclMjB3b3JrfGVufDB8fHx8MTc1NDg0Mzc2MHww&ixlib=rb-4.1.0&q=85') center/cover;
    position: relative;
    overflow: visible;
    margin-top: 0;
}

.wellness-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(25,25,112,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

.wellness-creative-layout {
    position: relative;
    z-index: 2;
}

/* Wellness Hero Section */
.wellness-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.wellness-hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.wellness-hero-content p {
    font-size: 1.2rem;
    color: #374151;
    line-height: 1.7;
}

.wellness-hero-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    height: 350px;
}

.wellness-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    transition: transform 0.4s ease;
}

.wellness-hero:hover .wellness-hero-image img {
    transform: scale(1.05);
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #191970, #00CED1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: float-element 4s ease-in-out infinite;
}

.element-1 {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.element-2 {
    bottom: 20px;
    left: 20px;
    animation-delay: -2s;
}

@keyframes float-element {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

.wellness-hero-content {
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

/* Wellness Features Grid */
.wellness-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.wellness-feature-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.wellness-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(25, 25, 112, 0.15);
    border-color: #00CED1;
}

.feature-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #191970, #00CED1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    z-index: 3;
    transition: all 0.3s ease;
}

.wellness-feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(360deg);
}

.feature-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wellness-feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 25, 112, 0.1), rgba(0, 206, 209, 0.1));
    transition: opacity 0.3s ease;
}

.wellness-feature-card:hover .feature-image::after {
    opacity: 0.8;
}

.feature-content {
    padding: 1.5rem;
}

.feature-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Creative Diversity Section */
.diversity-creative-section {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.diversity-creative-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 206, 209, 0.05), transparent);
    animation: rotate 25s linear infinite;
}

.diversity-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.diversity-header h3 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(to right, #191970, #00CED1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.diversity-icon-collection {
    display: flex;
    gap: 1rem;
}

.diversity-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #191970, #00CED1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

.diversity-icon:nth-child(2) {
    animation-delay: 0.3s;
}

.diversity-icon:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.diversity-text-content {
    position: relative;
    z-index: 2;
}

.diversity-highlight {
    font-size: 1.2rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
}

.diversity-highlight::before {
    content: '"';
    font-size: 4rem;
    color: #00CED1;
    position: absolute;
    left: -2rem;
    top: -1rem;
    font-family: serif;
}

.diversity-statement {
    font-size: 1.1rem;
    color: #191970;
    font-weight: 600;
    font-style: italic;
}

.diversity-visual {
    position: relative;
}

.diversity-image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    height: 300px;
}

.diversity-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.diversity-creative-section:hover .diversity-image-container img {
    transform: scale(1.05);
}

.diversity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 25, 112, 0.2), rgba(0, 206, 209, 0.2));
    transition: opacity 0.3s ease;
}

.diversity-creative-section:hover .diversity-overlay {
    opacity: 0.8;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #ecfeff);
}

.testimonials-container {
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: scroll 25s linear infinite;
}

.testimonial-card {
    flex-shrink: 0;
    width: 26rem;
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    height: 14rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5f3f3;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 206, 209, 0.1), transparent);
    transition: left 0.8s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: scale(1.05);
    border-color: #00CED1;
    box-shadow: 0 20px 40px rgba(0, 206, 209, 0.2);
}

.testimonial-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 1rem;
}

.testimonial-name {
    font-weight: 700;
    color: #111827;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: #00CED1;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-content {
    color: #374151;
    font-style: italic;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 1rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #00CED1, #191970);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent),
                radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1), transparent);
}

.cta-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: white;
    color: #191970;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #00CED1, #191970);
    border-radius: 50px;
    transition: all 0.4s ease;
    z-index: -1;
}

.cta-button:hover::before {
    width: 100%;
    height: 100%;
}

.cta-button:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.animate-button {
    animation: buttonFloat 3s ease-in-out infinite;
}

@keyframes buttonFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.cta-button i {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Openings Section */
.openings-section {
    padding: 3rem 0;
        /* Reduced padding */
        background: linear-gradient(to bottom, rgba(0, 206, 209, 0.1) 0%, rgba(25, 25, 112, 0.05) 100%);
}

.openings-placeholder {
    text-align: center;
    padding: 3rem 0;
        /* Reduced padding */
}

.openings-placeholder p {
    font-size: 1.25rem;
}

/* Enhanced Fresher Opportunities Section */
.fresher-enhanced-section {
    position: relative;
    padding: 4rem 0 4rem;
    /* Equal top and bottom padding */
    overflow: visible;
    /* Changed from hidden to allow dropdown to be visible */
    background: linear-gradient(135deg, #00CED1 0%, #38bdf8 30%, #0ea5e9 70%, #191970 100%);
    color: white;
    margin-bottom: 4rem;
    /* Add margin to create space for dropdown */
}

/* Enhanced Internships & Freshers Main Section */
.internships-freshers-enhanced-section {
    position: relative;
        padding: 4rem 0 6rem;
            /* Added more bottom padding */
            /* Reduced top padding */
            overflow: hidden;
            /* FIXED: Changed from violet theme to blue/teal theme */
            background: linear-gradient(135deg, #00CED1 0%, #38bdf8 30%, #0ea5e9 70%, #191970 100%);
            color: white;
        }
        
        /* Animated Background */
        .internships-animated-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        overflow: hidden;
        z-index: 0;
        }
        
        .floating-shapes .shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            animation: float 12s ease-in-out infinite;
        }
        
        .shape-1 {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 20%;
            animation-delay: 0s;
        }
        
        .shape-2 {
            width: 60px;
            height: 60px;
            top: 40%;
            left: 70%;
            animation-delay: 2s;
        }
        
        .shape-3 {
            width: 100px;
            height: 100px;
            top: 70%;
            left: 30%;
            animation-delay: 4s;
        }
        
        .shape-4 {
            width: 50px;
            height: 50px;
            top: 20%;
            left: 80%;
            animation-delay: 6s;
        }
        
        @keyframes float {
        
            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }
        
            50% {
                transform: translateY(-40px) rotate(180deg);
            }
}

.internships-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
    }
    
    /* Text Styles */
    .section-header {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .gradient-text-white {
        background: linear-gradient(to right, #ffffff, #d4f1f9);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .section-description-white {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
        line-height: 1.6;
        margin-top: 1rem;
    }
    
    /* Animations */
    .animate-slide-up {
        opacity: 0;
        transform: translateY(40px);
        animation: slideUp 1s ease forwards;
    }
    
    .animate-fade-in {
        opacity: 0;
        animation: fadeIn 1.5s ease forwards;
    }
    
    .animate-fade-in-delay {
        opacity: 0;
        animation: fadeIn 1.5s ease forwards;
        animation-delay: 0.5s;
    }
    
    @keyframes slideUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeIn {
        to {
            opacity: 1;
        }
    }
    
    /* Enhanced Career Reasons Section */
    .career-reasons-enhanced {
        margin: 4rem 0;
        position: relative;
        z-index: 2;
}

.career-reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.career-reason-card {
    position: relative;
        text-align: center;
            padding: 0;
    border-radius: 1.5rem;
    transition: all 0.4s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
}

.career-reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s ease;
    z-index: 3;
}

.career-reason-card:hover::before {
    left: 100%;
}

.career-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    transition: all 0.4s ease;
}

.career-reason-card:hover .career-card-overlay {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.15));
}

.career-card-content {
    position: relative;
    z-index: 2;
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.career-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.career-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    position: relative;
        z-index: 2;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.career-reason-card:hover .career-icon {
    transform: rotateY(360deg) scale(1.2);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.career-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6rem;
    height: 6rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.career-reason-card:hover .career-icon-glow {
    opacity: 1;
    animation: glow-pulse 2s infinite;
}

.career-icon i {
    font-size: 2.5rem;
    color: white;
}

.career-card-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.career-card-content p {
    font-size: 1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.career-reason-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Enhanced Internship Opportunities */
.internship-opportunities-enhanced {
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.internship-roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    perspective: 1000px;
        transform-style: preserve-3d;
}

.internship-role-card {
    position: relative;
    background: white;
    border-radius: 2rem;
    overflow: visible;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        background: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid #e5e7eb;
        z-index: 1;
        backface-visibility: hidden;
        transform: translateZ(0);
}

.internship-role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 206, 209, 0.1), transparent);
    transition: left 0.8s ease;
    z-index: -1;
        pointer-events: none;
}

.internship-role-card:hover::before {
    left: 100%;
}

.internship-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    transition: all 0.4s ease;
    z-index: 0;
    border-radius: 2rem;
        transform-origin: center;
        overflow: hidden;
}

.internship-role-card:hover .internship-card-bg {
    opacity: 0.15;
    transform: scale(1.03);
}

.business-analyst .internship-card-bg {
    background-image: url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?w=800&h=400&fit=crop');
}

.software-developer .internship-card-bg {
    background-image: url('https://images.unsplash.com/photo-1517180102446-f3ece451e9d8?w=800&h=400&fit=crop');
}

.uiux-designer .internship-card-bg {
    background-image: url('https://images.unsplash.com/photo-1581291518857-4e27b48ff24e?w=800&h=400&fit=crop');
}

/* FIXED: Digital Marketing card background to match others */
.digital-marketing .internship-card-bg {
    background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=800&h=400&fit=crop');
        opacity: 0.1 !important;
        /* Force same opacity */
    }
    
    .digital-marketing {
        background: white !important;
        /* Force same background */
}

.it-support .internship-card-bg {
    background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=800&h=400&fit=crop');
}

.internship-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    transition: all 0.4s ease;
}

.internship-role-card:hover .internship-card-overlay {
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.1), rgba(25, 25, 112, 0.1));
}

.internship-card-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.internship-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #191970, #00CED1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    align-self: center;
    box-shadow: 0 8px 25px rgba(25, 25, 112, 0.2);
}

.internship-role-card:hover .internship-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 15px 35px rgba(25, 25, 112, 0.4);
}

.internship-icon i {
    font-size: 2rem;
    color: white;
    width: 2rem;
    height: 2rem;
}

.internship-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    text-align: center;
}

.internship-card-content p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
    flex-grow: 1;
}

.apply-button-container {
    position: relative;
    margin-top: auto;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1000;
    /* Ensure it's above other elements */
    transform: translateZ(0);
    /* Force hardware acceleration */
}
.internship-apply-btn {
    background: linear-gradient(135deg, #00CED1, #191970);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: auto;
        min-width: 180px;
        margin-bottom: 8px;
    box-shadow: 0 8px 20px rgba(25, 25, 112, 0.3);
    bottom: 20px;
}

.internship-apply-btn:hover {
    background: linear-gradient(135deg, #0f0f5a, #00CED1);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(25, 25, 112, 0.5);
}

.internship-apply-btn i {
    width: 1.2rem;
    height: 1.2rem;
    transition: transform 0.3s ease;
}

.internship-apply-btn:hover i {
    transform: translateX(3px);
}

.internship-role-card:hover {
    transform: translateY(-10px) translateZ(0);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border-color: #00CED1;
    z-index: 2;
    }
    
    /* FIXED: Contact Options Dropdown with proper positioning */
    .contact-options-dropdown {
        position: absolute;
        top: 100%;
        left: 50%;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
        min-width: 200px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
        z-index: 1000;
        pointer-events: none;
        padding: 5px 0;
    }
    
    .contact-options-dropdown.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .contact-option {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 1.5rem;
        color: #374151;
        cursor: pointer;
        border-bottom: 1px solid #f3f4f6;
        min-width: 180px;
        white-space: nowrap;
    }
    
    .contact-option:last-child {
        border-bottom: none;
    }
    
    .contact-option:hover {
        background: linear-gradient(135deg, #f0f9ff, #ecfeff);
        color: #0f766e;
        transform: translateX(5px);
    }
    
    .contact-option i {
        font-size: 1rem;
        width: 1rem;
        color: #00CED1;
        flex-shrink: 0;
    }
    
    .contact-option span {
        white-space: nowrap;
        text-align: left;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .email-option:hover {
        background: linear-gradient(135deg, #fef2f2, #fef7f7);
        color: #dc2626;
    }
    
    .hr-option:hover {
        background: linear-gradient(135deg, #f0f9ff, #eff6ff);
        color: #2563eb;
}

/* Enhanced Fresher Opportunities */
.fresher-enhanced-section {
    padding: 0;
        /* Remove padding to connect seamlessly */
    position: relative;
    overflow: hidden;
}

.fresher-gradient-bg {
    background: linear-gradient(to bottom,
            rgba(0, 206, 209, 0.9) 0%,
            rgba(248, 250, 252, 0.9) 50%,
            rgba(236, 254, 255, 0.9) 100%);
    padding: 3rem 0 4rem;
    /* Added more bottom padding */
}

.fresher-gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots3" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(25,25,112,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots3)"/></svg>');
    opacity: 0.4;
}

.fresher-roles-horizontal-container {
    overflow: visible;
    /* Changed back to visible to allow dropdown to show */
    position: relative;
    z-index: 1;
        width: 100%;
        padding: 1rem 0 2rem;
        /* Reduced bottom padding */
        min-height: 400px;
        /* Changed to min-height for better content fit */
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .fresher-roles-horizontal {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 1rem;
        width: 100%;
        padding: 1rem 2rem 3rem;
        /* Added top padding and increased bottom padding */
        margin: 0 auto;
        overflow-x: auto;
        overflow-y: visible;
        /* Allow dropdown to be visible */
        scrollbar-width: none;
        -ms-overflow-style: none;
        min-height: 350px;
        /* Ensure minimum height for content */
        align-items: flex-start;
    }
        /* Hide scrollbar for Chrome, Safari and Opera */
        .fresher-roles-horizontal::-webkit-scrollbar {
            display: none;
        }
    
        /* FIXED: Fresher role cards - proper sizing and layout */
.fresher-role-card {
    position: relative;
    background: white;
    border-radius: 1rem;
        overflow: visible !important;
        width: 220px;
        height: 280px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        flex: 0 0 auto;
        margin: 0.5rem;
        z-index: 1;
        transform: translateZ(0);
        backface-visibility: hidden;
        will-change: transform, box-shadow;
        scroll-snap-align: start;
}

.fresher-role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 206, 209, 0.1), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.fresher-role-card:hover::before {
    left: 100%;
}

/* FIXED: Removed white line at top of cards */
.software-dev {
    background: white;
        /* Changed from gradient to solid white */
}

.business-analysis {
    background: white;
        /* Changed from gradient to solid white */
}

.uiux-design {
    background: white;
        /* Changed from gradient to solid white */
}

.it-operations {
    background: white;
        /* Changed from gradient to solid white */
}

.digital-marketing {
    background: white;
        /* Changed from gradient to solid white */
}

.fresher-card-overlay {
    position: absolute;
    background: transparent;
    transition: all 0.4s ease;
}

.fresher-role-card:hover .fresher-card-overlay {
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.08), rgba(25, 25, 112, 0.08));
}

.fresher-card-content {
    position: relative;
    z-index: 2;
    padding: 0.8rem;
        height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.fresher-icon {
    width: 3.2rem;
        height: 3.2rem;
    background: linear-gradient(135deg, #191970, #00CED1);
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(25, 25, 112, 0.15);
}

.fresher-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5.5rem;
        height: 5.5rem;
    background: radial-gradient(circle, rgba(0, 206, 209, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

.fresher-role-card:hover .fresher-icon::after {
    opacity: 1;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.fresher-role-card:hover .fresher-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 40px rgba(25, 25, 112, 0.3);
}

.fresher-icon i {
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 2;
}

.fresher-card-content h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111827;
    margin: 0.2rem 0 0.4rem;
        line-height: 1.2;
}

/* FIXED: Apply button container with proper spacing for dropdown */
.fresher-card-content .apply-button-container {
    position: static;
    margin-top: auto;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        z-index: 1000;
        overflow: visible;
        min-height: auto;
}

.fresher-apply-btn {
    background: linear-gradient(135deg, #00CED1, #191970);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
        width: auto;
        min-width: 120px;
        margin: 0.3rem auto 0;
        box-shadow: 0 2px 8px rgba(25, 25, 112, 0.15);
}

.fresher-apply-btn:hover {
    background: linear-gradient(135deg, #0f0f5a, #00CED1);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(25, 25, 112, 0.3);
}

/* FIXED: Contact Options Dropdown for fresher cards - positioned above button, no transform */
.fresher-card-content .contact-options-dropdown {
    position: absolute;
    top: 50%;
background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    width: 180px;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    pointer-events: none;
    padding: 5px 0;
}

.fresher-card-content .contact-options-dropdown.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.fresher-card-content .contact-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: #374151;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
    min-width: 180px;
    white-space: nowrap;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: #374151;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
    min-width: 180px;
    white-space: nowrap;
}

.fresher-card-content .contact-option:last-child {
    border-bottom: none;
}

.fresher-card-content .contact-option:hover {
    background: linear-gradient(135deg, #f0f9ff, #ecfeff);
    color: #0f766e;
    transform: translateX(5px);
}

.fresher-card-content .contact-option i {
    font-size: 1rem;
    width: 1rem;
    color: #00CED1;
    flex-shrink: 0;
}

.fresher-card-content .contact-option span {
    white-space: nowrap;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fresher-card-content .email-option:hover {
    background: linear-gradient(135deg, #fef2f2, #fef7f7);
    color: #dc2626;
}

.fresher-card-content .hr-option:hover {
    background: linear-gradient(135deg, #f0f9ff, #eff6ff);
    color: #2563eb;
}

.fresher-role-card:hover {
transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #00CED1;
    z-index: 2;
    border: 2px solid #00CED1;
    z-index: 2;
}

.fresher-highlight-section {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.fresher-highlight {
    font-size: 1.3rem;
    color: #191970;
    font-weight: 600;
    max-width: 50rem;
    margin: 0 auto;
    line-height: 1.8;
    padding: 2rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 206, 209, 0.2);
}

/* WhatsApp and Chat Styles */
@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.03);
  }
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: rgba(206, 243, 248, 0.882);
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  animation: floatPulse 3s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

.whatsapp-button img {
  width: 30px;
  height: 25px;
}

.chat-prompt-box {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 260px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  overflow: hidden;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.5s ease;
  font-family: 'Poppins';
}

.chat-prompt-box.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(173, 231, 239, 0.882);
  color: rgb(33, 32, 32);
  padding: 10px 12px;
  position: relative;
}

.chat-header img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.chat-header button {
  position: absolute;
  right: 10px;
  top: 8px;
  background: transparent;
  border: none;
  font-size: 20px;
  color: white;
  cursor: pointer;
}

.chat-message {
  padding: 12px;
  font-size: 14px;
  color: #131212;
}

.chat-message .typing-dots {
  display: flex;
  gap: 5px;
  margin-bottom: 8px;
}

.chat-message .typing-dots span {
  width: 6px;
  height: 6px;
  background-color: #bbb;
  border-radius: 50%;
  animation: bounce-dot 1.4s infinite ease-in-out both;
}

.chat-message .typing-dots span:nth-child(1) {
  animation-delay: 0s;
}
.chat-message .typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.chat-message .typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce-dot {
  0%, 80%, 100% {
    transform: scale(0);
  } 40% {
    transform: scale(1);
  }
}

.chat-message .text {
  display: block;
  margin-top: 6px;
}

/* Animations */
@keyframes float {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

/* Global Styles */
:root {
  --secondary-blue: #38bdf8;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: #f9fafb;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    min-width: 400px;
    max-width: 450px;
    flex: 0 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

.testimonial-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.testimonial-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: #6b7280;
}

.testimonial-content {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
    overflow-y: auto;
    max-height: 300px;
    padding: 0.5rem 1rem 0.5rem 0;
    margin-right: -0.5rem;
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
}

.testimonial-content::-webkit-scrollbar {
    width: 4px;
}

.testimonial-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
    margin: 10px 0;
}

.testimonial-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.testimonial-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.testimonial-content::-webkit-scrollbar {
    width: 4px;
}

.testimonial-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.testimonial-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.testimonial-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-400px * 3 - 2rem * 3));
    }
}

.testimonials-track.paused {
    animation-play-state: paused;
}

/* Grow, Belong, Lead Section */
.grow-belong-lead {
    padding: 5rem 0;
    background: linear-gradient(135deg, #00a8cc 0%, #0c7b93 50%, #0c4a6e 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.grow-belong-lead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M30 10L10 30v40l20 20h40l20-20V30L70 10H30z" fill="rgba(255,255,255,0.05)" fill-rule="evenodd"/></svg>');
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

.grow-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grow-text {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    line-height: 1.4;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.grow-text::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00CED1, #191970);
    border-radius: 2px;
}

.explore-careers-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    background: linear-gradient(90deg, #00CED1, #191970);
    color: white;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 206, 209, 0.3);
}

.explore-careers-btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.explore-careers-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 206, 209, 0.4);
}

.explore-careers-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .grow-text {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .grow-text {
        font-size: 1.5rem;
    }

    .explore-careers-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Footer styles */
.footer {
  background: url('slide1.jpg') no-repeat center center/cover;
  position: relative;
  font-family: 'Poppins';
  color: white;
margin-top: -1px;
    /* Slight overlap to remove gap */
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3rem;
    background: linear-gradient(to bottom, rgba(236, 254, 255, 0.9) 0%, rgba(0, 32, 91, 0.9) 100%);
}

.footer-overlay {
  background: linear-gradient(to right, rgba(0, 32, 91, 0.9), rgba(28, 75, 96, 0.962), rgba(19, 38, 67, 0.8));
  padding: 60px 40px;
position: relative;
    z-index: 2;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 20px;
  row-gap: 10px;
  max-width: 1400px;
  margin: auto;
}

.services-custom {
  margin-left: -20px !important;
}

.footer-column.tight-column {
  flex: 1;
  min-width: 180px;
  padding-right: 10px;
}

.footer-column {
  flex: 1;
  min-width: 220px;
}

.footer-column h2 {
font-size: 25px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-column p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #ddd;
}

.footer-column .footer-quote {
    display: block;
    margin-bottom: 32px;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.footer-column ul li a {
  color: #ddd;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-column ul li a:hover {
  color: var(--secondary-blue);
  transform: scale(1.05) translateX(5px);
  opacity: 1;
}

.underline-title {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
}

.underline-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50%;
  height: 3px;
  background: linear-gradient(to right, #00b4d8, #90e0ef);
  border-radius: 3px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--secondary-blue);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(56, 189, 248, 0.3);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-top: 2px;
  padding-top: 0px;
}

.footer-column.newsletter {
  max-width: 260px;
  flex: 1;
}

.footer-contact {
  flex: 1;
  min-width: 250px;
text-align: left;
  display: flex;
  flex-direction: column;
align-items: flex-start;
}

.footer-contact h3 {
margin-top: 32px;
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ddd;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--secondary-blue);
  min-width: 20px;
  text-align: center;
}

.newsletter input {
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 8px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
}

.newsletter button {
  width: 100%;
  padding: 10px 16px;
  background-color: var(--secondary-blue);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  margin: 8px 0 0 0;
}

.newsletter button:hover {
  background-color: #0ea5e9;
}

.footer-copyright {
  text-align: center;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
  font-size: 14px;
  color: #ccc;
  margin: 0;
}

/* Additional CSS for what-we-do highlighting effect */
.what-we-do-highlight {
    animation: whatWeDoGlow 1.5s ease-in-out;
    color: #007bff !important;
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
    transform: scale(1.05);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.05));
    border-radius: 8px;
    padding: 8px 12px;
    margin: 4px 0;
}

@keyframes whatWeDoGlow {
    0% {
        color: inherit;
        text-shadow: none;
        transform: scale(1);
        background: transparent;
    }

    25% {
        color: #007bff !important;
        text-shadow: 0 0 8px rgba(0, 123, 255, 0.6);
        transform: scale(1.02);
        background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), rgba(0, 123, 255, 0.02));
    }

    50% {
        color: #007bff !important;
        text-shadow: 0 0 15px rgba(0, 123, 255, 0.8), 0 0 25px rgba(0, 123, 255, 0.6);
        transform: scale(1.08);
        background: linear-gradient(135deg, rgba(0, 123, 255, 0.15), rgba(0, 123, 255, 0.08));
    }

    75% {
        color: #007bff !important;
        text-shadow: 0 0 12px rgba(0, 123, 255, 0.7);
        transform: scale(1.06);
        background: linear-gradient(135deg, rgba(0, 123, 255, 0.12), rgba(0, 123, 255, 0.06));
    }

    100% {
        color: #007bff !important;
        text-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
        transform: scale(1.05);
        background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.05));
    }
}

.industry-highlight {
    animation: industryGlow 3s ease-in-out;
    border: 2px solid #007bff !important;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.6) !important;
    transform: scale(1.02);
}

@keyframes industryGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 123, 255, 0.6);
        transform: scale(1.02);
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 123, 255, 0.8);
        transform: scale(1.05);
    }
}

/* Video Section Styles */
.fresher-journey-visual {
    flex: 1.2;
    position: sticky;
    top: 2rem;
    height: fit-content;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    align-self: flex-start;
}

.video-container {
    position: relative;
    width: 100%;
    height: fit-content;
    aspect-ratio: 10/11;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease-out;

}

.video-container.in-view {
    transform: translateY(0);
    opacity: 1;
}

.collaboration-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.1) 50%,
            rgba(0, 0, 0, 0.3) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.video-captions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 80%;
    margin: 0 auto;
}

.caption-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.5s ease-out;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border-left: 4px solid #3b82f6;
}

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

.caption-item i {
    font-size: 1.5rem;
    color: #3b82f6;
    min-width: 30px;
    text-align: center;
}

.caption-item span {
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
}
/* Responsive Design */
@media (max-width: 992px) {
    .footer-container,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .wellness-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .diversity-creative-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .wellness-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .career-reasons-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .internship-roles-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .fresher-roles-horizontal {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    flex-direction: column;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    align-items: center;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .fresher-role-card {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    width: 100%;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    max-width: 350px;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 40px 20px;
            /* Increased top padding for mobile */
    }
    
    .navbar {
        gap: 10px;
    }
    
    .nav-item {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
    }
    
    .team-stays-section {
        padding: 2rem;
    }
    
    .wellness-features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        width: 22rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .career-reason-card {
        height: 250px;
    }

    .internship-role-card {
        height: 450px;
    }

    .fresher-role-card {
        height: 400px;
    }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .career-reasons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .internship-roles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    
}
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        width: 20rem;
    }
    
    .shape {
        display: none;
    }

    .culture-card {
        height: 280px;
    }

    .wellness-hero-content h2 {
        font-size: 2rem;
    }

    .diversity-header h3 {
        font-size: 1.5rem;
    }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .career-reason-card {
        height: 220px;
    }

    .internship-role-card {
        height: 430px;
    }

    .fresher-role-card {
        height: 380px;
            width: 250px;
    }

    .internship-card-content,
    .fresher-card-content {
        padding: 2rem;
    }

    .fresher-highlight {
        font-size: 1.1rem;
        padding: 1.5rem;
        margin-bottom: 2.5rem;
            /* Added margin to create space before next section */
}
/* .fresher-roles-horizontal-container {
    overflow: visible;
    /* Keep it visible even on mobile */

/* 
        .fresher-roles-horizontal {
            flex-direction: row;
            align-items: stretch;
        
        
                */  
/* ==========================================================================
   Footer Styles
   ========================================================================== */

.footer {
    background: linear-gradient(270deg, #0d47a1, #1976d2, #29b6f6, #4fc3f7);
    color: #ffffff;
    padding: 4rem 0 2rem;
    position: relative;
    font-family: 'Onest', sans-serif;
}

.footer .w-layout-grid.grid_6-col {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 2rem;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer .heading_h6 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-contact-section {
    margin-top: 1rem;
}

.footer .heading_h7 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.footer-contact-item svg {
    flex-shrink: 0;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer .footer_link {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer .footer_link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Newsletter Form */
.footer_form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer_form-input.w-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-size: 1rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.footer_form-input.w-input::placeholder {
    color: #bdbdbd;
}

.footer_form-input.w-input:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    outline: none;
}

.button.is-secondary.w-button {
    background: linear-gradient(90deg, #4fc3f7, #29b6f6);
    color: #0d47a1;
    border: none;
    border-radius: 8px;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.button.is-secondary.w-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer .text-color_secondary {
    color: #e0e0e0;
    font-size: 0.85rem;
}

/* Footer Bottom */
.footer-inno-quote {
    text-align: center;
    margin-top: 3rem;
    font-style: italic;
    color: #e0e0e0;
}

.footer .divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    margin: 2rem 0;
}

.footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer_icon-group {
    display: flex;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_icon-link.w-inline-block {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer_icon-link.w-inline-block:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.footer_icon-link svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
}

.footer_icon-link svg path {
    stroke: currentColor;
}

/* Special case for X icon which uses fill */
.footer_icon-link svg[fill="currentColor"] {
    fill: #ffffff;
    stroke: none;
}