/* style.css */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #7c3aed;
    --text-color: #1f2937;
    --text-light: #494d55;
    --light-bg: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background:linear-gradient(135deg,  #7c92f5 0%, #f7f7f7 25%, #7c92f5 100%);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
}

.logo span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 5px 0;
    position: relative;
    border-radius: 5px;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-dark);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-dark);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Hover effect - underline animation */
.nav-menu a:not(.btn-internship)::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.nav-menu a:not(.btn-internship):hover::before {
    width: 100%;
}

.btn-internship {
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    color: #333 !important;
    padding: 8px 20px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease !important;
}

.btn-internship:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5) !important;
    background: linear-gradient(135deg, #FFA500, #FFD700) !important;
}

.btn-internship::before {
    display: none !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #6d28d9;
    transform: translateY(-2px);
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-link:hover {
    color: var(--primary-dark);
}

/* ============================
   COMPLETE HERO SECTION CSS (WITHOUT PROGRESS STATS)
   ============================ */

/* Hero Section Base */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0 80px;
}

/* Animated Background Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    display: block;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
    animation: float-particle 20s infinite linear;
}

.particle:nth-child(1) { width: 80px; height: 80px; top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { width: 40px; height: 40px; top: 60%; left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { width: 60px; height: 60px; top: 30%; left: 80%; animation-delay: 4s; }
.particle:nth-child(4) { width: 100px; height: 100px; top: 70%; left: 90%; animation-delay: 6s; }
.particle:nth-child(5) { width: 50px; height: 50px; top: 40%; left: 40%; animation-delay: 8s; }
.particle:nth-child(6) { width: 70px; height: 70px; top: 80%; left: 60%; animation-delay: 10s; }
.particle:nth-child(7) { width: 30px; height: 30px; top: 15%; left: 70%; animation-delay: 12s; }
.particle:nth-child(8) { width: 90px; height: 90px; top: 85%; left: 30%; animation-delay: 14s; }
.particle:nth-child(9) { width: 45px; height: 45px; top: 25%; left: 50%; animation-delay: 16s; }
.particle:nth-child(10) { width: 55px; height: 55px; top: 95%; left: 5%; animation-delay: 18s; }
.particle:nth-child(11) { width: 65px; height: 65px; top: 5%; left: 95%; animation-delay: 20s; }
.particle:nth-child(12) { width: 35px; height: 35px; top: 45%; left: 85%; animation-delay: 22s; }
.particle:nth-child(13) { width: 85px; height: 85px; top: 55%; left: 15%; animation-delay: 24s; }
.particle:nth-child(14) { width: 75px; height: 75px; top: 75%; left: 75%; animation-delay: 26s; }
.particle:nth-child(15) { width: 95px; height: 95px; top: 10%; left: 25%; animation-delay: 28s; }

@keyframes float-particle {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-100px) rotate(180deg) scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: translateY(0) rotate(360deg) scale(1);
        opacity: 0.1;
    }
}

/* Wave Effect */
.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}

.waves {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
    animation: wave-animation 10s linear infinite;
}

@keyframes wave-animation {
    0% { transform: translateX(0) translateZ(0) scaleY(1); }
    50% { transform: translateX(-25%) translateZ(0) scaleY(0.8); }
    100% { transform: translateX(-50%) translateZ(0) scaleY(1); }
}

/* Main Container */
.hero .container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Main Container - Flex layout */
.hero-main-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ============================
   LEFT CONTENT - GLASS BOX
   ============================ */

.hero-content-left {
    flex: 1.2;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: boxFadeIn 1s ease-out;
}

@keyframes boxFadeIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Welcome Badge */
.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    animation: slideInUp 0.8s ease-out;
}

.badge-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50px;
    animation: pulse 2s infinite;
    opacity: 0;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    70% { transform: scale(1.1); opacity: 0; }
    100% { transform: scale(1.1); opacity: 0; }
}

.welcome-badge i {
    color: #FFD700;
    font-size: 1.2rem;
    animation: rotate 3s linear infinite;
}

.welcome-badge span {
    color: white;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Main Heading */
.main-heading {
    margin-bottom: 25px;
    animation: slideInUp 0.8s ease-out 0.1s both;
}

.innovative-text {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.dynamic-text-wrapper {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    min-height: 80px;
}

.dynamic-text {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cursor {
    display: inline-block;
    color: #FFD700;
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: #FFD700; }
}

/* Hero Description */
.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 600px;
    animation: slideInUp 0.8s ease-out 0.2s both;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #FFD700;
}

/* Internship Highlight */
.internship-highlight {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 15px;
    margin-bottom: 35px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    animation: slideInUp 0.8s ease-out 0.3s both;
}

.internship-highlight i {
    color: #FFD700;
    font-size: 1.8rem;
    animation: bounce 2s infinite;
}

.internship-highlight span {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.action-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.action-buttons .btn::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.5s ease;
    z-index: 1;
}

.action-buttons .btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
}

.btn-secondary {
    background:linear-gradient(135deg, #FFA500, #FFD700);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    transform: translateY(-3px);
}

.action-buttons .btn i {
    transition: transform 0.3s ease;
    z-index: 2;
}

.action-buttons .btn:hover i {
    transform: translateX(5px) rotate(45deg);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    animation: slideInUp 0.8s ease-out 0.5s both;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 20px 15px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFD700;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.stat-number-wrapper {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.stat-number.counting {
    animation: countGlow 1s ease infinite;
}

.stat-number.animated {
    animation: countComplete 0.5s ease-out;
}

@keyframes countGlow {
    0%, 100% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); }
    50% { text-shadow: 0 0 15px #FFD700, 2px 2px 4px rgba(0, 0, 0, 0.3); }
}

@keyframes countComplete {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); color: #FFD700; }
    100% { transform: scale(1); }
}

.stat-symbol {
    font-size: 1.8rem;
    color: #FFD700;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.9rem;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* ============================
   RIGHT CONTENT - BEAUTIFUL ELEMENTS
   ============================ */

.hero-content-right {
    flex: 1;
    position: relative;
    min-height: 600px;
    animation: imageFadeIn 1s ease-out 0.3s both;
}

@keyframes imageFadeIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Image Wrapper */
.image-wrapper {
    position: relative;
    z-index: 5;
    transform: scale(1.1);
}

.hero-content-right img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    display: block;
}

/* Image Glow Effect */
.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

/* Image Ring Effect */
.image-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 115%;
    height: 115%;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: ringRotate 10s linear infinite;
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: float-card 4s ease-in-out infinite;
    border: 1px solid #FFD700;
    z-index: 10;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.95);
}

.card-1 {
    top: 5%;
    right: -5%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 10%;
    left: -5%;
    animation-delay: 1s;
}

.card-3 {
    top: 40%;
    right: -8%;
    animation-delay: 2s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.floating-card i {
    font-size: 2rem;
    color: #FFD700;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 3px;
    font-weight: 500;
}

.card-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
}

/* Technology Icons */
.tech-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 15;
}

.tech-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: techIconFloat 6s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.tech-icon:hover {
    transform: scale(1.2);
    background: #FFD700;
    color: #333;
    border-color: #FFD700;
}

.tech-icon:hover .tech-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.tech-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.icon-1 { top: 15%; left: 10%; animation-delay: 0s; }
.icon-2 { top: 25%; right: 15%; animation-delay: 0.5s; }
.icon-3 { bottom: 30%; left: 5%; animation-delay: 1s; }
.icon-4 { bottom: 15%; right: 20%; animation-delay: 1.5s; }
.icon-5 { top: 45%; left: 15%; animation-delay: 2s; }
.icon-6 { bottom: 40%; right: 10%; animation-delay: 2.5s; }

@keyframes techIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* Animated Dots Background */
.animated-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.dot {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: dotPulse 4s ease-in-out infinite;
}

.dot-1 { width: 150px; height: 150px; top: 10%; right: 10%; animation-delay: 0s; }
.dot-2 { width: 100px; height: 100px; bottom: 20%; left: 5%; animation-delay: 0.5s; }
.dot-3 { width: 80px; height: 80px; top: 40%; right: 20%; animation-delay: 1s; }
.dot-4 { width: 120px; height: 120px; bottom: 30%; right: 15%; animation-delay: 1.5s; }
.dot-5 { width: 60px; height: 60px; top: 60%; left: 10%; animation-delay: 2s; }
.dot-6 { width: 90px; height: 90px; top: 20%; left: 15%; animation-delay: 2.5s; }
.dot-7 { width: 70px; height: 70px; bottom: 10%; right: 25%; animation-delay: 3s; }
.dot-8 { width: 110px; height: 110px; top: 70%; right: 5%; animation-delay: 3.5s; }

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.5); opacity: 0.2; }
}

/* Floating Lines */
.floating-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: lineMove 8s linear infinite;
}

.line-1 {
    width: 200%;
    height: 1px;
    top: 20%;
    left: -50%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.line-2 {
    width: 200%;
    height: 1px;
    top: 50%;
    left: -50%;
    transform: rotate(-30deg);
    animation-delay: 2s;
}

.line-3 {
    width: 200%;
    height: 1px;
    bottom: 30%;
    left: -50%;
    transform: rotate(15deg);
    animation-delay: 4s;
}

.line-4 {
    width: 200%;
    height: 1px;
    bottom: 60%;
    left: -50%;
    transform: rotate(-45deg);
    animation-delay: 6s;
}

@keyframes lineMove {
    0% { transform: translateX(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) rotate(45deg); opacity: 0; }
}

/* ============================
   SCROLL INDICATOR
   ============================ */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 20;
    animation: fadeIn 2s ease-out 2s both;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.wheel {
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    80% { opacity: 0; transform: translateX(-50%) translateY(15px); }
    100% { opacity: 0; transform: translateX(-50%) translateY(0); }
}

.scroll-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.scroll-arrow {
    color: white;
    font-size: 1.2rem;
    animation: bounce-arrow 2s infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes bounce-arrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Slide In Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================
   COMPLETE RESPONSIVE DESIGN
   ============================ */

/* Large Desktop */
@media (max-width: 1200px) {
    .hero-content-left {
        padding: 40px;
    }
    
    .innovative-text,
    .dynamic-text-wrapper {
        font-size: 3rem;
    }
    
    .dynamic-text-wrapper {
        min-height: 70px;
    }
    
    .hero-content-right .image-wrapper {
        transform: scale(1.05);
    }
}

/* Tablet Landscape */
@media (max-width: 992px) {
    .hero-main-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-content-left {
        width: 100%;
        text-align: center;
        padding: 40px;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    
    .action-buttons {
        justify-content: center;
    }
    
    .stats-grid {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-content-right {
        max-width: 600px;
        margin: 0 auto;
        min-height: 500px;
        width: 100%;
    }
    
    /* Ensure all elements are visible */
    .tech-icons,
    .floating-card,
    .animated-dots,
    .floating-lines {
        display: block !important;
    }
    
    .tech-icons {
        z-index: 25;
    }
    
    .floating-card {
        z-index: 35;
    }
    
    /* Adjust tech icon positions */
    .icon-1 { top: 10%; left: 5%; }
    .icon-2 { top: 20%; right: 10%; }
    .icon-3 { bottom: 25%; left: 8%; }
    .icon-4 { bottom: 10%; right: 15%; }
    .icon-5 { top: 40%; left: 12%; }
    .icon-6 { bottom: 35%; right: 5%; }
    
    .card-1 {
        top: 3%;
        right: 0%;
    }
    
    .card-2 {
        bottom: 5%;
        left: 0%;
    }
    
    .card-3 {
        top: 35%;
        right: 0%;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero .container {
        padding: 0 20px;
    }
    
    .hero-content-left {
        padding: 30px 20px;
    }
    
    .innovative-text,
    .dynamic-text-wrapper {
        font-size: 2.5rem;
    }
    
    .dynamic-text-wrapper {
        min-height: 60px;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 15px;
    }
    
    .internship-highlight {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
    }
    
    .internship-highlight i {
        font-size: 1.5rem;
    }
    
    .internship-highlight span {
        font-size: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .action-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-content-right {
        max-width: 500px;
        min-height: 450px;
    }
    
    /* Tech icons for mobile */
    .tech-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .icon-1 { top: 5%; left: 2%; }
    .icon-2 { top: 15%; right: 5%; }
    .icon-3 { bottom: 30%; left: 3%; }
    .icon-4 { bottom: 5%; right: 8%; }
    .icon-5 { top: 35%; left: 5%; }
    .icon-6 { bottom: 40%; right: 2%; }
    
    /* Floating cards for mobile */
    .floating-card {
        padding: 10px 15px;
    }
    
    .floating-card i {
        font-size: 1.5rem;
    }
    
    .card-title {
        font-size: 0.7rem;
    }
    
    .card-value {
        font-size: 1rem;
    }
    
    .waves {
        height: 80px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
}

/* Mobile Large */
@media (max-width: 576px) {
    .hero-content-left {
        padding: 25px 15px;
    }
    
    .welcome-badge {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .welcome-badge i {
        font-size: 1rem;
    }
    
    .innovative-text,
    .dynamic-text-wrapper {
        font-size: 2rem;
    }
    
    .dynamic-text-wrapper {
        min-height: 50px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 12px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .hero-content-right {
        max-width: 100%;
        min-height: 400px;
    }
    
    .hero-content-right .image-wrapper {
        transform: scale(1);
    }
    
    /* Tech icons for small mobile */
    .tech-icons {
        display: block !important;
    }
    
    .tech-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .icon-1 { top: 2%; left: 1%; }
    .icon-2 { top: 10%; right: 2%; }
    .icon-3 { bottom: 35%; left: 1%; }
    .icon-4 { bottom: 2%; right: 3%; }
    .icon-5 { top: 25%; left: 2%; }
    .icon-6 { bottom: 45%; right: 1%; }
    
    /* Floating cards for small mobile */
    .floating-card {
        padding: 8px 12px;
    }
    
    .floating-card i {
        font-size: 1.2rem;
    }
    
    .card-title {
        font-size: 0.6rem;
    }
    
    .card-value {
        font-size: 0.9rem;
    }
    
    .card-1 {
        top: 1%;
        right: 0%;
    }
    
    .card-2 {
        bottom: 2%;
        left: 0%;
    }
    
    .card-3 {
        top: 30%;
        right: 0%;
    }
    
    .scroll-text {
        display: none;
    }
    
    .mouse {
        width: 25px;
        height: 40px;
    }
    
    .wheel {
        width: 3px;
        height: 8px;
    }
}

/* Very Small Devices */
@media (max-width: 480px) {
    /* Hide card text, keep only icons */
    .floating-card .card-content {
        display: none;
    }
    
    .floating-card i {
        margin: 0;
    }
    
    .floating-card {
        padding: 8px;
    }
}

/* Mobile Small */
@media (max-width: 375px) {
    .innovative-text,
    .dynamic-text-wrapper {
        font-size: 1.8rem;
    }
    
    .welcome-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 10px;
    }
    
    .internship-highlight {
        padding: 12px 15px;
    }
    
    .internship-highlight i {
        font-size: 1.3rem;
    }
    
    .internship-highlight span {
        font-size: 0.9rem;
    }
    
    .hero-content-right {
        min-height: 350px;
    }
    
    .tech-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

/* ============================
   PRINT STYLES
   ============================ */
@media print {
    .hero-particles,
    .hero-waves,
    .floating-card,
    .scroll-indicator,
    .image-glow,
    .image-ring,
    .tech-icons,
    .animated-dots,
    .floating-lines {
        display: none !important;
    }
    
    .hero {
        background: white;
        min-height: auto;
        padding: 20px 0;
    }
    
    .hero-content-left {
        background: none;
        border: 1px solid #ddd;
        box-shadow: none;
    }
    
    .innovative-text,
    .dynamic-text-wrapper,
    .hero-description,
    .stat-number,
    .stat-label {
        color: #333 !important;
    }
    
    .action-buttons .btn {
        border: 1px solid #333;
        color: #333;
        background: none;
    }
}
/* Services Preview */
.services-preview {
    padding: 80px 0;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Internship Section */
.internship {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.internship-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.internship h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.internship p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.internship-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.benefit {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.benefit i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta .btn-secondary {
    background-color: white;
    color: var(--primary-color);
}

.cta .btn-secondary:hover {
    background-color: #f0f9ff;
}

/* Page Header - Enhanced Design */
.page-header {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

/* Animated background particles */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 35%);
    z-index: 1;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Floating orbs */
.page-header .orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 1;
}

.page-header .orb-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation: floatOrb 15s ease-in-out infinite;
}

.page-header .orb-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
    animation: floatOrb 18s ease-in-out reverse infinite;
}

.page-header .orb-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    animation: floatOrb 12s ease-in-out 2s infinite;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(90deg); }
    50% { transform: translate(50px, 20px) rotate(180deg); }
    75% { transform: translate(-20px, 40px) rotate(270deg); }
}

/* Animated lines */
.page-header .lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-header .line {
    position: absolute;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.2), 
        rgba(255, 255, 255, 0.1), 
        transparent
    );
    animation: moveLine 8s linear infinite;
}

.page-header .line-1 {
    width: 200%;
    height: 2px;
    top: 20%;
    left: -50%;
    transform: rotate(30deg);
    animation-delay: 0s;
}

.page-header .line-2 {
    width: 200%;
    height: 2px;
    top: 50%;
    left: -50%;
    transform: rotate(-20deg);
    animation-delay: 2s;
}

.page-header .line-3 {
    width: 200%;
    height: 2px;
    bottom: 30%;
    left: -50%;
    transform: rotate(45deg);
    animation-delay: 4s;
}

.page-header .line-4 {
    width: 200%;
    height: 2px;
    bottom: 70%;
    left: -50%;
    transform: rotate(-15deg);
    animation-delay: 6s;
}

@keyframes moveLine {
    0% { transform: translateX(-100%) rotate(30deg); opacity: 0; }
    10% { opacity: 0.5; }
    50% { opacity: 1; }
    90% { opacity: 0.5; }
    100% { transform: translateX(100%) rotate(30deg); opacity: 0; }
}

/* Content styling */
.page-header .container {
    position: relative;
    z-index: 10;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    display: inline-block;
}

/* Animated underline for h1 */
.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    border-radius: 2px;
    animation: underlineWidth 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

@keyframes underlineWidth {
    0%, 100% { width: 80px; opacity: 0.8; }
    50% { width: 150px; opacity: 1; }
}

.page-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 25px auto 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    position: relative;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
    letter-spacing: 0.5px;
}

/* Decorative elements around p */
.page-header p::before,
.page-header p::after {
    content: '"';
    position: absolute;
    font-size: 3rem;
    color: rgba(255, 215, 0, 0.3);
    font-family: serif;
    opacity: 0.5;
}

.page-header p::before {
    top: -10px;
    left: 10px;
    transform: rotate(180deg);
}

.page-header p::after {
    bottom: -30px;
    right: 10px;
}

/* Floating shapes */
.page-header .shape {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: rotateShape 20s linear infinite;
    z-index: 1;
}

.page-header .shape-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    right: 10%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: floatShape 8s ease-in-out infinite;
}

.page-header .shape-2 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 5%;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: floatShape 10s ease-in-out reverse infinite;
}

.page-header .shape-3 {
    width: 70px;
    height: 70px;
    top: 40%;
    left: 15%;
    border-radius: 41% 59% 33% 67% / 58% 39% 61% 42%;
    animation: floatShape 6s ease-in-out 2s infinite;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(20px, -20px) rotate(120deg) scale(1.1); }
    66% { transform: translate(-15px, 15px) rotate(240deg) scale(0.9); }
}

@keyframes rotateShape {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Glowing dots */
.page-header .dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 3px, transparent 3px),
        radial-gradient(circle at 30% 60%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.15) 4px, transparent 4px),
        radial-gradient(circle at 90% 40%, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 200px 200px;
    animation: moveDots 30s linear infinite;
    z-index: 1;
}

@keyframes moveDots {
    0% { background-position: 0 0; }
    100% { background-position: 200px 200px; }
}

/* Sparkle effect */
.page-header .sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700;
    animation: sparkle 3s ease-in-out infinite;
    z-index: 2;
}

.sparkle-1 { top: 20%; left: 15%; animation-delay: 0s; }
.sparkle-2 { top: 70%; right: 20%; animation-delay: 0.5s; }
.sparkle-3 { top: 40%; left: 80%; animation-delay: 1s; }
.sparkle-4 { bottom: 30%; left: 25%; animation-delay: 1.5s; }
.sparkle-5 { top: 80%; left: 50%; animation-delay: 2s; }
.sparkle-6 { top: 10%; right: 40%; animation-delay: 2.5s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(1); }
    25% { opacity: 1; transform: scale(1.5); box-shadow: 0 0 15px #FFD700, 0 0 30px #FFA500; }
    50% { opacity: 1; transform: scale(2); box-shadow: 0 0 20px #FFD700, 0 0 40px #FFA500; }
    75% { opacity: 1; transform: scale(1.5); }
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    .page-header {
        padding: 100px 0 80px;
    }
    
    .page-header h1 {
        font-size: 3.2rem;
    }
    
    .page-header p {
        font-size: 1.2rem;
        padding: 15px 25px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
        padding: 15px 20px;
        max-width: 90%;
    }
    
    .page-header .orb-1 { width: 200px; height: 200px; }
    .page-header .orb-2 { width: 250px; height: 250px; }
    .page-header .orb-3 { width: 150px; height: 150px; }
    
    .page-header .shape-1 { width: 60px; height: 60px; }
    .page-header .shape-2 { width: 100px; height: 100px; }
    .page-header .shape-3 { width: 50px; height: 50px; }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
        padding: 12px 18px;
    }
    
    .page-header h1::after {
        width: 60px;
        height: 3px;
    }
    
    @keyframes underlineWidth {
        0%, 100% { width: 60px; }
        50% { width: 100px; }
    }
    
    /* Hide some elements on mobile to prevent clutter */
    .page-header .orb-3,
    .page-header .shape-3,
    .sparkle-4, .sparkle-5, .sparkle-6 {
        display: none;
    }
}

/* About Page - Enhanced Content with Services Detail Effects */
.about-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f0fa 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern (same as services) */
.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 40% 50%, rgba(255, 215, 0, 0.02) 0%, transparent 30%);
    pointer-events: none;
}

.about-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Gradient border effect on hover (same as services) */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 40px;
    padding: 2px;
    background: linear-gradient(135deg, #2563eb, #7c3aed, #ffd700);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.about-section:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 60px -15px rgba(37, 99, 235, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    background: rgba(255, 255, 255, 0.95);
}

.about-section:hover::before {
    opacity: 1;
}

.about-section.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
    padding: 20px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #1e40af, #5b21b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.about-section:hover .about-text h2::after {
    width: 150px;
}

.about-text p {
    margin-bottom: 25px;
    color: #1e293b;
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 20px;
    border-left: 5px solid #2563eb;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.about-section.reverse .about-text p {
    border-left-color: #7c3aed;
    border-right: 5px solid #7c3aed;
    border-left: none;
}

.about-text p:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
}

.about-text p strong {
    color: #2563eb;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.about-text p strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, transparent);
    border-radius: 1px;
}

.about-section.reverse .about-text p strong {
    color: #7c3aed;
}

.about-section.reverse .about-text p strong::after {
    background: linear-gradient(90deg, #7c3aed, transparent);
}

.about-image {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
        0 30px 60px -15px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
    position: relative;
    transition: all 0.5s ease;
}

/* Image gradient overlay (same as services) */
.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(124, 58, 237, 0.3));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
    mix-blend-mode: overlay;
}

.about-section:hover .about-image::before {
    opacity: 1;
}

/* Shine effect (same as services) */
.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
    z-index: 2;
}

.about-section:hover .about-image::after {
    left: 100%;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-section:hover .about-image img {
    transform: scale(1.1);
}

/* Decorative elements (same as services) */
.about-section::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.about-section:nth-child(odd)::after {
    top: -50px;
    right: -50px;
}

.about-section:nth-child(even)::after {
    bottom: -50px;
    left: -50px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
}

/* Special styling for Mission & Vision section */
.about-section:last-of-type .about-text p:first-of-type {
    border-left-color: #2563eb;
    position: relative;
    overflow: hidden;
}

.about-section:last-of-type .about-text p:last-of-type {
    border-left-color: #7c3aed;
}

.about-section:last-of-type.reverse .about-text p:first-of-type {
    border-left-color: #7c3aed;
    border-right: 5px solid #7c3aed;
    border-left: none;
}

.about-section:last-of-type.reverse .about-text p:last-of-type {
    border-left-color: #2563eb;
    border-right: 5px solid #2563eb;
    border-left: none;
}

/* Responsive styles */
@media (max-width: 992px) {
    .about-section,
    .about-section.reverse {
        flex-direction: column;
        gap: 40px;
        padding: 40px;
    }
    
    .about-text {
        text-align: center;
        padding: 0;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-text p {
        border-left: none !important;
        border-right: none !important;
        border-top: 5px solid #2563eb;
        border-radius: 20px;
        text-align: left;
    }
    
    .about-section.reverse .about-text p {
        border-top-color: #7c3aed;
    }
    
    .about-text p:hover {
        transform: translateY(-3px);
    }
    
    .about-section:last-of-type .about-text p:first-of-type,
    .about-section:last-of-type .about-text p:last-of-type,
    .about-section:last-of-type.reverse .about-text p:first-of-type,
    .about-section:last-of-type.reverse .about-text p:last-of-type {
        border-left: none;
        border-right: none;
        border-top: 5px solid;
    }
    
    .about-section:last-of-type .about-text p:first-of-type {
        border-top-color: #2563eb;
    }
    
    .about-section:last-of-type .about-text p:last-of-type {
        border-top-color: #7c3aed;
    }
    
    .about-section:last-of-type.reverse .about-text p:first-of-type {
        border-top-color: #7c3aed;
    }
    
    .about-section:last-of-type.reverse .about-text p:last-of-type {
        border-top-color: #2563eb;
    }
}

@media (max-width: 768px) {
    .about-content {
        padding: 60px 0;
    }
    
    .about-section {
        padding: 30px;
        margin-bottom: 60px;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 1rem;
        padding: 15px;
    }
    
    .about-text p strong::after {
        height: 1px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 20px;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        padding: 12px;
    }
    
    /* Hide decorative elements on mobile */
    .about-section::after {
        display: none;
    }
}

.team-section {
    text-align: center;
    padding-top: 40px;
}

.team-section h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 5px;
}

.team-member .role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

/* Services Detail Page - Enhanced Color Scheme */
.services-detail {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f0fa 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.services-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 40% 50%, rgba(255, 215, 0, 0.02) 0%, transparent 30%);
    pointer-events: none;
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 40px;
    padding: 2px;
    background: linear-gradient(135deg, #2563eb, #7c3aed, #ffd700);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-detail-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 60px -15px rgba(37, 99, 235, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    background: rgba(255, 255, 255, 0.95);
}

.service-detail-card:hover::before {
    opacity: 1;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
    padding: 20px;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #1e40af, #5b21b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.service-detail-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.service-detail-card:hover .service-detail-content h2::after {
    width: 150px;
}

.service-detail-content p {
    color: #1e293b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 20px;
    border-left: 5px solid #2563eb;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.service-detail-card.reverse .service-detail-content p {
    border-left-color: #7c3aed;
    border-right: 5px solid #7c3aed;
    border-left: none;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #0f172a;
    position: relative;
    padding-left: 15px;
}

.service-detail-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 25px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 3px;
}

.service-detail-content ul {
    margin-bottom: 35px;
    padding-left: 20px;
    list-style: none;
}

.service-detail-content li {
    margin-bottom: 15px;
    color: #334155;
    font-size: 1.05rem;
    padding-left: 35px;
    position: relative;
    transition: transform 0.3s ease;
}

.service-detail-content li:hover {
    transform: translateX(5px);
}

.service-detail-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

/* Different icon for reverse cards */
.service-detail-card.reverse .service-detail-content li::before {
    content: '→';
    background: linear-gradient(135deg, #7c3aed, #2563eb);
}

/* Enquire Now button */
.service-detail-content .btn-primary {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;
    padding: 14px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.service-detail-content .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.service-detail-content .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8, #4338ca);
}

.service-detail-content .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.service-detail-content .btn-primary::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.service-detail-content .btn-primary:hover::after {
    transform: translateX(5px);
}

/* Reverse card button style */
.service-detail-card.reverse .btn-primary {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

.service-detail-card.reverse .btn-primary:hover {
    background: linear-gradient(135deg, #6d28d9, #5b21b6);
    box-shadow: 0 20px 30px rgba(124, 58, 237, 0.4);
}

.service-detail-image {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
        0 30px 60px -15px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
    position: relative;
    transition: all 0.5s ease;
}

.service-detail-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(124, 58, 237, 0.3));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
    mix-blend-mode: overlay;
}

.service-detail-card:hover .service-detail-image::before {
    opacity: 1;
}

.service-detail-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
    z-index: 2;
}

.service-detail-card:hover .service-detail-image::after {
    left: 100%;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.service-detail-card:hover .service-detail-image img {
    transform: scale(1.1);
}

/* Decorative elements */
.service-detail-card::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.service-detail-card:nth-child(odd)::after {
    top: -50px;
    right: -50px;
}

.service-detail-card:nth-child(even)::after {
    bottom: -50px;
    left: -50px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
}

/* Responsive styles */
@media (max-width: 992px) {
    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        gap: 40px;
        padding: 40px;
    }
    
    .service-detail-content {
        text-align: center;
    }
    
    .service-detail-content h2 {
        font-size: 2.2rem;
    }
    
    .service-detail-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .service-detail-content p {
        border-left: none;
        border-top: 5px solid #2563eb;
        border-radius: 20px;
        text-align: left;
    }
    
    .service-detail-card.reverse .service-detail-content p {
        border-left: none;
        border-right: none;
        border-top: 5px solid #7c3aed;
    }
    
    .service-detail-content h3 {
        text-align: left;
    }
    
    .service-detail-content ul {
        text-align: left;
    }
    
    .service-detail-content li {
        padding-left: 35px;
    }
}

@media (max-width: 768px) {
    .services-detail {
        padding: 40px 0 60px;
    }
    
    .service-detail-card {
        padding: 30px;
        margin-bottom: 60px;
    }
    
    .service-detail-content h2 {
        font-size: 2rem;
    }
    
    .service-detail-content p {
        font-size: 1rem;
        padding: 15px;
    }
    
    .service-detail-content h3 {
        font-size: 1.3rem;
    }
    
    .service-detail-content li {
        font-size: 0.95rem;
    }
    
    .service-detail-content .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .service-detail-card {
        padding: 20px;
    }
    
    .service-detail-content h2 {
        font-size: 1.8rem;
    }
    
    .service-detail-content li {
        padding-left: 30px;
        font-size: 0.9rem;
    }
    
    .service-detail-content li::before {
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
    }
}
/* Contact Content - Enhanced with Services Detail Effects */
.contact-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f0fa 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.contact-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 40% 50%, rgba(255, 215, 0, 0.02) 0%, transparent 30%);
    pointer-events: none;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    position: relative;
    z-index: 2;
}

/* Contact Info Side */
.contact-info {
    flex: 1;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 40px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
}
.contact-info i{
    color: var(--primary-color);
    margin-top: 5px;
}

/* Gradient border effect on hover */
.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 40px;
    padding: 2px;
    background: linear-gradient(135deg, #2563eb, #7c3aed, #ffd700);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 35px 60px -15px rgba(37, 99, 235, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    background: rgba(255, 255, 255, 0.95);
}

.contact-info:hover::before {
    opacity: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #1e40af, #5b21b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.contact-info:hover h2::after {
    width: 120px;
}

/* Address Card */
.address-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.address-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.address-card:hover {
    transform: translateX(5px) translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
}

.address-card:hover::before {
    left: 100%;
}

.address-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.address-details h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1e293b;
}

.address-details p {
    color: #334155;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Contact Methods */
.contact-methods {
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.contact-method:hover {
    transform: translateX(5px) translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
}

.contact-method:hover::before {
    left: 100%;
}

.contact-method i {
    font-size: 2rem;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 50px;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-method:hover i {
    transform: scale(1.1) rotate(5deg);
}

.contact-method h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #1e293b;
}

.contact-method p {
    color: #334155;
    line-height: 1.6;
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-method p:last-child {
    margin-bottom: 0;
}

/* Map Placeholder */
.map-placeholder {
    margin-top: 30px;
}

.map-placeholder h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #1e293b;
    position: relative;
    display: inline-block;
}

.map-placeholder h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.map-placeholder:hover h3::after {
    width: 100%;
}

.map {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.map:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.map-image {
    position: relative;
    overflow: hidden;
}

.map-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
    z-index: 2;
}

.map:hover .map-image::before {
    left: 100%;
}

.map-image iframe {
    width: 100%;
    height: 300px;
    display: block;
    transition: transform 0.5s ease;
}

.map:hover .map-image iframe {
    transform: scale(1.02);
}

.map p {
    padding: 15px 20px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.map p i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Contact Form Container */
.contact-form-container {
    flex: 1;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 40px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

/* Gradient border effect on hover */
.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 40px;
    padding: 2px;
    background: linear-gradient(135deg, #2563eb, #7c3aed, #ffd700);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.contact-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 35px 60px -15px rgba(37, 99, 235, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    background: rgba(255, 255, 255, 0.95);
}

.contact-form-container:hover::before {
    opacity: 1;
}

.contact-form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #1e40af, #5b21b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.contact-form-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.contact-form-container:hover h2::after {
    width: 120px;
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1e293b;
    font-size: 1rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.form-group input:hover, 
.form-group select:hover, 
.form-group textarea:hover {
    border-color: #7c3aed;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.1);
}

/* Form Error Styles */
.form-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
    padding-left: 15px;
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border-color: #10b981;
    background-color: #f0fdf4;
}

/* Submit Button */
.contact-form-container .btn-primary {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-top: 20px;
}

.contact-form-container .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.contact-form-container .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8, #4338ca);
}

.contact-form-container .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.contact-form-container .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Form Notice */
.form-notice {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 20px;
    border-left: 5px solid #2563eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.form-notice:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
}

.form-notice:hover::before {
    left: 100%;
}

.form-notice p {
    color: #334155;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.form-notice i {
    color: #2563eb;
    font-size: 1.2rem;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Decorative elements */
.contact-info::after,
.contact-form-container::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    bottom: -50px;
    right: -50px;
    transition: all 0.4s ease;
}

.contact-info:hover::after,
.contact-form-container:hover::after {
    transform: scale(1.5);
    opacity: 0.5;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 35px;
    }
    
    .contact-info h2,
    .contact-form-container h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-content {
        padding: 60px 0;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 30px;
    }
    
    .contact-info h2,
    .contact-form-container h2 {
        font-size: 1.8rem;
    }
    
    .address-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-method i {
        margin-bottom: 10px;
    }
    
    .map-image iframe {
        height: 250px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
    }
}

@media (max-width: 576px) {
    .contact-info,
    .contact-form-container {
        padding: 25px;
    }
    
    .contact-info h2,
    .contact-form-container h2 {
        font-size: 1.6rem;
    }
    
    .address-card {
        padding: 20px;
    }
    
    .address-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .contact-method {
        padding: 15px;
    }
    
    .map-image iframe {
        height: 200px;
    }
    
    .form-notice p {
        font-size: 0.9rem;
        flex-direction: column;
        text-align: center;
    }
}
/* Footer */
footer {
    background-color: #111827;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    color: #9ca3af;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #374151;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #9ca3af;
    margin-bottom: 15px;
}

.contact-info-footer i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-section, 
    .service-detail-card,
    .contact-wrapper {
        flex-direction: column;
    }
    
    .about-section.reverse,
    .service-detail-card.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 99;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .services-preview h2,
    .internship h2,
    .cta h2 {
        font-size: 2rem;
    }
    
    .internship-benefits {
        gap: 20px;
    }
    
    .benefit {
        min-width: 120px;
    }

    .map-image iframe{
        width: auto;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Add these styles to the end of style.css */

/* Popup Notification Styles */
.popup-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    width: calc(100% - 40px);
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.popup-notification.show {
    transform: translateX(0);
}

.popup-notification.success {
    border-left: 4px solid #10b981;
}

.popup-notification.error {
    border-left: 4px solid #ef4444;
}

.popup-content {
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
}

.popup-content i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.popup-notification.success .popup-content i {
    color: #10b981;
}

.popup-notification.error .popup-content i {
    color: #ef4444;
}

.popup-content p {
    margin: 0;
    flex: 1;
    color: var(--text-color);
    line-height: 1.5;
}

.popup-close {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
    transition: color 0.3s ease;
    flex-shrink: 0;
    margin-left: 5px;
}

.popup-close:hover {
    color: var(--primary-color);
}

/* Form loading state */
.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.fa-spin {
    animation: fa-spin 1s infinite linear;
}

@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive adjustments for popup */
@media (max-width: 768px) {
    .popup-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        width: calc(100% - 20px);
        max-width: none;
    }
}

/* Form Error Styles */
.form-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
}

.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #fca5a5;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #10b981;
}

/* Success message styles */
.success-message {
    background-color: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
}

.success-message.show {
    display: block;
}

/* Internship Page Specific Styles */

/* Internship Header */
.internship-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.internship-header h1,
.internship-header p {
    color: white;
}

/* Internship Page - Enhanced with Services Detail Effects */

/* Internship Overview */
.internship-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f0fa 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.internship-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 40% 50%, rgba(255, 215, 0, 0.02) 0%, transparent 30%);
    pointer-events: none;
}

.overview-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #1e40af, #5b21b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.overview-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.overview-content h2:hover::after {
    width: 150px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.overview-grid .overview-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

/* Gradient border effect on hover */
.overview-grid .overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, #2563eb, #7c3aed, #ffd700);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.overview-grid .overview-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 60px -15px rgba(37, 99, 235, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    background: rgba(255, 255, 255, 0.95);
}

.overview-grid .overview-card:hover::before {
    opacity: 1;
}

.overview-grid .overview-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.overview-grid .overview-icon i {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.overview-grid .overview-card:hover .overview-icon i {
    transform: scale(1.1) rotate(5deg);
}

/* Icon glow effect */
.overview-grid .overview-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overview-grid .overview-card:hover .overview-icon::after {
    opacity: 1;
    animation: pulseGlow 2s infinite;
}

.overview-grid .overview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e293b;
    position: relative;
    display: inline-block;
}

.overview-grid .overview-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    transition: width 0.3s ease;
}

.overview-grid .overview-card:hover h3::after {
    width: 50px;
}

.overview-grid .overview-card p {
    color: #334155;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Decorative elements for overview cards */
.overview-grid .overview-card::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    bottom: -30px;
    right: -30px;
    transition: all 0.4s ease;
}

.overview-grid .overview-card:hover::after {
    transform: scale(1.5);
    opacity: 0.5;
}

/* Internship Domains */
.internship-domains {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.internship-domains::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.02) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.02) 0%, transparent 25%);
    pointer-events: none;
}

.internship-domains h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1e40af, #5b21b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.internship-domains h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.internship-domains h2:hover::after {
    width: 150px;
}

.section-subtitle {
    text-align: center;
    color: #334155;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.domain-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
}

/* Gradient border effect on hover */
.domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, #2563eb, #7c3aed, #ffd700);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.domain-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 60px -15px rgba(37, 99, 235, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    background: rgba(255, 255, 255, 0.95);
}

.domain-card:hover::before {
    opacity: 1;
}

.domain-header {
    background: linear-gradient(135deg, #1e40af, #5b21b6);
    color: white;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Shine effect on header */
.domain-header::after {
    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;
}

.domain-card:hover .domain-header::after {
    left: 100%;
}

.domain-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: iconFloat 3s ease-in-out infinite;
}

.domain-header h3 {
    color: white;
    font-size: 1.6rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.domain-content {
    padding: 30px;
    flex-grow: 1;
}

.domain-content p {
    color: #334155;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
}

.domain-skills {
    list-style: none;
    margin-bottom: 25px;
}

.domain-skills li {
    padding: 10px 0;
    padding-left: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #334155;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
}

.domain-skills li:hover {
    transform: translateX(5px);
    color: #2563eb;
}

.domain-skills li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.domain-skills li:hover::before {
    transform: scale(1.2);
    color: #7c3aed;
}

.domain-skills li:last-child {
    border-bottom: none;
}

.domain-details {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid rgba(37, 99, 235, 0.1);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #334155;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 8px 12px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

.detail-item i {
    color: #2563eb;
    transition: transform 0.3s ease;
}

.detail-item:hover i {
    transform: scale(1.1);
}

.domain-footer {
    padding: 0 30px 30px 30px;
    margin-top: auto;
}

.domain-apply {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    font-size: 1rem;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.domain-apply::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.domain-apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8, #4338ca);
}

.domain-apply:hover::before {
    width: 300px;
    height: 300px;
}

.domain-apply i {
    transition: transform 0.3s ease;
}

.domain-apply:hover i {
    transform: translateX(5px) rotate(5deg);
}

/* Decorative elements for domain cards */
.domain-card::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    bottom: -50px;
    right: -50px;
    transition: all 0.4s ease;
}

.domain-card:hover::after {
    transform: scale(1.5);
    opacity: 0.5;
}

/* Application Process */
.application-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f0fa 100%);
    position: relative;
    overflow: hidden;
}

.application-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.03) 0%, transparent 25%);
    pointer-events: none;
}

.application-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #1e40af, #5b21b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.application-process h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.application-process h2:hover::after {
    width: 150px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, #2563eb, #7c3aed, #ffd700);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.process-step:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 60px -15px rgba(37, 99, 235, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    background: rgba(255, 255, 255, 0.95);
}

.process-step:hover::before {
    opacity: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.process-step p {
    color: #334155;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #1e40af, #5b21b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.faq-section h2:hover::after {
    width: 150px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 
        0 10px 25px -5px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px rgba(37, 99, 235, 0.15);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.faq-item:hover .faq-question::before {
    left: 100%;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e293b;
}

.faq-question i {
    color: #2563eb;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #7c3aed;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 500px;
}

.faq-answer p {
    color: #334155;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #1e40af, #5b21b6);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 40% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 30%);
    pointer-events: none;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    color: white;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.cta .btn-secondary {
    background-color: white;
    color: #1e40af;
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 2;
    animation: fadeInUp 0.8s ease 0.4s both;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta .btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.cta .btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .internship-overview h2,
    .internship-domains h2,
    .application-process h2,
    .faq-section h2,
    .cta h2 {
        font-size: 2.2rem;
    }
    
    .domains-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .internship-overview h2,
    .internship-domains h2,
    .application-process h2,
    .faq-section h2,
    .cta h2 {
        font-size: 2rem;
    }
    
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .domains-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .domain-header h3 {
        font-size: 1.4rem;
    }
    
    .domain-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .detail-item {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .domain-header {
        padding: 25px 20px;
    }
    
    .domain-content {
        padding: 25px;
    }
    
    .domain-footer {
        padding: 0 25px 25px 25px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        margin-right: 15px;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .cta p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .cta .btn-secondary {
        padding: 14px 30px;
        font-size: 1rem;
    }
}
/* Responsive Styles */
@media (max-width: 768px) {
    .internship-domains h2,
    .internship-overview h2,
    .application-process h2,
    .faq-section h2,
    .cta h2 {
        font-size: 2rem;
    }
    
    .domains-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        margin-right: 15px;
    }
}

@media (max-width: 576px) {
    .domain-content {
        padding: 20px;
    }
    
    .domain-footer {
        padding: 0 20px 20px 20px;
    }
    
    .domain-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px;
    }
}

/* ============================
   ADDITIONAL STYLES FOR NEW FEATURES
   ============================ */

/* Form Error Styles */
.form-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #fca5a5;
    background-color: #fef2f2;
}

.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border-color: #10b981;
    background-color: #f0fdf4;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Animation Classes for Scroll Animations */
.service-card,
.domain-card,
.team-member,
.process-step {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.animated,
.domain-card.animated,
.team-member.animated,
.process-step.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Popup Notification Styles (Add if not already present) */
.popup-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    width: calc(100% - 40px);
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.popup-notification.show {
    transform: translateX(0);
}

.popup-notification.success {
    border-left: 4px solid #10b981;
}

.popup-notification.error {
    border-left: 4px solid #ef4444;
}

.popup-notification.info {
    border-left: 4px solid var(--primary-color);
}

.popup-content {
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
}

.popup-content i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.popup-notification.success .popup-content i {
    color: #10b981;
}

.popup-notification.error .popup-content i {
    color: #ef4444;
}

.popup-notification.info .popup-content i {
    color: var(--primary-color);
}

.popup-content p {
    margin: 0;
    flex: 1;
    color: var(--text-color);
    line-height: 1.5;
}

.popup-close {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
    transition: color 0.3s ease;
    flex-shrink: 0;
    margin-left: 5px;
}

.popup-close:hover {
    color: var(--primary-color);
}

/* Form loading state */
.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.fa-spin {
    animation: fa-spin 1s infinite linear;
}

@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive adjustments for popup */
@media (max-width: 768px) {
    .popup-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        width: calc(100% - 20px);
        max-width: none;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* FAQ Styles (if not already in CSS) */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #f9fafb;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f3f4f6;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Smooth transitions for all interactive elements */
.btn,
.service-card,
.domain-card,
.nav-menu a,
.popup-close,
.scroll-to-top,
.faq-question {
    transition: all 0.3s ease;
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
textarea:focus,
select:focus,
.nav-menu a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .cta,
    .scroll-to-top,
    .popup-notification {
        display: none !important;
    }
}

/* ============================
   JOBS PAGE SPECIFIC STYLES
   ============================ */

/* Jobs Header */
.jobs-header {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
}

.jobs-header h1,
.jobs-header p {
    color: white;
}

/* Jobs Overview - Enhanced with Services Detail Effects */
.jobs-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f0fa 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.jobs-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 40% 50%, rgba(255, 215, 0, 0.02) 0%, transparent 30%);
    pointer-events: none;
}

.overview-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #1e40af, #5b21b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.overview-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.overview-content h2:hover::after {
    width: 150px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.overview-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

/* Gradient border effect on hover */
.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, #2563eb, #7c3aed, #ffd700);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.overview-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 60px -15px rgba(37, 99, 235, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    background: rgba(255, 255, 255, 0.95);
}

.overview-card:hover::before {
    opacity: 1;
}

.overview-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.overview-icon i {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.overview-card:hover .overview-icon i {
    transform: scale(1.1) rotate(5deg);
}

/* Icon glow effect */
.overview-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overview-card:hover .overview-icon::after {
    opacity: 1;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.overview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e293b;
    position: relative;
    display: inline-block;
}

.overview-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    transition: width 0.3s ease;
}

.overview-card:hover h3::after {
    width: 50px;
}

.overview-card p {
    color: #334155;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Decorative elements for each card */
.overview-card::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    bottom: -30px;
    right: -30px;
    transition: all 0.4s ease;
}

.overview-card:hover::after {
    transform: scale(1.5);
    opacity: 0.5;
}

/* Current Openings - Enhanced with Services Detail Effects */
.current-openings {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.current-openings::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.02) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.02) 0%, transparent 25%);
    pointer-events: none;
}

.current-openings h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1e40af, #5b21b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.current-openings h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.current-openings h2:hover::after {
    width: 150px;
}

.section-subtitle {
    text-align: center;
    color: #334155;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.jobs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.job-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Gradient border effect on hover */
.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 40px;
    padding: 2px;
    background: linear-gradient(135deg, #2563eb, #7c3aed, #ffd700);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.job-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 60px -15px rgba(37, 99, 235, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    background: rgba(255, 255, 255, 0.95);
}

.job-card:hover::before {
    opacity: 1;
}

.job-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.job-header {
    background: linear-gradient(135deg, #1e40af, #5b21b6);
    color: white;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    overflow: hidden;
}

/* Shine effect on header */
.job-header::after {
    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;
}

.job-card:hover .job-header::after {
    left: 100%;
}

.job-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.job-title-section {
    flex: 1;
}

.job-title-section h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.job-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.job-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.job-tag i {
    font-size: 0.85rem;
}

.job-content {
    padding: 40px;
}

.job-description {
    margin-bottom: 35px;
}

.job-description h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #1e293b;
    position: relative;
    display: inline-block;
}

.job-description h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.job-description:hover h4::after {
    width: 100%;
}

.job-description p {
    color: #334155;
    line-height: 1.8;
    font-size: 1.05rem;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 20px;
    border-left: 5px solid #2563eb;
}

.job-details {
    margin-bottom: 35px;
}

.detail-section {
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.detail-section:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.1);
}

.detail-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-section h4::before {
    content: '';
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.responsibilities,
.requirements,
.benefits {
    list-style: none;
    padding-left: 0;
}

.responsibilities li,
.requirements li,
.benefits li {
    padding: 12px 0;
    color: #334155;
    position: relative;
    padding-left: 35px;
    line-height: 1.6;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.responsibilities li:last-child,
.requirements li:last-child,
.benefits li:last-child {
    border-bottom: none;
}

.responsibilities li:hover,
.requirements li:hover,
.benefits li:hover {
    transform: translateX(5px);
    color: #2563eb;
}

.responsibilities li::before,
.requirements li::before,
.benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.requirements li::before {
    content: '•';
    color: var(--secondary-color);
}

.benefits li::before {
    content: '★';
    color: #f59e0b;
}

.job-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 25px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.stat-item i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 40px;
    text-align: center;
}

.stat-item div {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 3px;
}

.stat-value {
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
}

.job-footer {
    padding: 0 40px 40px 40px;
}

.apply-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.apply-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.apply-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8, #4338ca);
}

.apply-btn:hover::before {
    width: 300px;
    height: 300px;
}

.apply-btn i {
    transition: transform 0.3s ease;
}

.apply-btn:hover i {
    transform: translateX(5px) rotate(5deg);
}

/* Decorative elements for job cards */
.job-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    bottom: -50px;
    right: -50px;
    transition: all 0.4s ease;
}

.job-card:hover::after {
    transform: scale(1.5);
    opacity: 0.5;
}

/* Responsive styles */
@media (max-width: 992px) {
    .job-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px;
    }
    
    .job-icon {
        margin: 0 auto;
    }
    
    .job-title-section h3 {
        font-size: 2rem;
    }
    
    .job-tags {
        justify-content: center;
    }
    
    .job-content {
        padding: 30px;
    }
    
    .job-footer {
        padding: 0 30px 30px 30px;
    }
}

@media (max-width: 768px) {
    .overview-content h2,
    .current-openings h2 {
        font-size: 2rem;
    }
    
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .overview-card {
        padding: 30px 20px;
    }
    
    .job-header {
        padding: 25px;
    }
    
    .job-title-section h3 {
        font-size: 1.8rem;
    }
    
    .job-content {
        padding: 25px;
    }
    
    .detail-section {
        padding: 20px;
    }
    
    .job-stats {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .apply-btn {
        font-size: 1rem;
        padding: 16px;
    }
}

@media (max-width: 576px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .job-badge {
        position: relative;
        top: 0;
        right: 0;
        display: inline-block;
        margin: 20px 20px 0;
    }
    
    .job-header {
        padding: 20px;
    }
    
    .job-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
    
    .job-title-section h3 {
        font-size: 1.5rem;
    }
    
    .job-tags {
        flex-direction: column;
        align-items: stretch;
    }
    
    .job-tag {
        justify-content: center;
    }
    
    .job-content {
        padding: 20px;
    }
    
    .detail-section {
        padding: 15px;
    }
    
    .responsibilities li,
    .requirements li,
    .benefits li {
        font-size: 0.95rem;
        padding-left: 30px;
    }
    
    .responsibilities li::before,
    .requirements li::before,
    .benefits li::before {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
    
    .job-footer {
        padding: 0 20px 20px 20px;
    }
    
    .stat-item {
        padding: 5px;
    }
}
/* Admin Panel Styles - Add to existing style.css */

.admin-login-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.admin-login-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.4);
    color: white;
}

.admin-login-link i {
    font-size: 1rem;
}

/* Responsive adjustments for admin link */
@media (max-width: 768px) {
    .admin-login-link {
        bottom: 10px;
        right: 10px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ============================
   LOGO STYLES
   ============================ */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-image {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}



/* Hide text on mobile, show only logo */
@media (max-width: 768px) {
    
    .logo-image {
        height: 35px;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .logo-image {
        height: 40px;
    }
}

/* Legal Dropdown Styles */
.legal-dropdown {
    position: relative;
}

.legal-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.legal-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f3f4f6;
    color: var(--primary-color);
}

/* Mobile dropdown adjustments */
@media (max-width: 768px) {
    .legal-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        padding-left: 20px;
        display: none;
    }
    
    .legal-dropdown:hover .dropdown-menu,
    .legal-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 8px 0;
    }
}