
:root {
    --primary-green: #42b8f5;
    --accent-yellow: #288dbf;
    --text-dark: #020202;
    --text-light: #666;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
    padding: 1rem 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green) !important;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}

.btn-primary {
    background: var(--accent-yellow);
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(75, 180, 240, 0.4);
}

.btn-primary:hover {
    background: #1370a1;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(75, 163, 240, 0.6);
}

.btn-outline-dark {
    border: 2px solid white;
    color: white;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn:hover{border-color: #fff !important;}
.btn-outline-dark:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-3px);
}

.hero-section {
    padding: 0;
    color: white;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-bottom: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(26, 95, 74, 0.2);
    border-color: var(--primary-green);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent-yellow);
    filter: drop-shadow(0 0 10px var(--primary-green));
}

.feature-section {
    background: var(--primary-green);
    color: white;
    padding: 5rem 0;
}

.feature-item {
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.cta-section {
    background-blend-mode: overlay;
    padding: 6rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="3" cy="3" r="2" fill="rgba(232,240,75,0.1)"/></svg>');
}

.cta-section h2 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.cta-section p {
    color: rgba(255,255,255,0.95);
    position: relative;
    z-index: 2;
}

.cta-section .btn {
    position: relative;
    z-index: 2;
}

.port-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-green);
}

.port-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(26, 95, 74, 0.15);
    border-left-width: 8px;
}

footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0;
}

.vision-card {
    
    background-blend-mode: overlay;
    color: white;
    padding: 4rem;
    border-radius: 24px;
    margin-bottom: 2rem;
    box-shadow: 0 20px 60px rgba(26, 95, 74, 0.3);
}

.infrastructure-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.image-banner {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.image-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
}


.text-success{color: var(--primary-green)!important;}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .image-banner {
        height: 250px;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

.divider{
    width: 2px;
    height: 30px;
    background-color: #ddd;
    border-radius: 50px;
}
a.no-style{
    text-decoration: none;
    color: unset;
}

.preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center; }
  .preloader .loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite; }
  .preloader .loader::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid #000000;
    animation: prixClipFix 2s linear infinite; }
@keyframes rotate {
  100% {
    transform: rotate(360deg); } }
@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0); }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0); }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%); }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%); }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0); } }
/* Vision & Mission Section Styles */
.vision-mission-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }
        
        .vision-mission-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('layout/imgs/pattern.png') repeat;
            opacity: 0.03;
            pointer-events: none;
        }
        
        .vm-container {
            position: relative;
            z-index: 1;
        }
        
        .vm-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .vm-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a4f5f;
            margin-bottom: 15px;
        }
        
        .vm-header .subtitle {
            font-size: 1.1rem;
            color: #6c757d;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .vm-cards-wrapper {
            display: flex;
            gap: 30px;
            align-items: stretch;
        }
        
        .vm-card {
            flex: 1;
            background: white;
            border-radius: 20px;
            padding: 50px 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: all 0.4s ease;
            overflow: hidden;
        }
        
        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-green, #2d7a3e) 0%, #1a4f5f 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }
        
        .vm-card:hover::before {
            transform: scaleX(1);
        }
        
        .vm-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-green, #2d7a3e) 0%, #1a4f5f 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            box-shadow: 0 8px 20px rgba(45, 122, 62, 0.3);
        }
        
        .vm-icon i {
            font-size: 2rem;
            color: white;
        }
        
        .vm-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a4f5f;
            margin-bottom: 20px;
        }
        
        .vm-card p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #495057;
            margin: 0;
        }
        
        .vm-divider {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-green, #2d7a3e) 0%, #1a4f5f 100%);
            margin: 20px 0 25px 0;
            border-radius: 2px;
        }

        /* Quote Form Styles */
        .quote-form-container {
            background: white;
            border-radius: 24px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .quote-header h2 {
            color: #1a4f5f;
        }

        .form-section {
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 2px solid #f0f0f0;
        }

        .form-section:last-of-type {
            border-bottom: none;
        }

        .form-section-title {
            color: #1a4f5f;
            font-weight: 600;
            margin-bottom: 25px;
            font-size: 1.25rem;
        }

        .form-label {
            font-weight: 500;
            color: #495057;
            margin-bottom: 8px;
        }

        .form-control, .form-select {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 12px 16px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-green, #2d7a3e);
            box-shadow: 0 0 0 0.2rem rgba(45, 122, 62, 0.1);
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }

        .service-option {
            position: relative;
        }

        .service-option .btn {
            width: 100%;
            padding: 20px 15px;
            border-radius: 12px;
            border: 2px solid #e9ecef;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .service-option .btn i {
            font-size: 1.75rem;
        }

        .service-option .btn span {
            font-weight: 500;
            font-size: 0.95rem;
        }

        .service-option .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }

        .btn-check:checked + .btn-outline-success {
            background: linear-gradient(135deg, var(--primary-green, #2d7a3e) 0%, #1a4f5f 100%);
            border-color: var(--primary-green, #2d7a3e);
            color: white;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-green, #2d7a3e) 0%, #1a4f5f 100%);
            border: none;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(45, 122, 62, 0.3);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .vm-cards-wrapper {
                flex-direction: column;
            }
            
            .vm-header h2 {
                font-size: 2rem;
            }
            
            .vm-card {
                padding: 40px 30px;
            }

            .quote-form-container {
                padding: 35px 25px;
            }

            .service-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }
        }
        
        @media (max-width: 576px) {
            .vision-mission-section {
                padding: 60px 0;
            }
            
            .vm-header h2 {
                font-size: 1.75rem;
            }
            
            .vm-card {
                padding: 35px 25px;
            }
            
            .vm-card h3 {
                font-size: 1.5rem;
            }
            
            .vm-icon {
                width: 70px;
                height: 70px;
            }
            
            .vm-icon i {
                font-size: 1.75rem;
            }

            .quote-form-container {
                padding: 25px 20px;
            }

            .service-grid {
                grid-template-columns: 1fr;
            }
        }