* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Roboto", serif;
    background-color: #000000;
    color: #FFFFFF;
    line-height: 1.6;
}

/* Navigation Styles */
.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 120px;
    background-color: transparent;
    z-index: 1000;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Sticky header states */
.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 120px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(237, 197, 104, 0.2);
}

.navbar.sticky-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.navbar.sticky-visible {
    transform: translateY(0);
    opacity: 1;
    animation: slideDownFade 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Smooth slide down animation */
@keyframes slideDownFade {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Logo scaling in sticky mode */
.navbar.sticky .logo img {
    height: 4vh;
    transition: height 0.3s ease;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 50;
}

.logo img {
    height: 5vh;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    /* margin: 0 20px; */
    /* font-size: 16px; */
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: #EDC568;
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    width: 100%;
    box-shadow: 0 0 8px rgba(237, 197, 104, 0.6);
}

.contact-btn {
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    background-size: 200% 200%;
    color: #2c2c2c;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(191, 149, 63, 0.3);
    text-transform: uppercase;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.contact-btn:hover {
    background-position: right center;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(191, 149, 63, 0.4);
    animation: shimmer 2s infinite;
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn:active {
    transform: translateY(0) scale(1.02);
}

@keyframes shimmer {
    0%, 100% { background-position: left center; }
    50% { background-position: right center; }
}

/* About Content Styles */
.about-content {
    padding: 80px 120px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 80px;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.hero-section h2 {
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: #EDC568;
    margin: 0 auto;
}

/* Intro Section */
.intro-section {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.intro-text {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 30px;
    line-height: 1.8;
}

.highlight {
    color: #EDC568;
    font-weight: 500;
}

/* Bridging Section */
.bridging-section {
    margin-bottom: 80px;
}

.bridging-section h2 {
    font-size: 2.2rem;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #1A1A1A;
    padding: 40px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #EDC568;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 1.1rem;
    color: #FFFFFF;
    line-height: 1.8;
}

/* NRI Section */
.nri-section {
    background-color: #1A1A1A;
    padding: 80px;
    border-radius: 12px;
    margin-bottom: 80px;
}

.nri-section h2 {
    font-size: 2.2rem;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 30px;
}

.nri-section h2 i {
    margin-left: 10px;
}

.nri-intro {
    font-size: 1.2rem;
    color: #FFFFFF;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.nri-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.nri-card {
    background-color: #000000;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(237, 197, 104, 0.2);
}

.nri-card h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.nri-card p {
    font-size: 1.1rem;
    color: #FFFFFF;
    line-height: 1.8;
}

/* Footer Styles - Updated with dark theme */
.main-footer {
    background-color: #1a1a1a;
    color: white;
    font-weight: 600;
    width: 100%;
    margin-top: 0;
    padding: 0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    align-items: flex-start;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    background: linear-gradient(135deg, #FFD700, #B08D57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(5px);
}

.footer-logo img {
    max-width: 300px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
.footer-logo img {
    max-width: 180px;
    }
}

.footer-logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    flex: 1;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    background: linear-gradient(135deg, #FFD700, #B08D57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(-5px);
}

.footer-address {
    max-width: 320px;
    text-align: right;
}

.footer-address a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.footer-address a:hover {
    color: #FFD700;
}

.footer-address a:hover i {
    color: #fff;
}

.footer-address i {
    font-size: 16px;
    margin-top: 5px;
    color: #FFD700;
    transition: color 0.3s ease;
}

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

.social-icon {
    color: white;
    font-size: 22px;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
}

.social-icon:hover {
    color: #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(176, 141, 87, 0.2));
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.footer-info {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    color: white;
    font-size: 14px;
}

.dot-separator {
    margin: 0 10px;
}

.copyright {
    margin-left: auto;
}

@media (max-width: 992px) {
    .footer-main {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 40px 20px;
    }
    
    .footer-nav {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px 40px;
        align-items: center;
    }

    .footer-nav .social-icons {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
    
    .copyright {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .footer-nav {
        gap: 15px;
    }
    
    .dot-separator {
        display: none;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 5px;
    }
}

/* Media Queries */
@media (max-width: 1200px) {
    .about-content {
        padding: 60px 60px;
    }
    
    .services-grid,
    .nri-services {
        gap: 30px;
    }
    
    /* Responsive sticky header */
    .navbar.sticky {
        padding: 12px 40px;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 20px 40px;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-section h2 {
        font-size: 1.5rem;
    }
    
    .services-grid,
    .nri-services {
        grid-template-columns: 1fr;
    }
    
    .nri-section {
        padding: 60px 40px;
    }
    
    /* Responsive sticky header */
    .navbar.sticky {
        padding: 12px 20px;
    }
    
    .navbar.sticky .logo img {
        height: 3.5vh;
    }
}

@media (max-width: 768px) {
    .about-content {
        padding: 40px 20px;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section h2 {
        font-size: 1.3rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .service-card,
    .nri-card {
        padding: 30px 20px;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 40px 20px;
    }
    
    .footer-nav {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
    
    .copyright {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .dot-separator {
        display: none;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 5px;
    }
    
    /* Responsive sticky header */
    .navbar.sticky {
        padding: 10px 20px;
    }
    
    .navbar.sticky .logo img {
        height: 3vh;
    }
}

/* Dropdown and Hamburger Menu Styles */
.dropdown-container {
    position: relative;
    display: inline-block;
}

/* CSS-only hover support as fallback */
.dropdown-container:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-container:hover .dropdown-button {
    color: #EDC568;
    background: rgba(237, 197, 104, 0.15);
}

.dropdown-container:hover .dropdown-button::before {
    width: 100%;
}

.dropdown-container:hover .dropdown-button .arrow-icon {
    transform: rotate(-180deg);
}

.dropdown-button {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
}

.dropdown-button:hover {
    color: #EDC568;
    background: rgba(237, 197, 104, 0.1);
    transform: translateY(-2px);
}

.dropdown-button:hover::before {
    width: 100%;
    box-shadow: 0 0 8px rgba(237, 197, 104, 0.6);
}

.dropdown-button.active {
    color: #EDC568;
    background: rgba(237, 197, 104, 0.15);
}

.dropdown-button.active::before {
    width: 100%;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.dropdown-button.active .arrow-icon {
    transform: rotate(-180deg);
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.dropdown-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-content a {
    color: white !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    .nav-right {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        height: 100vh;
        padding-top: 80px;
        transition: 0.3s ease-in-out;
        gap: 0;
        z-index: 49;
    }

    .nav-right.active {
        left: 0;
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .contact-btn {
        margin-top: 20px;
    }

    /* Hamburger Animation */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Dropdown adjustments for mobile */
    .dropdown-container {
        width: 100%;
        text-align: center;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        margin-top: 0;
        transform: translateY(0);
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        opacity: 1;
        visibility: visible;
        border: none;
        border-radius: 0;
        background-color: rgba(255, 255, 255, 0.1);
    }

    .dropdown-content.show {
        max-height: 500px;
        padding: 10px 0;
    }

    .dropdown-button {
        justify-content: center;
        width: 100%;
        padding: 10px 0;
    }

    .dropdown-content a {
        padding: 10px 20px;
        text-align: center;
        color: white !important;
    }
}

/* Why Choose Us Section Styles */
.why-choose-section {
    padding: 100px 0;
    background-color: #000000;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.yellow-underline {
    width: 80px;
    height: 3px;
    background-color: #FFB800;
    margin: 0 auto;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    padding: 0 40px;
    flex: 1;
    align-items: stretch;
    min-height: 420px;
}

.why-choose-content {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 1;
}

.feature-list {
    list-style-type: disc;
    padding-left: 1.5em;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
    justify-content: center;
}

.feature-list li {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 400;
    list-style-position: outside;
}

.feature-list li strong {
    font-weight: 700;
    color: #EDC568;
}

.feature-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 18px;
    align-items: stretch;
    height: 100%;
    min-height: 320px;
    max-height: 420px;
    aspect-ratio: 3/2;
    justify-items: stretch;
}

.grid-item {
    border-radius: 12px;
    overflow: hidden;
    background: #1A1A1A;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* Media Queries for Why Choose Us Section */
@media (max-width: 1200px) {
    .why-choose-container {
        padding: 0 20px;
        gap: 30px;
    }
    .feature-grid {
        min-height: 220px;
        max-height: 320px;
    }
}

@media (max-width: 992px) {
    .why-choose-section {
        min-height: auto;
        padding: 60px 0;
    }
    .why-choose-container {
        flex-direction: column;
        align-items: stretch;
    }
    .feature-grid {
        width: 100%;
        min-height: 180px;
        max-height: 260px;
        aspect-ratio: 3/2;
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 40px 0;
    }
    .section-header h2 {
        font-size: 32px;
    }
    .why-choose-container {
        padding: 0 10px;
    }
    .feature-list {
        font-size: 0.95rem;
        gap: 6px;
    }
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        min-height: 120px;
        max-height: 180px;
        gap: 8px;
    }
}

@media (max-width: 600px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        aspect-ratio: 2/3;
        min-height: 100px;
        max-height: 140px;
    }
}

/* Premium Floating Geometric Shapes Background */
.why-choose-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.floating-shapes-bg {
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
}

.floating-shape {
    position: absolute;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
    animation: float-shape 12s ease-in-out infinite alternate;
    transition: all 0.3s ease;
}

.floating-shape.circle {
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.8), rgba(255, 215, 0, 0.3));
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
}

.floating-shape.square {
    background: linear-gradient(135deg, rgba(30, 21, 80, 0.6), rgba(30, 21, 80, 0.2));
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(30, 21, 80, 0.15);
}

.floating-shape.triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 45px solid rgba(255, 184, 0, 0.5);
    background: none;
    opacity: 0.2;
    filter: drop-shadow(0 0 10px rgba(255, 184, 0, 0.2));
}

.floating-shape.diamond {
    background: linear-gradient(135deg, rgba(176, 141, 87, 0.6), rgba(176, 141, 87, 0.2));
    transform: rotate(45deg);
    border-radius: 4px;
    box-shadow: 0 0 18px rgba(176, 141, 87, 0.15);
}

/* Desktop positioning - premium layout */
.floating-shape.shape1 {
    width: 120px; 
    height: 120px; 
    left: 5%; 
    top: 15%;
    animation-delay: 0s;
}

.floating-shape.shape2 {
    width: 80px; 
    height: 80px; 
    left: 78%; 
    top: 25%;
    animation-delay: 2s;
}

.floating-shape.shape3 {
    width: 140px; 
    height: 140px; 
    left: 45%; 
    top: 8%;
    animation-delay: 1s;
}

.floating-shape.shape4 {
    width: 90px; 
    height: 90px; 
    left: 82%; 
    top: 65%;
    animation-delay: 3s;
}

.floating-shape.shape5 {
    width: 70px; 
    height: 70px; 
    left: 15%; 
    top: 70%;
    animation-delay: 1.5s;
}

.floating-shape.triangle.shape6 {
    left: 65%; 
    top: 35%;
    animation-delay: 2.5s;
}

.floating-shape.diamond.shape7 {
    width: 100px; 
    height: 100px; 
    left: 25%; 
    top: 45%;
    animation-delay: 0.5s;
}

@keyframes float-shape {
    0% { 
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.2;
    }
    50% {
        opacity: 0.35;
    }
    100% { 
        transform: translateY(-30px) rotate(5deg) scale(1.05);
        opacity: 0.15;
    }
}

/* Tablet responsive design */
@media (max-width: 1200px) {
    .floating-shape {
        opacity: 0.2;
    }
    
    .floating-shape.shape1 {
        width: 100px; 
        height: 100px; 
        left: 8%; 
        top: 20%;
    }
    
    .floating-shape.shape2 {
        width: 70px; 
        height: 70px; 
        left: 75%; 
        top: 30%;
    }
    
    .floating-shape.shape3 {
        width: 110px; 
        height: 110px; 
        left: 40%; 
        top: 12%;
    }
    
    .floating-shape.shape4 {
        width: 75px; 
        height: 75px; 
        left: 80%; 
        top: 70%;
    }
    
    .floating-shape.shape5 {
        width: 60px; 
        height: 60px; 
        left: 18%; 
        top: 75%;
    }
    
    .floating-shape.triangle.shape6 {
        left: 62%; 
        top: 40%;
    }
    
    .floating-shape.diamond.shape7 {
        width: 80px; 
        height: 80px; 
        left: 28%; 
        top: 50%;
    }
    
    .floating-shape.triangle {
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-bottom: 35px solid rgba(255, 184, 0, 0.25);
    }
}

/* Mobile responsive design */
@media (max-width: 768px) {
    .floating-shapes-bg {
        height: 100%;
        overflow: hidden;
    }
    
    .floating-shape {
        opacity: 0.15;
        animation-duration: 15s;
    }
    
    .floating-shape.shape1 {
        width: 60px; 
        height: 60px; 
        left: 10%; 
        top: 10%;
    }
    
    .floating-shape.shape2 {
        width: 45px; 
        height: 45px; 
        left: 70%; 
        top: 20%;
    }
    
    .floating-shape.shape3 {
        width: 75px; 
        height: 75px; 
        left: 35%; 
        top: 5%;
    }
    
    .floating-shape.shape4 {
        width: 50px; 
        height: 50px; 
        left: 75%; 
        top: 60%;
    }
    
    .floating-shape.shape5 {
        width: 40px; 
        height: 40px; 
        left: 20%; 
        top: 65%;
    }
    
    .floating-shape.triangle.shape6 {
        left: 55%; 
        top: 35%;
    }
    
    .floating-shape.diamond.shape7 {
        width: 55px; 
        height: 55px; 
        left: 30%; 
        top: 45%;
    }
    
    .floating-shape.triangle {
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 25px solid rgba(255, 184, 0, 0.2);
    }
}

/* Very small mobile devices */
@media (max-width: 480px) {
    .floating-shape {
        opacity: 0.12;
        animation-duration: 18s;
    }
    
    .floating-shape.shape1 {
        width: 40px; 
        height: 40px; 
        left: 15%; 
        top: 15%;
    }
    
    .floating-shape.shape2 {
        width: 35px; 
        height: 35px; 
        left: 65%; 
        top: 25%;
    }
    
    .floating-shape.shape3 {
        width: 50px; 
        height: 50px; 
        left: 40%; 
        top: 8%;
    }
    
    .floating-shape.shape4 {
        width: 38px; 
        height: 38px; 
        left: 70%; 
        top: 65%;
    }
    
    .floating-shape.shape5 {
        width: 32px; 
        height: 32px; 
        left: 25%; 
        top: 70%;
    }
    
    .floating-shape.triangle.shape6 {
        left: 50%; 
        top: 40%;
    }
    
    .floating-shape.diamond.shape7 {
        width: 42px; 
        height: 42px; 
        left: 35%; 
        top: 50%;
    }
    
    .floating-shape.triangle {
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-bottom: 20px solid rgba(255, 184, 0, 0.15);
    }
}

/* Ensure section content is above the shapes */
.why-choose-section > *:not(.floating-shapes-bg) {
    position: relative;
    z-index: 1;
}

/* Vision Section Styles */
.vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(0, 0, 0, 0.95));
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(237, 197, 104, 0.05), transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(237, 197, 104, 0.03), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

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

.vision-icon {
    margin-bottom: 30px;
}

.vision-icon i {
    font-size: 4rem;
    color: #EDC568;
    text-shadow: 0 0 20px rgba(237, 197, 104, 0.3);
}

.vision-section h2 {
    font-size: 3.2rem;
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vision-statement {
    font-size: 1.4rem;
    color: #FFFFFF;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 300;
}

.divider-gold {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #EDC568, transparent);
    margin: 30px auto;
    position: relative;
}

.divider-gold::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #EDC568;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(237, 197, 104, 0.5);
}

.vision-description {
    font-size: 1.2rem;
    color: #FFFFFF;
    line-height: 1.7;
    opacity: 0.9;
}

/* Mission Section Styles */
.mission-section {
    padding: 100px 0;
    background-color: #000000;
    position: relative;
}

.mission-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.mission-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.mission-icon {
    margin-bottom: 30px;
}

.mission-icon i {
    font-size: 4rem;
    color: #EDC568;
    text-shadow: 0 0 20px rgba(237, 197, 104, 0.3);
}

.mission-section h2 {
    font-size: 3.2rem;
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mission-intro {
    font-size: 1.3rem;
    color: #FFFFFF;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-commitments h3 {
    font-size: 2.2rem;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 500;
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.commitment-card {
    background: linear-gradient(145deg, #1A1A1A, #0F0F0F);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(237, 197, 104, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(237, 197, 104, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.commitment-card:hover {
    transform: translateY(-10px);
    border-color: rgba(237, 197, 104, 0.3);
    box-shadow: 0 10px 30px rgba(237, 197, 104, 0.1);
}

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

.commitment-icon {
    margin-bottom: 25px;
}

.commitment-icon i {
    font-size: 2.5rem;
    color: #EDC568;
    transition: all 0.3s ease;
}

.commitment-card:hover .commitment-icon i {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(237, 197, 104, 0.4);
}

.commitment-card h4 {
    font-size: 1.4rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 600;
}

.commitment-card p {
    font-size: 1.1rem;
    color: #FFFFFF;
    line-height: 1.6;
    opacity: 0.9;
}

.commitment-card p strong {
    color: #EDC568;
    font-weight: 600;
}

/* Media Queries for Vision and Mission Sections */
@media (max-width: 1200px) {
    .vision-container,
    .mission-container {
        padding: 0 30px;
    }
    
    .commitments-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .vision-section,
    .mission-section {
        padding: 80px 0;
    }
    
    .vision-section h2,
    .mission-section h2 {
        font-size: 2.8rem;
    }
    
    .vision-statement,
    .mission-intro {
        font-size: 1.2rem;
    }
    
    .commitments-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .mission-commitments h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .vision-section,
    .mission-section {
        padding: 60px 0;
    }
    
    .vision-container,
    .mission-container {
        padding: 0 20px;
    }
    
    .vision-section h2,
    .mission-section h2 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .vision-icon i,
    .mission-icon i {
        font-size: 3rem;
    }
    
    .vision-statement,
    .mission-intro {
        font-size: 1.1rem;
    }
    
    .vision-description {
        font-size: 1rem;
    }
    
    .commitment-card {
        padding: 30px 20px;
    }
    
    .commitment-card h4 {
        font-size: 1.2rem;
    }
    
    .commitment-card p {
        font-size: 1rem;
    }
    
    .commitment-icon i {
        font-size: 2rem;
    }
    
    .mission-commitments h3 {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .vision-section h2,
    .mission-section h2 {
        font-size: 1.8rem;
    }
    
    .vision-icon i,
    .mission-icon i {
        font-size: 2.5rem;
    }
    
    .vision-statement,
    .mission-intro {
        font-size: 1rem;
    }
    
    .commitment-card {
        padding: 25px 15px;
    }
    
    .divider-gold {
        width: 80px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: #1A1A1A;
    margin: 5% auto;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #FFFFFF;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #EDC568;
}

.modal .book-visit-form {
    background: none;
    padding: 0;
}

.modal .book-visit-form h3 {
    color: #EDC568;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.modal .form-group {
    margin-bottom: 20px;
}

.modal .form-group label {
    display: block;
    color: #FFFFFF;
    margin-bottom: 8px;
    font-size: 14px;
}

.modal .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.modal .form-group input:focus {
    outline: none;
    border-color: #EDC568;
}

.modal .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.modal .submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #EDC568;
    color: #000000;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.modal .submit-btn:hover {
    background-color: #C29B3C;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
    padding: 30px 20px;
        width: 95%;
    }
    
    .modal .book-visit-form h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

/* Team Section Styles */
.team-section {
    padding: 80px 0;
    margin-bottom: 80px;
    background-color: #000000;
}

.team-section h2 {
    font-size: 2.8rem;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-row {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(145deg, #1A1A1A, #0F0F0F);
    border-radius: 20px;
    padding: 25px 30px;
    border: 1px solid rgba(237, 197, 104, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.team-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(237, 197, 104, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.team-row:hover {
    transform: translateY(-8px);
    border-color: rgba(237, 197, 104, 0.3);
    box-shadow: 0 15px 40px rgba(237, 197, 104, 0.1);
}

.team-row:hover::before {
    opacity: 1;
}

/* Alternating layout - even rows (2nd, 4th) have image on right */
.team-row:nth-child(even) {
    flex-direction: row-reverse;
}

.team-image {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #EDC568;
    position: relative;
    transition: all 0.3s ease;
}

.team-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 60%, rgba(237, 197, 104, 0.1));
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.team-row:hover .team-image::after {
    opacity: 1;
}

.team-row:hover .team-image {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(237, 197, 104, 0.2);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.team-content h3 {
    color: #FFFFFF;
    font-size: 1.7rem;
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
}

.team-content .position {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-content .description {
    color: #FFFFFF;
    font-size: 1.1rem;
    letter-spacing: 1px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

/* Media Queries for Team Section */
@media (max-width: 1200px) {
    .team-container {
        padding: 0 30px;
        gap: 25px;
    }
    
    .team-row {
        gap: 30px;
        padding: 20px 25px;
        min-height: 180px;
    }
    
    .team-image {
        width: 160px;
        height: 160px;
    }
    
    .team-content h3 {
        font-size: 1.5rem;
    }
    
    .team-content .position {
        font-size: 1rem;
    }
    
    .team-content .description {
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .team-section {
        padding: 50px 0;
    }
    
    .team-section h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .team-container {
        gap: 20px;
    }
    
    .team-row {
        flex-direction: column !important;
        text-align: center;
        gap: 20px;
        padding: 20px;
        min-height: auto;
    }
    
    .team-image {
        width: 150px;
        height: 150px;
    }
    
    .team-content h3 {
        font-size: 1.4rem;
    }
    
    .team-content .position {
        font-size: 1rem;
    }
    
    .team-content .description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .team-container {
        padding: 0 20px;
        gap: 30px;
    }
    
    .team-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .team-row {
        padding: 25px 20px;
        gap: 25px;
    }
    
    .team-image {
        width: 160px;
        height: 160px;
        border-width: 3px;
    }
    
    .team-content h3 {
        font-size: 1.4rem;
    }
    
    .team-content .position {
        font-size: 1rem;
    }
    
    .team-content .description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .team-section h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .team-row {
        padding: 20px 15px;
    }
    
    .team-image {
        width: 140px;
        height: 140px;
    }
    
    .team-content h3 {
        font-size: 1.3rem;
    }
    
    .team-content .description {
        font-size: 0.9rem;
    }
}

/* Read More Functionality Styles */
.description-full {
    display: none;
}

.dots {
    color: #FFFFFF;
    opacity: 0.7;
}

.read-more-btn {
    background: linear-gradient(135deg, #EDC568, #C29B3C);
    color: #000000;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-left: 15px;
    margin-top: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(237, 197, 104, 0.2);
    position: relative;
    overflow: hidden;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #F5D574, #D4A73A);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 197, 104, 0.3);
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(237, 197, 104, 0.2);
}

/* Animation for content expansion */
.description-full.expanding {
    display: inline;
    animation: fadeIn 0.5s ease-in-out;
}

.description-full.collapsing {
    animation: fadeOut 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 1000px;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        max-height: 1000px;
    }
    to {
        opacity: 0;
        max-height: 0;
    }
}

/* Responsive adjustments for read more button */
@media (max-width: 1200px) {
    .read-more-btn {
        padding: 7px 18px;
        font-size: 0.85rem;
        margin-left: 12px;
    }
}

@media (max-width: 992px) {
    .read-more-btn {
        display: block;
        width: fit-content;
        margin: 15px auto 0;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .read-more-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin: 12px auto 0;
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .read-more-btn {
        padding: 7px 14px;
        font-size: 0.75rem;
        border-radius: 20px;
        margin: 10px auto 0;
        margin-left: 0;
    }
}

/* Premium LinkedIn Integration Styles */
.team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 20px;
}

.team-name-position {
    flex: 1;
}

.linkedin-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #EDC568, #C29B3C);
    color: #000000;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 197, 104, 0.2);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    margin-top: 5px;
}

.linkedin-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.linkedin-btn:hover {
    background: linear-gradient(135deg, #F5D574, #D4A73A);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(237, 197, 104, 0.4);
}

.linkedin-btn:hover::before {
    opacity: 1;
}

.linkedin-btn:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 15px rgba(237, 197, 104, 0.3);
}

.linkedin-btn i {
    position: relative;
    z-index: 1;
    font-weight: 600;
}

/* Pulse animation for LinkedIn button */
.linkedin-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(237, 197, 104, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.linkedin-btn:hover::after {
    width: 60px;
    height: 60px;
    opacity: 0;
}

/* Team content adjustments */
.team-content h3 {
    margin-bottom: 5px;
}

.team-content .position {
    margin-bottom: 0;
}

/* Responsive adjustments for LinkedIn integration */
@media (max-width: 1200px) {
    .team-header {
        gap: 15px;
    }
    
    .linkedin-btn {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .team-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .team-name-position {
        text-align: center;
    }
    
    .linkedin-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .team-header {
        gap: 12px;
    }
    
    .linkedin-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .linkedin-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Previous Company Styling */
.previous-company {
    display: inline-block;
    background: linear-gradient(135deg, rgba(237, 197, 104, 0.1), rgba(237, 197, 104, 0.05));
    color: #EDC568;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 15px;
    margin-top: 8px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(237, 197, 104, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(237, 197, 104, 0.1);
}

.previous-company:hover {
    background: linear-gradient(135deg, rgba(237, 197, 104, 0.15), rgba(237, 197, 104, 0.08));
    border-color: rgba(237, 197, 104, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(237, 197, 104, 0.15);
}

/* Responsive adjustments for previous company tags */
@media (max-width: 1200px) {
    .previous-company {
        font-size: 0.75rem;
        padding: 3px 10px;
        margin-top: 6px;
    }
}

@media (max-width: 992px) {
    .previous-company {
        font-size: 0.8rem;
        padding: 4px 12px;
        margin-top: 8px;
    }
}

@media (max-width: 768px) {
    .previous-company {
        font-size: 0.75rem;
        padding: 3px 10px;
        margin-top: 6px;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 576px) {
    .previous-company {
        font-size: 0.7rem;
        padding: 2px 8px;
        margin-top: 5px;
        border-radius: 12px;
    }
}
