:root {
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary: #60a5fa;
    --accent: #f59e0b;
    --dark: #1f2937;
    --text: #6b7280;
    --light: #f9fafb;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    --gradient-2: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --radius: 16px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

section {
    overflow: hidden;
}

.container {
    max-width: 1200px;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.25rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.btn-cta {
    background: var(--primary);
    color: var(--white);
    border-radius: 30px;
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.btn-cta:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    z-index: -2;
}

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

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(30, 64, 175, 0.1) 100%);
    z-index: -1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 500px;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.hero-image {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
}

.card-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -5%;
    animation-delay: 2s;
}

.card-3 {
    top: 70%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

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

.value-prop-section {
    background: var(--white);
}

.value-text {
    font-size: 1.25rem;
    color: var(--text);
    line-height: 1.8;
}

.features-section {
    background: var(--light);
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.feature-card h4 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--text);
    margin-bottom: 0;
}

.about-section {
    background: var(--white);
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.section-title {
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-description {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--gradient-1);
    padding: 1.5rem;
    border-radius: 16px;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.about-badge .years {
    display: block;
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.about-badge .number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.leadership-card {
    background: var(--light);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-top: 1.5rem;
}

.leadership-info h4 {
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.leadership-role {
    color: var(--primary);
    font-weight: 600;
}

.vision-mission-card {
    background: var(--light);
    padding: 2rem;
    border-radius: var(--radius);
    height: 100%;
    transition: var(--transition);
}

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

.vision-mission-card .card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
}

.vision-mission-card h4 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.vision-mission-card p {
    color: var(--text);
    margin-bottom: 0;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    padding: 0.75rem 0;
    color: var(--text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.mission-list i {
    color: var(--primary);
    margin-right: 0.75rem;
}

.values-section {
    background: var(--gradient-1);
    padding: 2.5rem;
    border-radius: var(--radius);
}

.values-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.value-pill {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.value-pill:hover {
    background: var(--white);
    color: var(--primary);
    transform: scale(1.05);
}

.about-experience-card {
    background: var(--light);
    padding: 2rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    position: relative;
}

.experience-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark);
    box-shadow: var(--shadow-lg);
}

.experience-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.experience-text {
    color: var(--text);
    margin-bottom: 1rem;
}

.experience-sectors {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sector-tag {
    background: var(--primary);
    color: var(--white);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.about-quote {
    background: var(--gradient-1);
    padding: 1.5rem;
    border-radius: var(--radius);
    position: relative;
    margin-top: 1.5rem;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
}

.quote-text {
    color: var(--white);
    font-style: italic;
    margin: 0;
    padding-left: 2rem;
}

.about-philosophy-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

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

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

.philosophy-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
}

.philosophy-header h4 {
    margin-bottom: 0;
    color: var(--dark);
}

.philosophy-body p {
    color: var(--text);
    margin-bottom: 1rem;
}

.philosophy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.philosophy-list li {
    padding: 0.5rem 0;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.philosophy-list i {
    color: var(--primary);
}

.about-trust-card {
    background: var(--light);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.about-trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.trust-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: var(--white);
}

.about-trust-card h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.about-trust-card p {
    color: var(--text);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.about-vision-card {
    background: var(--gradient-1);
    padding: 2.5rem;
    border-radius: var(--radius);
    color: var(--white);
}

.vision-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.vision-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.vision-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 0;
}

.vision-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.vision-badge i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.vision-badge span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.about-values-card {
    background: var(--light);
    padding: 2rem;
    border-radius: var(--radius);
}

.trust-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    text-align: center;
    border: 2px solid var(--light);
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.trust-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

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

.trust-item {
    background: var(--light);
    padding: 1.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

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

.trust-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--dark);
    margin: 0 auto 1rem;
}

.trust-item h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0;
}




.services-section {
    background: var(--light);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-card p {
    color: var(--text);
    margin-bottom: 1.5rem;
}

.reporting-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.reporting-list li {
    padding: 0.5rem 0;
    color: var(--text);
}

.reporting-list i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 1rem;
}

.excellence-section {
    background: var(--white);
}

.excellence-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.excellence-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.excellence-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    flex-shrink: 0;
}

.excellence-content h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.excellence-content p {
    color: var(--text);
    margin-bottom: 0;
}

.partners-section {
    background: var(--light);
    padding: 5rem 0;
}

.partner-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

.partner-logo {
    width: 100px;
    height: 100px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
}

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

.partner-tag {
    display: inline-block;
    background: var(--gradient-2);
    color: var(--dark);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.contact-section {
    background: var(--white);
}

.contact-info-card {
    background: var(--gradient-1);
    padding: 2.5rem;
    border-radius: var(--radius);
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

.info-item {
    margin-bottom: 2rem;
}

.info-item:last-child {
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.info-content h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.info-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.info-content a {
    color: var(--white);
    text-decoration: none;
}

.info-content a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-5px);
}

.contact-form-card {
    background: var(--light);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-group .form-control {
    border: 2px solid transparent;
    background: var(--white);
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(30, 64, 175, 0.1);
}

.contact-form .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.contact-form .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        max-width: 100%;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .about-image img {
        height: 400px;
    }

    .contact-info-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .navbar-brand {
        font-size: 1rem;
    }

    .logo-img {
        height: 40px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .floating-card {
        padding: 1rem 1.5rem;
        font-size: 0.875rem;
    }

    .footer-links {
        justify-content: center;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-section {
        padding-top: 60px;
    }

    .feature-card,
    .service-card,
    .excellence-item,
    .contact-form-card {
        padding: 1.5rem;
    }

    .values-section {
        padding: 1.5rem;
    }

    .about-experience-card {
        padding: 1.5rem;
    }

    .about-philosophy-card {
        padding: 1.5rem;
    }

    .about-trust-card {
        padding: 1.5rem;
    }

    .trust-section {
        padding: 1.5rem;
    }

    .about-vision-card {
        padding: 1.5rem;
    }

    .about-values-card {
        padding: 1.5rem;
    }

    .experience-number {
        font-size: 2rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .vision-badge {
        margin-top: 1.5rem;
    }
}
