/* Lora Font */
@font-face {
    font-family: 'Lora';
    src: url('fonts/Lora-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Lora';
    src: url('fonts/Lora-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

/* MyriadPro Font */
@font-face {
    font-family: 'MyriadPro';
    src: url('fonts/MyriadPro-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'MyriadPro';
    src: url('fonts/MYRIADPRO-REGULAR.OTF') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'MyriadPro';
    src: url('fonts/MYRIADPRO-SEMIBOLD.OTF') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'MyriadPro';
    src: url('fonts/MYRIADPRO-BOLD.OTF') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'MyriadPro';
    src: url('fonts/MYRIADPRO-BOLDIT.OTF') format('opentype');
    font-weight: 700;
    font-style: italic;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #061533;
    --white: #ececec;
    --light-gray: #f8f9fa;
    --text-gray: #575757;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

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

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

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Navigation Bar */
.navbar {
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 20px rgba(6, 21, 51, 0.1);
    z-index: 1000;
    padding: 10px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 60px;
    scale: 2;
    /* width: auto; */
    /* object-fit: contain; */
    position: relative;
    margin-left: 30px;
}

.footer-logo img {
    height: 50px;
    scale: 4;
    width: auto;
    /* object-fit: contain; */
    transform-origin: left;
    /* Align scaling */
    margin-bottom: 20px;
    /* background-color: #00a4ef; */
    position: absolute;
    left: -70px;
    top: 30px;
}

/* Mobile responsive footer logo */
@media (max-width: 768px) {
    .footer-logo img {
        position: absolute;
        left: 1px;
        top: 0;
        scale: 2;
        margin-bottom: 30px;
        transform-origin: center;
    }

    .footer-fontA {
        margin-top: -25px;
        /* background-color: #0078d4; */
        padding-left: 0.4rem;
        width: 100%;
        text-align: left;
    }

    /* Align all footer elements to left on mobile */
    .footer-col,
    .footer-about,
    .footer-links,
    .footer-contact {
        text-align: left;
        align-items: flex-start;
    }

    .footer-contact-item {
        position: absolute;
    }

    .footer-contact-item2 {
        position: absolute;
        padding-top: 50px;
    }

    .footer-bottom {
        margin-top: 50px;
    }

    .footer-social {
        justify-content: flex-start !important;
    }

    .footer-col h4,
    .footer-links ul,
    .footer-links li,
    .footer-links a {
        text-align: left;
    }

    .footer-col h4::after {
        display: none;
    }

    .footer-links ul {
        padding-left: 0;
    }
}

.logo-text {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.footer-fontA {
    padding-top: 70px;

}

.logo-accent {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--white);
    opacity: 0.8;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 17px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.nav-link:hover {
    color: #061533;
}

.nav-link.active {
    color: #061533;
}

.nav-link.nav-btn {
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-link.nav-btn::after {
    display: none;
}

.nav-link.nav-btn:hover {
    background: linear-gradient(135deg, #0a2555 0%, #102a5c 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(6, 21, 51, 0.4);
    color: var(--white) !important;
}

.nav-link.nav-btn.active {
    color: var(--white) !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: black;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 280px 20px 120px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a2555 50%, #102a5c 100%);

    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {

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

    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }

    50% {
        transform: translate(-10px, 10px) rotate(-5deg);
    }

    75% {
        transform: translate(-20px, -10px) rotate(3deg);
    }
}

.hero-content {
    max-width: 1600px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-family: 'Lora', serif;
    font-size: 4rem;
    font-weight: 600;
    max-width: 1000px;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.15;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.45);
}


.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 45px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border-left: 4px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideIn 0.6s ease forwards;
}

.hero-feature:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-feature:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-feature:nth-child(3) {
    animation-delay: 0.6s;
}

.hero-feature:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    border-left-color: #ffffff;
    transform: translateX(10px);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    font-weight: 400;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.hero-cta svg {
    transition: transform 0.3s ease;
}

.hero-cta:hover svg {
    transform: translateX(5px);
}

/* Extra small devices (phones, portrait) */
@media (max-width: 320px) {
    .hero {
        padding: 150px 12px 80px;
    }

    .hero-title {
        font-size: 1.7rem;
        line-height: 1.3;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
}

/* Small devices (phones) */
@media (max-width: 480px) {
    .hero {
        padding: 170px 14px 90px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.25;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }
}

/* Medium devices (phones) */
@media (max-width: 576px) {
    .hero {
        padding: 190px 18px 100px;
    }

    .hero-title {
        font-size: 2.3rem;
        line-height: 1.22;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }
}

/* Large phones (latest iPhones, Androids) */
@media (max-width: 768px) {
    .hero {
        padding: 210px 20px 110px;
         min-height: 60vh;
    }

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

    .hero-title {
        font-size: 2.7rem;
        max-width: 90%;
        margin: 0 auto 20px;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        max-width: 90%;
    }
}

/* Tablets (portrait + landscape) */
@media (max-width: 992px) {
    .hero {
        padding: 230px 30px 120px;
    }

    .hero-title {
        font-size: 3.1rem;
        max-width: 85%;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        max-width: 80%;
    }
}

/* Small desktop / laptop */
@media screen and (max-width: 1152px) {
    .hero-title {
        font-size: 3.5rem;
        max-width: 900px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }
}

/* Large desktop safety (no visual change) */
@media screen and (max-width: 1440px) {
    .hero-title {
        font-size: 3.8rem;
    }
}


/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

/* Sections */
.section {
    padding: 100px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Services Section */
.services {
    background-color: var(--light-gray);
}

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

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(6, 21, 51, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(6, 21, 51, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Career Section */
.career {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a2555 100%);
    text-align: center;
}

.career .section-title {
    color: var(--white);
}

.career .section-title::after {
    background-color: var(--white);
}

.career-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Contact Section */
.contact {
    background-color: var(--white);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
}

.contact-form .cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    align-self: center;
}

.contact-form .cta-button:hover {
    background-color: #0a2555;
}

/* Page Header */
.page-header {
    position: relative;
    padding: 150px 20px 80px;
    text-align: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a2555 50%, #102a5c 100%);
    z-index: -1;
}

.page-title {
    font-family: 'Lora', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

/* About Page */
.about-page {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h2 {
    font-family: 'Lora', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a2555 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder span {
    font-size: 5rem;
}

.values-section {
    padding-top: 40px;
}

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

.value-card {
    background-color: var(--light-gray);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 21, 51, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.value-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Services Page */
.services-page {
    background-color: var(--white);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a2555 100%);
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    font-family: 'Lora', serif;
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Career Page */
.why-join {
    background-color: var(--white);
}

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

.benefit-card {
    background-color: var(--light-gray);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 21, 51, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.positions-section {
    background-color: var(--light-gray);
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.position-card {
    background-color: var(--white);
    padding: 25px 30px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 15px rgba(6, 21, 51, 0.05);
    transition: all 0.3s ease;
}

.position-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(6, 21, 51, 0.1);
}

.position-info h3 {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.position-meta {
    display: flex;
    gap: 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.apply-btn {
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background-color: #0a2555;
    transform: scale(1.05);
}

/* Mission Section */

.mission-section {
  padding: 80px 20px;
  background-color: var(--white);
}

/* CONTAINER */
.mission-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT CONTENT */
.mission-content {
  flex: 1;
}

.mission-tag {
  color: #7c3aed;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: inline-block;
}

.mission-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 24px;
  font-family: 'Lora', serif;
}

.mission-text {
  font-size: 18px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
}

.mission-subtext {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
}

/* RIGHT IMAGE */
.mission-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.mission-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* RESPONSIVE */
/* Extra small devices (phones, portrait) */
@media (max-width: 320px) {
  .mission-section {
    padding: 50px 14px;
  }

  .mission-content h1 {
    font-size: 24px;
  }

  .mission-text,
  .mission-subtext {
    font-size: 14px;
  }

  .mission-image img {
    max-width: 100%;
    border-radius: 16px;
  }
}

/* Small devices (phones) */
@media (max-width: 480px) {
  .mission-section {
    padding: 60px 16px;
  }

  .mission-container {
    gap: 30px;
  }

  .mission-content h1 {
    font-size: 26px;
  }

  .mission-text,
  .mission-subtext {
    font-size: 15px;
  }
}

/* Medium devices (phones) */
@media (max-width: 576px) {
  .mission-container {
    flex-direction: column;
    text-align: center;
  }

  .mission-content h1 {
    font-size: 30px;
  }

  .mission-text,
  .mission-subtext {
    font-size: 15px;
  }

  .mission-image img {
    max-width: 90%;
  }
}

/* Large phones (latest iPhones, Samsung, Realme) */
@media (max-width: 768px) {
  .mission-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .mission-content h1 {
    font-size: 34px;
  }

  .mission-image img {
    max-width: 420px;
  }
}

/* Tablets (portrait + landscape) */
@media (max-width: 992px) {
  .mission-container {
    flex-direction: column;
    text-align: center;
  }

  .mission-content h1 {
    font-size: 38px;
  }
}

/* Small laptops / tablets landscape */
@media screen and (max-width: 1152px) {
  .mission-container {
    gap: 40px;
  }

  .mission-content h1 {
    font-size: 30px;
  }
}

/* Large screens */
@media screen and (max-width: 1440px) {
  /* Desktop bilkul same — no changes */
}


/* Vision Sevtion */

/* SECTION */
.vision-section {
  padding: 80px 20px;
  background-color: var(--white);
}

/* CONTAINER */
.vision-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 70px;
}

/* IMAGE */
.vision-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.vision-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 26px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
  object-fit: cover;
}

/* CONTENT */
.vision-content {
  flex: 1;
}

.vision-tag {
  color: #7c3aed;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 18px;
  display: inline-block;
}

.vision-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 24px;
  font-family: 'Lora', serif;
}

.vision-text {
  font-size: 18px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 22px;
}

.vision-subtext {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
}

/* RESPONSIVE */
/* Extra small devices (phones, portrait) */
@media (max-width: 320px) {
  .vision-section {
    padding: 50px 14px;
  }

  .vision-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .vision-content h1 {
    font-size: 24px;
  }

  .vision-text,
  .vision-subtext {
    font-size: 14px;
  }

  .vision-image img {
    max-width: 100%;
    border-radius: 18px;
  }
}

/* Small devices (phones) */
@media (max-width: 480px) {
  .vision-section {
    padding: 60px 16px;
  }

  .vision-container {
    flex-direction: column;
    gap: 35px;
    text-align: center;
  }

  .vision-content h1 {
    font-size: 26px;
  }

  .vision-text,
  .vision-subtext {
    font-size: 15px;
  }
}

/* Medium devices (phones) */
@media (max-width: 576px) {
  .vision-container {
    flex-direction: column;
    text-align: center;
  }

  .vision-content h1 {
    font-size: 30px;
  }

  .vision-text,
  .vision-subtext {
    font-size: 15px;
  }

  .vision-image img {
    max-width: 90%;
  }
}

/* Large phones (latest iPhones, Samsung, Realme) */
@media (max-width: 768px) {
  .vision-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .vision-content h1 {
    font-size: 34px;
  }

  .vision-image img {
    max-width: 420px;
  }
}

/* Tablets (portrait + landscape) */
@media (max-width: 992px) {
  .vision-container {
    flex-direction: column;
    text-align: center;
  }

  .vision-content h1 {
    font-size: 38px;
  }
}

/* Small laptops / tablets landscape */
@media screen and (max-width: 1152px) {
  .vision-container {
    gap: 50px;
  }

  .vision-content h1 {
    font-size: 30px;
  }
}

/* Large screens */
@media screen and (max-width: 1440px) {
  /* Desktop view unchanged */
}


/* Shaping Section - Base Styles */
.shaping-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.shaping-content {
    flex: 1;
}

.shaping-image {
    flex: 1;
}

/* Career Benefits Grid - Base CSS */
.career-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Shaping Future Section - Mobile Fix */
@media (max-width: 768px) {
    .shaping-future-section {
        padding: 60px 15px;
        overflow-x: hidden;
    }

    .shaping-layout {
        flex-direction: column;
        gap: 30px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .shaping-content {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .shaping-title {
        font-size: 1.75rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .shaping-desc,
    .shaping-desc-secondary {
        font-size: 1rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .shaping-image {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .shaping-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .shaping-img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .shaping-decorative-circle,
    .shaping-image-bg {
        display: none;
    }

    /* Career Benefits Grid - Mobile Fix */
    .career-why {
        overflow-x: hidden;
        padding: 60px 15px;
    }

    .career-why .container {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .career-benefits-grid {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .career-benefit-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 20px 15px;
    }

    .career-benefit-card h3,
    .career-benefit-card p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .career-section-title,
    .career-label {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
}

/* Contact Page */
.contact-page {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Lora', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info>p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
}

/* Feature Sections */
.feature-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse>* {
    direction: ltr;
}

.feature-text-content {
    max-width: 500px;
}

.feature-heading {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.feature-heading strong {
    font-weight: 700;
    display: block;
}


.feature-text-content p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.feature-btn:hover {
    background-color: #0a2555;
    transform: translateX(5px);
}

.feature-btn-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.feature-btn-primary:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #9333ea 100%);
}

.feature-btn svg {
    transition: transform 0.3s ease;
}

.feature-btn:hover svg {
    transform: translateX(3px);
}

/* Feature Image Styles */
.feature-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .feature-text-content {
        max-width: 500px;
        text-align: left;
    }

    .feature-heading {
        font-family: 'Lora', serif;
        font-size: 2rem;
        font-weight: 400;
        color: var(--primary-color);
        margin-bottom: 25px;
        line-height: 1.3;
        text-align: left;
    }

    .feature-image {
        position: relative;
        margin-top: 50px;
        background-color: #00a4ef;
    }

    .image-wrapper {
        margin-left: 0;
        padding-left: 0;
        position: absolute;
        left: -20px;
    }

    .feature-img-box {
        scale: 0.9;
    }



    .feature-text-content p {
        color: var(--text-gray);
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 15px;
        text-align: left;
    }

    .feature-btn {
        display: inline-flex;
        align-items: left;
        gap: 8px;
        padding: 14px 28px;
        background-color: var(--primary-color);
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        border-radius: 8px;
        margin-top: 15px;
        transition: all 0.3s ease;
        text-align: left;
        align-items: left;
        position: absolute;
    }

    .core-services-section {
        margin-top: 40px;
    }
}

/* ===============================
   EXTRA SMALL DEVICES (≤320px)
   =============================== */
@media (max-width: 320px) {

    .feature-section {
        padding: 50px 15px;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-heading {
        font-size: 1.4rem;
    }

    .feature-text-content {
        max-width: 100%;
    }

    .feature-btn {
        position: static;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .feature-img-box {
        max-width: 280px;
    }

    .decorative-circle {
        display: none;
    }
}


/* ===============================
   SMALL DEVICES (≤480px)
   =============================== */
@media (max-width: 480px) {

    .feature-section {
        padding: 60px 16px;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .feature-heading {
        font-size: 1.6rem;
    }

    .feature-text-content p {
        font-size: 0.95rem;
    }

    .feature-image {
        margin-top: 20px;
    }

    .image-wrapper {
        position: relative;
        left: 0;
    }

    .feature-img-box {
        max-width: 320px;
    }

    .feature-btn {
        position: static;
    }
}


/* ===============================
   MEDIUM DEVICES (≤576px)
   =============================== */
@media (max-width: 576px) {

    .feature-row {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .feature-heading {
        font-size: 1.75rem;
    }

    .feature-img-box {
        max-width: 350px;
    }

    .decorative-circle.circle-top {
        width: 120px;
        height: 120px;
        top: -15px;
        right: -15px;
    }

    .decorative-circle.circle-bottom {
        width: 100px;
        height: 100px;
        bottom: -10px;
        left: -10px;
    }
}


/* ===============================
   LARGE PHONES (≤768px)
   =============================== */
@media (max-width: 768px) {

    .feature-row {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .feature-text-content {
        max-width: 100%;
    }

    .feature-heading {
        font-size: 1.9rem;
    }

    .feature-image {
        margin-top: 0;
        background: none;
    }

    .image-wrapper {
        position: relative;
        left: 0;
    }

    .feature-btn {
        position: static;
    }
}


/* ===============================
   TABLETS (≤992px)
   =============================== */
@media (max-width: 992px) {

    .feature-row {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .feature-heading {
        font-size: 2rem;
    }

    .feature-img-box {
        max-width: 400px;
    }
}


/* ===============================
   SMALL LAPTOPS (≤1152px)
   =============================== */
@media screen and (max-width: 1152px) {

    .feature-row {
        gap: 60px;
    }

    .feature-text-content {
        max-width: 480px;
    }
}


/* ===============================
   LARGE LAPTOPS (≤1440px)
   =============================== */
@media screen and (max-width: 1440px) {

    .feature-row {
        gap: 70px;
    }
}


.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.circle-top {
    width: 200px;
    height: 200px;
    top: -30px;
    right: -30px;
}

.circle-bottom {
    width: 150px;
    height: 150px;
    bottom: -20px;
    left: -20px;
}

.circle-left {
    width: 180px;
    height: 180px;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
}

.laptop-mockup {
    width: 350px;
    height: 230px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 25px 50px rgba(6, 21, 51, 0.25);
    position: relative;
    z-index: 1;
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a2555 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab.laptop-mockup {
    width: 280px;
    height: 200px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.tab.laptop-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mockup-icon {
    font-size: 4rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.feature-img-box {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.feature-img-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.feature-image:hover .feature-img-box img {
    transform: scale(1.05);
}

.tablet-mockup {
    width: 280px;
    height: 380px;
    background: linear-gradient(135deg, #d4a574 0%, #c9956c 100%);
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0 25px 50px rgba(6, 21, 51, 0.25);
    position: relative;
    z-index: 1;
}

.tablet-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a5f 0%, #0a2555 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-icon {
    font-size: 4rem;
}

/* Core Services Section */
.core-services-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.services-watermark {
    font-family: 'Lora', serif;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(6, 21, 51, 0.05);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    pointer-events: none;
}

.services-title {
    font-family: 'Lora', serif;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.services-title {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.services-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.core-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.core-service-card {
    background-color: #061533;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(6, 21, 51, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.core-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(6, 21, 51, 0.15);
}

.core-service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-service-icon svg {
    width: 24px;
    height: 24px;
}

.icon-cloud {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #4f46e5;
}

.icon-cloud svg {
    stroke: #4f46e5;
}

.icon-web {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #2563eb;
}

.icon-web svg {
    stroke: #2563eb;
}

.icon-app {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    color: #db2777;
}

.icon-app svg {
    stroke: #db2777;
}

.icon-dev {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
}

.icon-dev svg {
    stroke: #d97706;
}

.icon-cloud svg {
    stroke: #4f46e5;
}

.icon-data {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
}

.icon-data svg {
    stroke: #059669;
}

.icon-ai {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    color: #7c3aed;
}

.icon-ai svg {
    stroke: #7c3aed;
}

.core-service-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0;
}

.core-service-card p {
    color: white;
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid white;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Industries Section */
.industries-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 21, 51, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.industries-layout {
    text-align: center;
    margin-bottom: 50px;
}

.industries-text {
    max-width: 800px;
    margin: 0 auto;
}

.industries-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #061533;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.7;
}

.industries-subheading {
    font-family: 'Lora', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #061533;
    margin-bottom: 25px;
    line-height: 1.2;
}

.industries-desc {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.industries-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(6, 21, 51, 0.25);
}

.industries-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(6, 21, 51, 0.35);
}

.industries-btn svg {
    transition: transform 0.3s ease;
}

.industries-btn:hover svg {
    transform: translateX(5px);
}

.industries-marquee {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    position: relative;
    background: transparent;
}

.industries-grid {
    display: flex;
    gap: 30px;
    width: fit-content;
    animation: marquee-scroll 60s linear infinite;
    padding-left: 30px;
    /* Initial offset to prevent jump */
}

/* Pause animation on hover */
.industries-grid:hover {
    animation-play-state: paused;
}

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

    100% {
        transform: translateX(-50%);
    }
}

.industry-card {
    flex: 0 0 300px;
    background-color: var(--primary-color);
    padding: 20px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(6, 21, 51, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    user-select: none;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #061533 0%, #0a2555 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(6, 21, 51, 0.15);
}

.industry-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(6, 21, 51, 0.08) 0%, rgba(6, 21, 51, 0.03) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.industry-icon svg {
    stroke: #ffffff;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    transform: scale(1);
}

.industry-card:hover .industry-icon svg {
    stroke: var(--primary-color);
}

.industry-card span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    display: block;
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background-color: #061533;
    text-align: center;
    overflow: hidden;
}

.partners-title {
    font-family: 'Lora', serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.partners-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    padding: 0 20px;
}

.partners-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-scroll {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scroll-infinite 20s linear infinite;
    width: max-content;
}

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

    100% {
        transform: translateX(-50%);
    }
}

.partners-scroll:hover {
    animation-play-state: paused;
}

.partner-logo {
    color: var(--white);
    opacity: 0.9;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

.logo-text-simple {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
}

.logo-text-oracle {
    font-family: Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #f80000;
    letter-spacing: 2px;
}

.logo-text-aws {
    font-family: 'Amazon Ember', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff9900;
}

.logo-text-azure {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0078d4;
}

.logo-text-cisco {
    font-family: Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #049fd9;
    letter-spacing: 1px;
}

.microsoft-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ms-grid {
    display: grid;
    grid-template-columns: repeat(2, 12px);
    grid-template-rows: repeat(2, 12px);
    gap: 2px;
}

.ms-red {
    background-color: #f25022;
}

.ms-green {
    background-color: #7fba00;
}

.ms-blue {
    background-color: #00a4ef;
}

.ms-yellow {
    background-color: #ffb900;
}

.ms-text {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
}

@media (max-width: 320px) {

    .industries-section {
        padding: 60px 12px;
    }

    .industries-subheading {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .industries-desc {
        font-size: 0.9rem;
    }

    .industry-card {
        flex: 0 0 240px;
        padding: 16px;
    }

    .industry-icon {
        width: 48px;
        height: 48px;
    }

    .industry-card span {
        font-size: 0.85rem;
    }
}
@media (max-width: 480px) {

    .industries-section {
        padding: 70px 15px;
    }

    .industries-subheading {
        font-size: 1.8rem;
    }

    .industries-desc {
        font-size: 0.95rem;
    }

    .industries-grid {
        gap: 20px;
    }

    .industry-card {
        flex: 0 0 260px;
    }
}
@media (max-width: 576px) {

    .industries-heading {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .industries-subheading {
        font-size: 2rem;
    }

    .industries-desc {
        font-size: 1rem;
    }

    .industry-card {
        flex: 0 0 280px;
    }
}
@media (max-width: 768px) {

    .industries-section {
        padding: 80px 20px;
    }

    .industries-layout {
        margin-bottom: 30px;
    }

    .industries-subheading {
        font-size: 2.2rem;
    }

    .industries-marquee {
        padding: 20px 0;
    }

    .industries-grid {
        animation-duration: 80s; /* slower scroll on mobile */
    }
}
@media (max-width: 992px) {

    .industries-text {
        max-width: 700px;
    }

    .industries-subheading {
        font-size: 2.4rem;
    }

    .industry-card {
        flex: 0 0 290px;
    }
}
@media screen and (max-width: 1152px) {

    .industries-subheading {
        font-size: 2.6rem;
    }

    .industries-grid {
        gap: 24px;
    }
}
@media screen and (max-width: 1440px) {

    .industries-section {
        padding: 100px 20px;
    }
}


/* Why Choose Section */
.why-choose-section {
    padding: 100px 20px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 21, 51, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 21, 51, 0.02) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-choose-content {
    max-width: 500px;
}

.why-choose-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(26, 26, 26, 0.6);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.why-choose-title {
    font-family: 'Lora', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #061533;
    margin-bottom: 25px;
    line-height: 1.2;
}

.why-choose-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.8;
}

.why-choose-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: rgba(5, 5, 5, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.why-feature:hover {
    background: rgba(7, 7, 7, 0.1);
    border-color: rgba(5, 5, 5, 0.2);
    transform: translateX(10px);
}

.why-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-feature-icon svg {
    stroke: var(--white);
    width: 24px;
    height: 24px;
}

.why-feature:hover .why-feature-icon {
    background: linear-gradient(135deg, #0a2555 0%, #061533 100%);
    transform: scale(1.1);
}

.why-feature span {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #061533;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #061533 0%, #0a2555 50%, #061533 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;

    /* Background image + dark overlay */
    background:
        linear-gradient(90deg, transparent 0%, rgba(4, 21, 51, 0.75) 100%),
        url("/images/hero2.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation: float 20s ease-in-out infinite;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    animation: float 15s ease-in-out infinite reverse;
}

.cta-shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cta-title {
    font-family: 'Lora', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--white);
    color: #061533;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cta-btn-primary svg {
    transition: transform 0.3s ease;
}

.cta-btn-primary:hover svg {
    transform: translateX(5px);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Shaping the Future Section */
.shaping-future-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.shaping-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.shaping-content {
    max-width: 600px;
}

.shaping-title {
    font-family: 'Lora', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #061533;
    margin-bottom: 30px;
    line-height: 1.3;
}

.text-accent {
    color: #7c3aed;
    font-style: italic;
}

.shaping-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.shaping-desc-secondary {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.shaping-stats-inline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px 10px;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 21, 51, 0.3);
}

.stat-num {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 5px;
}

.stat-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    display: block;
}

.shaping-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: #061533;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    border: 2px solid #061533;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.shaping-btn:hover {
    background: #061533;
    color: var(--white);
    transform: translateY(-3px);
}

.shaping-btn svg {
    transition: transform 0.3s ease;
}

.shaping-btn:hover svg {
    transform: translate(3px, -3px);
}

.shaping-image {
    position: relative;
}

.shaping-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shaping-image-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
}

.shaping-image-placeholder {
    position: relative;
    z-index: 1;
    width: 300px;
    height: 350px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    margin: 40px;
}

.shaping-img {
    position: relative;
    z-index: 1;
    width: 350px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    margin: 40px;
    box-shadow: 0 20px 50px rgba(6, 21, 51, 0.3);
}

.shaping-decorative-circle {
    position: absolute;
    bottom: -20px;
    right: 30px;
    width: 120px;
    height: 120px;
    border: 3px solid #7c3aed;
    border-radius: 50%;
    z-index: 2;
}

/* Our Story Section - Split Screen */
.our-story-section {
    background-color: #061533;
}

.story-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 800px;
}

.story-image-side {
    position: relative;
    overflow: hidden;
}

.story-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(6, 21, 51, 0.3) 100%);
}

.story-content-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 60px;
    background-color: #061533;
}

.story-slider {
    position: relative;
    min-height: 280px;
}

.story-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.story-slide.active {
    display: block;
    opacity: 1;
}

.story-nav {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.story-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.story-nav-btn:hover {
    border-color: #7c3aed;
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.1);
}

@media (max-width: 320px) {

    .story-split {
        grid-template-columns: 1fr;
        max-height: none;
    }

    .story-image-side {
        height: 220px;
    }

    .story-title {
        font-size: 1.6rem;
    }

    .story-desc,
    .story-desc-secondary {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .story-nav-btn {
        width: 40px;
        height: 40px;
    }
}
@media (max-width: 480px) {

    .story-split {
        grid-template-columns: 1fr;
    }

    .story-image-side {
        height: 260px;
    }

    .story-title {
        font-size: 1.8rem;
    }

    .story-desc,
    .story-desc-secondary {
        font-size: 0.9rem;
    }
}
@media (max-width: 576px) {

    .story-image-side {
        height: 300px;
    }

    .story-title {
        font-size: 2rem;
    }

    .story-desc,
    .story-desc-secondary {
        font-size: 0.95rem;
    }
}
@media (max-width: 768px) {

    .story-split {
        grid-template-columns: 1fr;
    }

    .story-slider {
        min-height: auto; /* REMOVE extra blue space */
    }

     .story-split {
        height: auto;
        max-height: none;
    }

    .story-image-side {
        height: 340px;
    }

    .story-image-overlay {
        background: linear-gradient(180deg, transparent 0%, rgba(6, 21, 51, 0.45) 100%);
    }

    .story-nav {
        justify-content: center;
    }
}
@media (max-width: 992px) {

    .story-split {
        grid-template-columns: 1fr 1fr;
        max-height: none;
    }

    .story-title {
        font-size: 2.2rem;
    }
}
@media screen and (max-width: 1152px) {

    .story-content-side {
        padding: 50px;
    }

    .story-title {
        font-size: 2.4rem;
    }
}
@media screen and (max-width: 1440px) {

    .story-split {
        max-height: 750px;
    }
}


/* ===== FIX: Our Mission overlap issue (MOBILE ONLY) ===== */
@media (max-width: 768px) {

  .our-story-section {
    height: auto;
    min-height: auto;
    overflow: visible;
    padding-bottom: 40px; /* space before mission */
  }

  .story-split {
    max-height: none !important;
    height: auto !important;
  }

  .story-content-side {
    padding: 30px 20px;
    height: auto;
  }

  .story-slider {
    min-height: unset;
    height: auto;
  }

  .story-slide {
    position: static;
  }

  .mission-section {
    margin-top: 0;
  }
}


/* Core Values Section - Aesthetic Design */
.core-values-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.core-values-header {
    text-align: center;
    margin-bottom: 80px;
}

.core-values-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #7c3aed;
    letter-spacing: 2px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.core-values-title {
    font-family: 'Lora', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #061533;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--primary-color);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(6, 21, 51, 0.05);
    border: 1px solid rgba(6, 21, 51, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgb(255, 255, 255);
    border-color: rgb(255, 255, 255);
}

.value-card .value-number {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px #ffffff;
    opacity: 0.6;
    margin-bottom: 20px;
    line-height: 1;
    transition: all 0.4s ease;
}

.value-card:hover .value-number {
    opacity: 1;
    -webkit-text-stroke: 1px #ffffff;
    transform: scale(1.1);
}

.value-content {
    margin-bottom: 30px;
}

.value-card .value-name {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.value-card .value-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: rgb(170, 170, 170);
    line-height: 1.7;
}

.value-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.value-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #ffffff;
    padding: 10px 15px;
    background: rgba(6, 21, 51, 0.02);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-point:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: var(--white);
    transform: translateX(5px);
}

.point-icon {
    color: #7c3aed;
    font-size: 0.6rem;
}

.value-point:hover .point-icon {
    color: var(--white);
}

/* =========================
   TABLETS
   ========================= */
@media (max-width: 992px) {
    .core-values-section {
        padding: 140px 20px;
    }

    .core-values-title {
        font-size: 2.6rem;
    }

    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* =========================
   LARGE PHONES
   ========================= */
@media (max-width: 768px) {
    .core-values-section {
        padding: 20px 20px;
    }

    /* ✅ ONE CARD PER ROW */
    .core-values-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .value-card {
        padding: 35px;
    }

    .value-card .value-number {
        font-size: 3rem;
    }

    .value-card .value-name {
        font-size: 1.6rem;
    }
}

/* =========================
   MEDIUM PHONES
   ========================= */
@media (max-width: 576px) {
    .core-values-section {
        padding: 20px 16px;
    }

    .core-values-label {
        font-size: 1.1rem;
    }

    .core-values-title {
        font-size: 2.2rem;
    }

    .value-card {
        padding: 30px;
        border-radius: 20px;
    }

    .value-card .value-desc {
        font-size: 0.95rem;
    }
}

/* =========================
   SMALL PHONES
   ========================= */
@media (max-width: 480px) {
    .core-values-title {
        font-size: 2rem;
    }

    .value-card {
        padding: 26px;
    }

    .value-card .value-name {
        font-size: 1.4rem;
    }

    .value-point {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
}

/* =========================
   EXTRA SMALL DEVICES
   ========================= */
@media (max-width: 320px) {
    .core-values-title {
        font-size: 1.8rem;
    }

    .value-card {
        padding: 22px;
    }

    .value-card .value-number {
        font-size: 2.6rem;
    }

    .value-card .value-name {
        font-size: 1.25rem;
    }

    .value-card .value-desc {
        font-size: 0.9rem;
    }
}


/* Global Presence Section */
.global-presence-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
}

.global-header {
    text-align: center;
    margin-bottom: 60px;
}

.global-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #7c3aed;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.global-title {
    font-family: 'Lora', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.global-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.global-map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.world-map {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-image {
    width: 100%;
    height: auto;
    opacity: 0.4;
    filter: invert(1) brightness(1.2);
}

.map-marker {
    position: absolute;
    cursor: pointer;
    z-index: 10;
}

.marker-pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: markerPulse 2s ease-out infinite;
}

@keyframes markerPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.marker-pin {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5);
    transition: all 0.3s ease;
    border: 3px solid var(--white);
}

.map-marker:hover .marker-pin {
    transform: scale(1.2);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.7);
}

.marker-tooltip {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.marker-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--white);
}

.map-marker:hover .marker-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 80px;
}

.marker-tooltip h4 {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #061533;
    margin-bottom: 5px;
}

.marker-tooltip p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
}

.location-cards-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.location-mini-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 35px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.location-mini-card:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-5px);
}

.mini-card-icon {
    font-size: 2.5rem;
}

.mini-card-content h4 {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.mini-cities {
    display: flex;
    gap: 15px;
}

.mini-city {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.city-dot {
    width: 6px;
    height: 6px;
    background: #7c3aed;
    border-radius: 50%;
}

/* Services Page Styles */

.services-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    padding: 120px 20px 80px;
    overflow: hidden;
}

.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
}

.services-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.services-hero-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.services-hero-title {
    font-family: 'Lora', serif;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 25px;
}

.text-gradient {
    background: linear-gradient(135deg, #180db0 0%, #2e5295 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero-desc {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

/* Background video */
.services-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Overlay for readability */
.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(4, 21, 51, 0.75) 100%);
    z-index: -1;
}
/* Extra small devices (phones, portrait) */
@media (max-width: 320px) {
    .services-hero {
        padding: 140px 12px 70px;
        min-height: auto;
    }

    .services-hero-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .services-hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .services-hero-desc {
        font-size: 0.9rem;
    }
}

/* Small devices (phones) */
@media (max-width: 480px) {
    .services-hero {
        padding: 160px 15px 80px;
    }

    .services-hero-title {
        font-size: 2.2rem;
        line-height: 1.25;
    }

    .services-hero-desc {
        font-size: 1rem;
        max-width: 100%;
    }
}

/* Medium devices (phones) */
@media (max-width: 576px) {
    .services-hero {
        padding: 180px 18px 90px;
    }

    .services-hero-title {
        font-size: 2.5rem;
    }

    .services-hero-desc {
        font-size: 1.05rem;
    }
}

/* Large phones (latest iPhones, Androids) */
@media (max-width: 768px) {
    .services-hero {
        padding: 200px 20px 100px;
        min-height: 60vh;
    }

    .services-hero-content {
        text-align: center;
    }

    .services-hero-title {
        font-size: 3rem;
        max-width: 95%;
        margin: 0 auto 20px;
    }

    .services-hero-desc {
        font-size: 1.1rem;
        max-width: 90%;
        margin: 0 auto;
    }
}

/* Tablets (portrait + landscape) */
@media (max-width: 992px) {
    .services-hero {
        padding: 220px 30px 110px;
    }

    .services-hero-title {
        font-size: 3.4rem;
        max-width: 90%;
    }

    .services-hero-desc {
        font-size: 1.15rem;
        max-width: 80%;
    }
}

/* Small desktop / laptops */
@media screen and (max-width: 1152px) {
    .services-hero-title {
        font-size: 3.6rem;
    }

    .services-hero-desc {
        font-size: 1.18rem;
    }
}

/* Large desktop safety (no visual change) */
@media screen and (max-width: 1440px) {
    .services-hero-title {
        font-size: 3.8rem;
    }
}


/* Main Services Section */

.services-main {
    padding: 100px 20px;
    background-color: var(--white);
}

.services-intro {
    text-align: center;
    margin-bottom: 80px;
}

.services-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0a2555;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.services-title {
    font-family: 'Lora', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #061533;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid rgba(6, 21, 51, 0.08);
}

.service-block:last-child {
    border-bottom: none;
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse>* {
    direction: ltr;
}

.service-block-content {
    max-width: 500px;
}

.service-number {
    font-family: 'Lora', serif;
    font-size: 3rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(6, 21, 51, 0.2);
    margin-bottom: 20px;
    display: block;
}

.service-block-title {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #061533;
    margin-bottom: 20px;
}

.service-block-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #061533;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #0a2555 0%, #061533 100%);
    border-radius: 50%;
    min-width: 8px;
}

.service-block-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon-box {
    width: 200px;
    height: 200px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.service-icon-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: inherit;
    filter: blur(30px);
    opacity: 0.5;
    z-index: -1;
}

.service-icon-box:hover {
    transform: scale(1.1) rotate(5deg);
}

.service-icon-box svg {
    stroke: var(--white);
}

.service-image-box {
    width: 100%;
    max-width: 450px;
    height: 320px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(6, 21, 51, 0.15);
    transition: all 0.4s ease;
}

.service-image-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(6, 21, 51, 0.2) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.service-block:hover .service-image-box {
    transform: scale(1.03);
    box-shadow: 0 35px 60px rgba(6, 21, 51, 0.2);
}

.service-block:hover .service-image-box::before {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(6, 21, 51, 0.1) 100%);
}

.service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.service-block:hover .service-image-box img {
    transform: scale(1.1);
}

.service-icon-box.ai {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.service-icon-box.ml {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.service-icon-box.iot {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.service-icon-box.crm {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.service-icon-box.software {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.service-icon-box.bpo {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.service-icon-box.web {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.service-icon-box.app {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.service-icon-box.cloud {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.service-icon-box.data {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.service-icon-box.security {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

/* =========================
   TABLET & BELOW
   ========================= */
@media (max-width: 992px) {
    .services-main {
        padding: 80px 20px;
    }

    .services-title {
        font-size: 2.3rem;
    }

    .service-block {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 0;
    }

    /* remove reverse issue on mobile */
    .service-block.reverse {
        direction: ltr;
    }

    .service-block-content {
        max-width: 100%;
        text-align: left;
    }

    .service-image-box {
        max-width: 100%;
        height: 300px;
    }
}

/* =========================
   LARGE PHONES
   ========================= */
@media (max-width: 768px) {
    .services-title {
        font-size: 2.1rem;
    }

    .service-number {
        font-size: 2.6rem;
    }

    .service-block-title {
        font-size: 1.8rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .service-image-box {
        height: 280px;
    }
}

/* =========================
   MEDIUM PHONES
   ========================= */
@media (max-width: 576px) {
    .services-main {
        padding: 70px 16px;
    }

    .services-title {
        font-size: 1.9rem;
    }

    .service-number {
        font-size: 2.3rem;
    }

    .service-block-title {
        font-size: 1.6rem;
    }

    .service-block-desc {
        font-size: 0.95rem;
    }

    .service-image-box {
        height: 250px;
        border-radius: 18px;
    }
}

/* =========================
   SMALL PHONES
   ========================= */
@media (max-width: 480px) {
    .services-title {
        font-size: 1.7rem;
    }

    .service-number {
        font-size: 2.1rem;
    }

    .service-block-title {
        font-size: 1.45rem;
    }

    .service-features li {
        font-size: 0.85rem;
        margin-left: 20px;
    }

    .service-image-box {
        height: 220px;
    }
}

/* =========================
   EXTRA SMALL DEVICES
   ========================= */
@media (max-width: 320px) {
    .services-title {
        font-size: 1.5rem;
    }

    .service-block-title {
        font-size: 1.3rem;
    }

    .service-block-desc {
        font-size: 0.9rem;
    }

    .service-image-box {
        height: 200px;
    }
}


/* Career Page Styles */
.career-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    padding: 120px 20px 80px;
    overflow: hidden;
}

.career-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Background image + overlay */
    background:
        /* linear-gradient(
            135deg,
            rgba(6, 21, 51, 0.85) 0%,
            rgba(10, 37, 85, 0.75) 100%
        ), */
        linear-gradient(90deg, transparent 0%, rgba(4, 21, 51, 0.75) 100%),
        url("/images/careerpage.webp");
        

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.career-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.career-hero-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.career-hero-title {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.career-hero-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.career-why {
    padding: 100px 20px;
    background-color: var(--white);
}

.career-why-header {
    text-align: center;
    margin-bottom: 60px;
}

.career-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #7c3aed;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.career-section-title {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #061533;
}

.career-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.career-benefit-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--primary-color);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(6, 21, 51, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(6, 21, 51, 0.05);
}

.career-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(6, 21, 51, 0.15);
    border-color: rgba(124, 58, 237, 0.2);
}

.career-benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #bdd3ff 0%, #94bbff 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.career-benefit-icon svg {
    stroke: var(--primary-color);
}

.career-benefit-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.career-benefit-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: rgb(194, 193, 193);
    line-height: 1.6;
}

/* Openings Section */

.career-opportunities {
    padding: 20px 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.career-opportunities-header {
    text-align: center;
    margin-bottom: 40px;
}

.career-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.career-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--white);
    border: 2px solid rgba(6, 21, 51, 0.1);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #061533;
    cursor: pointer;
    transition: all 0.3s ease;
}

.career-tab:hover {
    border-color: #7c3aed;
    color: #7c3aed;
}

.career-tab.active {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    border-color: transparent;
    color: var(--white);
}

.career-tab.active svg {
    stroke: var(--white);
}

.career-tab svg {
    stroke: currentColor;
}

.career-tab-content {
    display: none;
}

.career-tab-content.active {
    display: block;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.position-card-new {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(6, 21, 51, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(6, 21, 51, 0.05);
    position: relative;
}

.position-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(6, 21, 51, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
}

.position-card-new.internship:hover {
    border-color: rgba(16, 185, 129, 0.3);
}

.position-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
}

.position-badge.internship-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.position-title {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #061533;
    margin-bottom: 12px;
}

.position-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.position-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.position-location,
.position-exp,
.position-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.position-location svg,
.position-exp svg,
.position-duration svg {
    stroke: #7c3aed;
}

.position-apply-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.position-apply-btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    transform: translateX(5px);
}

.career-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
}

.career-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.career-cta-content h2 {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.career-cta-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.career-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.career-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

.career-cta-btn svg {
    transition: transform 0.3s ease;
}

.career-cta-btn:hover svg {
    transform: translateX(5px);
}

/* Modal Background */
.application-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 21, 51, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Modal Box */
.application-modal-content {
    background: #fff;
    width: 100%;
    max-width: 450px;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    animation: popupFade 0.3s ease;
}

/* Animation */
@keyframes popupFade {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #061533;
}

/* Form */
.application-form {
    margin-top: 20px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: #061533;
    font-family: 'Poppins', sans-serif;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 0.9rem;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: #fff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    margin-top: 10px;
}

.submit-btn:hover {
    opacity: 0.9;
}

/* Mobile */
@media (max-width: 320px) {
    .career-tabs {
        flex-direction: column;
        gap: 12px;
    }

    .career-tab {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .positions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .position-card-new {
        padding: 20px;
    }

    .position-title {
        font-size: 1.1rem;
    }

    .position-details {
        flex-direction: column;
        gap: 10px;
    }

    .career-cta-content h2 {
        font-size: 1.6rem;
    }

    .career-cta-content p {
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    .career-tabs {
        flex-direction: column;
        gap: 14px;
    }

    .career-tab {
        width: 100%;
        justify-content: center;
    }

    .positions-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .position-details {
        flex-direction: column;
        gap: 12px;
    }

    .career-cta {
        padding: 60px 20px;
    }

    .career-cta-content h2 {
        font-size: 1.8rem;
    }

    .application-modal-content {
        margin: 15px;
        padding: 20px;
    }
}
@media (max-width: 576px) {
    .positions-grid {
        grid-template-columns: 1fr;
    }

    .career-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .career-tab {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}
@media (max-width: 768px) {
    .positions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .career-cta-content h2 {
        font-size: 2rem;
    }

    .career-cta-content p {
        font-size: 1rem;
    }
}
@media (max-width: 992px) {
    .positions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .career-tabs {
        gap: 16px;
    }
}
@media screen and (max-width: 1152px) {
    .positions-grid {
        gap: 26px;
    }
}
@media screen and (max-width: 1440px) {
    .positions-grid {
        gap: 30px;
    }
}




/* Contact Page Styles */
.contact-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #061533 0%, #0a2555 20%);
    padding: 120px 20px 80px;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-hero-title {
    font-family: 'Lora', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-hero-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}
.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Background Image */
    background:
       linear-gradient(90deg, transparent 0%, rgba(4, 21, 51, 0.75) 100%),
        url("/images/contatpage2.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}


/* Contact Form Section */

.contact-wrapper {
  max-width: 1600px;
  margin: auto;
  background-color: white;
  padding: 50px 100px;
}

.contact-card {
  display: flex;
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* LEFT */
.contact-left {
  width: 40%;
  padding: 40px;
  color: #fff;
  background: linear-gradient(180deg, #061b3a, #0a2a5f);
}

.contact-left h2 {
    font-family: 'Lora', serif;
  font-size: 26px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 14px;
  margin-bottom: 30px;
  opacity: 0.9;
  font-family: 'Poppins', sans-serif;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 22px;
  font-family: 'Poppins', sans-serif;
}

.icon {
  background: rgba(255,255,255,0.15);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.social span {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* RIGHT */
.contact-right {
  width: 60%;
  padding: 40px;
  background: #f1f1f1;
}

.row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

label {
  font-size: 14px;
  margin-bottom: 6px;
  color: black;
  font-family: 'Poppins', sans-serif;
}

input, select, textarea {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}

textarea {
  resize: none;
  font-family: 'Poppins', sans-serif;
}

.submit-btn {
  margin-top: 30px;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 40px;
  background: linear-gradient(180deg, #061b3a, #0a2a5f);
  color: #fff;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
}

/* RESPONSIVE */
/* ============================= */
/* Extra small devices (≤320px) */
/* iPhone SE, Galaxy Fold */
/* ============================= */
@media (max-width: 320px) {
  .contact-wrapper {
    padding: 20px 12px;
  }

  .contact-left,
  .contact-right {
    padding: 20px;
  }

  .contact-left h2 {
    font-size: 20px;
  }

  .subtitle {
    font-size: 12px;
  }

  .info-item {
    gap: 10px;
  }

  .icon {
    width: 34px;
    height: 34px;
  }

  input, select, textarea {
    padding: 10px;
    font-size: 13px;
  }

  .submit-btn {
    padding: 14px;
    font-size: 14px;
  }
}

/* ============================= */
/* Small devices (≤480px) */
/* ============================= */
@media (max-width: 480px) {
  .contact-left h2 {
    font-size: 20px;
  }

  .subtitle {
    font-size: 13px;
  }

  .info-item {
    align-items: flex-start;
  }

  .icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  input,
  select,
  textarea {
    font-size: 13px;
    padding: 12px;
  }

  .submit-btn {
    font-size: 14px;
    padding: 14px;
  }
}


/* ============================= */
/* Medium devices (≤576px) */
/* ============================= */
@media (max-width: 576px) {


  .contact-left,
  .contact-right {
    padding: 30px;
  }

  label {
    font-size: 13px;
  }

  input, select, textarea {
    font-size: 13.5px;
  }
}

/* ============================= */
/* Large phones (≤768px) */
/* ============================= */
@media (max-width: 768px) {


  .contact-card {
    flex-direction: column;
    width: 100%;
  }

  .contact-left,
  .contact-right {
    width: 100% !important;   /* 🔥 MOST IMPORTANT */
    padding: 25px;
  }

  .contact-left {
    border-radius: 25px 25px 0 0;
  }

  .contact-right {
    border-radius: 0 0 25px 25px;
  }

  .row {
    flex-direction: column;
  }
}


/* ============================= */
/* Tablets (≤992px) */
/* ============================= */
@media (max-width: 992px) {
  .contact-wrapper {
    padding: 30px;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }
}




/* WhatsApp Button Bounce Animation */
@keyframes whatsapp-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    animation: whatsapp-bounce 2s infinite;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #333;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 90px;
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

#subject option:hover,
#subject option:checked {
    background: #7c3aed;
    color: white;
}

/* Make dropdown appear as a grid */
#subject {
    appearance: none;
    background-image: none;
    padding: 10px;
    min-height: 120px;
    overflow-y: auto;
    max-height: 200px;
}

#subject::-webkit-scrollbar {
    width: 6px;
}

#subject::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

#subject::-webkit-scrollbar-thumb {
    background: #061533;
    border-radius: 3px;
}


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

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.3);
}

.contact-submit-btn svg {
    transition: transform 0.3s ease;
}

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

.contact-map-section {
    padding: 80px 20px;
    background: #f8f9fc;
}

.contact-map-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-map-header h2 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #061533;
    margin-bottom: 10px;
}

.contact-map-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-gray);
}

.contact-map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(6, 21, 51, 0.1);
}

.contact-map-wrapper iframe {
    display: block;
}

/* Leaders Section */
.leaders-section {
    padding: 100px 20px;
    /* background: linear-gradient(135deg, #061533 0%, #0a2555 100%); */
    overflow: hidden;
}

.leaders-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.leaders-cards {
    display: flex;
    gap: 30px;
    position: relative;
}

.leaders-cards::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -40px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, rgba(124, 58, 237, 0.5) 2px, transparent 2px);
    background-size: 12px 12px;
}

.leaders-cards::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 40px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, rgba(124, 58, 237, 0.5) 2px, transparent 2px);
    background-size: 12px 12px;
}

.leader-card {
    position: relative;
    width: 220px;
}

.leader-card.featured {
    margin-top: -40px;
}

.leader-card-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: #7c3aed;
    border-radius: 20px;
    z-index: 0;
}

.leader-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.leader-card:hover .leader-image img {
    filter: grayscale(0%);
}

.leader-linkedin {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #7c3aed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    text-decoration: none;
}

.leader-linkedin svg {
    fill: var(--white);
}

.leader-linkedin:hover {
    background: #5b21b6;
    transform: translateX(-50%) scale(1.1);
}

.leader-linkedin-2 {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #7c3aed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    text-decoration: none;
}

.leader-linkedin-2 svg {
    fill: var(--white);
}

.leader-linkedin-2:hover {
    background: #5b21b6;
    transform: translateX(-50%) scale(1.1);
}

.leader-info {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 15px 10px;
}

.leader-info h3 {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.leader-info p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.leaders-text {
    padding-left: 40px;
}

.leaders-title {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.leaders-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #7c3aed;
}

.leaders-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: rgba(5, 5, 5, 0.8);
    line-height: 1.8;
}

/* Services Why Section */
.services-why {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8f9fc 0%, var(--white) 100%);
}

.services-why-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-why-title {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #061533;
}

.services-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(6, 21, 51, 0.08);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(6, 21, 51, 0.15);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon svg {
    stroke: var(--white);
}

.why-card h4 {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #061533;
    margin-bottom: 10px;
}

.why-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.story-content-inner {
    max-width: 500px;
}

.story-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #7c3aed;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.story-title {
    font-family: 'Lora', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.story-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-desc-secondary {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 35px;
}

.story-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.story-btn:hover {
    background: var(--white);
    color: #061533;
    border-color: var(--white);
    transform: translateY(-3px);
}

.story-btn svg {
    transition: transform 0.3s ease;
}

.story-btn:hover svg {
    transform: translateX(5px);
}

/* =========================
   TABLET (iPad & Tabs)
   ========================= */
@media (max-width: 992px) {
    .services-why {
        padding: 80px 20px;
    }

    .services-why-title {
        font-size: 2.2rem;
    }

    .services-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* =========================
   LARGE PHONES
   ========================= */
@media (max-width: 768px) {
    .services-why-title {
        font-size: 2rem;
    }

    /* ✅ ONE CARD PER ROW */
    .services-why-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .why-card {
        padding: 35px 25px;
    }
}

/* =========================
   MEDIUM PHONES
   ========================= */
@media (max-width: 576px) {
    .services-why {
        padding: 70px 16px;
    }

    .services-why-title {
        font-size: 1.85rem;
    }

    .why-icon {
        width: 65px;
        height: 65px;
    }

    .why-card h4 {
        font-size: 1.1rem;
    }
}

/* =========================
   SMALL PHONES
   ========================= */
@media (max-width: 480px) {
    .services-why-title {
        font-size: 1.7rem;
    }

    .why-card {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .why-card p {
        font-size: 0.88rem;
    }
}

/* =========================
   EXTRA SMALL DEVICES
   ========================= */
@media (max-width: 320px) {
    .services-why-title {
        font-size: 1.5rem;
    }

    .why-icon {
        width: 58px;
        height: 58px;
    }

    .why-card h4 {
        font-size: 1rem;
    }

    .why-card p {
        font-size: 0.85rem;
    }
}


/* Footer */
.footer {
    background-color: #061533;
    color: white;
}

.footer-main {
    padding: 30px 20px 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #061533 0%, transparent 100%);
}

.footer-logo {
    font-family: 'Lora', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-logo span {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: white;
    display: block;
}

.footer-about {
    position: relative;
}

.footer-about p {
    font-size: 0.95rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

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

.social-link:hover {
    background: white;
    color: #061533;
    transform: translateY(-3px);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

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

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    color: white;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact li svg {
    min-width: 18px;
    margin-top: 3px;
    stroke: white;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: white;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;

    }

    .navbar {
        position: fixed;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 50px;
        transition: left 0.3s ease;
        color: white !important;
    }

    .nav-link.nav-btn {
        background: linear-gradient(135deg, #e3e8f2 0%, #717172 100%);
    color: black !important;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    }

    .nav-link {
        color: white;
        font-size: 22px;
        align-items: flex-start;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link.active {
        color: white;
    }
    .nav-links.active {
        left: 0;
    }

    .hero-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        text-align: center;
    }

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

    .hero-feature {
        padding: 12px 15px;
    }

    .feature-text {
        font-size: 0.95rem;
    }

    .hero-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-accent {
        font-size: 0.8rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .position-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .position-meta {
        justify-content: center;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .feature-row.reverse {
        direction: ltr;
    }

    .feature-text-content {
        max-width: 100%;
        text-align: center;
    }

    .feature-heading {
        font-size: 1.6rem;
    }

    .feature-btn {
        display: flex;
        justify-content: center;
        width: fit-content;
        margin: 15px auto 0;
    }

    .laptop-mockup {
        width: 280px;
        height: 180px;
    }

    .tablet-mockup {
        width: 220px;
        height: 300px;
    }

    .mockup-icon {
        font-size: 3rem;
    }

    .decorative-circle {
        display: none;
    }

    .core-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .services-watermark {
        font-size: 2.5rem;
        top: -20px;
    }

    .services-title {
        font-size: 2rem;
    }

    .core-service-card {
        padding: 25px 20px;
    }

    .industries-layout {
        gap: 30px;
    }

    .industries-text {
        position: static;
        text-align: center;
    }

    .industries-heading {
        font-size: 0.8rem;
    }

    .industries-subheading {
        font-size: 2rem;
    }

    .industries-btn {
        display: inline-flex;
        justify-content: center;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .industry-card {
        padding: 25px 15px;
    }

    .industry-icon {
        width: 50px;
        height: 50px;
    }

    .industry-card span {
        font-size: 0.85rem;
    }

    .why-choose-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-choose-content {
        text-align: center;
        max-width: 100%;
    }

    .why-choose-title {
        font-size: 2.2rem;
    }

    .why-feature {
        padding: 20px;
    }

    .why-feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .why-feature span {
        font-size: 0.9rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-desc {
        font-size: 1rem;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 15px 30px;
        font-size: 0.95rem;
    }

    .shaping-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .shaping-content {
        text-align: center;
        max-width: 100%;
    }

    .shaping-title {
        font-size: 2rem;
    }

    .shaping-btn {
        display: inline-flex;
    }

    .shaping-image-placeholder {
        width: 250px;
        height: 300px;
        font-size: 4rem;
    }

    .shaping-decorative-circle {
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 50px;
        height: 50px;
        border: 3px solid #7c3aed;
        border-radius: 50%;
        z-index: 2;
    }

    .story-split {
        grid-template-columns: 1fr;
    }

    .story-image-side {
        height: 300px;
    }

    /* .story-content-side {
        padding: 50px 20px;
    } */

    .story-title {
        font-size: 2rem;
    }

    .core-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 30px 25px;
    }

    .value-card:hover {
        transform: translateY(-5px);
    }

    .value-number {
        font-size: 2.5rem;
    }

    .value-card .value-name {
        font-size: 1.4rem;
        color: #ffffff;
    }

    .global-title {
        font-size: 2rem;
    }

    .world-map {
        padding: 20px;
    }

    .marker-pin {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .location-cards-row {
        flex-direction: column;
        align-items: center;
    }

    .location-mini-card {
        width: 100%;
        max-width: 300px;
    }

    .services-hero-title {
        font-size: 2.2rem;
    }

    .services-hero-desc {
        font-size: 1rem;
    }

    .services-title {
        font-size: 2rem;
    }

    .service-block {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
    }

    .service-block.reverse {
        direction: ltr;
    }

    .service-icon-box {
        width: 150px;
        height: 150px;
    }

    .service-image-box {
        height: 250px;
        max-width: 100%;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .services-why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .why-card {
        padding: 30px 20px;
    }

    .career-hero-title {
        font-size: 2.2rem;
    }

    .career-benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .career-benefit-card {
        padding: 30px 20px;
    }

    .career-tabs {
        flex-direction: column;
        align-items: center;
    }

    .career-tab {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .positions-grid {
        grid-template-columns: 1fr;
    }

    .career-cta-content h2 {
        font-size: 2rem;
    }

    .contact-hero-title {
        font-size: 2.2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-side {
        padding: 40px 30px;
    }

    .contact-form-side {
        padding: 40px 30px;
    }

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

    .contact-map-wrapper iframe {
        height: 300px;
    }

    .leaders-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .leaders-cards {
        justify-content: center;
    }

    .leader-card {
        width: 180px;
    }

    .leader-image {
        height: 220px;
    }

    .leaders-text {
        padding-left: 0;
        text-align: center;
    }

    .leaders-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .footer-contact li {
        justify-content: center;
        text-align: left;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        gap: 20px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .core-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-marquee {
        padding: 10px 0;
    }

    .industries-grid {
        gap: 20px;
        animation: scroll-left-to-right 40s linear infinite;
    }

    .industry-card {
        flex: 0 0 260px;
        padding: 30px 20px;
    }
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== GLOBAL MAP UPGRADE ===== */

.world-map {
    position: relative;
    padding: 50px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.35),
        inset 0 0 80px rgba(124, 58, 237, 0.08);
    overflow: hidden;
}

/* World Map */
.map-image {
    width: 100%;
    opacity: 0.35;
    filter: invert(1) brightness(1.4) contrast(0.9);
}

/* Connection Lines */
.map-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.map-lines path {
    fill: none;
    stroke: rgba(124, 58, 237, 0.45);
    stroke-width: 2;
    stroke-dasharray: 6;
    animation: dashMove 6s linear infinite;
}

@keyframes dashMove {
    to {
        stroke-dashoffset: -60;
    }
}

/* Marker Base */
.map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 5;
}

/* Region Glow */
.region-glow {
    position: absolute;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15), transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: glowFloat 6s ease-in-out infinite;
}

@keyframes glowFloat {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-12px);
    }
}

/* Pulse */
.marker-pulse {
    position: absolute;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.35), transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 2.5s infinite ease-out;
}

@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Marker Pin */
.marker-pin {
    position: relative;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border: 3px solid #fff;
    box-shadow:
        0 0 0 6px rgba(124, 58, 237, 0.15),
        0 20px 50px rgba(124, 58, 237, 0.6);
    z-index: 2;
    transition: transform 0.3s ease;
}

.map-marker:hover .marker-pin {
    transform: scale(1.15);
}

/* Tooltip */
.marker-tooltip {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 18px 24px;
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.marker-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(255, 255, 255, 0.95);
}

.map-marker:hover .marker-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Tooltip Text */
.marker-tooltip h4 {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7c3aed, #061533);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.marker-tooltip p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #555;
}


/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-button svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Custom Application Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 21, 51, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #061533;
    transform: rotate(90deg);
}

.modal-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.modal-icon svg {
    stroke: white;
}

.modal-title {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #061533;
    margin-bottom: 15px;
}

.modal-message {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.modal-email {
    background: rgba(124, 58, 237, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.email-link {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #7c3aed;
    text-decoration: none;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: #5b21b6;
    text-decoration: underline;
}

.modal-btn {
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(6, 21, 51, 0.3);
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 21, 51, 0.4);
}

/* ===================================
   SERVICES PAGE ANIMATIONS
   =================================== */

/* Services Hero Section Animations */
.services-hero-label {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.services-hero-title {
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.services-hero-desc {
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.services-hero-bg {
    animation: float 6s ease-in-out infinite;
}

/* Service Block Base Styles */
.service-block {
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.service-block.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Alternate animations for service blocks */
.service-block:nth-child(odd).animate .service-block-content {
    animation: fadeInLeft 0.8s ease-out;
}

.service-block:nth-child(even).animate .service-block-content {
    animation: fadeInRight 0.8s ease-out;
}

.service-block.animate .service-block-visual {
    animation: scaleIn 0.8s ease-out 0.2s both;
}

/* Service Number Animation */
.service-number {
    display: inline-block;
    transition: all 0.3s ease;
}







/* Service Features Animation */
.service-features li {
    opacity: 1;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.service-block.animate .service-features li:nth-child(1) {
    animation: fadeInLeft 0.5s ease-out 0.4s both;
}

.service-block.animate .service-features li:nth-child(2) {
    animation: fadeInLeft 0.5s ease-out 0.5s both;
}

.service-block.animate .service-features li:nth-child(3) {
    animation: fadeInLeft 0.5s ease-out 0.6s both;
}

.service-block.animate .service-features li:nth-child(4) {
    animation: fadeInLeft 0.5s ease-out 0.7s both;
}

/* Feature Dot Pulse on Hover */
.feature-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #7c3aed;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}



/* Service Features List Hover */
.service-features li {
    transition: all 0.3s ease;
    cursor: pointer;
}



/* Services Intro Animation */
.services-intro {
    opacity: 1;
    transform: translateY(30px);
}

.services-intro.animate {
    animation: fadeInUp 0.8s ease-out both;
}

/* Reduce animations on mobile for performance */
@media (max-width: 768px) {
    .services-hero-bg {
        animation: none;
    }

    .service-block:hover {
        transform: none;
    }

    .service-block:hover .service-image-box img {
        transform: scale(1.05);
    }
}




/* =========================
   SCROLL REVEAL ANIMATION
   ========================= */

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

/* Active state */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Reverse block animation (left → right) */
.service-block.reverse.reveal {
    transform: translateX(60px);
}

.service-block.reverse.reveal.active {
    transform: translateX(0);
}

/* Slight delay for better feel */
.service-block.reveal {
    transition-delay: 0.15s;
}

/* Faster animation on mobile */
@media (max-width: 768px) {
    .reveal {
        transition-duration: 0.6s;
    }
}


/* Home AI ML Animation */
    

        .hero-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            width: 100%;
        }

        .header-animation {
            text-align: center;
            margin-bottom: 30px;
        }

        .badge-animation {
            background: linear-gradient(90deg, #ff416c, #ff4b2b);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            text-transform: uppercase;
            color: white;
            box-shadow: 0 0 15px rgba(255, 75, 43, 0.4);
        }

        .ai-animation {
            font-size: clamp(2rem, 5vw, 4rem);
            margin: 20px 0;
            color: white;
            letter-spacing: -1px;
            font-family: 'Lora', serif;
        }

        .subtext-animation {
            color: #cbd5e1;
            max-width: 600px;
            line-height: 1.6;
            margin: 0 auto;
        }

        .visual {
            width: 100%;
            max-width: 800px;
            display: flex;
            justify-content: center;
        }

        /* svg {
            width: 100%;
            height: auto;
        } */

        .node-text {
            font-size: 14px;
            fill: white;
            font-weight: 500;
        }

        /* Standard Pulse Animation */
        @keyframes pulse {
            0% { opacity: 0.6; transform: scale(0.9); }
            100% { opacity: 1; transform: scale(1.1); }
        }

        .pulsing {
            animation: pulse 2s ease-in-out infinite alternate;
            transform-origin: center;
        }

          /* ================= RESPONSIVE BREAKPOINTS ================= */

        /* Extra small devices */
        @media (max-width: 320px) {
            .hero-wrapper { padding: 100px 10px 0px 10px; }
            .ai-animation { font-size: 1.7rem; }
            .subtext-animation { font-size: 0.8rem; }
            .visual { max-width: 320px; }
            .node-text { font-size: 10px; }
        }

        /* Small devices */
        @media (max-width: 480px) {
            .ai-animation { font-size: 2rem; }
            .subtext-animation { font-size: 0.85rem; }
            .visual { max-width: 360px; }
            .node-text { font-size: 11px; }
        }

        /* Medium devices */
        @media (max-width: 576px) {
            .ai-animation { font-size: 2.2rem; }
            .subtext-animation { font-size: 0.9rem; }
            .visual { max-width: 420px; }
            .node-text { font-size: 12px; }
        }

        /* Large phones */
        @media (max-width: 768px) {
            .ai-animation { font-size: 2.5rem; }
            .subtext-animation { max-width: 90%; }
            .visual { max-width: 520px; }
            .node-text { font-size: 13px; }
        }

        /* Tablets */
        @media (max-width: 992px) {
            .visual { max-width: 650px; }
            .ai-animation { font-size: 2.2rem; 
            margin-top: 20px;}
        }

        @media screen and (max-width: 1152px) {
            .visual { max-width: 720px; }
        }

        @media screen and (max-width: 1440px) {
            .visual { max-width: 780px; }
        }

        @media (max-width: 576px) {
    .hero-visual-svg {
        transform: scale(1.15);
        transform-origin: center;
    }
}
@media (max-width: 360px) {
    .hero-visual-svg {
        transform: scale(1.25);
    }
}

@media (min-width: 1200px) {
    .visual {
        margin-top: -70px;
    }
}


/* AI ML Section */


body {
  background: radial-gradient(circle at top, #233a7d, #050b24);
  color: #fff;
}

.topics {
  min-height: 100vh;
  padding: 10px 20px;
  text-align: center;
}

.topics h2 {
  font-size: 32px;
  margin-bottom: 50px;
  color: #b7c9ff;
  font-family: 'Lora', serif;
}

/* Grid */
.cards {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.card {
  position: relative;
  background: #2f3b63;
  border-radius: 18px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

/* Icon */
.icon {
  width: 50px;
  height: 50px;
  background: #3c4a75;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 25px;
}

/* Title */
.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-family: 'Lora', serif;
}

.card p {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd6ff;
}

/* Tags */
.tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.hot { background: #ff4d6d; }
.trending { background: #4da6ff; }
.growing { background: #ffb84d; }
.essential { background: #7cff4d; color:#000; }
.rising { background: #9f7cff; }

/* Responsive */
@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .topics h2 {
    font-size: 24px;
  }
}



/* Director Section */

.team-section {
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.team-title {
    font-size: 3rem;
    margin-bottom: 60px;
    font-family: 'Lora', serif;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: auto;
}

.team-card {
    text-align: center;
}

.team-card img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    
}

.team-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 25px;
}

.read-btn {
    padding: 10px 26px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-btn:hover {
    background: #fff;
    color: #132a3a;
}

/* RESPONSIVE */
/* ============================= */
/* Extra small devices (phones, portrait) */
/* iPhone SE, Galaxy Fold */
@media (max-width: 320px) {
    .team-section {
        padding: 40px 12px;
    }

    .team-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .team-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-card img {
        width: 120px;
        height: 120px;
    }

    .team-card h3 {
        font-size: 1.2rem;
    }

    .team-card p {
        font-size: 0.85rem;
    }

    .read-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

/* ============================= */
/* Small devices (phones) */
/* iPhone 5/SE, small Android */
@media (max-width: 480px) {
    .team-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .team-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .team-card img {
        width: 140px;
        height: 140px;
    }
}

/* ============================= */
/* Medium devices (phones) */
/* Samsung, Oppo, Realme */
@media (max-width: 576px) {
    .team-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-card img {
        width: 150px;
        height: 150px;
    }
}

/* ============================= */
/* Large phones */
/* iPhone XR, 12, 13, 14 */
@media (max-width: 768px) {
    .team-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }

    .team-title {
        font-size: 2.3rem;
    }
}

/* ============================= */
/* Tablets (portrait + landscape) */
/* iPad, Samsung Tab */
@media (max-width: 992px) {
    .team-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 45px;
    }

    .team-title {
        font-size: 2.6rem;
    }
}

/* ============================= */
/* Small laptops */
@media screen and (max-width: 1152px) {
    .team-container {
        gap: 40px;
    }
}

/* ============================= */
/* Large laptops */
@media screen and (max-width: 1440px) {
    .team-container {
        max-width: 1100px;
    }
}
