:root {
    --primary-color: #f7931f;
    --secondary-color: #0a142b;
    --accent-color: #2a4a7a;
    --light-color: #f8f9fa;
    --dark-color: #333;
    --gray-color: #6c757d;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Header Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 5px 0 !important;
    transition: var(--transition);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
}

.logo-text {
    color: var(--secondary-color);
}

.logo-highlight {
    color: var(--primary-color);
}

.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    margin: 0 8px;
    transition: var(--transition);
}

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

.nav-link.btn-custom {
    background-color: var(--primary-color);
    color: white !important;
    border-radius: 5px;
    padding: 8px 20px !important;
    margin-left: 10px;
}

.nav-link.btn-custom:hover {
    background-color: #e5841b;
    transform: translateY(-2px);
}

/* Banner Styles */
.banner {
    background: linear-gradient(rgba(10, 20, 43, 0.9), rgba(10, 20, 43, 0.8)), url('https://images.unsplash.com/photo-1549399542-7e3f8b79c341?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.banner-btns .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    margin-right: 15px;
    margin-bottom: 10px;
}

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

.btn-primary:hover {
    background-color: #e5841b;
    border-color: #e5841b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.banner-img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(-5deg);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.highlight {
    color: var(--primary-color);
}

.section-subtitle {
    color: var(--gray-color);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* About Section */
.about-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.about-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.about-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Services Section */
.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-top-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #ffad60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

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

.service-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Process Section */
.process-steps {
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    z-index: 1;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #ffad60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 30px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(247, 147, 31, 0.3);
}

.step-content {
    padding-top: 10px;
}

.step-content h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.step-content p {
    color: var(--gray-color);
    margin: 0;
}

/* Why Choose Us */
.choose-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    transition: var(--transition);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.choose-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.choose-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Testimonial Styles */
.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    border-left: 4px solid var(--primary-color);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author h5 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(10, 20, 43, 0.9), rgba(10, 20, 43, 0.9)), url('https://images.unsplash.com/photo-1604014237800-1c9102c219da?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn {
    margin: 5px 10px;
    padding: 12px 30px;
}

/* Footer Styles */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand span {
    color: var(--primary-color);
}

.footer-about {
    opacity: 0.8;
    margin-bottom: 25px;
}

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

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

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

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
    width: 20px;
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 40px 0 20px;
}

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

.footer-bottom-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

/* Page Header for Inner Pages */
.page-header {
    background: linear-gradient(rgba(10, 20, 43, 0.9), rgba(10, 20, 43, 0.9)), url('https://images.unsplash.com/photo-1604014237800-1c9102c219da?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    margin-top: 0px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* Inner Page Content */
.inner-content {
    padding: 80px 0;
}

.content-img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

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

/* Contact Form */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-control, .form-select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(247, 147, 31, 0.25);
}

.contact-info-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.contact-info-box:hover {
    transform: translateY(-5px);
}

.contact-info-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .banner-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-top: 15px;
    }
    
    .nav-link.btn-custom {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
    }
    
    .process-steps::before {
        left: 30px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .banner {
        padding: 80px 0;
        text-align: center;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-img {
        margin-top: 30px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
                
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .banner-title {
        font-size: 1.8rem;
    }
    
    .btn {
        width: 70%;
        margin-bottom: 10px;
    }
    
    .banner-btns .btn {
        margin-right: 0;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
        margin: 0 auto 10px;
    }
    .step-content {
    width: 100%;
}
}
/* Additional Styles for Service Pages */

/* Feature Items */
.feature-item {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #ffad60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: white;
}

/* Special Service Cards */
.special-service, .storage-type, .equipment-card {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
}

.special-service:hover, .storage-type:hover, .equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.special-service i, .equipment-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.storage-type-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #ffad60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

/* Vehicle Type Cards */
.vehicle-type {
    text-align: center;
}

.vehicle-type img {
    transition: var(--transition);
}

.vehicle-type:hover img {
    transform: scale(1.05);
}

/* Sidebar Styles */
.sidebar-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sidebar-box h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.sidebar-box h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.service-includes {
    list-style: none;
    padding: 0;
}

.service-includes li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.service-includes li:last-child {
    border-bottom: none;
}

.service-includes li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Other Services Links */
.other-services {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.other-service {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
}

.other-service:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.other-service i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--primary-color);
}

.other-service:hover i {
    color: white;
}

.other-service div strong {
    display: block;
    font-size: 1rem;
}

.other-service div span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Storage Units */
.storage-units {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.storage-unit {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.unit-size {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.unit-desc {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* Security Features */
.security-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.security-feature {
    display: flex;
    align-items: center;
}

.security-feature i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
    width: 24px;
}

/* Project Features */
.project-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.project-feature {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

.project-feature i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1rem;
}

/* Insurance Details */
.insurance-details ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.insurance-details li {
    padding: 5px 0;
    font-size: 0.9rem;
}

/* About Page Styles */
.stats-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stats-label {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ffad60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.team-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.team-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Contact Page Styles */
.contact-info-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #ffad60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.map-placeholder {
    border: 2px dashed #ddd;
}

/* Case Study */
.case-study {
    border-left: 4px solid var(--primary-color);
}
.navbar-brand img {
    max-width: 170px;
}


.sticky_ic {
    position: fixed;
    bottom: 15%;
    right: 5px;
    z-index: 100000;
}
.sticky_ic a {
    display: block;
    width: 50px;
    height: 50px;
    background: #16aaec;
    text-align: center;
    margin-bottom: 20px;
    line-height: 50px;
    border-radius: 10px;
}.sticky_ic a:last-child {
    margin-bottom: 0;
    background: #369a03;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .feature-item, .special-service, .storage-type, .equipment-card {
        margin-bottom: 20px;
    }
    
    .sidebar-box {
        margin-bottom: 20px;
    }
    
    .stats-card {
        margin-bottom: 20px;
    }
    
    .value-card, .team-card {
        margin-bottom: 20px;
    }
}