/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: #ffffff;
    color: #1ea9ea;
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* main color #1ea9ea , white #ffffff */
.brand-bg {
    background-color: #1ea9ea;
}
.brand-text {
    color: #1ea9ea;
}
.brand-border {
    border-color: #1ea9ea;
}

/* ===== HEADER / NAV ===== */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(30, 169, 234, 0.06); 
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 2px solid rgba(30, 169, 234, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: opacity 0.3s;

}
.logo i {
    color: #1ea9ea; 
    margin-right: 6px;
    font-size: 2rem;
    vertical-align: middle;
    transition: transform 0.3s ease;
}
.logo:hover i {
    opacity: 0.9;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    font-weight: 500;
}
.nav-links a {
    text-decoration: none;
    color: #1ea9ea;
    font-size: 1.2rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.2s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #1ea9ea; 
    transition: width 0.25s ease-in-out;
}
.nav-links a:hover {
    color: #1ea9ea;
    opacity: 0.8;
}
.nav-links a:hover::after {
    width: 100%;
}

.nav-logo-img {
    height: 80px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.nav-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1ea9ea;
    letter-spacing: -0.02em;
}

/* Alternative: Logo only (no text) */
.logo-image-only .nav-logo-img {
    height: 50px;
}

.logo-image-only .nav-logo-text {
    display: none;
}

/* Alternative: Logo above text (stacked) */
.logo-stacked {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
}

.logo-stacked .nav-logo-img {
    height: 40px;
}

.logo-stacked .nav-logo-text {
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    font-weight: 500;
}

.nav-links a {
    text-decoration: none;
    color: #1ea9ea;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.nav-links a i {
    margin-right: 5px;
    font-size: 1rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #1ea9ea;
    transition: width 0.25s ease-in-out;
}

.nav-links a:hover {
    color: #1ea9ea;
    opacity: 0.8;
}

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


/* ===== SECTIONS ===== */
section {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}


@keyframes floatBlob {
    0% { transform: translate(0,0) rotate(0deg) scale(1); }
    100% { transform: translate(-3%, 4%) rotate(8deg) scale(1.08); }
}

.home-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 2;
    gap: 2rem;
}
.home-left {
    width: 100%;
    max-width: 800px;
    animation: fadeUp 1s ease-out;
}
.home-left h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1ea9ea;
    margin-bottom: 0.2rem;
}
.home-left p {
    font-size: 1.3rem;
    color: #2c5f8a;
    /* margin: 1.5rem 0 2.5rem; */
    max-width: 600px;
    opacity: 0.9;
}
.btn-group {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.btn-primary {
    background-color: #1ea9ea;
    color: white;
    border: 2px solid #1ea9ea;
    padding: 0.9rem 2.2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 6px 15px rgba(20,24,63,0.2);
}
.btn-primary i {
    transition: transform 0.2s;
}
.btn-primary:hover {
    background-color: transparent;
    color: #1ea9ea;
    box-shadow: 0 10px 20px rgba(20,24,63,0.25);
    transform: scale(1.02);
}
.btn-primary:hover i {
    transform: translateX(5px);
}
.btn-outline {
    background-color: transparent;
    color: #1ea9ea;
    border: 2px solid #1ea9ea;
    padding: 0.9rem 2.2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-outline:hover {
    background-color: #1ea9ea;
    color: white;
    transform: translateY(-3px);
}

.home-right {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    animation: fadeScale 1s ease-out 0.2s both;
}
.home-right i {
    font-size: 20vw;
    color: #1ea9ea;
    opacity: 0.2;
    transition: all 0.4s;
}
.home-right:hover i {
    opacity: 0.4;
    transform: scale(1.02) rotate(2deg);
}

/* about section */
.about-section {
    background-color: #ffffff;
    border-top: 1px solid rgba(20,24,63,0.07);
    border-bottom: 1px solid rgba(20,24,63,0.07);
}
.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: #1ea9ea;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 4px;
    background: #1ea9ea;
    border-radius: 4px;
}
.about-grid {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.about-text {
    flex: 2 1 400px;
    font-size: 1.2rem;
    color: #2b2f5c;
    animation: fadeLeft 0.8s;
}
.about-text p {
    margin-bottom: 1.8rem;
}
.about-highlight {
    flex: 1 1 250px;
    background: #f4f5fc;
    padding: 2rem;
    border-radius: 32px;
    box-shadow: 0 20px 35px -8px rgba(20,24,63,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeRight 0.8s;
}
.about-highlight:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 45px -8px rgba(20,24,63,0.2);
}
.about-highlight i {
    font-size: 2.8rem;
    color: #1ea9ea;
    margin-bottom: 1rem;
}
.about-highlight h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.about-highlight p {
    color: #3d4170;
}

/* TABS section */
.tabs-section {
    background: #ffffff;
    padding-bottom: 5rem;
}
.tab-container {
    margin-top: 3rem;
    background: #fbfcff;
    border-radius: 48px;
    padding: 2rem 2.5rem;
    box-shadow: 0 20px 40px -12px rgba(20,24,63,0.12);
    border: 1px solid rgba(20,24,63,0.05);
    transition: box-shadow 0.4s;
}
.tab-container:hover {
    box-shadow: 0 30px 50px -15px rgba(20,24,63,0.18);
}
.tab-headers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-bottom: 2px solid rgba(20,24,63,0.1);
    padding-bottom: 0.2rem;
}
.tab-btn {
    background: none;
    border: none;
    padding: 1rem 2.2rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5e6290;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 40px 40px 0 0;
    position: relative;
    overflow: hidden;
}
.tab-btn i {
    margin-right: 8px;
}
.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 4px;
    background: #1ea9ea;
    transition: width 0.25s ease;
    border-radius: 4px 4px 0 0;
}
.tab-btn.active {
    color: #1ea9ea;
    background: rgba(20,24,63,0.03);
}
.tab-btn.active::after {
    width: 70%;
}
.tab-btn:hover:not(.active) {
    color: #1ea9ea;
    background: rgba(20,24,63,0.02);
}
.tab-panels {
    padding: 2.5rem 0.5rem 0.8rem 0.5rem;
}
.tab-panel {
    display: none;
    animation: fadePanel 0.6s ease forwards;
}
.tab-panel.active-panel {
    display: block;
}
@keyframes fadePanel {
    0% { opacity: 0.3; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.tab-card {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
}
.tab-icon-large i {
    font-size: 8rem;
    color: #1ea9ea;
    opacity: 0.25;
    transition: opacity 0.3s, transform 0.4s;
}
.tab-icon-large:hover i {
    opacity: 0.45;
    transform: scale(1.02) rotate(2deg);
}
.tab-content h2 {
    font-size: 2rem;
    color: #1ea9ea;
    margin-bottom: 1rem;
}
.tab-content p {
    font-size: 1.2rem;
    max-width: 700px;
    color: #373b6b;
}
.feature-list {
    margin-top: 1.5rem;
    list-style: none;
}
.feature-list li {
    margin: 0.7rem 0;
    font-size: 1.1rem;
}
.feature-list i {
    color: #1ea9ea;
    margin-right: 10px;
}

/* ===== CALL US SECTION ===== */
.callus-section {
    background: linear-gradient(135deg, #1ea9ea 0%, #1e2572 100%);
    color: white;
    padding: 5rem 5%;
    margin: 2rem auto;
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 50px -15px rgba(20,24,63,0.4);
}

.callus-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    animation: pulseRing 4s infinite;
}

.callus-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    animation: pulseRing 6s infinite reverse;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.1; }
    100% { transform: scale(1); opacity: 0.3; }
}

.callus-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.callus-content {
    flex: 1 1 400px;
    animation: slideInLeft 1s ease-out;
}

.callus-label {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.9;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.callus-label i {
    font-size: 2rem;
    animation: ringBell 2s infinite;
}

@keyframes ringBell {
    0%, 100% { transform: rotate(0); }
    20% { transform: rotate(15deg); }
    40% { transform: rotate(-15deg); }
    60% { transform: rotate(8deg); }
    80% { transform: rotate(-8deg); }
}

.callus-number {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: linear-gradient(to right, #fff, #e0e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glowText 2s ease-in-out infinite alternate;
}

@keyframes glowText {
    from { text-shadow: 0 0 10px rgba(255,255,255,0.3); }
    to { text-shadow: 0 0 30px rgba(255,255,255,0.6); }
}

.callus-description {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 500px;
}

.callus-image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out, floatPerson 4s ease-in-out infinite;
}

.callus-image i {
    font-size: 15rem;
    color: rgba(255,255,255,0.9);
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
    transition: all 0.5s;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.2);
}

.callus-image:hover i {
    transform: scale(1.05) rotate(3deg);
    color: white;
    border-color: rgba(255,255,255,0.4);
}

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

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

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

.callus-availability {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 1rem;
}

.callus-availability i {
    color: #4ade80;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* animations global */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeScale {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes fadeLeft {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
    0% { opacity: 0; transform: translateX(30px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(20,24,63,0.03);
    border-radius: 50%;
    z-index: 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: #1ea9ea;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #1ea9ea;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #4a4e7a;
    max-width: 600px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    background: white;
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 20px 40px -15px rgba(20,24,63,0.15);
    border: 1px solid rgba(20,24,63,0.05);
}

/* Contact Information Styles */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9ff;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #1ea9ea;
    box-shadow: 0 10px 25px -8px rgba(20,24,63,0.2);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #1ea9ea;
    box-shadow: 0 5px 15px -5px rgba(20,24,63,0.2);
    transition: all 0.3s;
}

.info-card:hover .info-icon {
    background: #1ea9ea;
    color: white;
    transform: rotate(360deg);
}

.info-content h3 {
    font-size: 1.2rem;
    color: #1ea9ea;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #4a4e7a;
    line-height: 1.6;
    font-size: 1rem;
}

.info-content a {
    color: #4a4e7a;
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: #1ea9ea;
}

/* Social Links */
.social-links {
    margin-top: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1ea9ea 0%, #1e2572 100%);
    border-radius: 20px;
    color: white;
}

.social-links h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: white;
    color: #1ea9ea;
    transform: translateY(-3px);
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: #f8f9ff;
    border-radius: 24px;
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-weight: 600;
    color: #1ea9ea;
    font-size: 0.95rem;
}

.form-control {
    padding: 0.8rem 1rem;
    border: 2px solid rgba(20,24,63,0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #1ea9ea;
    box-shadow: 0 0 0 4px rgba(20,24,63,0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    cursor: pointer;
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-weight: normal !important;
    cursor: pointer;
    color: #4a4e7a;
    font-size: 0.95rem !important;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #1ea9ea;
}

.submit-btn {
    background: #1ea9ea;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #1e2572;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(20,24,63,0.3);
}

.submit-btn i {
    transition: transform 0.3s;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.form-note {
    font-size: 0.9rem;
    color: #6b6f9a;
    text-align: center;
    margin-top: 0.5rem;
}

/* ===== MAP SECTION ===== */
.map-section {
    margin-top: 4rem;
    background: white;
    border-radius: 32px;
    padding: 2rem;
    box-shadow: 0 20px 40px -15px rgba(20,24,63,0.15);
    border: 1px solid rgba(20,24,63,0.05);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease;
}

.map-title {
    font-size: 1.8rem;
    color: #1ea9ea;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.map-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #1ea9ea;
    border-radius: 2px;
}

.map-container {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(20,24,63,0.2);
    border: 3px solid white;
    transition: all 0.3s;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(20,24,63,0.3);
}

.map-container iframe {
    display: block;
    transition: all 0.3s;
}

.map-container iframe:hover {
    transform: scale(1.02);
}

.map-overlay {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9ff;
    border-radius: 16px;
    flex-wrap: wrap;
    gap: 1rem;
}

.map-address-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #1ea9ea;
    font-weight: 500;
}

.map-address-badge i {
    font-size: 1.2rem;
    color: #ef4444;
    animation: bounce 2s infinite;
}

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

.map-direction-btn {
    background: #1ea9ea;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #1ea9ea;
}

.map-direction-btn:hover {
    background: white;
    color: #1ea9ea;
    transform: translateX(5px);
}

.map-direction-btn i {
    transition: transform 0.3s;
}

.map-direction-btn:hover i {
    transform: translateX(3px);
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: #16437d;
    color: white;
    padding: 4rem 5% 2rem;
    margin-top: 4rem;
    border-radius: 40px 40px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    animation: floatBlob 20s infinite alternate;
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.02);
    border-radius: 50%;
    animation: floatBlob 15s infinite alternate-reverse;
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Footer Main Grid */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.8fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Footer Columns */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* Brand Column */
.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo i {
    color: white;
}

.footer-description {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    /* margin-bottom: 1rem; */
}

/* Social Icons in Footer */
.footer-social h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-social .social-icons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

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

.footer-social .social-icon:hover {
    background: white;
    color: #1ea9ea;
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Contact Details */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-contact li i {
    min-width: 20px;
    font-size: 1.1rem;
    color: white;
    margin-top: 3px;
}

.footer-contact li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact li a:hover {
    color: white;
}

/* Subscribe Section */
.footer-subscribe {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

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

.subscribe-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.subscribe-text p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.subscribe-form {
    flex: 1;
    min-width: 400px;
}

.subscribe-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.subscribe-input {
    flex: 1;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255,255,255,0.05);
    color: white;
    transition: all 0.3s;
}

.subscribe-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.subscribe-input:focus {
    outline: none;
    border-color: white;
    background: rgba(255,255,255,0.1);
}

.subscribe-btn {
    padding: 1rem 2rem;
    background: white;
    color: #1ea9ea;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.3);
}

.subscribe-btn i {
    transition: transform 0.3s;
}

.subscribe-btn:hover i {
    transform: translateX(5px);
}

.subscribe-note {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-bottom-links .separator {
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
}

/* ===== HOME VIDEO SECTION ===== */
/* .home-video-container {
    width: 100%;
    margin-top: 4rem;
    padding: 0 5%;
    position: relative;
    z-index: 2;
} */

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(30, 169, 234, 0.3);
    border: 3px solid white;
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px -20px rgba(30, 169, 234, 0.4);
}

.home-video {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.video-wrapper:hover .home-video {
    transform: scale(1.02);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 169, 234, 0.2) 0%, rgba(21, 133, 199, 0.1) 100%);
    pointer-events: none;
    transition: opacity 0.3s;
}

.video-wrapper:hover .video-overlay {
    opacity: 0.7;
}

.video-caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 3;
    animation: fadeInUp 1s ease;
}

.video-caption h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.video-caption p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
}

/* Video Play Button (Optional) */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 4;
    border: 2px solid white;
}

.video-play-btn i {
    font-size: 2rem;
    color: white;
    margin-left: 5px;
}

.video-play-btn:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn:hover i {
    color: #1ea9ea;
}

/* If you want a darker overlay for better text readability */
.video-wrapper.dark-overlay .video-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
}

/* about page css */
.about-hero {
            background: linear-gradient(135deg, #1ea9ea 0%, #1e2572 100%);
            color: white;
            padding: 6rem 5%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            animation: floatBlob 20s infinite alternate;
        }

        .about-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: rgba(255,255,255,0.03);
            border-radius: 50%;
            animation: floatBlob 15s infinite alternate-reverse;
        }

        @keyframes floatBlob {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(-30px, 30px) scale(1.1); }
        }

        .about-hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
            animation: fadeInDown 1s ease;
        }

        .about-hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.95;
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease;
        }

        .about-hero .hero-icon {
            font-size: 5rem;
            margin-bottom: 2rem;
            opacity: 0.8;
            animation: pulse 3s infinite;
        }

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

        /* Main Content */
        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 5%;
        }

        .intro-section {
            background: white;
            border-radius: 32px;
            padding: 3rem;
            box-shadow: 0 20px 40px -15px rgba(20,24,63,0.1);
            margin-bottom: 4rem;
            border: 1px solid rgba(20,24,63,0.05);
            transition: transform 0.3s;
        }

        .intro-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 50px -20px rgba(20,24,63,0.15);
        }

        .intro-section p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #2c3063;
            margin-bottom: 1.5rem;
        }

        .intro-section p:last-child {
            margin-bottom: 0;
        }

        .company-name {
            font-size: 2.5rem;
            color: #1ea9ea;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .company-name i {
            color: #1ea9ea;
            margin-right: 10px;
        }

        .highlight {
            font-weight: 700;
            color: #1ea9ea;
            background: linear-gradient(120deg, rgba(20,24,63,0.1) 0%, rgba(20,24,63,0) 80%);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
        }

        /* Core Divisions */
        .section-title {
            font-size: 2.5rem;
            color: #1ea9ea;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: #1ea9ea;
            border-radius: 2px;
        }

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

        .division-card {
            background: white;
            border-radius: 24px;
            padding: 2rem;
            box-shadow: 0 15px 30px -10px rgba(20,24,63,0.08);
            transition: all 0.3s;
            border: 1px solid rgba(20,24,63,0.05);
            text-align: center;
        }

        .division-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 40px -15px rgba(20,24,63,0.15);
            border-color: #1ea9ea;
        }

        .division-icon {
            width: 80px;
            height: 80px;
            background: rgba(20,24,63,0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: #1ea9ea;
            transition: all 0.3s;
        }

        .division-card:hover .division-icon {
            background: #1ea9ea;
            color: white;
            transform: rotate(360deg);
        }

        .division-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #1ea9ea;
        }

        .division-card p {
            color: #4a4e7a;
            line-height: 1.6;
        }

        /* Specialized Divisions */
        .specialized-section {
            background: #f8f9ff;
            border-radius: 40px;
            padding: 3rem;
            margin-bottom: 4rem;
        }

        .specialized-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .specialized-item {
            background: white;
            border-radius: 20px;
            padding: 1.8rem;
            box-shadow: 0 10px 20px -8px rgba(20,24,63,0.05);
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .specialized-item:hover {
            transform: translateX(5px);
            box-shadow: 0 15px 25px -10px rgba(20,24,63,0.1);
            background: #1ea9ea;
            color: white;
        }

        .specialized-item:hover i,
        .specialized-item:hover h4,
        .specialized-item:hover p {
            color: white;
        }

        .specialized-item i {
            font-size: 2rem;
            color: #1ea9ea;
            min-width: 50px;
            text-align: center;
        }

        .specialized-content {
            flex: 1;
        }

        .specialized-content h4 {
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
            color: #1ea9ea;
        }

        .specialized-content p {
            font-size: 0.95rem;
            color: #6b6f9a;
        }

        /* Mission Statement */
        .mission-section {
            background: linear-gradient(135deg, #1ea9ea 0%, #1e2572 100%);
            color: white;
            padding: 4rem;
            border-radius: 40px;
            text-align: center;
            margin-top: 4rem;
        }

        .mission-section h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }

        .mission-section p {
            font-size: 1.3rem;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.8;
            opacity: 0.95;
        }

        .mission-section i {
            font-size: 4rem;
            margin-bottom: 2rem;
            opacity: 0.8;
        }
/* about page css */

/* projects css */
/* Projects Header */
        .projects-header {
            background: linear-gradient(135deg, #1ea9ea 0%, #1e2572 100%);
            color: white;
            padding: 4rem 5%;
            text-align: center;
        }

        .projects-header h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            animation: fadeInDown 1s ease;
        }

        .projects-header p {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 1s ease;
        }

        /* Projects Grid */
        .projects-grid-section {
            padding: 4rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 2rem;
        }

        .project-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 15px 30px -10px rgba(20,24,63,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            animation: fadeIn 0.8s ease;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 40px -15px rgba(20,24,63,0.2);
        }

        .project-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(45deg, #1ea9ea, #2a3170);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .project-image i {
            font-size: 5rem;
            color: rgba(255,255,255,0.3);
            transition: all 0.3s;
        }

        .project-card:hover .project-image i {
            transform: scale(1.1);
            color: rgba(255,255,255,0.5);
        }

        .project-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(20,24,63,0.2), rgba(255,255,255,0.1));
        }

        .project-content {
            padding: 1.8rem;
        }

        .project-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1ea9ea;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .project-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 3px;
            background: #1ea9ea;
            transition: width 0.3s;
        }

        .project-card:hover .project-title::after {
            width: 100%;
        }

        .project-excerpt {
            color: #4a4e7a;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .view-details {
            color: #1ea9ea;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s;
        }

        .view-details i {
            transition: transform 0.3s;
        }

        .project-card:hover .view-details {
            gap: 1rem;
        }

        .project-card:hover .view-details i {
            transform: translateX(5px);
        }

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

        /* No projects message */
        .no-projects {
            text-align: center;
            padding: 4rem;
            background: white;
            border-radius: 24px;
            box-shadow: 0 15px 30px -10px rgba(20,24,63,0.1);
        }

        .no-projects i {
            font-size: 5rem;
            color: #1ea9ea;
            opacity: 0.3;
            margin-bottom: 1rem;
        }


/* projects css */

/* careers css */
* Careers Header */
        .careers-header {
            background: linear-gradient(135deg, #1ea9ea 0%, #1e2572 100%);
            color: white;
            padding: 5rem 5%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .careers-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            animation: floatBlob 15s infinite alternate;
        }

        .careers-header::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: rgba(255,255,255,0.03);
            border-radius: 50%;
            animation: floatBlob 20s infinite alternate-reverse;
        }

        @keyframes floatBlob {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(-30px, 30px) scale(1.1); }
        }

        .careers-header h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            animation: fadeInDown 1s ease;
            position: relative;
            z-index: 2;
        }

        .careers-header p {
            font-size: 1.3rem;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 1s ease;
            position: relative;
            z-index: 2;
        }

        .careers-header .stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 3rem;
            position: relative;
            z-index: 2;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Search and Filter */
        .search-section {
            padding: 2rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .search-container {
            background: white;
            border-radius: 60px;
            padding: 0.5rem;
            display: flex;
            gap: 0.5rem;
            box-shadow: 0 10px 30px -10px rgba(20,24,63,0.1);
            margin-top: -3rem;
            position: relative;
            z-index: 10;
        }

        .search-input {
            flex: 1;
            padding: 1.2rem 2rem;
            border: none;
            border-radius: 60px;
            font-size: 1.1rem;
            outline: none;
        }

        .search-input:focus {
            box-shadow: inset 0 0 0 2px #1ea9ea;
        }

        .department-filter {
            padding: 1.2rem 2rem;
            border: none;
            border-radius: 60px;
            font-size: 1.1rem;
            background: #f0f2ff;
            color: #1ea9ea;
            cursor: pointer;
            outline: none;
            min-width: 200px;
        }

        .search-btn {
            background: #1ea9ea;
            color: white;
            border: none;
            border-radius: 60px;
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .search-btn:hover {
            background: #1e2572;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px -5px rgba(20,24,63,0.3);
        }

        /* Jobs Section */
        .jobs-section {
            padding: 2rem 5% 4rem;
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .jobs-count {
            font-size: 1.2rem;
            color: #4a4e7a;
        }

        .jobs-count span {
            color: #1ea9ea;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .sort-select {
            padding: 0.8rem 1.5rem;
            border: 2px solid rgba(20,24,63,0.1);
            border-radius: 30px;
            font-size: 1rem;
            color: #1ea9ea;
            background: white;
            cursor: pointer;
            outline: none;
        }

        /* Job Cards */
        .jobs-grid {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .job-card {
            background: white;
            border-radius: 24px;
            padding: 2rem;
            box-shadow: 0 10px 30px -10px rgba(20,24,63,0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            cursor: pointer;
            animation: fadeIn 0.8s ease;
        }

        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px -15px rgba(20,24,63,0.15);
            border-color: #1ea9ea;
        }

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

        .job-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1ea9ea;
            margin-bottom: 0.5rem;
        }

        .job-badge {
            background: #1ea9ea;
            color: white;
            padding: 0.5rem 1.2rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .job-details {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 1.5rem 0;
        }

        .job-detail-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: #4a4e7a;
        }

        .job-detail-item i {
            color: #1ea9ea;
            font-size: 1.2rem;
            width: 24px;
        }

        .job-description {
            color: #4a4e7a;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .job-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(20,24,63,0.1);
        }

        .posted-date {
            color: #6b6f9a;
            font-size: 0.95rem;
        }

        .view-job-btn {
            background: transparent;
            color: #1ea9ea;
            border: 2px solid #1ea9ea;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .view-job-btn:hover {
            background: #1ea9ea;
            color: white;
            gap: 1rem;
        }

        /* No Jobs */
        .no-jobs {
            text-align: center;
            padding: 4rem;
            background: white;
            border-radius: 24px;
            box-shadow: 0 10px 30px -10px rgba(20,24,63,0.08);
        }

        .no-jobs i {
            font-size: 5rem;
            color: #1ea9ea;
            opacity: 0.3;
            margin-bottom: 1rem;
        }

        .no-jobs h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        /* Culture Section */
        .culture-section {
            background: white;
            padding: 4rem 5%;
            margin: 2rem 0;
        }

        .culture-title {
            font-size: 2.5rem;
            color: #1ea9ea;
            text-align: center;
            margin-bottom: 3rem;
        }

        .culture-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .culture-card {
            text-align: center;
            padding: 2rem;
            border-radius: 20px;
            background: #f8f9ff;
            transition: all 0.3s;
        }

        .culture-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 30px -10px rgba(20,24,63,0.1);
        }

        .culture-card i {
            font-size: 3rem;
            color: #1ea9ea;
            margin-bottom: 1rem;
        }

        .culture-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .culture-card p {
            color: #4a4e7a;
            line-height: 1.6;
        }

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

/* careers css */

/* project details css */
 /* Project Details */
        .project-details-container {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 5%;
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #14183f;
            text-decoration: none;
            font-size: 1.1rem;
            margin-bottom: 2rem;
            transition: gap 0.3s;
        }

        .back-button:hover {
            gap: 1rem;
        }

        .project-details-card {
            background: white;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 30px 50px -20px rgba(20,24,63,0.2);
            animation: fadeIn 0.8s ease;
        }

        .project-details-image {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, #14183f, #2a3170);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .project-details-image i {
            font-size: 10rem;
            color: rgba(255,255,255,0.2);
            animation: pulse 3s infinite;
        }

        .project-details-content {
            padding: 3rem;
        }

        .project-details-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #14183f;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .project-details-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: #14183f;
            border-radius: 2px;
        }

        .project-meta {
            display: flex;
            gap: 2rem;
            margin: 2rem 0;
            padding: 1.5rem 0;
            border-top: 1px solid rgba(20,24,63,0.1);
            border-bottom: 1px solid rgba(20,24,63,0.1);
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .meta-item i {
            font-size: 1.5rem;
            color: #14183f;
        }

        .project-details-description {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #2c3063;
            margin: 2rem 0;
        }

        .share-section {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(20,24,63,0.1);
        }

        .share-label {
            font-weight: 600;
            color: #14183f;
        }

        .share-icons {
            display: flex;
            gap: 1rem;
        }

        .share-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f0f2ff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #14183f;
            text-decoration: none;
            transition: all 0.3s;
        }

        .share-icon:hover {
            background: #14183f;
            color: white;
            transform: translateY(-3px);
        }

        .related-projects {
            margin-top: 4rem;
        }

        .related-title {
            font-size: 2rem;
            color: #14183f;
            margin-bottom: 2rem;
        }

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

        .related-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 20px -8px rgba(20,24,63,0.1);
            transition: all 0.3s;
            cursor: pointer;
        }

        .related-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 30px -12px rgba(20,24,63,0.2);
        }

        .related-image {
            height: 150px;
            background: linear-gradient(135deg, #14183f, #2a3170);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .related-image i {
            font-size: 3rem;
            color: rgba(255,255,255,0.2);
        }

        .related-content {
            padding: 1.5rem;
        }

        .related-content h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .video-text-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.video-text-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 2rem 0 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Override button styles for video background */
.video-text-content .btn-primary {
    background-color: #1ea9ea;
    border-color: #1ea9ea;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.video-text-content .btn-primary:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

.video-text-content .btn-outline {
    color: white;
    border-color: white;
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

.video-text-content .btn-outline:hover {
    background-color: white;
    color: #1ea9ea;
    border-color: white;
}

/* Optional: Add a subtle parallax effect */
.video-background {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.home-section.video-bg-section:hover .video-background {
    transform: scale(1);
}


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

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.2; }
            50% { transform: scale(1.05); opacity: 0.3; }
        }

        @media (max-width: 768px) {
            .video-text-content h1 {
        font-size: 2.5rem;
    }
    
    .video-text-content p {
        font-size: 1.1rem;
    }
    
    .video-text-content .btn-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .video-text-content .btn-primary,
    .video-text-content .btn-outline {
        width: 100%;
        text-align: center;
    }
            .project-details-title {
                font-size: 2rem;
            }
            .project-details-image {
                height: 300px;
            }
            .project-meta {
                flex-direction: column;
                gap: 1rem;
            }
        }
/* project details css */


/* home bg video */
/* ===== HOME SECTION WITH VIDEO BACKGROUND ===== */
.home-section.video-bg-section {
    position: relative;
    width: 100%; /* Full viewport width */
    height: 100vh; /* Full viewport height */
    min-height: 600px;
    padding: 0;
    margin: 20;
    left: 0;
    right: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: left;
    background-color: #000;
}

/* Video Background Container */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Video element - properly centered */
.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Ensures video covers the area without distortion */
}

/* Dark overlay for better text readability */
.video-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

/* Content positioned over video */
.video-content {
   position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%; /* Balanced padding on left and right */
    display: flex;
    justify-content: flex-start; /* Align content to left */
    align-items: center;
}

.video-text-content {
     width: 100%;
    max-width: 700px; /* Limit text width for readability */
    margin: 0; /* Remove auto margins */
    animation: fadeInUp 1.5s ease;
    color: white;
}

.video-text-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin: 0 0 0.5rem; /* Left aligned */
    text-align: left;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    /* border: wheat 2px solid; */
    width: 800px;
}

.video-text-content p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.95);
    margin: 1.5rem 0 2.5rem; /* Left aligned */
    max-width: 600px;
    text-align: left;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Button styles for video background */
.video-text-content .btn-group {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 100%;
}

.video-text-content .btn-primary {
    background-color: #1ea9ea;
    border: 2px solid #1ea9ea;
    color: white;
    padding: 0.9rem 2.2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.video-text-content .btn-primary:hover {
    background-color: transparent;
    color: white;
    border-color: white;
    transform: scale(1.02);
}

.video-text-content .btn-outline {
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    color: white;
    border: 2px solid white;
    padding: 0.9rem 2.2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.video-text-content .btn-outline:hover {
    background-color: white;
    color: #1ea9ea;
    border-color: white;
    transform: translateY(-3px);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    z-index: 3;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.scroll-indicator i {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Fix for any existing styles that might interfere */
.home-section.video-bg-section::before,
.home-section.video-bg-section::after {
    display: none; /* Remove any pseudo-elements that might conflict */
}

/* contact form email message */
/* Form message styles */
.form-message {
    margin: 20px 0;
    animation: slideDown 0.3s ease;
}

.alert {
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.5;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert i {
    margin-right: 10px;
}

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

/* Loading spinner animation */
.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Disabled button styling */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
/* contact form email message */

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

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

/* home bg video */


/* ===== RESPONSIVE STYLES ===== */
/* For ultrawide screens - ensure video covers full width */
@media (min-width: 1920px) {
    .video-bg {
        width: 100%;
        height: auto; /* Let height adjust based on aspect ratio */
        min-height: 100%;
    }
}

/* For tall screens (mobile, tablets in portrait) */
@media (max-aspect-ratio: 9/16) {
    .video-bg {
        width: auto;
        height: 100%;
        min-width: 100%;
    }
}

/* For very wide screens (21:9, 32:9 ultrawide) */
@media (min-aspect-ratio: 16/9) {
    .video-bg {
        width: 100%;
        height: auto;
        min-height: 100%;
    }
}
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .home-section.video-bg-section {
        height: 80vh;
        min-height: 500px;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form-wrapper {
        order: 1;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: span 2;
        max-width: none;
    }
    
    .subscribe-content {
        flex-direction: column;
        text-align: center;
    }
    
    .subscribe-form {
        min-width: 100%;
    }
    
    .subscribe-input-group {
        flex-direction: column;
    }
    
    .subscribe-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .home-section.video-bg-section {
        height: 70vh;
        min-height: 450px;
    }
    
    .video-text-content h1 {
        font-size: 2.5rem;
    }
    
    .video-text-content p {
        font-size: 1.1rem;
        margin: 1.5rem 0 2rem;
    }
    
    .video-text-content .btn-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .video-text-content .btn-primary,
    .video-text-content .btn-outline {
        width: 100%;
        justify-content: center;
    }
    .careers-header h1 {
                font-size: 2.5rem;
            }
            .careers-header .stats {
                flex-direction: column;
                gap: 1.5rem;
            }
            .search-container {
                flex-direction: column;
                border-radius: 30px;
            }
            .job-card-header {
                flex-direction: column;
                gap: 1rem;
            }
            .job-title {
                font-size: 1.5rem;
            }
    .projects-header h1 {
                font-size: 2.5rem;
            }
            .projects-grid {
                grid-template-columns: 1fr;
            }
    .navbar {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .nav-links {
        gap: 1.8rem;
    }
    
    .tab-btn {
        padding: 0.8rem 1.2rem;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .callus-number {
        font-size: 3.5rem;
    }
    
    .callus-image i {
        font-size: 10rem;
    }

    .home-video-container {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .video-caption {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }
    
    .video-caption h3 {
        font-size: 1.3rem;
    }
    
    .video-caption p {
        font-size: 0.9rem;
    }
    
    .video-play-btn {
        width: 60px;
        height: 60px;
    }
    
    .video-play-btn i {
        font-size: 1.5rem;
    }

    .contact-section {
        padding: 3rem 5%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .social-icons {
        flex-wrap: wrap;
    }

    .map-section {
        padding: 1.5rem;
        margin-top: 3rem;
    }
    
    .map-title {
        font-size: 1.5rem;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .map-overlay {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .map-direction-btn {
        width: 100%;
        justify-content: center;
    }

    .footer {
        padding: 3rem 5% 1.5rem;
        border-radius: 30px 30px 0 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social .social-icons {
        justify-content: center;
    }
}

@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        gap: 0.8rem;
    }
    .nav-links {
        gap: 1.8rem;
    }
    .tab-btn {
        padding: 0.8rem 1.2rem;
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 2.3rem;
    }
    .callus-number {
        font-size: 3.5rem;
    }
    .callus-image i {
        font-size: 10rem;
    }
}

@media (max-width: 480px) {
    .home-section.video-bg-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .video-text-content h1 {
        font-size: 2rem;
    }
    
    .video-text-content p {
        font-size: 1rem;
        margin: 1rem 0 1.5rem;
    }
    
    .scroll-indicator {
        bottom: 1rem;
    }
    
    .scroll-indicator span {
        font-size: 0.8rem;
    }
    .video-text-content h1 {
        font-size: 2rem;
    }
    
    .video-text-content p {
        font-size: 1rem;
    }
    .home-left h1 {
        font-size: 2rem;
    }
    
    .home-left p {
        font-size: 1.1rem;
    }
    
    .btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .home-video {
        max-height: 250px;
    }

    .video-caption h3 {
        font-size: 1.1rem;
    }
    
    .video-caption p {
        font-size: 0.8rem;
    }
    
    .contact-wrapper {
        padding: 1.5rem;
    }
    
    .info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-content {
        text-align: center;
    }

    .map-container iframe {
        height: 250px;
    }
    
    .map-address-badge {
        font-size: 0.9rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-bottom-links .separator {
        display: none;
    }
    
    .subscribe-input-group {
        flex-direction: column;
    }
}

/* Animation for background blobs */
@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, 30px) scale(1.1); }
}

/* Heart animation for credit */
.fa-heart {
    animation: heartbeat 1.5s ease infinite;
    color: #ff4d4d !important;
}

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

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