/* HSN Innovators Website Styles */

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

body {
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    background: #0f172a;
    color: #ffffff;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #f97316 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1e3a8a, #f97316);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 2rem;
    margin: 0 auto 20px;
    animation: pulse 2s ease-in-out infinite;
}

.loading-text {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #f97316;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

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

/* Navigation */
.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-placeholder {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1e3a8a, #f97316);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1rem;
}

.brand-text {
    background: linear-gradient(135deg, #1e3a8a, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #f97316;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(249, 115, 22, 0.7);
}

/* Slide Container */
.slide-container {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 80px;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

/* Slide Backgrounds */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.animated-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #f97316 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hero Section */
.hero-content {
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #f97316);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.brand-highlight {
    background: linear-gradient(135deg, #1e3a8a, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #cbd5e1;
}

.hero-tagline {
    margin-bottom: 2rem;
}

.tagline-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.location-info i {
    color: #f97316;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a, #f97316);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f97316, #1e3a8a);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #f97316;
    color: #f97316;
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(249, 115, 22, 0.1);
    border: 2px solid #f97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #f97316;
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-icon:hover {
    background: rgba(249, 115, 22, 0.3);
    transform: scale(1.1);
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 10%;
    right: 20%;
    animation-delay: 0.5s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 10%;
    animation-delay: 1s;
}

.floating-icon:nth-child(4) {
    bottom: 20%;
    right: 30%;
    animation-delay: 1.5s;
}

.floating-icon:nth-child(5) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

.floating-icon:nth-child(6) {
    top: 70%;
    right: 10%;
    animation-delay: 2.5s;
}

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

/* Slide Content */
.slide-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-content {
    animation: fadeInLeft 1s ease 0.3s both;
}

/* Content Highlights */
.content-highlights {
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    padding: 15px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 10px;
    border-left: 4px solid #f97316;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(249, 115, 22, 0.2);
    transform: translateX(10px);
}

.highlight-item i {
    color: #f97316;
    font-size: 1.5rem;
}

.highlight-item span {
    font-weight: 500;
    font-size: 1.1rem;
}

.slide-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cbd5e1;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    animation: fadeInRight 1s ease 0.5s both;
}

.stat-card {
    background: rgba(30, 58, 138, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(30, 58, 138, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f97316;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #cbd5e1;
    font-weight: 500;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    animation: fadeInUp 1s ease 0.3s both;
}

.service-card {
    background: rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.service-card:hover {
    background: rgba(30, 58, 138, 0.2);
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.service-card p {
    color: #cbd5e1;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.service-features span {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Training List */
.training-list {
    space-y: 20px;
}

.training-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 15px;
    border-left: 4px solid #f97316;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.training-item:hover {
    background: rgba(30, 58, 138, 0.2);
    transform: translateX(10px);
}

.training-item i {
    color: #f97316;
    font-size: 2rem;
    margin-top: 5px;
}

.training-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.training-item p {
    color: #cbd5e1;
    line-height: 1.5;
}

/* Training Visual */
.training-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.certification-badges {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: fadeInRight 1s ease 0.5s both;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(249, 115, 22, 0.1));
    border-radius: 50px;
    border: 2px solid rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(249, 115, 22, 0.2));
    transform: scale(1.05);
}

.badge-item i {
    color: #f97316;
    font-size: 1.5rem;
}

.badge-item span {
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
}

/* BPO Services */
.bpo-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    animation: fadeInUp 1s ease 0.3s both;
}

.client-region {
    background: rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.client-region:hover {
    background: rgba(30, 58, 138, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

.region-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.region-header i {
    color: #f97316;
    font-size: 2rem;
}

.region-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.services-provided {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tag {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

/* Projects Showcase */
.projects-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    animation: fadeInUp 1s ease 0.3s both;
}

.project-card {
    background: rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.project-card:hover {
    background: rgba(30, 58, 138, 0.2);
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.3);
}

.project-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3a8a, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.project-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.project-card p {
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.5;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.project-tags span {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Partnership Features */
.partnership-features {
    space-y: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 15px;
    border-left: 4px solid #f97316;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(30, 58, 138, 0.2);
    transform: translateX(10px);
}

.feature-item i {
    color: #f97316;
    font-size: 2rem;
    margin-top: 5px;
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.feature-item p {
    color: #cbd5e1;
    line-height: 1.5;
}

/* Partnership Visual */
.partnership-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.partnership-network {
    position: relative;
    width: 300px;
    height: 300px;
    animation: fadeInRight 1s ease 0.5s both;
}

.network-node {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.network-node:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.network-node.central {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    font-size: 1rem;
    z-index: 2;
}

.network-node:nth-child(2) {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.network-node:nth-child(3) {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.network-node:nth-child(4) {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.network-node:nth-child(5) {
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

/* Innovation Content */
.innovation-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    animation: fadeInUp 1s ease 0.3s both;
}

.innovation-card {
    background: rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.innovation-card:hover {
    background: rgba(30, 58, 138, 0.2);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.3);
}

.card-header {
    background: linear-gradient(135deg, #1e3a8a, #f97316);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.card-header i {
    font-size: 2.5rem;
    color: white;
}

.card-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.card-body {
    padding: 30px;
}

.card-body p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.6;
}

.achievement-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.metric {
    text-align: center;
    padding: 20px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.metric .number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #f97316;
    margin-bottom: 5px;
}

.metric .label {
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 500;
}

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

.feature-box {
    background: rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: rgba(30, 58, 138, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

.feature-box i {
    font-size: 2.5rem;
    color: #f97316;
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.feature-box p {
    color: #cbd5e1;
    line-height: 1.5;
}

/* Contact Section */
.contact-info {
    animation: fadeInLeft 1s ease 0.3s both;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 15px;
    border-left: 4px solid #f97316;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(30, 58, 138, 0.2);
    transform: translateX(10px);
}

.contact-item i {
    color: #f97316;
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.contact-item p {
    color: #cbd5e1;
    line-height: 1.5;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(249, 115, 22, 0.1);
    border: 2px solid #f97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f97316;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #f97316;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

/* Contact Form */
.contact-form-container {
    animation: fadeInRight 1s ease 0.5s both;
}

.contact-form-container h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
}

.contact-form {
    background: rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 20px;
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(249, 115, 22, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #1e3a8a, #f97316);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #f97316, #1e3a8a);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.submit-btn i {
    font-size: 1.2rem;
}

/* Navigation Controls */
.slide-navigation {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 100%;
    pointer-events: none;
}

.nav-btn {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: #f97316;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* Slide Preview */
.slide-preview {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.preview-container {
    display: flex;
    gap: 10px;
    background: rgba(15, 23, 42, 0.9);
    padding: 15px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.preview-slide {
    width: 40px;
    height: 25px;
    background: rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #f97316;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preview-slide.active {
    background: #f97316;
    color: white;
    transform: scale(1.2);
}

.preview-slide:hover {
    background: rgba(249, 115, 22, 0.4);
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .bpo-services {
        grid-template-columns: 1fr;
    }
    
    .projects-showcase {
        grid-template-columns: 1fr;
    }
    
    .innovation-features {
        grid-template-columns: 1fr;
    }
    
    .achievement-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
    
    .slide-preview {
        bottom: 15px;
    }
    
    .preview-container {
        padding: 10px 15px;
    }
    
    .preview-slide {
        width: 30px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .floating-elements {
        display: none;
    }
    
    .partnership-network {
        width: 250px;
        height: 250px;
    }
    
    .network-node {
        width: 60px;
        height: 60px;
        font-size: 0.8rem;
    }
    
    .network-node.central {
        width: 80px;
        height: 80px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .slide {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .achievement-metrics {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .slide-indicators {
        display: none;
    }
    
    .certification-badges {
        gap: 20px;
    }
    
    .badge-item {
        padding: 15px 20px;
    }
}


/* Logo Styling */
.navbar-logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
    border-radius: 8px;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
}

.brand-text {
    color: #ffffff;
    font-weight: 700;
}

/* Training Categories Styling */
.training-categories {
    margin-bottom: 20px;
}

.category-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #f97316;
}

.category-item i {
    font-size: 1.5rem;
    color: #f97316;
    margin-right: 15px;
    margin-top: 5px;
}

.category-item h4 {
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.category-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item li {
    color: #cbd5e1;
    margin-bottom: 4px;
    padding-left: 15px;
    position: relative;
}

.category-item li:before {
    content: "•";
    color: #f97316;
    position: absolute;
    left: 0;
}


/* Slide 4 Training Programs - Improved Layout */
#slide4 .training-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 10px;
}

#slide4 .category-item {
    padding: 12px 15px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #f97316;
}

#slide4 .category-item h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #f97316;
}

#slide4 .category-item ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
}

#slide4 .category-item li {
    background: rgba(249, 115, 22, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #cbd5e1;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

#slide4 .category-item li:before {
    display: none;
}

#slide4 .training-visual {
    margin-top: 20px;
}

#slide4 .certification-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

#slide4 .badge-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

#slide4 .badge-item i {
    font-size: 1.5rem;
    color: #f97316;
    margin-bottom: 8px;
}

#slide4 .badge-item span {
    display: block;
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 500;
}

/* Responsive adjustments for Slide 4 */
@media (max-width: 768px) {
    #slide4 .training-categories {
        max-height: 60vh;
    }
    
    #slide4 .category-item h4 {
        font-size: 1rem;
    }
    
    #slide4 .category-item li {
        font-size: 0.8rem;
        padding: 3px 6px;
    }
    
    #slide4 .certification-badges {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}


/* Slide 7 Educational Partnerships - Restore Graphics */
.partnership-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partnership-network {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-node {
    position: absolute;
    background: linear-gradient(135deg, #1e3a8a, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.network-node:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.5);
}

.network-node.central {
    width: 120px;
    height: 120px;
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f97316, #1e3a8a);
    z-index: 10;
    animation-delay: 0s;
}

.network-node:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 20px;
    left: 50px;
    animation-delay: 0.5s;
}

.network-node:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 20px;
    right: 50px;
    animation-delay: 1s;
}

.network-node:nth-child(4) {
    width: 80px;
    height: 80px;
    bottom: 80px;
    left: 20px;
    animation-delay: 1.5s;
}

.network-node:nth-child(5) {
    width: 80px;
    height: 80px;
    bottom: 80px;
    right: 20px;
    animation-delay: 2s;
}

/* Connection lines */
.partnership-network::before,
.partnership-network::after {
    content: '';
    position: absolute;
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.3), rgba(30, 58, 138, 0.3));
    z-index: 1;
}

.partnership-network::before {
    width: 2px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.partnership-network::after {
    width: 200px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

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

/* Partnership features styling */
.partnership-features .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #f97316;
    transition: all 0.3s ease;
}

.partnership-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.partnership-features .feature-item i {
    font-size: 1.8rem;
    color: #f97316;
    margin-right: 20px;
    margin-top: 5px;
}

.partnership-features .feature-item h4 {
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1.2rem;
}

.partnership-features .feature-item p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.5;
}

/* Responsive adjustments for Slide 7 */
@media (max-width: 768px) {
    .partnership-visual {
        height: 300px;
        margin-top: 30px;
    }
    
    .network-node.central {
        width: 100px;
        height: 100px;
        font-size: 0.9rem;
    }
    
    .network-node:not(.central) {
        width: 70px;
        height: 70px;
        font-size: 0.8rem;
    }
    
    .partnership-features .feature-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .partnership-features .feature-item i {
        font-size: 1.5rem;
        margin-right: 15px;
    }
}


/* Enhanced Responsive Design for All Devices */

/* Extra Small Devices (phones, 576px and down) */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-logo-img {
        height: 80px;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-logo {
        height: 35px;
    }
    
    .slide-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .floating-elements {
        display: none;
    }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .slide-title {
        font-size: 3rem;
    }
}

/* Landscape Orientation Adjustments */
@media (orientation: landscape) and (max-height: 600px) {
    .slide {
        padding: 20px 0;
    }
    
    .hero-logo-img {
        height: 60px;
    }
    
    .slide-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .partnership-visual {
        height: 250px;
    }
    
    #slide4 .training-categories {
        max-height: 50vh;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .indicator {
        width: 15px;
        height: 15px;
        margin: 0 8px;
    }
    
    .service-card:hover,
    .feature-item:hover,
    .network-node:hover {
        transform: none;
    }
    
    .submit-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
        min-height: 50px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 50px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* High DPI Display Adjustments */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .navbar-logo,
    .hero-logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .slide-navigation,
    .slide-preview,
    .loading-screen {
        display: none !important;
    }
    
    .slide {
        page-break-inside: avoid;
        page-break-after: always;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-elements,
    .animated-bg {
        animation: none !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    /* Already using dark theme, but ensure consistency */
    body {
        background: #0f172a;
        color: #ffffff;
    }
}

/* Ensure proper viewport handling */
.slide-container {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.slide {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Fix for very small screens */
@media (max-width: 320px) {
    .navbar-brand {
        font-size: 1rem;
    }
    
    .navbar-logo {
        height: 30px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 15px;
    }
    
    .contact-form {
        padding: 15px;
    }
}

