/*
==========================================================================
   SAGAR VISTAAR - MAIN STYLESHEET
   Clean and Organized CSS
==========================================================================
*/

/*
==========================================================================
   BOOTSTRAP INTEGRATION OVERRIDES
==========================================================================
*/

/* Override Bootstrap container to maintain current max-widths */
.what-we-do-section .container,
.news-insights-section .container,
.who-we-are-section .container,
.why-us-section .container,
.founders-section .container,
.vision-mission-section .container,
.blog-section .container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

/* Override Bootstrap row to maintain current layouts */
.what-we-do-section .row {
    margin-left: 0;
    margin-right: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-insights-section .row,
.vision-mission-section .row {
    margin-left: 0;
    margin-right: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
}

/* Override Bootstrap columns to maintain current styling */
.what-we-do-section [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
    flex: none;
    width: auto;
}

.news-insights-section [class*="col-"],
.vision-mission-section [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
    flex: none;
    width: auto;
}

/* Blog section container override */
.blog-section .container {
    width: 100%;
    margin: 0 auto;
}

/* Responsive overrides to match current behavior */
@media (max-width: 992px) {
    .what-we-do-section .row {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .news-insights-section .row,
    .vision-mission-section .row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ni-divider,
    .vm-divider {
        width: 100%;
        height: 1px;
        margin: 20px 0;
    }
}

@media (max-width: 768px) {
    .what-we-do-section .row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-insights-section .row,
    .vision-mission-section .row {
        grid-template-columns: 1fr;
        gap: 0px;
    }
}

/*
==========================================================================
   1. BASE STYLES & RESETS
==========================================================================
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    line-height: 1.6;
    color: #333;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    width: 100%;
}

/*
==========================================================================
   2. HEADER & NAVIGATION
==========================================================================
*/

/* Header Styles */
header {
    background: linear-gradient(90deg, #1E2761, #28398F, #1E1B4B) !important;
    z-index: 1000;
}

.navbar {
    background: transparent !important;
    height: 70px;
}

.logo {
    color: white !important;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none !important;
    position: absolute;
}

.navbar-logo {
    height: 90px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-top: 18px;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5));
}

/* Navigation Links */
.nav-links .nav-link {
    color: white !important;
    padding: 0.5rem 2.15rem !important;
    border: 2px solid transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

@media (max-width: 1366px) {
    .nav-links .nav-link {
        padding: 0.5rem 1.5rem !important;
    }
}

.nav-links .nav-item:last-child .nav-link {
    border-right: none;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Navigation Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    transition: all 0.7s ease-in-out;
}

.mobile-drawer.active {
    right: 0;
}

.mobile-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-drawer.active .mobile-drawer-overlay {
    opacity: 1;
}

.mobile-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: linear-gradient(135deg, #1E2761, #28398F, #1E1B4B);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-drawer.active .mobile-drawer-content {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
    height: 40px;
    width: auto;
}

.mobile-drawer-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.mobile-drawer-close:hover {
    color: #00D4FF;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
    display: block;
    padding: 20px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #00D4FF;
    padding-left: 30px;
}

/*
==========================================================================
   3. HERO SECTIONS
==========================================================================
*/

.hero-video {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

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

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-top: 25rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.welcome {
    padding-top: 100px;
}

.page-main {
    margin-top: 112px;
    min-height: 60vh;
}

/*
==========================================================================
   4. STATS & FEATURES
==========================================================================
*/

.stats-bar {
    background: linear-gradient(90deg, #1E2761, #28398F, #1E2761);
    color: white;
}

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

.stat-item {
    text-align: center;
    padding: 20px 15px;
    position: relative;
}

.stat-item:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    color: #00B7F3;
}

.stats-bar .stat-number .clad {
    font-size: 1rem !important;
    display: inline !important;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
}

/* Features Section */
.features {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./assets/pexels-pixabay-159298.jpg') center/cover;
    color: white !important;
    opacity: 0.9;
    margin-bottom: 5rem;
}

.features .feature-icon,
.features .feature-icon i {
    color: white !important;
}

.features h3,
.features p {
    color: white !important;
}

.features-section {
    background: #9b8c8c;
    padding: 30px 0;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 30px 30px;
}

.feature-item {
    text-align: center;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.icon-container {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.icon-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover .icon-container::before {
    opacity: 1;
}

.feature-item:hover .icon-container {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin: 0 auto 20px;
    display: block;
}

.feature-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.highlight-blue {
    color: #1E2761;
    font-weight: 700;
}

.highlight-white {
    color: white;
    font-weight: 400;
}

/*
==========================================================================
   5. PARTNER SECTIONS
==========================================================================
*/

/* Partners Banner */
.partner-banner {
    display: flex;
    min-height: 80px;
    font-family: 'Arial', sans-serif;
    margin-top: 5px;
}

.partner-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #1E2761, #28398F, #1E1B4B);
    color: white;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.partner-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.5);
}

.partner-section:last-child::after {
    display: none;
}

.partner-text {
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.partner-text .regular-text {
    color: white;
    font-weight: 400;
}

.partner-text .highlight-text {
    font-weight: 700;
    text-transform: uppercase;
}

.section-1 .highlight-text,
.section-2 .highlight-text,
.section-3 .highlight-text {
    color: #00D4FF;
}

/* Partners Section */
.partners-section {
    background: white;
    padding: 60px 0;
    overflow: hidden;
}

.partners-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 60px;
}

.main-partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    flex-shrink: 0;
}

.main-partner-image {
    max-width: 180px;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.main-partner-image:hover {
    transform: scale(1.1);
}

.vertical-divider {
    width: 1px;
    height: 120px;
    background: #555;
    flex-shrink: 0;
}

.moving-partners-container {
    flex: 1;
    overflow: hidden;
    height: 80px;
    position: relative;
    max-width: 800px;
}

.moving-partners-track {
    display: flex;
    align-items: center;
    height: 100%;
    animation: slideHorizontal 15s linear infinite;
    gap: 40px;
}

.partner-logo.moving {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    flex-shrink: 0;
    min-width: 120px;
}

.partner-logo .partner-image {
    max-width: 100px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-logo .partner-image:hover {
    transform: scale(1.05);
}

@keyframes slideHorizontal {
    0% {
        transform: translateX(0);
    }

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

/*
==========================================================================
   6. STRENGTHS SECTION
==========================================================================
*/

.strengths-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.strengths-section .container {
    max-width: 1400px;
}

.strengths-section .row {
    margin-left: -8px;
    margin-right: -8px;
}

.strengths-section .col-lg-3 {
    padding-left: 8px;
    padding-right: 8px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.title-bold {
    font-weight: 700;
    color: #555;
}

.title-normal {
    font-weight: 400;
    color: #28398F;
}

.strength-card {
    position: relative;
    height: 220px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    border-bottom: 5px solid #555;
}

.strength-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.card-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.strength-card:hover .card-background,
.strength-card:hover .card-background-img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.0) 100%);
    opacity: 1;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.strength-card:hover .card-overlay {
    height: 100%;
    opacity: 1;
}

.card-content {
    position: absolute;
    bottom: 0px;
    left: 30px;
    right: 30px;
    color: white;
    z-index: 2;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.card-description {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    margin-top: 15px;
    max-height: 0;
    overflow: hidden;
}

.strength-card:hover .card-description {
    opacity: 1;
    transform: translateY(0);
    max-height: 100px;
}

/*
==========================================================================
   7. COMPANY SECTION
==========================================================================
*/

.company-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.company-logo {
    display: inline-block;
    padding: 20px 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.company-logo-img {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.logo-icon {
    width: 60px;
    height: 60px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    vertical-align: middle;
}

.logo-bracket {
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.company-name {
    color: #ffffff;
}

.company-title {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.company-subtitle {
    font-size: 20px;
    font-weight: 300;
    margin: 5px 0 0 0;
    opacity: 0.9;
}

.tagline {
    color: #333333;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/*
==========================================================================
   8. CONTACT SECTION
==========================================================================
*/

.contact-section {
    background: linear-gradient(90deg, #1E2761, #28398F, #1E1B4B);
    color: white;
    padding: 40px 0 0 0;
    min-height: 350px;
}

.main-heading {
    text-align: center;
    padding: 0 20px 30px 20px;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.contact-title .get-text {
    color: #00D4FF;
}

.contact-title .in-touch-text {
    color: white;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #bdc3c7;
    margin-bottom: 0;
    line-height: 1.5;
}

.content-row {
    background: transparent;
}

.map-container {
    height: 300px;
    position: relative;
    overflow: hidden;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-embed {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info {
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 280px;
}

.contact-details-heading {
    font-size: 0.87rem;
    color: #bdc3c7;
    margin-bottom: 25px;
    line-height: 1.5;
    text-align: center;
    max-width: 100%;
}

.contact-details {
    display: flex;
    flex-direction: row;
    gap: 0px;
    justify-content: center;
}

.contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    text-align: center;
    min-width: 150px;
}

.contact-icon {
    width: 10px;
    height: 10px;
    color: #00D4FF;
    flex-shrink: 0;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text {
    color: white;
    font-size: 0.65rem;
}

.contact-text a {
    color: white;
    text-decoration: none;
}

.contact-text a:hover {
    color: #00D4FF;
    text-decoration: underline;
}

.quotation-section {
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 280px;
    text-align: center;
}

.quotation-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.email-icon {
    width: 55px;
    height: 55px;
    background: #e74c3c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin: 0 auto;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.email-icon:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.social-links a:hover {
    background: #e74c3c !important;
    border-color: #e74c3c !important;
    color: white !important;
}

/*
==========================================================================
   9. UTILITY CLASSES
==========================================================================
*/

.container-fluid {
    max-width: 1400px;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.up-title {
    display: none;
}

.mobile-video {
    display: none;
}

/*
==========================================================================
   10. LOADERS & ANIMATIONS
==========================================================================
*/

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#loader img {
    width: 100px;
    height: auto;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

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

/*
==========================================================================
   11. ABOUT PAGE STYLES
==========================================================================
*/

/* Logo Section */
.logo-section {
    background: #4a90e2;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.logo-text {
    font-size: 48px;
    color: white;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Who We Are Section */
.who-we-are-section {
    background-color: white;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.section-title-about {
    font-size: 36px;
    color: #4a90e2;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}

.about-gray-text {
    color: #555;
}

.content {
    text-align: justify;
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.company-name {
    font-weight: 700;
    color: #000;
}

.highlight {
    font-weight: 600;
}

/* Why Us Section */
.why-us-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.why-us-list {
    list-style: none;
    padding-left: 0;
}

.why-us-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 18px;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}

.why-us-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-size: 20px;
    font-weight: bold;
}

.list-title {
    font-weight: 700;
    color: #000;
}

/* About Image Section */
.about-image-section {
    height: 300px;
    overflow: hidden;
}

.full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Founders Section */
.founders-section {
    background-color: white;
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.founders-container {
    margin-top: 40px;
}

.founder-card {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    grid-template-rows: auto auto auto;
    gap: 20px;
    margin-bottom: 20px;
    align-items: start;
}

.founder-card-reverse {
    grid-template-columns: 200px 1fr 200px;
}

.founder-image-container:first-child {
    grid-column: 1;
    grid-row: 1 / 3;
    text-align: center;
}

.founder-image-container:last-child {
    grid-column: 3;
    grid-row: 1 / 3;
    text-align: center;
}

.founder-card-reverse .founder-image-container:first-child {
    grid-column: 1;
    grid-row: 1;
}

.founder-card-reverse .founder-image-container:last-child {
    grid-column: 3;
    grid-row: 1;
}

.founder-image {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.founder-info {
    grid-column: 1;
    grid-row: 3;
    text-align: left;
}

.founder-info-right {
    grid-column: 3;
    grid-row: 3;
    text-align: right;
}

.founder-name {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
    white-space: nowrap;
}

.founder-role {
    font-size: 14px;
    font-style: italic;
    color: #666;
}

.founder-description {
    grid-column: 2;
    grid-row: 1;
    text-align: justify;
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.founder-card-reverse .founder-description {
    grid-column: 2;
    grid-row: 1;
}

/* Vision and Mission Section */
.vision-mission-section {
    background-color: #f9f9f9;
    padding: 0px 20px;
}

.vision-mission-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.vm-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
}

.vm-card {
    text-align: center;
    padding: 20px;
}

@media (max-width: 768px) {
    .row>div:first-child .vm-card {
        padding: 40px 10px 0 10px;
    }

    .row>div:last-child .vm-card {
        padding: 0 10px;
    }
}


.vm-icon {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vm-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vm-title {
    font-size: 24px;
    font-weight: 600;
    color: #4a90e2;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.vm-text {
    text-align: justify;
    line-height: 1.8;
    color: #333;
    font-size: 15px;
    word-spacing: -1px;
}

.vm-divider {
    width: 1px;
    height: 300px;
    background-color: #ccc;
    align-self: center;
}

/*
==========================================================================
   12. COMPANY PAGES STYLES
==========================================================================
*/

/* What We Do Section */
.what-we-do-section {
    background-color: #ffffff;
    padding: 60px 20px;
    margin-top: 70px;
}

.what-we-do-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-companies {
    font-size: 36px;
    color: #4a90e2;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

.cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.company-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.company-card-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.company-card-content {
    padding: 20px;
    background-color: white;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

@media (max-width: 768px) {
    .company-card-content {
        padding: 15px 10px;
    }
}

.company-name {
    font-size: 20px;
    font-weight: 600;
    color: #4a90e2;
    margin-bottom: 15px;
    text-align: center;
}

.company-description {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    margin-bottom: 25px;
    flex-grow: 1;
}

.company-partner-section {
    margin-bottom: 15px;
}

.company-partner-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 600;
}

.company-partner-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 60px;
}

.company-partner-logo {
    max-width: 80px;
    max-height: 50px;
    object-fit: contain;
}

.download-link {
    display: inline-block;
    color: #4a90e2;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    text-align: center;
    width: 100%;
}

.download-link:hover {
    color: #357abd;
    text-decoration: underline;
}

/*
==========================================================================
   13. RESPONSIVE DESIGN
==========================================================================
*/

/* Hide mobile drawer on desktop */
@media (min-width: 992px) {
    .mobile-drawer {
        display: none;
    }
}

/* Tablet Styles */
@media (max-width: 992px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .partners-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .main-partner-logo {
        height: 100px;
        order: 1;
    }

    .main-partner-image {
        max-width: 150px;
        max-height: 120px;
    }

    .vertical-divider {
        width: 80%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #28398F, transparent);
        order: 2;
    }

    .moving-partners-container {
        height: 60px;
        max-width: 100%;
        order: 3;
    }

    .moving-partners-track {
        gap: 60px;
    }

    .partner-logo.moving {
        height: 60px;
        min-width: 80px;
    }

    .partner-logo .partner-image {
        max-width: 70px;
        max-height: 50px;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-info,
    .quotation-section {
        padding: 20px;
        height: auto;
        min-height: 220px;
    }

    .map-container {
        height: 250px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {

    /* Header & Navigation */
    header {
        padding: 0.5rem 0;
        width: 100%;
        left: 0;
        right: 0;
    }

    .navbar {
        width: 100%;
        margin: 0;
        padding: 0;
        height: 45px;
    }

    .container {
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        margin: 0 auto;
    }

    .logo {
        font-size: 1.3rem !important;
        white-space: nowrap;
    }

    .navbar-logo {
        height: 70px;
        max-width: 150px;
        margin-top: 10px;
    }

    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
        margin-right: 15px;
        position: absolute;
        right: 0;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 8px;
    }

    .nav-links .nav-link {
        margin: 0.5rem 0;
        padding: 0.75rem 1rem !important;
        text-align: center;
        font-size: 1.1rem;
        border-radius: 4px;
        border-right: none !important;
    }

    /* Hero */
    .hero-video {
        height: 40vh;
        min-height: 300px;
    }

    .hero-content {
        padding: 0 1rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-content .lead {
        font-size: 1.1rem;
        margin-bottom: 0;
    }

    .video-overlay {
        background: rgba(0, 0, 0, 0.6);
    }

    .page-main {
        margin-top: 92px;
    }

    /* Stats */
    .stat-item:after {
        display: none;
    }

    .stat-item {
        margin-bottom: 15px;
        padding: 20px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    /* Partners */
    .partner-banner {
        flex-direction: column;
    }

    .partner-section {
        min-height: 60px;
    }

    .partner-section::after {
        width: 100%;
        height: 1px;
        top: auto;
        bottom: 0;
        right: 0;
    }

    .partner-text {
        font-size: 1rem;
    }

    /* Features */
    .features-section {
        padding: 40px 0;
    }

    .icon-container {
        width: 100px;
        height: 100px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    /* Strengths */
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .strength-card {
        height: 200px;
    }

    .strengths-section .row {
        margin-left: -12px;
        margin-right: -12px;
    }

    .strengths-section .col-lg-3 {
        padding-left: 12px;
        padding-right: 12px;
        margin-bottom: 20px;
    }

    .card-content {
        bottom: 0px;
        left: 20px;
        right: 20px;
    }

    .card-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .card-description {
        font-size: 0.85rem;
    }

    .card-overlay {
        height: 70% !important;
        opacity: 1 !important;
    }

    .card-description {
        opacity: 1 !important;
        transform: translateY(0) !important;
        max-height: 100px !important;
    }

    /* Company */
    .company-section {
        height: 30vh;
    }

    .company-logo {
        padding: 15px 25px;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }

    .logo-bracket {
        font-size: 24px;
    }

    .company-title {
        font-size: 24px;
    }

    .company-subtitle {
        font-size: 16px;
    }

    .tagline {
        font-size: 16px;
        padding: 0 15px;
    }

    /* Contact */
    .contact-title {
        font-size: 2rem;
    }

    .map-container {
        height: 200px;
        padding: 15px;
    }

    .contact-info,
    .quotation-section {
        padding: 20px;
        height: auto;
    }

    .contact-details {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .contact-item {
        justify-content: center;
        flex-direction: row;
        gap: 15px;
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }

    .contact-details-heading {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    /* About Page */
    .logo-section {
        margin-top: 45px;
    }

    .logo-text {
        font-size: 36px;
    }

    .section-title-about {
        font-size: 28px;
    }

    .content {
        font-size: 15px;
    }

    .who-we-are-section {
        padding: 30px 10px;
    }

    .why-us-section {
        padding: 30px 10px;
    }

    .why-us-list li {
        font-size: 15px;
    }

    .founders-section {
        padding: 0px 10px;
        max-width: 100%;
    }

    .founder-card,
    .founder-card-reverse {
        display: flex;
        flex-direction: column;
        padding: 0px 20px;
        gap: 0px;
        margin-bottom: 0px;
    }

    .founder-card-reverse {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .founder-card-reverse .founder-image-container:first-child {
        order: -1;
        display: none;
    }

    .founder-card-reverse .founder-image-container:last-child {
        order: 1;
        align-self: flex-end;
    }

    .founder-card-reverse .founder-info-right {
        order: 2;
        align-self: flex-end;
        text-align: right;
    }

    .founder-card-reverse .founder-description {
        order: 3;
    }

    .founder-image-container {
        text-align: center;
    }

    .founder-image-container:empty {
        display: none;
    }

    .founder-description {
        text-align: justify;
        font-size: 14px;
        line-height: 1.6;
        color: #333;
    }

    .founder-info,
    .founder-info-right {
        text-align: left;
    }

    .founder-image {
        width: 120px;
        height: 150px;
        border-radius: 8px;
    }

    .founder-name {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .founder-role {
        font-size: 12px;
    }

    /* Vision Mission */
    .vision-mission-section {
        padding: 5px 10px;
    }

    .vm-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vm-divider {
        width: 100%;
        height: 1px;
        margin: 20px 0;
    }

    .vm-icon {
        width: 120px;
        height: auto;
        padding: 0px 25px;
    }

    .vm-title {
        font-size: 20px;
    }

    .vm-text {
        font-size: 14px;
    }

    /* Companies */
    .what-we-do-section {
        padding: 30px 10px;
    }

    .section-title-companies {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .company-card-image {
        height: 180px;
    }

    .company-description {
        min-height: auto;
        font-size: 13px;
    }

    .company-partner-logos {
        flex-wrap: wrap;
        gap: 10px;
    }

    .company-partner-logo {
        max-width: 90px;
        max-height: 60px;
    }

    /* Utility */
    .down-title {
        display: none;
    }

    .up-title {
        display: block;
    }

    .pc-video {
        display: none;
    }

    .mobile-video {
        display: inline-block;
    }
}

/* Small Mobile Styles */
@media (max-width: 576px) {

    html,
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    body {
        font-size: 14px;
        line-height: 1.6;
    }

    header {
        width: 100vw;
        position: fixed;
        left: 0;
        right: 0;
    }

    .navbar .container {
        max-width: 100%;
        padding: 0 10px;
    }

    .page-main {
        margin-top: 62px;
    }

    .company-section {
        height: 30vh;
    }

    .company-logo {
        padding: 12px 20px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }

    .logo-bracket {
        font-size: 20px;
    }

    .company-title {
        font-size: 20px;
    }

    .company-subtitle {
        font-size: 14px;
    }

    .tagline {
        font-size: 15px;
    }

    .partner-text {
        font-size: 0.9rem;
    }

    .partner-section {
        padding: 15px 10px;
    }

    .strengths-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
        margin-bottom: 2rem;
    }

    .strength-card {
        height: 250px;
        margin-bottom: 20px;
    }

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

    .card-description {
        font-size: 0.8rem;
    }

    .features {
        padding: 3rem 0 !important;
    }

    .feature {
        margin-bottom: 0.5rem;
    }

    .feature-icon {
        font-size: 2.5rem !important;
        margin-bottom: 1rem !important;
    }

    .feature h3 {
        font-size: 1.1rem !important;
        padding: 15px !important;
    }

    .icon-box {
        width: 50px !important;
        height: 50px !important;
    }

    .company-logo-img {
        max-width: 250px !important;
    }

    .partners-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .vertical-divider {
        display: none;
    }

    .partner-logo {
        flex: 0 0 calc(50% - 10px);
        margin: 10px 0;
        max-width: 150px;
    }

    .panther-text {
        font-size: 0.9rem;
    }

    .partner-section {
        padding: 15px 10px;
    }
}

/*
==========================================================================
   14. ADDITIONAL PARTNERS RESPONSIVE STYLES
==========================================================================
*/

@media (max-width: 600px) {
    .partners-container .partner-logo.moving {
        min-width: 60px;
        max-width: 70px;
    }

    .main-partner-logo {
        max-width: 90px !important;
    }
}

@media (max-width: 480px) {
    .moving-partners-track {
        animation-duration: 12s;
        gap: 20px;
    }

    .partner-logo .partner-image {
        max-width: 50px !important;
        max-height: 35px !important;
    }

    .main-partner-image {
        max-width: 100px !important;
        max-height: 80px !important;
    }
}

/*
==========================================================================
   15. NEWS INSIGHTS PAGE STYLES
==========================================================================
*/

/* News Insights Section */
.news-insights-section {
    background-color: #ffffff;
    padding: 60px 20px;
    margin-top: 70px;
}

.news-insights-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.ni-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
}

.ni-card {
    text-align: center;
    padding: 20px;
}

@media (max-width: 768px) {
    .ni-card {
        padding: 0px 10px;
    }
}

.ni-icon {
    width: 350px;
    height: 350px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.ni-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ni-title {
    font-size: 20px;
    font-weight: 600;
    color: #4a90e2;
    margin-bottom: 10px;
}

.ni-text {
    text-align: justify;
    line-height: 1.8;
    color: #333;
    font-size: 15px;
}

.ni-divider {
    width: 1px;
    height: 300px;
    background-color: #ccc;
    align-self: center;
}

/* Mobile Responsive for News Insights */
@media (max-width: 768px) {
    .news-insights-section {
        padding: 30px 10px;
        margin-top: 45px;
    }

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

    .ni-divider {
        width: 100%;
        height: 1px;
        margin: 20px 0;
    }

    .ni-icon {
        width: 350px;
        height: auto;
        padding: 0px 20px;
    }

    .ni-title {
        font-size: 15px;
    }

    .ni-text {
        font-size: 14px;
    }
}

/*
==========================================================================
   16. BLOG SECTION STYLES
==========================================================================
*/

/* Blog Section */
.blog-section {
    background-color: #fff;
    background-image: url('../media/Asset 29.png');
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0px;
}

.blog-wrapper {
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .blog-wrapper {
        padding: 30px 10px;
    }
}

.blog-category {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-main-title {
    font-size: 38px;
    color: #4a90e2;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
    text-align: left;
}

.blog-intro {
    font-size: 15px;
    color: #000;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 35px;
}

.blog-section-title {
    font-size: 20px;
    color: #4a90e2;
    font-weight: 600;
    margin-bottom: 18px;
    margin-top: 30px;
}

.blog-section-title:first-of-type {
    margin-top: 0;
}

.blog-paragraph {
    font-size: 15px;
    color: #000;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 20px;
}

.blog-highlight {
    font-weight: 700;
    color: #000;
}

/* Partnership Highlight Box */
.partnership-highlight {
    padding: 25px 30px;
}

.partnership-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-top: 20px;
}

.partner-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-shrink: 0;
}

.partner-logo-container {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-img {
    width: 180px;
    object-fit: contain;
}

.partnership-description {
    flex: 1;
    font-size: 15px;
    line-height: 1.7;
    color: #000;
    text-align: justify;
}

/* Mobile Responsive for Blog Section */
@media (max-width: 768px) {
    .blog-wrapper {
        padding: 30px 20px;
        margin: 20px;
        max-width: calc(100% - 40px);
    }

    .blog-main-title {
        font-size: 26px;
    }

    .blog-intro,
    .blog-paragraph,
    .partnership-description {
        font-size: 14px;
        margin-bottom: 0px;
    }

    .blog-section-title {
        font-size: 18px;
    }

    .partnership-content {
        flex-direction: column;
        gap: 20px;
        margin-top: 0px;
    }

    .partner-logos {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
    }

    .partner-logo-container {
        min-width: 100px;
        width: 100%;
    }

    .partnership-highlight {
        padding: 20px;
    }

    .blog-category {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .blog-wrapper {
        padding: 25px 15px;
        margin: 10px;
        max-width: calc(100% - 20px);
    }

    .blog-main-title {
        font-size: 22px;
    }

    .blog-intro,
    .blog-paragraph,
    .partnership-description {
        font-size: 13px;
        margin-bottom: 0px;
    }

    .blog-section-title {
        font-size: 16px;
    }

    .partner-logo-container {
        padding: 10px 15px;
        min-width: 80px;
    }

    .partner-logo-img {
        width: 80px;
    }
}

/*
==========================================================================
   17. CONTACT PAGE STYLES
==========================================================================
*/

/* Contact Section */
.contact-main-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 20px 40px 20px;
    min-height: auto;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.contact-main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%234a90e2" fill-opacity="0.02"><polygon points="0,100 1000,0 1000,100"/></svg>');
    pointer-events: none;
}

.contact-section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Left Side - Contact Info */
.contact-page-info {
    padding: 25px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.contact-page-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.contact-page-title {
    font-size: 2.2rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-align: center;
    position: relative;
}

.contact-page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border-radius: 2px;
}

.contact-page-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 18px;
    border-radius: 12px;
    background: #f8f9fa;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-page-item:hover {
    background: #ffffff;
    border-color: #4a90e2;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.1);
}

.contact-page-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
    transition: transform 0.3s ease;
}

.contact-page-item:hover .contact-page-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-page-icon i {
    color: #ffffff;
    font-size: 1.1rem;
}

.contact-page-content {
    flex: 1;
}

.contact-page-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-page-value {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.4;
}

.contact-page-value a {
    color: #4a90e2;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-page-value a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    transition: width 0.3s ease;
}

.contact-page-value a:hover {
    color: #357abd;
    transform: translateY(-1px);
}

.contact-page-value a:hover::after {
    width: 100%;
}

/* Social Media Icons */
.contact-page-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.contact-page-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    background: #ffffff;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-page-social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.contact-page-social-icon:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #4a90e2;
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.3);
}

.contact-page-social-icon:hover::before {
    opacity: 0.1;
}

.contact-page-social-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-page-social-icon:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Right Side - Map */
.contact-page-map-container {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.contact-page-map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.contact-page-map-header {
    text-align: center;
    margin-bottom: 20px;
}

.contact-page-map-title {
    font-size: 1.6rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
}

.contact-page-map-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border-radius: 2px;
}

.contact-page-map-subtitle {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

.contact-page-map-frame {
    width: 100%;
    height: 320px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    flex-grow: 1;
}

/* Enhanced Hover Effects */
.contact-page-info,
.contact-page-map-container {
    position: relative;
}

.contact-page-info::before,
.contact-page-map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.03), rgba(53, 122, 189, 0.03));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.contact-page-info:hover::before,
.contact-page-map-container:hover::before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-page-title {
        font-size: 2rem;
    }

    .contact-page-map-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .contact-main-section {
        padding: 50px 20px 30px 20px;
    }

    .contact-page-info {
        margin-bottom: 30px;
    }

    .contact-page-title {
        font-size: 1.9rem;
        margin-bottom: 20px;
    }

    .contact-page-map-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .contact-main-section {
        padding: 40px 15px 25px 15px;
        margin-top: 60px;
    }

    .contact-page-info,
    .contact-page-map-container {
        padding: 20px 15px;
    }

    .contact-page-title {
        font-size: 1.7rem;
        margin-bottom: 20px;
    }

    .contact-page-item {
        padding: 15px;
        margin-bottom: 15px;
    }

    .contact-page-item:hover {
        transform: translateX(5px);
    }

    .contact-page-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }

    .contact-page-icon i {
        font-size: 1rem;
    }

    .contact-page-label {
        font-size: 0.85rem;
    }

    .contact-page-value {
        font-size: 1rem;
    }

    .contact-page-map-title {
        font-size: 1.3rem;
    }

    .contact-page-map-frame {
        height: 280px;
    }

    .contact-page-social-icons {
        gap: 10px;
    }

    .contact-page-social-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .contact-main-section {
        margin-top: 50px;
        padding: 60px 10px 40px 10px;
    }

    .contact-page-info,
    .contact-page-map-container {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .contact-page-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .contact-page-item {
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 12px;
    }

    .contact-page-icon {
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }

    .contact-page-icon i {
        font-size: 1rem;
    }

    .contact-page-map-title {
        font-size: 1.3rem;
    }

    .contact-page-map-subtitle {
        font-size: 0.9rem;
    }

    .contact-page-map-frame {
        height: 300px;
        border-radius: 12px;
    }

    .contact-page-social-icons {
        gap: 10px;
    }

    .contact-page-social-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
}

/* Loading and Transition States */
.contact-page-info,
.contact-page-map-container {
    animation: fadeInUp 0.8s ease-out;
}

.contact-page-item {
    animation: slideInLeft 0.6s ease-out;
    animation-fill-mode: both;
}

.contact-page-item:nth-child(2) {
    animation-delay: 0.1s;
}

.contact-page-item:nth-child(3) {
    animation-delay: 0.2s;
}

.contact-page-item:nth-child(4) {
    animation-delay: 0.3s;
}

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

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

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

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

/*
==========================================================================
   18. OUR FOOTPRINT PAGE STYLES
==========================================================================
*/

/* Our Footprint Section */
.our-footprint-section {
    background-color: #f8f9fa;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footprint-container {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.footprint-container .container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.footprint-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
}

.footprint-image {
    width: 100%;
    height: 90vh;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footprint-image {
        width: 100%;
        height: auto;
    }

    .our-footprint-section {
        margin-top: 45px;
        padding: 10px 0px;
    }
}

@media (max-width: 576px) {

    .our-footprint-section {
        margin-top: 45px;
        padding: 10px 0px;
    }

    .footprint-image {
        width: 100%;
        height: auto;
    }
}

/* End of CSS */
