/* =====================================================
   Dewel Environmental - Enhanced CSS with Animations
   ===================================================== */

:root {
    --brand-blue: #005489;
    --brand-blue-dark: #00395e;
    --brand-blue-light: #e3f0fa;
    --brand-green: #4CAF50;
    --brand-green-light: #81C784;
    --brand-green-bg: #A5D6A7;
    --brand-green-card: #F0F7F4;
    --brand-earth: #A1887F;
    --brand-cta: #4CAF50;
    --dark-slate: #263238;
    --warm-gray: #6d6d6d;
    --white-color: #fff;
    --section-alt: #A5D6A7;
    --section-main: #F4F8F4;
    --section-green: #A5D6A7;
    --card-bg: #F0F7F4;
    --hero-gradient: linear-gradient(135deg, #e3f0fa 0%, #e3f7e1 100%);
    --footer-gradient: linear-gradient(135deg, #e3f7e1 0%, #e3f2fd 100%);
    --shadow-light: 0 2px 10px rgba(0, 84, 137, 0.07);
    --shadow-medium: 0 5px 20px rgba(0, 84, 137, 0.13);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --brand-earth: #A1887F;
    --earth-bg: #f5f3e7;
    --pale-green: #e3f7e1;
    --sky-blue: #e3f2fd;
}

/* =====================================================
   GLOBAL STYLES & RESET
   ===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-slate);
    background-color: #F4F8F4;
    background-image: url('../images/dewel-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow-x: hidden;
}

/* Reduce section padding for a more compact layout */
.section,
.main-content,
.py-5,
.p-4,
.p-5 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

@media (max-width: 768px) {
    .section,
    .main-content,
    .py-5,
    .p-4,
    .p-5 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */

h1, h2, h3, h4, h5, h6 {
    color: var(--brand-blue-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 6vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.3rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); }

p, .lead { color: var(--warm-gray); }

/* =====================================================
   BUTTONS
   ===================================================== */

/* Testimonial Read More Button - Plain Text Style */
.testimonial-card .read-more-btn,
.testimonial-card .read-more-btn:hover,
.testimonial-card .read-more-btn:focus,
.testimonial-card .read-more-btn:active {
    background: none !important;
    border: none !important;
    color: var(--brand-blue) !important;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0;
    margin: 0;
    box-shadow: none !important;
    outline: none;
    cursor: pointer;
    display: inline;
    border-radius: 0;
    transition: color 0.3s ease;
}

.testimonial-card .read-more-btn:hover {
    color: var(--brand-blue-dark, #005489) !important;
    text-decoration: underline;
}

/* Testimonial text improvements */
.testimonial-text {
    line-height: 1.6;
    transition: all 0.3s ease;
}

/* Responsive text sizing for testimonials */
@media (max-width: 768px) {
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonial-card .read-more-btn {
        font-size: 0.85rem;
    }
}

.btn, .btn-primary, .btn-outline-primary {
    border-radius: 30px;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    background: var(--brand-blue) !important;
    color: #fff !important;
}

.btn-primary:hover, .btn-outline-primary:hover, .btn:hover {
    background: var(--brand-blue-dark) !important;
    color: white !important;
    box-shadow: 0 4px 16px rgba(0, 84, 137, 0.13);
}

.btn-outline-primary {
    background: transparent !important;
    color: var(--brand-blue) !important;
    border: 2px solid var(--brand-blue) !important;
}

.btn-outline-primary:hover {
    background: var(--brand-blue) !important;
    color: white !important;
    border-color: var(--brand-blue-dark);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    width: 100%;
    height: 80px; /* Fixed header height */
}

.navbar {
    width: 100%;
    padding: 0 20px;
    height: 80px; /* Match header height */
}

.navbar .container {
    width: 100%;
    max-width: none;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%; /* Full height of navbar */
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

.navbar-brand {
    transition: var(--transition);
    margin-right: 50px;
}

.navbar-brand img {
    transition: var(--transition);
    height: 50px;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    padding: 0 20px;
    margin-left: auto;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--brand-blue-dark) !important;
    margin: 0 10px;
    position: relative;
    transition: var(--transition);
    padding: 10px 15px !important;
    border-radius: var(--border-radius);
    flex: none;
    text-align: center;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--brand-blue) !important;
    background: rgba(0, 84, 137, 0.08);
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--brand-blue);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    transition: var(--transition);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* =====================================================
   MAIN CONTENT
   ===================================================== */

.main-content {
    padding-top: 80px;
    min-height: calc(100vh - 400px);
    background: transparent;
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e6f3ff 50%, #e8f5e8 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(67, 206, 162, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 84, 137, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(76, 175, 80, 0.04) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 50%, #4a7c59 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.8));
}

.hero-subtitle {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.hero-buttons {
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 84, 137, 0.15);
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-buttons .btn:hover {
    background: var(--brand-blue-dark) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 84, 137, 0.2);
}

.hero-logo {
    max-width: 400px;
    filter: drop-shadow(0 8px 32px rgba(67, 206, 162, 0.2));
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 12px 40px rgba(67, 206, 162, 0.3));
}

/* Hero Gradient Overlay */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(67, 206, 162, 0.4) 0%, 
        rgba(24, 90, 157, 0.4) 25%, 
        rgba(76, 175, 80, 0.4) 50%, 
        rgba(33, 150, 243, 0.4) 75%, 
        rgba(67, 206, 162, 0.4) 100%);
    z-index: 1;
    animation: gradientShift 8s ease-in-out infinite;
}

/* Leaf Container */
.leaf-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Leaf Base Styles */
.leaf {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #4CAF50, #81C784);
    border-radius: 0 50% 50% 50%;
    opacity: 0.7;
    animation: leafFloat 6s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

/* Individual Leaf Positions and Animations */
.leaf-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(45deg);
}

.leaf-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
    transform: rotate(-30deg);
    width: 15px;
    height: 15px;
}

.leaf-3 {
    top: 40%;
    left: 5%;
    animation-delay: 2s;
    transform: rotate(60deg);
    width: 25px;
    height: 25px;
}

.leaf-4 {
    top: 60%;
    right: 10%;
    animation-delay: 3s;
    transform: rotate(-45deg);
    width: 18px;
    height: 18px;
}

.leaf-5 {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
    transform: rotate(30deg);
    width: 22px;
    height: 22px;
}

.leaf-6 {
    top: 30%;
    left: 80%;
    animation-delay: 5s;
    transform: rotate(-60deg);
    width: 16px;
    height: 16px;
}

.leaf-7 {
    top: 70%;
    left: 70%;
    animation-delay: 6s;
    transform: rotate(75deg);
    width: 20px;
    height: 20px;
}

.leaf-8 {
    top: 50%;
    left: 50%;
    animation-delay: 7s;
    transform: rotate(-15deg);
    width: 14px;
    height: 14px;
}

/* Leaf Float Animation */
@keyframes leafFloat {
    0%, 100% {
        transform: translateY(0px) rotate(var(--rotation, 45deg));
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) rotate(calc(var(--rotation, 45deg) + 10deg));
        opacity: 0.9;
    }
    50% {
        transform: translateY(-10px) rotate(calc(var(--rotation, 45deg) - 5deg));
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) rotate(calc(var(--rotation, 45deg) + 15deg));
        opacity: 0.6;
    }
}

/* Gradient Shift Animation */
@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg, 
            rgba(67, 206, 162, 0.4) 0%, 
            rgba(24, 90, 157, 0.4) 25%, 
            rgba(76, 175, 80, 0.4) 50%, 
            rgba(33, 150, 243, 0.4) 75%, 
            rgba(67, 206, 162, 0.4) 100%);
    }
    25% {
        background: linear-gradient(135deg, 
            rgba(76, 175, 80, 0.4) 0%, 
            rgba(67, 206, 162, 0.4) 25%, 
            rgba(24, 90, 157, 0.4) 50%, 
            rgba(76, 175, 80, 0.4) 75%, 
            rgba(33, 150, 243, 0.4) 100%);
    }
    50% {
        background: linear-gradient(135deg, 
            rgba(33, 150, 243, 0.4) 0%, 
            rgba(76, 175, 80, 0.4) 25%, 
            rgba(67, 206, 162, 0.4) 50%, 
            rgba(24, 90, 157, 0.4) 75%, 
            rgba(76, 175, 80, 0.4) 100%);
    }
    75% {
        background: linear-gradient(135deg, 
            rgba(24, 90, 157, 0.4) 0%, 
            rgba(33, 150, 243, 0.4) 25%, 
            rgba(76, 175, 80, 0.4) 50%, 
            rgba(67, 206, 162, 0.4) 75%, 
            rgba(24, 90, 157, 0.4) 100%);
    }
}

/* =====================================================
   SECTIONS
   ===================================================== */

.section {
    padding: 90px 0;
    background: var(--section-main) !important;
    position: relative;
    overflow: hidden;
}

.section.bg-light { background: var(--section-alt) !important; }
.section.bg-blue { background: var(--brand-blue-light) !important; }
.section.bg-green { background: var(--section-green) !important; }

/* Section Dividers and Enhanced Styling */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0,84,137,0.1) 50%, transparent 100%);
    z-index: 1;
}

.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0,84,137,0.1) 50%, transparent 100%);
    z-index: 1;
}

/* Section-specific decorative elements */
.stats-section::before {
    background: linear-gradient(90deg, transparent 0%, rgba(76,175,80,0.2) 50%, transparent 100%);
}

.stats-section::after {
    background: linear-gradient(90deg, transparent 0%, rgba(76,175,80,0.2) 50%, transparent 100%);
}

/* Enhanced section spacing */
.section + .section {
    margin-top: 0;
}

/* Section content positioning */
.section .container {
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--brand-blue);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   CARDS
   ===================================================== */

.card, .service-card, .team-card, .testimonial-card, .admin-card {
    background: var(--card-bg) !important;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(46, 125, 50, 0.07);
    border: 1px solid #dbe6ef;
    transition: var(--transition);
}

.card:hover, .service-card:hover, .team-card:hover, .testimonial-card:hover, .admin-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-6px);
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-slate) !important;
}

/* =====================================================
   SERVICE CARDS
   ===================================================== */

.service-card {
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--brand-blue);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white-color);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-medium);
    background: var(--brand-blue-dark);
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-blue);
    font-weight: bold;
}

.service-features li:last-child {
    border-bottom: none;
}

/* =====================================================
   PROJECT CARDS
   ===================================================== */

.project-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card .card {
    height: 100%;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--card-bg);
    border-radius: 1.25rem;
    box-shadow: 0 4px 16px rgba(0,84,137,0.10);
    padding: 1.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.project-card .card:hover {
    box-shadow: 0 8px 32px rgba(0,84,137,0.18);
    transform: translateY(-6px) scale(1.02);
}
.project-card .card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
}
.project-card .badge {
    font-size: 0.95rem;
    padding: 0.4em 1em;
    border-radius: 12px;
    margin-bottom: 0.5rem;
}
@media (max-width: 991px) {
    .project-card .card { min-height: 320px; }
}
@media (max-width: 767px) {
    .project-card .card { min-height: 260px; }
}

.project-image {
    width: 100%;
    height: 200px;
    background: var(--brand-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    transition: var(--transition);
    display: block;
}

.project-card:hover .project-image img {
    transform: scale(1.07);
    filter: brightness(0.95);
}

.project-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,84,137,0.85) 0%, rgba(0,166,81,0.85) 100%);
    color: var(--white-color);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    text-align: center;
    z-index: 2;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-category {
    background: var(--brand-blue);
    color: var(--white-color);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.project-card .card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.project-card .card-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--brand-blue);
}

.project-card .card-text {
    font-size: 0.98rem;
    color: var(--warm-gray);
    margin-bottom: 1rem;
}

.project-card .badge {
    font-size: 0.85rem;
    padding: 0.4em 1em;
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.project-card .btn {
    font-size: 0.95rem;
    padding: 0.4em 1.2em;
    border-radius: 20px;
}

/* Modern Project Cards */
.project-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border: 1px solid rgba(0,84,137,0.1) !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,84,137,0.15);
    border-color: var(--brand-blue) !important;
}

/* Project Card Gradient Overlay */
.project-card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(67, 206, 162, 0.05) 0%, 
        rgba(24, 90, 157, 0.05) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card-modern:hover .project-card-gradient {
    opacity: 1;
}

/* Project Icon */
.project-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0,84,137,0.2);
    transition: all 0.3s ease;
}

.project-card-modern:hover .project-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,84,137,0.3);
}

/* Project Classification Badge */
.project-classification-badge {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%) !important;
    color: white !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,84,137,0.2);
}

/* Project Title */
.project-title {
    color: var(--brand-blue-dark) !important;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Project Details */
.project-details {
    margin-bottom: 1.5rem;
    flex: 1;
}

.project-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,84,137,0.1);
    transition: all 0.3s ease;
}

.project-detail-item:last-child {
    border-bottom: none;
}

.project-detail-item:hover {
    background: rgba(67, 206, 162, 0.05);
    border-radius: 8px;
    padding-left: 0.5rem;
    margin-left: -0.5rem;
}

.project-detail-item i {
    font-size: 1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.project-detail-item span {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Project Status Badges */
.project-status-active {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    color: white !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(40,167,69,0.3);
    margin-top: auto;
}

.project-status-completed {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #6f42c1 100%) !important;
    color: white !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(0,84,137,0.3);
    margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .project-card-modern {
        margin-bottom: 1rem;
    }
    
    .project-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: 15px;
        right: 15px;
    }
    
    .project-title {
        font-size: 1.1rem;
    }
    
    .project-detail-item {
        font-size: 0.9rem;
    }
}

/* =====================================================
   FOUNDER SECTION - FULL WIDTH
   ===================================================== */

.founder-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
}

.founder-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0,84,137,0.1);
    position: relative;
    overflow: hidden;
}

.founder-background {
    background: linear-gradient(135deg, 
        rgba(67, 206, 162, 0.05) 0%, 
        rgba(24, 90, 157, 0.05) 50%, 
        rgba(76, 175, 80, 0.05) 100%);
    padding: 4rem 0;
    position: relative;
}

.founder-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(0,84,137,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.founder-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.founder-image-container {
    flex-shrink: 0;
}

.founder-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 6px solid var(--brand-green);
    box-shadow: 0 15px 40px rgba(76,175,80,0.3);
    background: white;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    border: 3px solid white;
}

.founder-info {
    flex: 1;
    max-width: 600px;
}

.founder-header {
    margin-bottom: 2rem;
}

.founder-name {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-blue-dark);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.founder-position {
    font-size: 1.3rem;
    color: var(--brand-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.founder-bio {
    margin-bottom: 2rem;
}

.founder-bio p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--warm-gray);
    margin: 0;
}

.founder-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.founder-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0,84,137,0.2);
}

.detail-content {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.8rem;
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-blue-dark);
}

.founder-action {
    text-align: left;
}

.founder-btn {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%) !important;
    border: none !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    box-shadow: 0 8px 25px rgba(0,84,137,0.3);
    transition: all 0.3s ease;
}

.founder-btn:hover {
    background: var(--brand-blue-dark) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 84, 137, 0.2);
}

/* Responsive Founder Section */
@media (max-width: 991px) {
    .founder-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .founder-name {
        font-size: 2.5rem;
    }
    
    .founder-details {
        justify-content: center;
    }
    
    .founder-action {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .founder-background {
        padding: 3rem 0;
    }
    
    .founder-content {
        padding: 0 1rem;
    }
    
    .founder-image {
        width: 150px;
        height: 150px;
    }
    
    .founder-name {
        font-size: 2rem;
    }
    
    .founder-position {
        font-size: 1.1rem;
    }
    
    .founder-bio p {
        font-size: 1rem;
    }
    
    .founder-details {
        flex-direction: column;
        gap: 1rem;
    }
}

/* =====================================================
   TEAM CARDS
   ===================================================== */

.team-card {
    text-align: center;
    transition: var(--transition);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--card-bg);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.team-card:hover .team-image {
    transform: scale(1.05);
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-medium);
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-slate);
}

.team-position {
    color: var(--brand-blue);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--warm-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* =====================================================
   TESTIMONIAL CARDS
   ===================================================== */

.testimonial-card {
    position: relative;
    transition: var(--transition);
    border-left: 4px solid var(--brand-blue);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--brand-blue);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--warm-gray);
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-slate);
    margin-bottom: 0.25rem;
}

.testimonial-position {
    color: var(--brand-blue);
    font-size: 0.9rem;
}

/* =====================================================
   STATS SECTION
   ===================================================== */

.stats-section {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 84, 137, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.stat-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: -1;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 84, 137, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

.stat-number {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--brand-blue-dark) 0%, var(--brand-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: countUp 2s ease-out;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================================================
   CONTACT FORM
   ===================================================== */

.contact-form {
    background: var(--white-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.form-control {
    border: 1px solid #d0d0d0;
    border-radius: var(--border-radius);
    padding: 1rem;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 84, 137, 0.25), 0 1px 3px rgba(0, 0, 0, 0.1);
    outline: none;
}

.form-label {
    font-weight: 500;
    color: var(--dark-slate);
    margin-bottom: 0.5rem;
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    background: var(--brand-blue);
    color: #fff;
    padding: 0;
    margin-top: 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-blue);
}

.footer h5 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer a {
    color: #e3f7e1 !important;
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--brand-green) !important;
    transform: translateX(5px);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--brand-blue);
    color: var(--white-color);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--brand-blue-dark);
    transform: translateY(-3px);
    color: var(--white-color);
}

/* =====================================================
   BACK TO TOP BUTTON
   ===================================================== */

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--brand-blue);
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

#backToTop:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.slide-in-up {
    animation: slideInUp 0.8s ease-out;
}

.float {
    animation: float 3s ease-in-out infinite;
}

.pulse {
    animation: pulse 2s infinite;
}

.bounce {
    animation: bounce 2s infinite;
}

/* Staggered animations for lists */
.stagger-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.2s; }
.stagger-item:nth-child(3) { animation-delay: 0.3s; }
.stagger-item:nth-child(4) { animation-delay: 0.4s; }
.stagger-item:nth-child(5) { animation-delay: 0.5s; }
.stagger-item:nth-child(6) { animation-delay: 0.6s; }

/* =====================================================
   LOADING ANIMATION
   ===================================================== */

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white-color);
    animation: spin 1s ease-in-out infinite;
}

/* =====================================================
   CUSTOM SCROLLBAR
   ===================================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--card-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-blue-dark);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 992px) {
    .section { padding: 60px 0; }
    .project-image { height: 150px; }
}

@media (max-width: 768px) {
    .section { padding: 40px 0; }
    .project-image { height: 120px; }
    .card, .service-card, .team-card, .testimonial-card, .admin-card {
        padding: 1rem;
    }
    .project-filters { flex-direction: column; gap: 0.5rem; }
    .btn, .btn-primary, .btn-outline-primary { width: 100%; margin-bottom: 0.5rem; }
    .hero-section {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
        padding: 60px 0 30px;
    }
    .hero-logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top: 2rem;
        margin-bottom: 2rem;
        max-width: 80vw;
        height: auto;
    }
    .hero-content {
        text-align: center;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.2rem; }
    .section { padding: 20px 0; }
    .project-image { height: 80px; }
    .card, .service-card, .team-card, .testimonial-card, .admin-card {
        padding: 0.5rem;
    }
    .btn, .btn-primary, .btn-outline-primary { font-size: 0.95rem; padding: 10px 18px; }
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */

.text-gradient {
    background: var(--brand-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--brand-blue);
}

.shadow-light {
    box-shadow: var(--shadow-light);
}

.shadow-medium {
    box-shadow: var(--shadow-medium);
}

.shadow-heavy {
    box-shadow: var(--shadow-heavy);
}

.rounded-custom {
    border-radius: var(--border-radius);
}

.transition {
    transition: var(--transition);
}

/* =====================================================
   INTERACTIVE ELEMENTS
   ===================================================== */

.hover-lift:hover {
    transform: translateY(-5px);
    transition: var(--transition);
}

.hover-scale:hover {
    transform: scale(1.05);
    transition: var(--transition);
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(0, 84, 137, 0.3);
    transition: var(--transition);
}

/* =====================================================
   PAGE SPECIFIC STYLES
   ===================================================== */

/* About Page */
.about-hero {
    background: var(--brand-blue);
    padding: 100px 0;
    color: var(--white-color);
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.achievement-item {
    text-align: center;
    padding: 2rem;
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
}

.achievement-label {
    color: var(--warm-gray);
    font-weight: 500;
}

/* Services Page */
.service-detail {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.service-detail:hover {
    box-shadow: var(--shadow-medium);
}

.service-timeline {
    background: var(--card-bg);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

/* Projects Page */
.project-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    overflow-x: unset;
    padding-bottom: 0;
    scrollbar-width: unset;
    scrollbar-color: unset;
}

.filter-btn {
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    background: var(--white-color);
    color: var(--brand-blue);
    border: 2px solid var(--brand-blue);
    font-weight: 500;
    font-size: 1rem;
    margin: 0.25rem 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
    box-shadow: none;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--brand-blue);
    color: var(--white-color);
    border-color: var(--brand-blue);
    box-shadow: 0 2px 8px rgba(0,84,137,0.08);
}

/* Blog Page */
.blog-card {
    margin-bottom: 2rem;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.blog-meta {
    color: var(--warm-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: var(--warm-gray);
    line-height: 1.6;
}

/* Contact Page */
.contact-hero {
    padding: 100px 0 60px;
    min-height: 60vh;
}

.contact-info-card {
    background: var(--brand-blue);
    color: var(--white-color);
    border: none;
    box-shadow: var(--shadow-medium);
}

.contact-info-card .card-title {
    color: var(--white-color);
}

.contact-info-card .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-card .contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-info-card .contact-item:hover i {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.contact-info-card .contact-item h6 {
    color: var(--white-color);
    margin-bottom: 0.5rem;
}

.contact-info-card .contact-item p,
.contact-info-card .contact-item a {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.contact-info-card .contact-item a:hover {
    color: var(--white-color);
}

.contact-info-card .social-links {
    margin-top: 1rem;
}

.contact-info-card .social-links .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.contact-info-card .social-links .btn:hover {
    background: var(--brand-blue-dark) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 84, 137, 0.2);
}

/* =====================================================
   ACCORDION STYLES
   ===================================================== */

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: var(--shadow-medium);
}

.accordion-button {
    background: var(--white-color);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    color: var(--dark-slate);
    padding: 1.5rem;
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    background: var(--brand-blue);
    color: var(--white-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23005489'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: var(--transition);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background: var(--white-color);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    color: var(--warm-gray);
    line-height: 1.6;
}

/* =====================================================
   PRINT STYLES
   ===================================================== */

@media print {
    .header,
    .footer,
    .btn,
    #backToTop {
        display: none !important;
    }
    
    .main-content {
        padding-top: 0;
    }
    
    .section {
        padding: 20px 0;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* =====================================================
   ICON STYLES
   ===================================================== */

.mission-icon,
.vision-icon,
.value-icon {
    font-size: 1.5rem;
    transition: var(--transition);
}

.value-icon {
    font-size: 2rem;
}

.mission-icon:hover,
.vision-icon:hover,
.value-icon:hover {
    transform: scale(1.2) rotate(10deg);
}

/* =====================================================
   BLOG STYLES
   ===================================================== */

.blog-image {
    height: 200px;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

/* =====================================================
   TESTIMONIAL AVATAR
   ===================================================== */

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--brand-blue);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
    background: var(--brand-blue-dark);
}

/* =====================================================
   ADMIN PANEL
   ===================================================== */

.admin-content {
    padding: 2rem;
}

.admin-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: 2rem;
    margin-bottom: 2rem;
}

/* About page utility classes */
.about-hero-section {
    padding: 100px 0 60px;
}
.about-logo {
    max-width: 300px;
}
.icon-lg {
    font-size: 2rem;
}
.icon-md {
    font-size: 1.5rem;
}

/* Blog page utility classes */
.featured-post-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: var(--border-radius);
    background: var(--brand-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}
.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    background: var(--brand-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-list-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}
@media (max-width: 768px) {
    .featured-post-image { height: 180px; }
    .blog-image { height: 120px; }
}
@media (max-width: 576px) {
    .featured-post-image { height: 100px; }
    .blog-image { height: 80px; }
}

/* Newsletter form customization for mobile */
.newsletter-form .input-group {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
}
.newsletter-form input[type="email"] {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
    padding: 0.75rem 1rem;
    min-width: 0;
    flex: 1 1 auto;
    border: 1px solid #dbe6ef;
    background: var(--white-color);
    transition: var(--transition);
}
.newsletter-form input[type="email"]:focus {
    border-color: var(--brand-blue);
    outline: none;
    box-shadow: 0 0 0 0.1rem rgba(0,84,137,0.08);
}
.newsletter-form .btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-size: 1.1rem;
    padding: 0.75rem 1.2rem;
    min-width: 48px;
    min-height: 48px;
}
@media (max-width: 576px) {
    .newsletter-form .input-group {
        flex-direction: column;
        align-items: stretch;
    }
    .newsletter-form input[type="email"] {
        border-radius: var(--border-radius) var(--border-radius) 0 0;
        margin-bottom: 0.5rem;
        font-size: 1.05rem;
        padding: 1rem;
    }
    .newsletter-form .btn {
        border-radius: 0 0 var(--border-radius) var(--border-radius);
        width: 100%;
        min-width: 0;
        font-size: 1.1rem;
        padding: 1rem 0;
    }
}

/* =====================================================
   CUSTOM DROPDOWN MENU STYLES
   ===================================================== */

.navbar-nav .dropdown-menu {
    min-width: 500px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    border: none;
    padding: 0.5rem 0;
    background: var(--white-color);
    animation: fadeInUp 0.3s;
    margin-top: 10px;
    left: 0 !important;
    right: auto !important;
}

.navbar-nav .dropdown-menu .dropdown-item {
    padding: 12px 24px;
    font-weight: 500;
    color: var(--brand-blue-dark);
    border-radius: 0;
    transition: var(--transition);
}

.navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar-nav .dropdown-menu .dropdown-item:focus {
    background: var(--brand-blue-light);
    color: var(--brand-blue);
    border-radius: var(--border-radius);
    transform: translateX(5px);
}

.navbar-nav .dropdown-menu .dropdown-item:first-child {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.navbar-nav .dropdown-menu .dropdown-item:last-child {
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

/* --- Modern Admin Sidebar & Topbar --- */


/* --- Improved Admin Topbar & Sidebar Responsive Styling --- */
.admin-topbar {
  position: fixed;
  left: 240px;
  right: 0;
  top: 0;
  height: 64px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 1102;
  box-shadow: 0 2px 10px rgba(0, 84, 137, 0.07);
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  margin-bottom: 1.5rem;
  transition: left 0.2s, width 0.2s;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.topbar-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #005489;
  letter-spacing: 1px;
  white-space: nowrap;
}
.topbar-search input.form-control {
  border-radius: 2rem;
  border: 1.5px solid #e3f0fa;
  background: #f8fbfd;
  font-size: 1rem;
  padding: 0.6rem 1.2rem;
  margin-right: 1.5rem;
}
/* --- Improved Topbar Profile & Logout Styling --- */
.topbar-user {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-left: 1.5rem;
  background: #f8fbfd;
  border-radius: 2rem;
  padding: 0.25rem 1rem 0.25rem 0.4rem;
  box-shadow: 0 2px 8px rgba(0,84,137,0.07);
  transition: box-shadow 0.18s, background 0.18s;
  cursor: pointer;
  position: relative;
}
.topbar-user:hover {
  background: #e3f0fa;
  box-shadow: 0 4px 16px rgba(0,166,81,0.10);
}
.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e3f0fa;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,84,137,0.10);
  transition: box-shadow 0.18s, border 0.18s;
}
.topbar-user .user-name {
  font-weight: 600;
  color: #005489;
  font-size: 1.08rem;
  margin-right: 0.2rem;
}
.topbar-logout {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(90deg, #00a651 0%, #005489 100%);
  color: #fff !important;
  font-size: 1.1rem;
  border-radius: 2rem;
  padding: 0.5rem 1.3rem;
  margin-left: 1.2rem;
  font-weight: 600;
  box-shadow: 0 2px 8px 0 rgba(0,166,81,0.08);
  border: none;
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.18s;
}
.topbar-logout:hover {
  background: linear-gradient(90deg, #005489 0%, #00a651 100%);
  box-shadow: 0 4px 16px 0 rgba(0,166,81,0.13);
  color: #fff !important;
}
@media (max-width: 991.98px) {
  .user-avatar {
    width: 32px;
    height: 32px;
  }
  .topbar-user {
    padding: 0.15rem 0.7rem 0.15rem 0.2rem;
    gap: 0.4rem;
  }
  .topbar-logout {
    padding: 0.4rem 1rem;
    font-size: 1rem;
    margin-left: 0.5rem;
  }
}
@media (max-width: 576px) {
  .user-avatar {
    width: 22px;
    height: 22px;
  }
  .topbar-user {
    padding: 0.1rem 0.4rem 0.1rem 0.1rem;
    gap: 0.2rem;
  }
  .topbar-logout {
    padding: 0.3rem 0.7rem;
    font-size: 0.95rem;
    margin-left: 0.2rem;
  }
}

/* --- Ensure admin content is visible with new layout --- */
.admin-content {
  margin-top: 64px; /* Height of the topbar */
  margin-left: 240px; /* Width of the sidebar */
  background: #f4f8fb;
  min-height: 100vh;
  padding: 2.5rem 2.5rem 2rem 2.5rem;
}
@media (max-width: 991.98px) {
  .admin-content {
    margin-left: 0;
    margin-top: 64px;
    padding: 1.2rem 0.5rem;
  }
}

/* --- Company Info Page Style Improvements --- */
.admin-content {
  background: linear-gradient(135deg, #e3f0fa 0%, #e3f7e1 100%);
}
.form-section {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(0,84,137,0.13);
  border: 1.5px solid #e3f0fa;
  max-width: 900px;
  margin: 0 auto 2.5rem auto;
  padding: 2.8rem 2.2rem 2.2rem 2.2rem;
}
.form-section h4 {
  color: #00a651;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  margin-top: 2.2rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-section h4:first-child { margin-top: 0; }
.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #005489;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-align: center;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #00a651 0%, #005489 100%);
  margin: 0.7rem auto 0 auto;
}
.section-subtitle {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
.section-divider {
  border: none;
  border-top: 2px solid #e0e7ef;
  margin: 2.5rem 0 2rem 0;
}
.form-label {
  font-weight: 600;
  color: #005489;
  font-size: 1.08rem;
  margin-bottom: 0.3rem;
}
.form-control {
  border-radius: 1.5rem;
  font-size: 1.08rem;
  padding: 0.85rem 1.2rem;
  border: 1.5px solid #e3f0fa;
  background: #f8fbfd;
  transition: border 0.2s;
}
.form-control:focus {
  border-color: #00a651;
  box-shadow: 0 0 0 2px #e3f0fa;
}
textarea.form-control { min-height: 100px; }
.save-btn {
  background: linear-gradient(90deg, #00a651 0%, #005489 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 2rem;
  padding: 0.85rem 2.8rem;
  font-size: 1.15rem;
  box-shadow: 0 2px 8px 0 rgba(0,166,81,0.08);
  transition: background 0.2s, box-shadow 0.2s;
  margin-top: 1.5rem;
}
.save-btn:hover {
  background: var(--brand-blue-dark) !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 84, 137, 0.2);
}
@media (max-width: 768px) {
  .form-section {
    padding: 1.2rem 0.5rem;
  }
  .section-title {
    font-size: 1.3rem;
  }
}

/* --- Profile Dropdown Menu Styling --- */
.profile-dropdown {
  position: relative;
  cursor: pointer;
  user-select: none;
}
.profile-dropdown .fa-chevron-down {
  font-size: 1rem;
  color: #005489;
  margin-left: 0.3rem;
  transition: transform 0.2s;
}
.profile-dropdown:focus .profile-menu,
.profile-dropdown .profile-menu.show {
  display: block;
}
.profile-menu {
  display: none;
  position: absolute;
  top: 110%;
  right: 0;
  min-width: 170px;
  background: #fff;
  border-radius: 1.1rem;
  box-shadow: 0 8px 32px 0 rgba(0,84,137,0.13);
  padding: 0.5rem 0;
  z-index: 1200;
  animation: fadeInUp 0.18s;
}
.profile-menu.show {
  display: block;
}
.profile-menu-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1.3rem;
  color: #005489;
  font-weight: 500;
  font-size: 1.05rem;
  text-decoration: none;
  background: none;
  border: none;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.profile-menu-item:hover {
  background: #e3f0fa;
  color: #00a651;
}
@media (max-width: 576px) {
  .profile-menu {
    min-width: 120px;
    right: -20px;
  }
  .profile-menu-item {
    font-size: 0.98rem;
    padding: 0.6rem 1rem;
  }
}

@media (max-width: 991.98px) {
  .admin-topbar {
    left: 0;
    width: 100vw;
    border-radius: 0 0 1.2rem 1.2rem;
    padding: 0 0.5rem;
    height: 44px;
    max-height: 44px;
    min-height: 0;
    min-width: 0;
    margin-bottom: 0;
    box-sizing: border-box;
    z-index: 1102;
    overflow: hidden;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    font-size: 0.97rem;
    box-shadow: 0 2px 8px rgba(0,84,137,0.08);
    border-bottom: 1.5px solid #e3f0fa;
    background: #fff;
  }
  .topbar-title {
    font-size: 0.98rem;
    max-width: 50vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .topbar-user .user-name {
    font-size: 0.97rem;
  }
  .profile-dropdown .fa-chevron-down {
    font-size: 0.95rem;
  }
  .user-avatar {
    width: 22px;
    height: 22px;
  }
  .admin-sidebar-toggle {
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    margin-right: 0.3rem;
  }
}
@media (max-width: 576px) {
  .admin-topbar {
    height: 38px;
    max-height: 38px;
    padding: 0 0.2rem;
    border-radius: 0 0 0.7rem 0.7rem;
    font-size: 0.93rem;
  }
  .topbar-title {
    font-size: 0.93rem;
    max-width: 38vw;
  }
  .user-avatar {
    width: 16px;
    height: 16px;
  }
}



/* --- Testimonials Section: What Our Clients Say --- */
.testimonial-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  justify-content: center;
}
@media (max-width: 991px) {
  .testimonial-row {
    flex-wrap: wrap;
    gap: 1.2rem;
  }
}
@media (max-width: 767px) {
  .testimonial-row {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  .testimonial-card {
    width: 100% !important;
    max-width: 100% !important;
  }
}
.testimonial-card {
  background: linear-gradient(135deg, #e0f7fa 0%, #f1f8e9 100%);
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(67, 206, 162, 0.08), 0 1.5px 6px rgba(24, 90, 157, 0.06);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  border: none;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px rgba(67, 206, 162, 0.08), 0 1.5px 6px rgba(24, 90, 157, 0.06);
  transform: none;
}
.testimonial-content {
  font-size: 1.1rem;
  color: #185a9d;
  background: rgba(67, 206, 162, 0.08);
  border-left: 4px solid #43cea2;
  border-radius: 0.75rem;
  padding: 1.25rem 1rem 1rem 2rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
}
.testimonial-content:before {
  content: '\201C';
  font-size: 2.5rem;
  color: #43cea2;
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  opacity: 0.3;
}
.testimonial-author {
  color: #1976d2;
  font-weight: 600;
  font-size: 1.1rem;
}
.testimonial-position {
  color: #43cea2;
  font-size: 0.95rem;
  font-weight: 500;
}
.testimonial-avatar {
  background: linear-gradient(135deg, #43cea2 0%, #185a9d 100%);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(24, 90, 157, 0.10);
  width: 56px !important;
  height: 56px !important;
  font-size: 1.7rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}
@media (max-width: 767px) {
  .testimonial-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .testimonial-content {
    font-size: 1rem;
    padding: 1rem 0.7rem 0.7rem 1.2rem;
  }
  .testimonial-avatar {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.2rem !important;
  }
}

/* Service Hero Content Bottom (for service pages) */
.service-hero-content-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: 32px 0 24px 0;
  pointer-events: none;
}
.service-hero-content-bottom .container,
.service-hero-content-bottom .row,
.service-hero-content-bottom .col-lg-8 {
  pointer-events: auto;
}
@media (max-width: 768px) {
  .service-hero-content-bottom {
    padding: 20px 0 12px 0;
  }
}

/* Custom Dropdown Styles */
.custom-dropdown {
  position: relative;
  display: inline-block;
}
.custom-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 180px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 2001;
  padding: 0;
  margin: 0;
  list-style: none;
}
.custom-dropdown .dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
}
.custom-dropdown .dropdown-menu li a:hover {
  background: #f0f0f0;
}
.custom-dropdown.open .dropdown-menu {
  display: block;
}
.custom-dropdown .dropdown-toggle {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* Custom Mobile Navbar Collapse */
.navbar-collapse {
  display: flex;
  flex-basis: auto;
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 1001;
    padding: 16px 0;
    justify-content: flex-start;
  }
  .navbar-collapse.open {
    display: flex;
    z-index: 2000;
  }
  .navbar-nav {
    flex-direction: column;
    width: 100%;
    padding: 0;
    justify-content: flex-start;
    margin-left: 0;
  }
  .navbar-nav .nav-item {
    width: 100%;
  }
  .navbar-nav .nav-link {
    width: 100%;
    padding: 12px 24px;
    flex: none;
    text-align: left;
  }
}

/* Custom Hamburger Icon for Navbar Toggler */
.navbar-toggler-icon {
  display: inline-block;
  width: 30px;
  height: 3px;
  background-color: #005489;
  position: relative;
  border-radius: 2px;
  transition: background 0.2s;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: #005489;
  border-radius: 2px;
  transition: transform 0.2s;
}
.navbar-toggler-icon::before {
  top: -10px;
}
.navbar-toggler-icon::after {
  top: 10px;
}

/* Modernized Simple Dropdown Styles */
.simple-dropdown {
  position: relative;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
}
.simple-dropdown-toggle {
  background: none;
  border: none;
  color: #005489;
  font: inherit;
  padding: 10px 20px 10px 18px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  position: relative;
  gap: 0.5em;
}
.simple-dropdown-toggle:after {
  content: '\25BC';
  font-size: 0.9em;
  margin-left: 0.4em;
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
.simple-dropdown:focus-within .simple-dropdown-toggle:after,
.simple-dropdown:hover .simple-dropdown-toggle:after {
  transform: rotate(-180deg);
}
.simple-dropdown-toggle:focus,
.simple-dropdown-toggle:hover {
  background: #e3f0fa;
  color: #00395e;
}
.simple-dropdown-menu {
  min-width: 270px !important;
  max-width: 400px;
  width: auto !important;
  display: none;
  position: absolute;
  left: 0;
  top: 110%;
  min-width: 220px;
  background: #fff;
  border: none;
  box-shadow: 0 8px 32px 0 rgba(0,84,137,0.13);
  border-radius: 16px;
  z-index: 1000;
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.22s cubic-bezier(0.4,0,0.2,1), transform 0.22s cubic-bezier(0.4,0,0.2,1);
}
.simple-dropdown:hover .simple-dropdown-menu,
.simple-dropdown:focus-within .simple-dropdown-menu {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.simple-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.7em;
  padding: 10px 18px;
  color: #005489;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s, padding-left 0.18s;
  margin: 0 6px;
  white-space: normal;
}
.simple-dropdown-menu a:hover,
.simple-dropdown-menu a:focus {
  background: #e3f0fa;
  color: #00395e;
  padding-left: 32px;
}

/* Responsive Header & Dropdown */
@media (max-width: 991.98px) {
  .header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .navbar-collapse {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 2000;
    padding: 16px 0;
  }
  .navbar-collapse.open {
    display: flex;
  }
  .navbar-nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .navbar-nav .nav-item {
    width: 100%;
    margin: 0;
  }
  .navbar-nav .nav-link,
  .simple-dropdown-toggle {
    width: 100%;
    text-align: left;
    padding: 14px 24px;
    border-radius: 0;
    font-size: 1.08rem;
  }
  .simple-dropdown-menu {
    position: static;
    min-width: 100%;
    box-shadow: none;
    border-radius: 0 0 16px 16px;
    padding: 0.2rem 0;
    transform: none !important;
    opacity: 1 !important;
    display: none;
  }
  .simple-dropdown:hover .simple-dropdown-menu,
  .simple-dropdown:focus-within .simple-dropdown-menu,
  .simple-dropdown.open .simple-dropdown-menu {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}
@media (max-width: 576px) {
  .navbar-brand img {
    height: 36px;
  }
  .navbar-nav .nav-link,
  .simple-dropdown-toggle {
    font-size: 1rem;
    padding: 12px 16px;
  }
  .simple-dropdown-menu a {
    font-size: 0.98rem;
    padding: 10px 16px;
  }
}
/* Ensure toggler is always visible on mobile */
.navbar-toggler {
  display: none;
}
@media (max-width: 991.98px) {
  .navbar-toggler {
    display: block;
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 2100;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 8px 12px;
  }
}

/* Pure CSS Hamburger Toggle Logic */
@media (max-width: 991.98px) {
  .navbar-collapse {
    display: none;
    transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-toggle:checked ~ .navbar-toggler + .navbar-collapse {
    display: flex;
  }
  /* Ensure toggler stays above menu */
  .navbar-toggler {
    z-index: 2101;
  }
  .navbar-collapse {
    z-index: 2100;
  }
}

/* Responsive Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgba(0,84,137,0.85) 0%, rgba(76,175,80,0.65) 100%), url('../images/dewel-bg.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  min-height: unset;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  padding: 40px 0 40px;
}
@media (max-width: 991.98px) {
  .hero-section {
    min-height: 42vh; /* Reduced from 60vh by 30% */
    padding: 60px 0 30px;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .hero-section img,
  .service-hero img {
    min-height: 180px !important;
    height: 220px !important;
    object-fit: cover;
  }
  .service-hero-content-bottom {
    padding: 18px 0 10px 0 !important;
  }
  .hero-title {
    font-size: 2rem !important;
  }
  .hero-subtitle,
  .lead {
    font-size: 1rem !important;
  }
}
@media (max-width: 576px) {
  .hero-section {
    min-height: 28vh; /* Reduced from 40vh by 30% */
    padding: 30px 0 10px;
  }
  .hero-section img,
  .service-hero img {
    min-height: 120px !important;
    height: 140px !important;
  }
  .hero-title {
    font-size: 1.2rem !important;
    margin-bottom: 0.7rem;
  }
  .hero-subtitle,
  .lead {
    font-size: 0.95rem !important;
  }
  .service-hero-content-bottom {
    padding: 10px 0 4px 0 !important;
  }
}

/* Modern CTA Section for Projects Page */
.cta-section {
    background: linear-gradient(90deg, #43cea2 0%, #185a9d 100%);
    color: #fff;
    border-radius: 24px;
    box-shadow: 0 6px 32px rgba(24,90,157,0.13);
    padding: 48px 32px;
    margin: 48px 0;
    position: relative;
    overflow: hidden;
}
.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(24,90,157,0.13);
}
.cta-section p.lead {
    font-size: 1.2rem;
    color: #e0f7fa;
    margin-bottom: 0;
}
.cta-section .btn {
    background: var(--brand-blue);
    color: white !important;
    border: 2px solid var(--brand-blue);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.cta-section .btn:hover {
    background: var(--brand-blue-dark) !important;
    color: white !important;
    border-color: var(--brand-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
    .cta-section {
        padding: 32px 12px;
        border-radius: 16px;
        margin: 32px 0;
    }
    .cta-section h2 {
        font-size: 1.5rem;
    }
    .cta-section .btn {
        width: 100%;
        padding: 0.85rem 0;
        font-size: 1.05rem;
    }
    .cta-section .text-lg-end {
        text-align: left !important;
        margin-top: 1.5rem;
    }
}

/* Project Card with Icon and Color Accent */
.project-info-card, .card.h-100 {
    /* Remove icon and accent styles */
    box-shadow: var(--shadow-light);
    border: 1px solid #dbe6ef;
    border-radius: var(--border-radius);
    background: var(--card-bg);
    padding: 0;
}
.project-info-card .icon, .card.h-100 .icon {
    display: none !important;
}

.project-classification-filters, .classification-filter-btn {
    display: none !important;
}

.project-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    overflow-x: unset;
    padding-bottom: 0;
    scrollbar-width: unset;
    scrollbar-color: unset;
}

.filter-btn {
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    background: var(--white-color);
    color: var(--brand-blue);
    border: 2px solid var(--brand-blue);
    font-weight: 500;
    font-size: 1rem;
    margin: 0.25rem 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
    box-shadow: none;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--brand-blue);
    color: var(--white-color);
    border-color: var(--brand-blue);
    box-shadow: 0 2px 8px rgba(0,84,137,0.08);
}

/* Photographer Register Page Enhancements */
.photographer-register-section {
    background: linear-gradient(135deg, #e3f0fa 0%, #e3f7e1 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}
.photographer-register-card {
    background: var(--white-color);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(0,84,137,0.13);
    border: 1.5px solid #e3f0fa;
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 480px;
    margin: 0 auto;
    transition: box-shadow 0.2s, border 0.2s;
}
.photographer-register-card:hover {
    box-shadow: 0 12px 40px 0 rgba(0,166,81,0.13);
    border-color: #00a651;
}
.photographer-register-card .form-label {
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 0.3rem;
}
.photographer-register-card .form-control,
.photographer-register-card textarea.form-control {
    border-radius: 2rem;
    font-size: 1.08rem;
    padding: 0.85rem 1.2rem;
    border: 1.5px solid #e3f0fa;
    background: #f8fbfd;
    transition: border 0.2s;
}
.photographer-register-card .form-control:focus,
.photographer-register-card textarea.form-control:focus {
    border-color: #00a651;
    box-shadow: 0 0 0 2px #e3f0fa;
}
.photographer-register-card .input-group-text {
    background: #e3f0fa;
    border: none;
    color: var(--brand-blue);
    font-size: 1.2rem;
    border-radius: 2rem 0 0 2rem;
}
.photographer-register-card .btn-success {
    background: linear-gradient(90deg, #00a651 0%, #005489 100%);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 2rem;
    padding: 0.85rem 2.8rem;
    font-size: 1.15rem;
    box-shadow: 0 2px 8px 0 rgba(0,166,81,0.08);
    transition: background 0.2s, box-shadow 0.2s;
}
.photographer-register-card .btn-success:hover {
    background: #198754 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 135, 84, 0.2);
}
@media (max-width: 600px) {
    .photographer-register-card {
        padding: 1.2rem 0.5rem;
    }
}
.photographer-register-card .form-control::placeholder,
.photographer-register-card textarea.form-control::placeholder {
    border-radius: 0 !important;
}

.service-hero {
    min-height: 260px;
    background: var(--brand-blue-gradient, #e3f0fa);
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Make newsletter subscribe and contact buttons less bold and less intense in color */
.newsletter-form .btn,
.btn-light,
.btn-lg {
    font-weight: 400 !important;
    color: var(--dark-slate) !important;
    background: #f5f5f5 !important;
    border: 1px solid #dbe6ef !important;
}

/* Make text in subscribe and contact sections normal weight and neutral color */
.newsletter-form,
.newsletter-form p,
.newsletter-form label,
.newsletter-form input,
.newsletter-form small,
.contact-section,
.contact-section p,
.contact-section label {
    font-weight: 400 !important;
    color: var(--warm-gray) !important;
}

/* Make newsletter subscribe and contact sections have a light neutral background, not dark blue */
.newsletter-section, .subscribe-section, .contact-section {
    background: #f8fafc !important;
    /* Remove any background image or gradient */
    background-image: none !important;
    background-color: #f8fafc !important;
    box-shadow: none !important;
}

/* Override Bootstrap bg-primary for cards and badges to use a custom color */
.bg-primary {
    background-color: var(--brand-blue) !important;
    color: #fff !important;
}

.footer-partners {
    margin-top: 2rem;
    box-shadow: 0 4px 16px rgba(0, 84, 137, 0.10);
    border-radius: 1rem;
}

@media (max-width: 575.98px) {
  .hero-buttons {
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

.service-feature-card {
  background: rgba(255,255,255,0.85) !important;
  border-radius: 1.5rem !important;
  box-shadow: 0 8px 32px rgba(0,84,137,0.10), 0 1.5px 6px rgba(76,175,80,0.08);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(76,175,80,0.10);
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1), box-shadow 0.22s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.service-feature-card:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 16px 48px rgba(0,84,137,0.13), 0 3px 12px rgba(76,175,80,0.13);
  border-color: var(--brand-green);
}
.service-feature-card .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green-light) 0%, var(--brand-blue-light) 100%);
  box-shadow: 0 2px 8px rgba(76,175,80,0.10);
  transition: background 0.22s, box-shadow 0.22s;
}
.service-feature-card:hover .service-icon {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
  box-shadow: 0 4px 16px rgba(0,84,137,0.13);
}
.service-feature-card .service-icon i {
  font-size: 2rem;
  color: var(--brand-blue-dark);
  transition: color 0.22s;
}
.service-feature-card:hover .service-icon i {
  color: #fff;
}
@media (max-width: 768px) {
  .service-feature-card {
    border-radius: 1rem !important;
    padding: 1.2rem !important;
  }
  .service-feature-card .service-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}

/* Product Page Styles */
.product-hero-section .hero-title { 
    color: #00395e; 
    font-size: clamp(2.5rem, 8vw, 4rem); 
    font-weight: 700; 
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.product-hero-section .hero-subtitle { 
    color: #4CAF50; 
    font-size: clamp(1.2rem, 4vw, 1.5rem); 
    font-weight: 500; 
    margin-bottom: 1rem;
}
/* Updated Product Card Styles - Three Row Layout */
.product-card { 
    background: #fff; 
    border-radius: 14px; 
    box-shadow: 0 2px 8px rgba(0,84,137,0.08); 
    transition: box-shadow 0.18s; 
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.product-card:hover { box-shadow: 0 5px 20px rgba(0,84,137,0.13); }
.product-card-title { 
    font-size: 1.2rem; 
    font-weight: 700; 
    color: #00395e; 
    margin-bottom: 0.5rem; 
    text-align: center;
}
.product-card-meta { font-size: 0.95rem; color: #6d6d6d; margin-bottom: 0.7rem; }
.product-card-desc { 
    color: #6d6d6d; 
    margin-bottom: 1rem; 
    text-align: center;
    line-height: 1.5;
}
.product-card-img { 
    width: 100%; 
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    margin-bottom: 0;
}
.product-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    height: 250px;
    width: 100%;
}
.product-card-middle {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    text-align: center;
}
.product-card-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    text-align: center;
}
@media (max-width: 600px) { 
    .product-card { 
        margin-bottom: 1rem; 
    } 
    .product-card-img,
    .product-image-container {
        height: 200px;
    }
}

/* =====================================================
   ENHANCED INDEX PAGE STYLES
   ===================================================== */

/* Enhanced Service Cards */
.service-feature-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid rgba(0, 84, 137, 0.1);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(0, 84, 137, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-feature-card:hover::before {
    opacity: 1;
}

.service-feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 84, 137, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-feature-card:hover .service-icon::before {
    transform: translateX(100%);
}

.service-feature-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.service-icon i {
    color: white;
    font-size: 2rem;
    z-index: 2;
    position: relative;
}

/* Service Category Cards */
.service-category-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(0, 84, 137, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-category-card:hover::before {
    opacity: 1;
}

.service-category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 84, 137, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

.category-icon {
    transition: all 0.3s ease;
}

.service-category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-icon i {
    transition: all 0.3s ease;
}

.service-category-card:hover .category-icon i {
    transform: rotate(5deg);
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(0, 84, 137, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 84, 137, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: rotate(5deg);
}

/* Enhanced Founder Section */
.founder-section {
    margin-bottom: 4rem;
}

.founder-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 84, 137, 0.15);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 84, 137, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 84, 137, 0.2);
}

.founder-background {
    background: linear-gradient(135deg, #e3f0fa 0%, #e3f7e1 100%);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.founder-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.founder-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.founder-image-container {
    flex-shrink: 0;
    position: relative;
}

.founder-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #ffffff;
    box-shadow: 0 15px 35px rgba(0, 84, 137, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.founder-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(0, 84, 137, 0.3);
}

/* Founder badge completely removed */
.founder-badge {
    display: none !important;
}

.founder-info {
    flex-grow: 1;
}

.founder-header {
    margin-bottom: 1.5rem;
}

.founder-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-blue-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.founder-position {
    font-size: 1.2rem;
    color: var(--brand-green);
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-bio {
    margin-bottom: 2rem;
}

.founder-bio p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

.founder-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.founder-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.detail-content {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 1rem;
    color: var(--brand-blue-dark);
    font-weight: 600;
}

.founder-action {
    margin-top: 2rem;
}

.founder-btn {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 84, 137, 0.3);
}

.founder-btn:hover {
    background: var(--brand-blue-dark) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 84, 137, 0.2);
}

/* Responsive Founder Section */
@media (max-width: 768px) {
    .founder-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .founder-image {
        width: 150px;
        height: 150px;
    }
    
    .founder-name {
        font-size: 2rem;
    }
    
    .founder-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .founder-background {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .founder-image {
        width: 120px;
        height: 120px;
    }
    
    .founder-name {
        font-size: 1.8rem;
    }
    
    .founder-position {
        font-size: 1rem;
    }
    
    .founder-bio p {
        font-size: 1rem;
    }
}

/* Enhanced Team Member Cards */
.team-member-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 84, 137, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 84, 137, 0.08);
    height: 100%;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 84, 137, 0.15);
}

.team-member-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #e3f0fa 0%, #e3f7e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 25px rgba(0, 84, 137, 0.15);
    position: relative;
    z-index: 2;
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member-card:hover .team-member-photo img {
    transform: scale(1.1);
}

.team-member-card:hover .team-member-photo {
    box-shadow: 0 12px 35px rgba(0, 84, 137, 0.25);
}

.team-member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 84, 137, 0.8) 0%, rgba(0, 166, 81, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member-card:hover .team-member-overlay {
    opacity: 1;
}

.team-member-social {
    display: flex;
    gap: 1rem;
}

.team-social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.team-social-link:hover {
    background: white;
    color: var(--brand-green);
    transform: scale(1.1);
}

.team-member-info {
    padding: 1.5rem;
    text-align: center;
}

.team-member-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-blue-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.team-member-position {
    font-size: 0.9rem;
    color: var(--brand-green);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member-details {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.team-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6c757d;
}

.team-detail-item i {
    color: var(--brand-blue);
    font-size: 0.9rem;
}

.team-member-bio {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #495057;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.team-member-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 84, 137, 0.2);
}

.team-member-btn:hover {
    background: var(--brand-blue-dark) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 84, 137, 0.2);
}

.team-member-btn i {
    transition: transform 0.3s ease;
}

.team-member-btn:hover i {
    transform: translateX(3px);
}

/* Responsive Team Member Cards */
@media (max-width: 768px) {
    .team-member-image {
        height: 180px;
    }
    
    .team-member-photo {
        width: 120px;
        height: 120px;
    }
    
    .team-member-info {
        padding: 1.25rem;
    }
    
    .team-member-name {
        font-size: 1.1rem;
    }
    
    .team-member-details {
        gap: 1rem;
    }
    
    .team-detail-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .team-member-image {
        height: 160px;
    }
    
    .team-member-photo {
        width: 100px;
        height: 100px;
    }
    
    .team-member-info {
        padding: 1rem;
    }
    
    .team-member-name {
        font-size: 1rem;
    }
    
    .team-member-bio {
        font-size: 0.85rem;
    }
    
    .team-member-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Service card button styles */
.service-feature-card .btn {
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.service-feature-card .btn:hover {
    background: var(--brand-blue-dark) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 84, 137, 0.2);
}

.service-feature-card a.btn {
    text-decoration: none;
}

.service-feature-card a.btn:hover {
    text-decoration: none;
    color: var(--brand-blue);
}

/* Star Rating Styles */
.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #e4e5e9;
    transition: color 0.2s ease;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label {
    color: #ffc107;
}

.rating-stars input:checked ~ label {
    color: #ffc107;
}

/* Enhanced CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 50%, #4a7c59 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: white;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.2));
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.1));
}

.cta-section .btn {
    background: white;
    color: #1a365d !important;
    border: 2px solid white;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-shadow: none;
}

.cta-section .btn:hover {
    background: #f8f9fa !important;
    color: #1a365d !important;
    border-color: #e9ecef;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Enhanced Project Cards */
.project-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 84, 137, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(0, 84, 137, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card-modern:hover::before {
    opacity: 1;
}

.project-card-modern:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 84, 137, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

.project-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.project-card-modern:hover .project-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(0, 84, 137, 0.3);
}

.project-icon i {
    color: white;
    font-size: 1.5rem;
}

.project-classification-badge {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-blue) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-blue-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.project-details {
    margin-bottom: 1.5rem;
}

.project-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.project-detail-item:hover {
    background: rgba(76, 175, 80, 0.1);
    transform: translateX(5px);
}

.project-detail-item i {
    width: 20px;
    margin-right: 0.75rem;
    font-size: 1rem;
}

.project-detail-item span {
    font-size: 0.95rem;
    line-height: 1.4;
}

.project-status-active {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.project-status-completed {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Enhanced Testimonial Cards */
.testimonial-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid rgba(0, 84, 137, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 4rem;
    color: rgba(76, 175, 80, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 84, 137, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

.testimonial-content {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--warm-gray);
    font-style: italic;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 84, 137, 0.3);
}

.testimonial-avatar i {
    color: white;
    font-size: 1.5rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--brand-blue-dark);
    margin-bottom: 0.25rem;
}

.testimonial-position {
    color: var(--warm-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Enhanced Blog Cards */
.blog-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid rgba(0, 84, 137, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 84, 137, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    transition: all 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-card .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-blue-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card .card-text {
    color: var(--warm-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-meta {
    font-size: 0.9rem;
    color: var(--warm-gray);
    margin-bottom: 1rem;
}

.blog-meta small {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Enhanced Team Cards */
.team-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid rgba(0, 84, 137, 0.1);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(0, 84, 137, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 84, 137, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
}

.team-card:hover .team-image {
    transform: scale(1.1);
    border-color: rgba(76, 175, 80, 0.5);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-blue-dark);
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--brand-green);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-bio {
    color: var(--warm-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Enhanced Founder Section */
.founder-section {
    margin-bottom: 3rem;
}

.founder-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(76, 175, 80, 0.2);
    border-radius: 25px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(0, 84, 137, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.founder-card:hover::before {
    opacity: 1;
}

.founder-card:hover {
    transform: translateY(-15px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 84, 137, 0.15);
    border-color: rgba(76, 175, 80, 0.4);
}

.founder-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.founder-image-container {
    flex-shrink: 0;
}

.founder-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid rgba(76, 175, 80, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.founder-card:hover .founder-image {
    transform: scale(1.05);
    border-color: rgba(76, 175, 80, 0.5);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.3);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.founder-card:hover .founder-image img {
    transform: scale(1.1);
}

.founder-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: pulse 2s infinite;
}

.founder-badge i {
    color: #b8860b;
    font-size: 1.2rem;
}

.founder-info {
    flex: 1;
}

.founder-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-blue-dark);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--brand-blue-dark) 0%, var(--brand-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-position {
    font-size: 1.3rem;
    color: var(--brand-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-bio p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--warm-gray);
    margin-bottom: 2rem;
}

.founder-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.founder-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.founder-card:hover .detail-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 84, 137, 0.3);
}

.detail-icon i {
    color: white;
    font-size: 1.2rem;
}

.detail-content {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.9rem;
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.detail-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-blue-dark);
}

.founder-btn {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 84, 137, 0.2);
}

.founder-btn:hover {
    background: var(--brand-blue-dark) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 84, 137, 0.2);
}

/* Enhanced Animations */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Enhancements */
@media (max-width: 991px) {
    .founder-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .founder-name {
        font-size: 2rem;
    }
    
    .founder-details {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .founder-card {
        padding: 2rem 1.5rem;
    }
    
    .founder-image {
        width: 150px;
        height: 150px;
    }
    
    .founder-name {
        font-size: 1.8rem;
    }
    
    .founder-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .service-feature-card,
    .testimonial-card,
    .team-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .founder-card {
        padding: 1.5rem 1rem;
    }
    
    .founder-image {
        width: 120px;
        height: 120px;
    }
    
    .founder-name {
        font-size: 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Clickable Service Card Styles */
.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.service-card-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-5px);
}

.service-card-link:hover .service-feature-card {
    box-shadow: 0 8px 25px rgba(0, 84, 137, 0.15);
    border-color: var(--brand-blue);
}

.service-card-link:hover .service-icon i {
    transform: scale(1.1);
    color: var(--brand-blue);
}

.service-card-link:hover .card-title {
    color: var(--brand-blue);
}

.service-card-link:hover .btn {
    background: var(--brand-blue) !important;
    color: white !important;
    border-color: var(--brand-blue);
}

/* Service cards with modal trigger */
.service-feature-card[data-bs-toggle="modal"] {
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-feature-card[data-bs-toggle="modal"]:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 84, 137, 0.15);
    border-color: var(--brand-blue);
}

.service-feature-card[data-bs-toggle="modal"]:hover .service-icon i {
    transform: scale(1.1);
    color: var(--brand-blue);
}

.service-feature-card[data-bs-toggle="modal"]:hover .card-title {
    color: var(--brand-blue);
}

.service-feature-card[data-bs-toggle="modal"]:hover .btn {
    background: var(--brand-blue) !important;
    color: white !important;
    border-color: var(--brand-blue);
}

/* Ensure name input fields accept spaces properly */
input[type="text"][name*="name"], 
input[type="text"][name*="fullname"] {
    text-transform: none !important;
    letter-spacing: normal;
}

input[type="text"][name*="name"]:focus, 
input[type="text"][name*="fullname"]:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 84, 137, 0.25);
    border-color: var(--brand-blue);
}

/* Improve placeholder text for name fields */
input[type="text"][name*="name"]::placeholder, 
input[type="text"][name*="fullname"]::placeholder {
    color: #6c757d;
    opacity: 0.7;
}

/* Ensure form controls don't have unwanted transformations */
.form-control {
    text-transform: none !important;
    letter-spacing: normal;
}

/* Floating Add Testimonial Button */
.add-testimonial-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.add-testimonial-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    text-decoration: none;
}

.add-testimonial-btn i {
    font-size: 14px;
    color: white;
}

/* Responsive adjustments for the add testimonial button */
@media (max-width: 768px) {
    .add-testimonial-btn {
        width: 36px;
        height: 36px;
    }
    
    .add-testimonial-btn i {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .add-testimonial-btn {
        width: 32px;
        height: 32px;
    }
    
    .add-testimonial-btn i {
        font-size: 11px;
    }
}
