/* ===== FASTECH GLOBE REALTORS - PROFESSIONAL STYLES ===== */

/* Root Variables for Modern Design System */
:root {
    --primary-gold: #D4AF37;
    --dark-gold: #B8941F;
    --light-gold: #F4E4C1;
    --primary-dark: #0A1628;
    --secondary-dark: #1A2238;
    --tertiary-dark: #2E4057;
    --accent-blue: #3E5C76;
    --text-light: #E8EAF0;
    --text-gray: #8A92A6;
    --text-dark: #2C3E50;
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --border-light: rgba(212, 175, 55, 0.2);
    --shadow-sm: 0 2px 10px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 10px 30px rgba(10, 22, 40, 0.12);
    --shadow-lg: 0 20px 50px rgba(10, 22, 40, 0.15);
    --shadow-xl: 0 30px 70px rgba(10, 22, 40, 0.2);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 100%);
    --gradient-dark: linear-gradient(135deg, #0A1628 0%, #2E4057 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== ADVANCED HEADER STYLES ===== */
.header {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header.scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem 2rem;
}

.logo {
    /* font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem; */
}
.logo img{
    width: 350px;
}
.footer-logo {
    width: 350px;
}

/* .logo::before {
    content: '';
    width: 35px;
    height: 35px;
    background: var(--gradient-gold);
    border-radius: 8px;
    opacity: 0.9;
} */

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-gold);
    transition: all 0.3s ease;
}


/* ===== ENHANCED HERO SECTION ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0A1628 0%, #1A2238 50%, #2E4057 100%);
    overflow: hidden;
}

/* Hero Overlay Pattern */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    z-index: 1;
}

/* Animated Particles Background */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(212, 175, 55, 0.5);
    box-shadow: 
        20vw 15vh 0 rgba(212, 175, 55, 0.3),
        40vw 35vh 0 rgba(212, 175, 55, 0.4),
        60vw 55vh 0 rgba(212, 175, 55, 0.3),
        80vw 25vh 0 rgba(212, 175, 55, 0.5),
        10vw 75vh 0 rgba(212, 175, 55, 0.3),
        90vw 85vh 0 rgba(212, 175, 55, 0.4),
        30vw 65vh 0 rgba(212, 175, 55, 0.3),
        70vw 45vh 0 rgba(212, 175, 55, 0.4);
    animation: float 20s infinite linear;
}

.hero-particles::after {
    animation-delay: 10s;
    animation-duration: 30s;
}

@keyframes float {
    from {
        transform: translateY(0) translateX(0);
    }
    to {
        transform: translateY(-100vh) translateX(50px);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    /* max-width: 1200px; */
    width: 100%;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInDown 1s ease-out;
}

.hero-badge span {
    color: #D4AF37;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge i {
    color: #D4AF37;
    font-size: 0.8rem;
}

/* Hero Title */
.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-line-1 {
    display: block;
    animation: fadeInLeft 1s ease-out 0.2s backwards;
}

.hero-line-2 {
    display: block;
    color: #FFFFFF;
    animation: fadeInRight 1s ease-out 0.4s backwards;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-size: 0.7em;
}

.highlight {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* Hero Divider */
.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.hero-divider span {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.hero-divider i {
    color: #D4AF37;
    font-size: 1.2rem;
}

/* Hero Tagline */
.hero-tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #D4AF37;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

/* Hero Description */
.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(232, 234, 240, 0.8);
    max-width: 600px;
    margin: 0 auto 0rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 1s backwards;
}

/* CTA Button Group */
.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 1.2s backwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #0A1628;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #F4E4C1 0%, #D4AF37 100%);
}

.cta-button.secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(212, 175, 55, 0.5);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
    transform: translateY(-3px);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    animation: fadeInUp 1s ease-out 1.4s backwards;
}

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

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(232, 234, 240, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 1s ease-out 1.6s backwards;
}

.hero-scroll-indicator span {
    color: rgba(232, 234, 240, 0.5);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll-indicator i {
    color: #D4AF37;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

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

/* Animation Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@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 fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
      padding-top: 10rem;
    }
}

@media (max-width: 1521px) {
    .hero {
      padding-top: 7rem;
    }
}

@media (max-width: 1366px) {
    .hero {
        padding-top: 8rem;
    }
    .hero-title{
        font-size: clamp(3rem, 8vw, 4rem);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .hero-line-2 {
        letter-spacing: 4px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 250px;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-divider span {
        width: 50px;
    }
}



/* ===== SECTION STYLES ===== */
.section {
    padding: 6rem 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--off-white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===== OVERVIEW SECTION ===== */
.overview {
    background: var(--white);
    padding: 6rem 0;
}

.overview-intro {
    max-width: 1000px;
    margin: 0 auto 4rem;
    text-align: center;
}

.overview-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.overview-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* ===== PARTNERS SECTION - ENHANCED DESIGN ===== */
.partners {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.partners .section-title {
    color: var(--primary-dark);
}

.partners .section-subtitle {
    color: var(--text-gray);
}

.partners-showcase {
    margin-top: 4rem;
    display: grid;
    flex-direction: column;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
}

.partner-showcase-card {
    /* display: grid; */
    grid-template-columns: 450px 1fr;
    gap: 0;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.1);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(10, 22, 40, 0.15);
}

.partner-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-gold);
}

/* Partner Image Section */
.partner-image-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--tertiary-dark) 100%);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.partner-image-placeholder {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.partner-image-placeholder::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse 3s infinite;
}

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

.partner-logo-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 1;
    position: relative;
}

.partner-logo-large i {
    font-size: 5rem;
    color: var(--primary-gold);
    filter: drop-shadow(0 10px 20px rgba(212, 175, 55, 0.3));
    transition: transform 0.4s ease;
}

.partner-showcase-card:hover .partner-logo-large i {
    transform: scale(1.1) rotate(5deg);
}

.partner-logo-large span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.partner-image-placeholder.globe {
    background: linear-gradient(135deg, var(--tertiary-dark) 0%, var(--accent-blue) 100%);
}

.partner-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.3rem;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Partner Content Section */
.partner-content-section {
    padding: 3rem;
    position: relative;
}

.partner-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.partner-name {
    font-size: 2rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.partner-tagline {
    font-size: 1.1rem;
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.partner-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px; 
    align-items: center;
    flex-direction: column;
    padding: 15px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    /* border-left: 3px solid var(--primary-gold); */
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.detail-item-2 {
  display: inline;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.detail-item i {
    color: var(--primary-gold);
    width: 20px;
}

@media (max-width: 600px) {
  .partner-details {
    grid-template-columns: 1fr; 
  }
}

.partner-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Services Showcase */
.services-showcase {
    margin-bottom: 2rem;
}

.services-showcase h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.services-showcase h4::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gradient-gold);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--white);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: default;
}

.service-tag:hover {
    background: var(--gradient-gold);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.service-tag i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.service-tag span {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.service-tag:hover i,
.service-tag:hover span {
    color: var(--white);
}

/* Partner Capabilities */
.partner-capabilities h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.partner-capabilities h4::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gradient-gold);
}

.partner-capabilities ul {
    list-style: none;
}

.partner-capabilities li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    color: var(--text-dark);
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.partner-capabilities li:last-child {
    border-bottom: none;
}

.partner-capabilities li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.partner-capabilities li:hover {
    padding-left: 2.3rem;
    background: rgba(212, 175, 55, 0.03);
    margin-left: -1rem;
    padding-right: 1rem;
    margin-right: -1rem;
    border-radius: 8px;
}

/* Partnership Synergy */
.partnership-synergy {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--tertiary-dark) 100%);
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partnership-synergy::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.synergy-content {
    position: relative;
    z-index: 1;
}

.synergy-content h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.synergy-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.synergy-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.synergy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.synergy-item i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.synergy-item span {
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Responsive Design for Partners */
@media (max-width: 1200px) {
    .partner-showcase-card {
        grid-template-columns: 400px 1fr;
    }
}

@media (max-width: 968px) {
    .partner-showcase-card {
        grid-template-columns: 1fr;
    }
    
    .partner-image-section {
        padding: 2rem;
    }
    
    .partner-image-placeholder {
        height: 200px;
    }
    
    .partner-logo-large i {
        font-size: 4rem;
    }
    
    .partner-logo-large span {
        font-size: 1.5rem;
    }
    
    .partner-stats {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 1.5rem;
    }
    
    .synergy-highlights {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .partners-showcase {
       gap: 2rem;
        grid-template-columns: 1fr;
    }
    
    .partner-showcase-card {
        border-radius: 20px;
    }
    
    .partner-content-section {
        padding: 2rem 1.5rem;
    }
    
    .partner-name {
        font-size: 1.5rem;
    }
    
    .service-tags {
        gap: 0.5rem;
    }
    
    .service-tag {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .partnership-synergy {
        padding: 2rem;
    }
    
    .synergy-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
} 
.partner-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-gold);
}

.partner-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.partner-logo-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-dark);
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.partner-info h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.partner-info .partner-type {
    color: var(--primary-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.partner-description {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.partner-description strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.services-section h4 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.services-list {
    list-style: none;
}

.services-list li {
    color: var(--text-dark);
    padding: 0.8rem 0;
    padding-left: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 0.95rem;
    line-height: 1.6;
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list li strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: bold;
    top: 0.8rem;
}

.services-list li:hover {
    padding-left: 2.8rem;
    background: rgba(212, 175, 55, 0.05);
    margin-left: -1rem;
    padding-right: 1rem;
    margin-right: -1rem;
    border-radius: 8px;
}

/* ===== COMPETENCIES SECTION - ENHANCED ===== */
.competencies {
    background: var(--off-white);
    padding: 6rem 0;
}

.competency-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.competency-category {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.competency-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.category-header h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.competency-list {
    list-style: none;
}

.competency-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    color: var(--text-dark);
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.competency-list li:last-child {
    border-bottom: none;
}

.competency-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.competency-list li:hover {
    padding-left: 2.3rem;
    color: var(--primary-dark);
}

/* ===== VALUE PROPOSITION SECTION ===== */
.value-proposition {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    padding: 6rem 0;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--primary-gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: var(--white);
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
    transform: rotate(360deg);
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== TARGET SECTORS SECTION - REDESIGNED ===== */
.target-sectors {
    background: var(--off-white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.target-sectors .section-title {
    color: var(--primary-dark);
}

.target-sectors .section-subtitle {
    color: var(--text-gray);
}

.sectors-wrapper {
    margin-top: 4rem;
}

.sector-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 5rem;
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.sector-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(10, 22, 40, 0.2);
}

.sector-item.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.sector-item.reverse > * {
    direction: ltr;
}

.sector-image {
    position: relative;
    overflow: hidden;
    background: var(--primary-dark);
    min-height: 400px;
}

.sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.9;
}

.sector-item:hover .sector-image img {
    transform: scale(1.1);
    opacity: 1;
}

.sector-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.sector-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.sector-content::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.sector-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

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

.sector-content h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
}

.sector-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.sector-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.sector-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.sector-features span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    color: var(--primary-dark);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sector-features span i {
    color: var(--primary-gold);
    font-size: 0.8rem;
}

.sector-features span:hover {
    background: var(--gradient-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.sector-features span:hover i {
    color: var(--white);
}

/* Alternating highlight strip */
.sector-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-gold);
}

.sector-item.reverse::after {
    left: auto;
    right: 0;
}

/* Responsive adjustments for sectors */
@media (max-width: 968px) {
    .sector-item,
    .sector-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .sector-image {
        min-height: 250px;
        max-height: 300px;
    }
    
    .sector-content {
        padding: 2rem;
    }
    
    .sector-content h3 {
        font-size: 1.5rem;
    }
    
    .sector-features {
        flex-direction: column;
    }
    
    .sector-features span {
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .sectors-wrapper {
        margin-top: 2rem;
    }
    
    .sector-item {
        margin-bottom: 3rem;
        border-radius: 15px;
    }
    
    .sector-content {
        padding: 1.5rem;
    }
    
    .sector-content h3 {
        font-size: 1.3rem;
    }
    
    .sector-content p {
        font-size: 0.95rem;
    }
    
    .sector-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ===== QUALITY AND SAFETY SECTION ===== */
.quality-safety {
    background: var(--white);
    padding: 6rem 0;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.commitment-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-gold);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.commitment-card:hover::before {
    opacity: 1;
}

.commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.commitment-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: transform 0.4s ease;
}

.commitment-card:hover .commitment-icon {
    transform: scale(1.1);
}

.commitment-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.commitment-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== FUTURE OUTLOOK SECTION ===== */
.future-outlook {
    /* background: linear-gradient(135deg, var(--primary-dark) 0%, var(--tertiary-dark) 100%); */
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.future-outlook::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: rotate 40s linear infinite;
}

.future-outlook .section-title {
    color: var(--primary-dark);
    margin-bottom: 3rem;
}

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

.outlook-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-gold);
}

.outlook-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.outlook-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.outlook-text strong {
    color: var(--primary-dark);
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.outlook-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.highlight-item span {
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ===== PROJECT HIGHLIGHTS ===== */
.project-highlight {
    background: var(--white);
    padding: 6rem 0;
}

.project-info {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--tertiary-dark) 100%);
    border-radius: 25px;
    padding: 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.project-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.project-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.detail-item {
    padding: 1.3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.detail-label {
    font-size: 0.9rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.detail-value {
    font-size: 1.3rem;
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-gold);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.8;
    max-width: 400px;
}

.footer-section h4 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--primary-gold);
    opacity: 1;
    padding-left: 10px;
}

.footer-contact p {
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 0.8rem;
    /* display: flex; */
    /* align-items: center; */
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-light);
    opacity: 0.7;
    font-size: 0.95rem;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .overview-grid,
    .competencies-grid {
        grid-template-columns: 1fr;
    }
    
    .project-details {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  background: #B8941F;
  color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 12px 15px;
  border-radius: 50%;
  font-size: 18px;
  display: none; /* hidden by default */
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollTopBtn:hover {
  background: #D4AF37;
  transform: translateY(-2px);
}

/* ABOUT US CSS */


/* ===== OPEN VISION & MISSION SECTION ===== */
.vision-mission {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle Background Pattern */
.vision-mission::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
    z-index: 0;
}

/* Header */
.vm-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.vm-header .section-title {
    font-size: 3.5rem;
    color: #0A1628;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.vm-header .section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    margin: 1.5rem auto 0;
}

.vm-header .section-subtitle {
    font-size: 1.25rem;
    color: #D4AF37;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Vision & Mission Sections */
.vm-section {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.vm-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

/* Floating Icon */
.vm-icon-float {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.vm-icon-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.2);
    animation: pulse 3s infinite;
}

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

.vm-icon-float i {
    font-size: 2.5rem;
    color: #D4AF37;
    z-index: 1;
}

.vm-section:hover .vm-icon-float {
    transform: rotate(10deg);
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
}

.vm-section:hover .vm-icon-float i {
    color: #ffffff;
}

/* Text Content */
.vm-text-content {
    flex: 1;
}

.vm-title {
    font-size: 2.5rem;
    color: #0A1628;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.vm-title::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #D4AF37;
}

.vm-statement {
    font-size: 1.25rem;
    color: #495057;
    line-height: 1.8;
    font-weight: 300;
}

.vm-lead {
    font-size: 1.15rem;
    color: #0A1628;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.mission-point {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.mission-point:hover {
    padding-left: 1rem;
}

.point-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.3);
    line-height: 1;
    transition: all 0.3s ease;
}

.mission-point:hover .point-number {
    color: #D4AF37;
}

.point-content h4 {
    font-size: 1.2rem;
    color: #0A1628;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.point-content p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Decorative Divider */
.vm-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 4rem 0;
    opacity: 0.3;
}

.vm-divider span {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37);
}

.vm-divider span:last-child {
    background: linear-gradient(90deg, #D4AF37, transparent);
}

.vm-divider i {
    color: #D4AF37;
    font-size: 1.5rem;
}

/* Animations */
.vision-section {
    animation: fadeInLeft 0.8s ease-out;
}

.mission-section {
    animation: fadeInLeft 0.8s ease-out 0.2s backwards;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .vm-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .vm-title::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-point {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .vm-header .section-title {
        font-size: 2.5rem;
    }
    
    .vm-title {
        font-size: 2rem;
    }
    
    .vm-statement {
        font-size: 1.1rem;
    }
    
    .vm-icon-float {
        width: 80px;
        height: 80px;
    }
    
    .vm-icon-float i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .vm-header .section-title {
        font-size: 2rem;
    }
    
    .point-number {
        font-size: 2rem;
    }
    
    .point-content h4 {
        font-size: 1.1rem;
    }
    
    .vm-divider {
        gap: 1rem;
    }
    
    .vm-divider span {
        width: 50px;
    }
}


/* ===== LEADERSHIP SECTION ===== */
.leadership {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0A1628 0%, #2E4057 100%) !important;
    position: relative;
}

.leadership .section-title {
    color: white;
}

.leadership-philosophy {
    text-align: center;
    margin: 3rem auto 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 25px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    max-width: 800px;
    position: relative;
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.philosophy-icon i {
    font-size: 2.5rem;
    color: white;
}

.philosophy-text {
    font-size: 2.5rem;
    color: #D4AF37;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.philosophy-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.leader-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    position: relative;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.leader-image {
    width: 180px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.leader-avatar {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.leader-avatar img{
    width: 180px;
    height: 180px;
    border-radius: 50%;
}

.leader-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.leader-content {
    flex: 1;
    padding: 2.5rem;
}

.leader-name {
    font-size: 1.8rem;
    color: #0A1628;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.leader-designation {
    color: #D4AF37;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.leader-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.leader-credentials span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    font-size: 0.85rem;
    color: #495057;
}

.leader-credentials i {
    color: #D4AF37;
}

.leader-bio {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.leader-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.leader-expertise span {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #0A1628;
    font-weight: 500;
    transition: all 0.3s ease;
}

.leader-expertise span:hover {
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    color: white;
    transform: translateY(-2px);
}

/* Experience Summary */
.experience-summary {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.experience-summary h3 {
    text-align: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.exp-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.exp-stat:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.exp-stat i {
    font-size: 2rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    display: block;
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.exp-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.core-strengths {
    text-align: center;
}

.core-strengths h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.strength-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.strength-tags span {
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 25px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.strength-tags span:hover {
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .leaders-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vm-container {
        grid-template-columns: 1fr;
    }
    
    .leader-card {
        flex-direction: column;
    }
    
    .leader-image {
        width: 100%;
        padding: 2rem;
    }

     .leader-image .leader-avatar {
        margin-top: 1rem;
    }
    .experience-summary {
        padding: 1rem;
    }
    .footer-contact p{
        display: inherit;
    }
    
    .experience-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .philosophy-text {
        font-size: 1.8rem;
    }
    
    .leader-credentials {
        flex-direction: column;
    }
    
    .strength-tags {
        gap: 0.5rem;
    }
}


/* ===== BREADCRUMBS SECTION WITH HEADING ===== */
.breadcrumbs-section {
    background: linear-gradient(135deg, #0A1628 0%, #2E4057 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-top: 4rem;
}

/* Background Pattern */
.breadcrumbs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Animated Background Elements */
.breadcrumbs-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    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(212,175,55,0.1)"/></svg>');
    background-size: 50px 50px;
    animation: drift 20s linear infinite;
    opacity: 0.5;
}

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

/* Page Title */
.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.8s ease-out;
    text-transform: uppercase;
    display: inline-block;
    
}

/* Title Decorative Elements */
.page-title::before,
.page-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37);
    transform: translateY(-50%);
}

.page-title::before {
    right: calc(100% + 30px);
    background: linear-gradient(90deg, transparent, #D4AF37);
}

.page-title::after {
    left: calc(100% + 30px);
    background: linear-gradient(90deg, #D4AF37, transparent);
}

/* Breadcrumb Navigation */
.breadcrumb-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    position: relative;
}

.breadcrumb-item a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.breadcrumb-item a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.breadcrumb-item a:hover::before {
    width: 100%;
    height: 100%;
}

.breadcrumb-item a:hover {
    color: #D4AF37;
    transform: translateY(-2px);
}

.breadcrumb-item a i {
    font-size: 1.1rem;
    color: #D4AF37;
}

.breadcrumb-item.active {
    padding: 0.5rem 1.5rem;
    /* background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%); */
    /* border: 1px solid rgba(212, 175, 55, 0.3); */
    border-radius: 25px;
    color: #D4AF37;
    font-weight: 600;
    font-size: 1.6rem;
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    animation: fadeIn 0.8s ease-out 0.3s backwards;
}

/* Alternative Centered Style with Box */
.breadcrumbs-section.boxed .container {
    max-width: 800px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Alternative Light Style */
.breadcrumbs-section.light {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem 0;
}

.breadcrumbs-section.light .page-title {
    color: #0A1628;
}

.breadcrumbs-section.light .breadcrumb-item a {
    color: #6c757d;
}

.breadcrumbs-section.light .breadcrumb-item a:hover {
    color: #D4AF37;
}

.breadcrumbs-section.light .breadcrumb-item.active {
    color: #0A1628;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.breadcrumbs-section.light .breadcrumb-separator {
    color: #dee2e6;
}

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .breadcrumbs-section {
        padding: 3rem 0 2rem;
    }
    
    .page-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .page-title::before,
    .page-title::after {
        width: 30px;
    }
    
    .page-title::before {
        right: calc(100% + 15px);
    }
    
    .page-title::after {
        left: calc(100% + 15px);
    }
    
    .breadcrumb-list {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .page-title::before,
    .page-title::after {
        display: none;
    }
    
    .breadcrumb-item a span {
        display: none;
    }
    
    .breadcrumb-item:first-child a span,
    .breadcrumb-item.active span {
        display: inline;
    }
    
    .breadcrumb-item a {
        padding: 0.4rem 0.8rem;
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-section {
    padding: 6rem 0;
    background: var(--off-white);
    position: relative;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header .section-title {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.contact-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
}
.address-block {
                display: flex;
                gap: 1rem;
                align-items: flex-start;
                margin: 1rem 0;
            }
            
            .address-block i {
                color: var(--primary-gold);
                font-size: 1.2rem;
                margin-top: 0.3rem;
            }
            
            .address-block div p {
                margin-bottom: 0.3rem;
                line-height: 1.5;
            }
/* Contact Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-gold);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
    transition: transform 0.4s ease;
}

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

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.card-content p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.card-content strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.divider {
    width: 50px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 1.5rem 0;
}

.highlight-text {
    color: var(--primary-gold) !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.contact-item .label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

/* Quick Connect Section */
.quick-connect {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--tertiary-dark) 100%);
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 4rem;
    text-align: center;
}

.quick-connect h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.connect-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.connect-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.connect-btn:hover {
    background: var(--gradient-gold);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    color: var(--primary-dark);
}

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

/* Partner Contacts */
.partner-contacts {
    text-align: center;
}

.partner-contacts h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.partner-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.partner-contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.partner-contact-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.partner-contact-card h4 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.partner-contact-card p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
}

.partner-contact-card i {
    color: var(--primary-gold);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .connect-options {
        flex-direction: column;
        align-items: center;
    }
    
    .connect-btn {
        width: 250px;
        justify-content: center;
    }
    
    .partner-cards {
        grid-template-columns: 1fr;
    }
}



/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-justify{ text-align: justify;}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pt-3 { padding-top: 3rem; }

.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 2rem; }
.pb-3 { padding-bottom: 3rem; }

.fw-light { font-weight: 300; }
.fw-regular { font-weight: 400; }
.fw-medium { font-weight: 500; }
.fw-semibold { font-weight: 600; }
.fw-bold { font-weight: 700; }

.text-gold { color: var(--primary-gold); }
.text-white { color: var(--white); }
.text-gray { color: var(--text-gray); }
.text-dark { color: var(--primary-dark); }

.bg-white { background: var(--white); }
.bg-light { background: var(--off-white); }
.bg-dark { background: var(--primary-dark); }
.bg-gold { background: var(--primary-gold); }
