/* =================================================================
   OUR OFFICES SECTION
   ================================================================= */

.our-offices-section {
    padding: 100px 0;
    position: relative;
}

/* Remove the ::before pseudo-element background as well */

/* Office Cards */
.offices-info {
    position: relative;
    z-index: 2;
}

.office-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(10, 54, 144, 0.08);
    transition: all 0.3s ease;
}

.office-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 54, 144, 0.12);
}

.office-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(10, 54, 144, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.office-content h4 {
    font-family: 'Satoshi-Bold', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a3690;
    margin-bottom: 0.3rem;
}

.office-content p {
    font-size: 0.95rem;
    color: #464e5f;
    margin: 0;
    line-height: 1.5;
}

/* Map Container */
.map-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.india-map {
    width: 100%;
    height: auto;
    display: block;
}

/* Map Pins */
.map-pin {
    position: absolute;
    cursor: pointer;
    z-index: 10;
}

.pin-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
    z-index: 1;
}

/* Pin Positioning (approximate positions on India map) */
.pin-delhi {
    top: 28%;
    left: 40%;
}

.pin-delhi .pin-dot {
    background: #0a3690;
}

.pin-delhi .pin-pulse {
    background: rgba(10, 54, 144, 0.3);
}

.pin-jaipur {
    top: 35%;
    left: 35%;
}

.pin-jaipur .pin-dot {
    background: #02c9a8;
}

.pin-jaipur .pin-pulse {
    background: rgba(2, 201, 168, 0.3);
}

.pin-lucknow {
    top: 32%;
    left: 48%;
}

.pin-lucknow .pin-dot {
    background: #1645a4;
}

.pin-lucknow .pin-pulse {
    background: rgba(22, 69, 164, 0.3);
}

.pin-ladakh {
    top: 15%;
    left: 38%;
}

.pin-ladakh .pin-dot {
    background: #ff6b6b;
}

.pin-ladakh .pin-pulse {
    background: rgba(255, 107, 107, 0.3);
}

.pin-patna {
    top: 38%;
    left: 52%;
}

.pin-patna .pin-dot {
    background: #9c88ff;
}

.pin-patna .pin-pulse {
    background: rgba(156, 136, 255, 0.3);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Pin Hover Effects */
.map-pin:hover .pin-dot {
    transform: scale(1.2);
    transition: transform 0.2s ease;
}

.map-pin:hover .pin-pulse {
    animation-duration: 1s;
}

/* Responsive Design */
@media (max-width: 992px) {
    .our-offices-section {
        padding: 80px 0;
    }
    
    .office-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .our-offices-section {
        padding: 60px 0;
    }
    
    .office-card {
        padding: 0.8rem;
    }
    
    .office-content h4 {
        font-size: 1.1rem;
    }
    
    .office-content p {
        font-size: 0.9rem;
    }
    
    .map-container {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .office-card {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .pin-dot {
        width: 10px;
        height: 10px;
    }
    
    .pin-pulse {
        width: 16px;
        height: 16px;
    }
}/* =================================================================
   WHY POLARIS SECTION
   ================================================================= */

.why-polaris-section {
    padding: 120px 0;
    background: white;
    position: relative;
}

.why-polaris-section .row {
    gap: 4rem;
}

.why-polaris-section .col-lg-6 {
    flex: 0 0 auto;
    width: calc(50% - 2rem);
}

.why-polaris-title {
    font-family: 'Satoshi-Black', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #0a3690;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.brand-intro {
    font-family: 'Satoshi-Medium', sans-serif;
    font-size: 1.2rem;
    color: #1645a4;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 600;
    font-style: italic;
}

.story-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.point-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.2rem;
}

.point-content h4 {
    font-family: 'Satoshi-Bold', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a3690;
    margin-bottom: 0.5rem;
    letter-spacing: -0.2px;
}

.point-content p {
    font-size: 1rem;
    color: #464e5f;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Video Container */
.video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(10, 54, 144, 0.15);
    background: #000;
}

.logo-reveal-video {
    width: 100%;
    height: auto;
    display: block;
    min-height: 400px;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 54, 144, 0.1) 0%, rgba(2, 201, 168, 0.1) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
    .why-polaris-section {
        padding: 80px 0;
    }
    
    .why-polaris-section .row {
        gap: 3rem;
    }
    
    .why-polaris-section .col-lg-6 {
        width: 100%;
    }
    
    .why-polaris-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .brand-intro {
        font-size: 1.1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .why-polaris-section {
        padding: 60px 0;
    }
    
    .why-polaris-section .row {
        gap: 2rem;
    }
    
    .why-polaris-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .brand-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .story-point {
        margin-bottom: 1.5rem;
    }
    
    .point-content h4 {
        font-size: 1.1rem;
    }
    
    .point-content p {
        font-size: 0.95rem;
    }
    
    .logo-reveal-video {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .story-point {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .point-icon {
        align-self: center;
    }
}/* =================================================================
   MISSION & VISION SECTION
   ================================================================= */

.mission-vision-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 54, 144, 0.02) 0%, rgba(2, 201, 168, 0.02) 100%);
    pointer-events: none;
}

.section-title {
    font-family: 'Satoshi-Black', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #0a3690;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #464e5f;
    font-weight: 500;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Mission Content */
.mission-content, .vision-content {
    position: relative;
    z-index: 2;
}

.icon-wrapper {
    margin-bottom: 2rem;
    display: inline-block;
}

.mission-title, .vision-title {
    font-family: 'Satoshi-Bold', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0a3690;
    margin-bottom: 1.5rem;
    letter-spacing: -0.3px;
}

.mission-statement, .vision-statement {
    font-family: 'Satoshi-Medium', sans-serif;
    font-size: 1.1rem;
    color: #464e5f;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
    letter-spacing: -0.1px;
}

/* Images */
.mission-image, .vision-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-visual, .vision-visual {
    width: 100%;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-visual svg, .vision-visual svg {
    width: 100%;
    height: auto;
    max-width: 250px;
}

.logo-image {
    max-width: 200px;
    height: auto;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}



/* Responsive Design */
@media (max-width: 992px) {
    .mission-vision-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mission-title, .vision-title {
        font-size: 1.5rem;
    }
    
    .mission-statement, .vision-statement {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .mission-vision-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .mission-content, .vision-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .mission-title, .vision-title {
        font-size: 1.4rem;
    }
    
    .mission-statement, .vision-statement {
        font-size: 0.95rem;
    }
}/* =================================================================
   NEW ABOUT US HERO SECTION CSS
   =================================================================
   This is a separate CSS file for the new About Us hero section.
   Keep this separate until finalization to avoid disturbing existing page.
   ================================================================= */

/* Font imports - using web fonts for now, replace with your actual font files later */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&display=swap');

/* =================================================================
   HERO SECTION - 75% SCREEN HEIGHT
   ================================================================= */

.new-hero-section {
    height: 75vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* =================================================================
   HERO CONTENT
   ================================================================= */

.new-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    color: white;
    padding-top: 120px; /* Ensure content is below header */
}

.new-hero-subtitle {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.new-hero-title {
    font-family: 'Inter', 'Satoshi-Black', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.new-hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}







/* =================================================================
   ALTERNATIVE HERO STYLES (uncomment to use)
   ================================================================= */

/* Option 1: Image Background Hero */
/*
.new-hero-section.image-bg {
    background: linear-gradient(rgba(10, 54, 144, 0.7), rgba(10, 54, 144, 0.5)), 
                url('../img/about-hero-bg.jpg') center/cover no-repeat;
}
*/

/* Option 2: Minimal Hero */
/*
.new-hero-section.minimal {
    background: linear-gradient(135deg, #0a3690 0%, #1645a4 100%);
}

.new-hero-section.minimal::before {
    display: none;
}
*/

/* Option 3: Animated Gradient Hero */
/*
.new-hero-section.animated-gradient {
    background: linear-gradient(-45deg, #0a3690, #1645a4, #02c9a8, #3959ff);
    background-size: 400% 400%;
    animation: hero-gradient 8s ease infinite;
}

@keyframes hero-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
*/

/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */

/* Tablet styles */
@media (max-width: 1024px) {
    .new-hero-content {
        padding: 0 1.5rem;
    }
    
    .new-hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .new-hero-section {
        height: 80vh;
        min-height: 600px;
    }

    .new-hero-content {
        padding: 0 1rem;
        padding-top: 100px; /* Adjusted for mobile header */
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .new-hero-section {
        height: 85vh;
    }
    
    .new-hero-subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
    
    .new-hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .new-hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */

.new-hero-section.no-animation * {
    animation: none !important;
    opacity: 1 !important;
}

.new-hero-section.dark-theme {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.new-hero-section.light-theme {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    color: #333;
}

.new-hero-section.light-theme .new-hero-content {
    color: #333;
}

.new-hero-section.light-theme .new-hero-subtitle {
    color: rgba(51, 51, 51, 0.8);
}

.new-hero-section.light-theme .new-hero-description {
    color: rgba(51, 51, 51, 0.9);
}

.new-hero-section.light-theme .new-hero-cta {
    background: rgba(10, 54, 144, 0.1);
    color: #0a3690;
    border-color: rgba(10, 54, 144, 0.2);
}

.new-hero-section.light-theme .new-hero-cta:hover {
    background: rgba(10, 54, 144, 0.2);
    color: #0a3690;
}

/* =================================================================
   DEBUGGING STYLES (remove in production)
   ================================================================= */

.debug-hero {
    position: relative;
}

.debug-hero::before {
    content: 'Hero Height: 70vh';
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    z-index: 1000;
    border-radius: 3px;
}

/* =================================================================
   POLARIS JOURNEY TIMELINE - COMPACT HORIZONTAL
   ================================================================= */

.polaris-journey-timeline {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
}

.polaris-journey-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 54, 144, 0.02) 0%, rgba(2, 201, 168, 0.02) 100%);
    pointer-events: none;
}

.journey-main-title {
    font-family: 'Inter', 'Satoshi-Black', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #0a3690;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.journey-main-subtitle {
    font-size: 1.2rem;
    color: #464e5f;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto 4rem;
}

/* Horizontal Timeline */
.horizontal-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(10, 54, 144, 0.3) transparent;
}

.horizontal-timeline::-webkit-scrollbar {
    height: 6px;
}

.horizontal-timeline::-webkit-scrollbar-track {
    background: rgba(10, 54, 144, 0.1);
    border-radius: 3px;
}

.horizontal-timeline::-webkit-scrollbar-thumb {
    background: rgba(10, 54, 144, 0.3);
    border-radius: 3px;
}

.horizontal-timeline::-webkit-scrollbar-thumb:hover {
    background: rgba(10, 54, 144, 0.5);
}

/* Progress Line */
.timeline-progress-line {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0a3690 0%, #02c9a8 100%);
    border-radius: 2px;
    z-index: 1;
}

/* Timeline Milestones */
.timeline-milestone {
    position: relative;
    flex: 0 0 auto;
    width: 180px;
    text-align: center;
    margin: 0 10px;
    z-index: 2;
}

.timeline-milestone:first-child {
    margin-left: 0;
}

.timeline-milestone:last-child {
    margin-right: 0;
}

/* Milestone Dots */
.milestone-dot {
    width: 16px;
    height: 16px;
    background: #0a3690;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    border: 3px solid white;
    box-shadow: 0 0 0 2px rgba(10, 54, 144, 0.2);
    transition: all 0.3s ease;
}

.milestone-dot.milestone-major {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #02c9a8 0%, #1dd3b0 100%);
    box-shadow: 0 0 0 3px rgba(2, 201, 168, 0.3);
}

.timeline-milestone:hover .milestone-dot {
    transform: scale(1.2);
    box-shadow: 0 0 0 4px rgba(10, 54, 144, 0.3);
}

.timeline-milestone:hover .milestone-dot.milestone-major {
    box-shadow: 0 0 0 4px rgba(2, 201, 168, 0.4);
}

/* Milestone Content */
.milestone-content {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(10, 54, 144, 0.1);
    border: 1px solid rgba(10, 54, 144, 0.05);
    transition: all 0.3s ease;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.milestone-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10, 54, 144, 0.15);
}

.milestone-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: #02c9a8;
    margin-bottom: 0.8rem;
}

.milestone-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(10, 54, 144, 0.05);
}

.milestone-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.milestone-content h4 {
    font-family: 'Inter', 'Satoshi-Bold', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a3690;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.milestone-content p {
    font-size: 0.9rem;
    color: #464e5f;
    line-height: 1.4;
    margin: 0;
    flex-grow: 1;
}

/* Mobile Timeline (for small screens) */
.mobile-timeline {
    display: none;
}

.mobile-timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(10, 54, 144, 0.08);
}

.mobile-year {
    flex: 0 0 60px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #02c9a8;
    margin-right: 1rem;
}

.mobile-content h5 {
    font-weight: 700;
    color: #0a3690;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.mobile-content p {
    font-size: 0.9rem;
    color: #464e5f;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .timeline-milestone {
        width: 160px;
        margin: 0 8px;
    }
    
    .milestone-content {
        padding: 1.2rem 0.8rem;
        height: 260px;
    }
    
    .milestone-logo {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 992px) {
    .polaris-journey-timeline {
        padding: 80px 0;
    }
    
    .journey-main-title {
        font-size: 2.2rem;
    }
    
    .journey-main-subtitle {
        font-size: 1.1rem;
    }
    
    .timeline-milestone {
        width: 140px;
        margin: 0 6px;
    }
    
    .milestone-content {
        padding: 1rem 0.6rem;
        height: 240px;
    }
}

@media (max-width: 768px) {
    .horizontal-timeline {
        display: none;
    }
    
    .mobile-timeline {
        display: block !important;
    }
    
    .journey-main-title {
        font-size: 1.9rem;
    }
    
    .journey-main-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .polaris-journey-timeline {
        padding: 60px 0;
    }
    
    .mobile-timeline-item {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }
    
    .mobile-year {
        margin-right: 0;
        margin-bottom: 0.5rem;
        flex: none;
    }
}

/* Animation for scroll reveal */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.timeline-milestone {
    animation: fadeInScale 0.6s ease forwards;
    opacity: 0;
}

.timeline-milestone:nth-child(1) { animation-delay: 0.1s; }
.timeline-milestone:nth-child(2) { animation-delay: 0.2s; }
.timeline-milestone:nth-child(3) { animation-delay: 0.3s; }
.timeline-milestone:nth-child(4) { animation-delay: 0.4s; }
.timeline-milestone:nth-child(5) { animation-delay: 0.5s; }
.timeline-milestone:nth-child(6) { animation-delay: 0.6s; }
.timeline-milestone:nth-child(7) { animation-delay: 0.7s; }
.timeline-milestone:nth-child(8) { animation-delay: 0.8s; }
.timeline-milestone:nth-child(9) { animation-delay: 0.9s; }
.timeline-milestone:nth-child(10) { animation-delay: 1s; }
.timeline-milestone:nth-child(11) { animation-delay: 1.1s; }

/* =================================================================
   INTEGRATION HELPERS
   ================================================================= */

/* Hide original hero section when testing new one */
.hide-original-hero .aboutwrap {
    display: none;
}

/* Smooth transition between old and new */
.transition-hero {
    transition: all 0.5s ease;
}

/* Ensure proper stacking */
.new-hero-section {
    position: relative;
    z-index: 1;
}

/* Make sure header appears above hero */
.header {
    position: relative;
    z-index: 999;
}
