* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --secondary-color: #06b6d4;
    --accent-color: #0ea5e9;
    --warning-color: #001f4d;
    ;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --background: #ffffff;
    --surface: #f8fafc;
    --surface-light: #e2e8f0;
    --border: #e2e8f0;
    --shadow-light: 0 1px 3px rgba(59, 130, 246, 0.1);
    --shadow-medium: 0 4px 12px rgba(59, 130, 246, 0.15);
    --shadow-heavy: 0 8px 24px rgba(59, 130, 246, 0.2);
    --border-radius: 8px;
    --border-radius-large: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
body {
    font-family: "Segoe UI", sans-serif;
    background-color: #f4f9ff;
    color: #333;
    line-height: 1.6;
}

/* Top Info Bar */
.top-bar {
    background-color: #001f4d;
    color: white;
    padding: 6px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.info-left span {
    margin-right: 20px;
}

@media (max-width: 600px) {
    .top-bar .container {
        justify-content: center;
        flex-direction: column;
        gap: 5px;
    }

    .info-left span {
        margin-left: 0;
        margin-right: 0; /* Remove right margin for stacking */
    }
    .header{
        margin-top: -28px;
    }
    header .main-nav{
  background: #002f9e;
}

}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.header {
    height: 75px; /* Fixed header height */
    display: flex;
    align-items: center;
    background: #002d72;
    color: white;
    position: relative;
    z-index: 1000;
    padding: 0 20px; /* Add horizontal padding to header itself */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Ensure container fills header width */
}

.logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

/* --- Mobile Specific Styles (Default for Mobile First) --- */

/* Hamburger Menu Toggle */
.menu-toggle {
    display: block; /* Show hamburger on mobile */
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    order: 2; /* Position after logo */
}


/* Main Navigation (Hidden by default on mobile) */
.main-nav {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%; /* Below the header */
    left: 0;
    width: 100%;
    /* background: #002f9e; Solid background for mobile menu */
    flex-direction: column; /* Stack links vertically */
    padding: 15px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 999; /* Ensure it's below top-bar but above content */
}

.main-nav.active {
    display: flex; /* Show when active */
}

.main-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column; /* Stack items vertically for mobile */
    align-items: center; /* Center align items */
    gap: 15px; /* Space between links */
    width: 100%; /* Ensure ul takes full width of nav */
    
}

.main-nav ul li {
    width: 100%; /* Make list items take full width */
    text-align: center; /* Center text within list items */
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 15px; /* Increase padding for better tap area */
    display: block; /* Make link fill padding area */
    transition: background-color 0.3s ease;
}

.main-nav a:hover {
    background-color: #004080; /* Highlight on hover */
}

/* Dropdown Container for Mobile */
.main-nav .dropdown {
    position: relative;
    width: 100%; /* Ensure dropdown takes full width */
}

.main-nav .dropdown a {
    position: relative; /* For caret positioning */
}

.main-nav .dropdown a .fas.fa-caret-down {
    margin-left: 5px; /* Space for caret */
}

/* Dropdown Menu for Mobile */
.main-nav .dropdown-menu {
    display: none; /* Hidden by default */
    position: static; /* Stack naturally within the flow for mobile */
    background: #003a8d; /* Slightly different background for sub-menu */
    color: white; /* Text color for sub-menu */
    box-shadow: none; /* No shadow for mobile dropdown */
    min-width: unset; /* Remove min-width constraint */
    border-radius: 0; /* No border-radius */
    padding: 0; /* Remove padding */
    width: 100%; /* Take full width */
}

.main-nav .dropdown.active .dropdown-menu {
    display: block; /* Show when parent dropdown is active */
}

.main-nav .dropdown-menu li {
    padding: 0; /* Remove padding from li */
    width: 100%; /* Full width */
}

.main-nav .dropdown-menu li a {
    color: white; /* Ensure links are white */
    padding: 10px 20px; /* Adjust padding for sub-items */
    background-color: #003a8d; /* Same as dropdown menu background */
}

.main-nav .dropdown-menu li a:hover {
    background-color: #004d99; /* Hover effect for sub-items */
}

/* --- Desktop Styles (Media Query) --- */
@media (min-width: 768px) {
    /* Top Bar - Desktop */
    .top-bar {
        padding: 6px 0; /* Original padding */
        font-size: 14px; /* Original font size */
        text-align: right;
    }

    .top-bar .container {
        justify-content: flex-end;
        flex-direction: row;
    }

    .info-left span {
        margin-right: 20px;
    }

    /* Header - Desktop */
    .header {
        height: 75px;
        padding: 0; /* Remove padding as container handles it */
    }

    .header .container {
        justify-content: space-between;
        /* Revert to original justify */
        width: 90%; /* Restore original container width */
    }

    .logo img {
        height: 90px;
    }

    /* Hide hamburger menu on desktop */
    .menu-toggle {
        display: none;
    }

    /* Main Navigation - Desktop */
    .main-nav {
        display: block; /* Always visible on desktop */
        position: static; /* No absolute positioning */
        width: auto; /* Auto width */
        background: none; /* No background */
        box-shadow: none; /* No shadow */
        flex-direction: row; /* Horizontal links */
        padding: 0;
        z-index: auto;
    }

    .main-nav ul {
        flex-direction: row; /* Horizontal links */
        gap: 20px; /* Restore original gap */
        width: auto; /* Auto width for ul */
    }

    .main-nav ul li {
        width: auto; /* Auto width for list items */
        text-align: left; /* Revert text alignment */
    }

    .main-nav a {
        padding: 0; /* Remove extra padding from mobile */
        display: inline-block; /* Revert to inline-block for proper spacing */
        background-color: transparent; /* No background hover */
    }

    .main-nav a:hover {
        color: #00aaff;
        background-color: transparent; /* No background hover */
    }

    /* Dropdown Container for Desktop */
    .main-nav .dropdown {
        position: relative;
        width: auto; /* Auto width */
    }

    /* Dropdown Menu for Desktop */
    .main-nav .dropdown-menu {
        display: none; /* Hidden by default */
        position: absolute; /* Absolute positioning */
        top: 100%;
        left: 0;
        background: white; /* White background */
        color: black;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        min-width: 180px; /* Restore min-width */
        border-radius: 5px;
        padding: 0; /* Ensure no padding on the ul itself */
    }

    /* Show Dropdown on Hover (Desktop) */
    .main-nav .dropdown:hover .dropdown-menu {
        display: block;
    }

    .main-nav .dropdown-menu li {
        padding: 10px; /* Restore padding for desktop dropdown items */
    }

    .main-nav .dropdown-menu li a {
        color: #111827; /* Dark text for desktop dropdown items */
        padding: 0; /* Remove padding as li handles it */
        background-color: transparent; /* No background */
    }

    .main-nav .dropdown-menu li:hover {
        background-color: #004080;
        color: white;
    }

    .main-nav .dropdown-menu li:hover a {
        color: white;
    }
}

#whatsappicon {
    text-decoration: none;
    color: rgb(77, 232, 77);
}
#whatsapp {
    text-decoration: none;
    color: rgb(77, 232, 77);
}
/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 50%, #0ea5e9 100%);
    position: relative;
    overflow: hidden;
    padding-top: 40px;
    /* Use padding instead of margin */
}

.hero::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 24px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow,
.btn-outline:hover .btn-arrow {
    transform: translateX(4px);
}

.large {
    padding: 20px 40px;
    font-size: 18px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeInRight 1s ease-out 0.5s both;

}

.central-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    animation: float 3s ease-in-out infinite;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

.pulse-ring.delay-1 {
    animation-delay: 0.5s;
}

.pulse-ring.delay-2 {
    animation-delay: 1s;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 500;
    animation: float 4s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.card-icon {
    font-size: 24px;
}

/* Sections */
section {
    padding: 0;
    /* Remove all padding */
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    padding-top: 120px;
    /* Add padding only to top of content */
}

.section-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-description {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: var(--surface);
    padding-bottom: 120px;
    /* Only bottom padding */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    border-radius: var(--border-radius-large);
    padding: 40px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-light);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: var(--surface);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--primary-light);
}

/* Tools Section */
.tools {
    padding-bottom: 120px;
    /* Only bottom padding */
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.tool-card {
    background: white;
    border-radius: var(--border-radius-large);
    /* padding: 32px; */
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border);

}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-light);
}

.tool-logo img {
    /* margin-bottom: 20px; */
    width: 100%;
    /* height: auto; */
    border-radius: var(--border-radius-large);

}

.tool-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.tool-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.tool-description {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Benefits Section */
.benefits {
    background: var(--surface);
    padding-bottom: 120px;
    /* Only bottom padding */
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: white;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-light);
}

.benefit-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.benefit-description {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 120px 0;
    /* Add padding back for CTA */
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background: var(--surface);
    transform: translateY(-2px);
}

.cta .btn-outline {
    border-color: white;
    color: white;
}

.cta .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* ==== Responsive Design ==== */
@media (max-width: 768px) {
    .main-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 75%;
        background-color: var(--primary-dark);
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .menu-toggle {
        display: block;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.1);
        width: 100%;
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        display: none;
        flex-direction: column;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .dropdown.active .dropdown-menu {
        display: flex;
    }

    .dropdown-menu li a {
        color: white;
        width: 100%;
    }

    .dropdown-menu li:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu li:hover a {
        color: white;
        padding-left: 16px;
    }

    .hero {
        padding-top: 120px;
        /* Reduced for mobile */
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-visual {
        height: 300px;
    }

    .floating-card {
        position: relative;
        display: none;
    }

    .card-1 {
        display: flex;
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 16px;
    }

    .hero-cta {
        justify-content: center;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 14px 24px;
        font-size: 14px;
    }

    .large {
        padding: 16px 32px;
        font-size: 16px;
    }

    .section-header {
        padding-top: 80px;
        /* Reduced for mobile */
        margin-bottom: 60px;
    }

    .services,
    .tools,
    .benefits {
        padding-bottom: 80px;
        /* Reduced for mobile */
    }

    .services-grid,
    .tools-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .top-bar {
        font-size: 12px;
        padding: 6px 0;
    }

    .header {
        padding: 8px 0;
        top: 32px;
        /* Adjusted for smaller top bar */
    }

    .header .container {
        width: 95%;
    }

    .logo img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .service-card,
    .tool-card,
    .benefit-item {
        padding: 24px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .hero {
        padding-top: 100px;
        /* Further reduced for small mobile */
    }

    .top-bar {
        padding: 4px 0;
    }

    .header {
        top: 28px;
        /* Adjusted for even smaller top bar */
        padding: 6px 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
button:focus,
.btn-primary:focus,
.btn-secondary:focus,
.btn-outline:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Footer Styles */
.site-footer {
    /* background-color: #1a203c; Dark blue from image */
    /* background-color: #0d0d57; */
    /* background-image: url(./bg_images/footer1.png); */
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    padding: 80px 0 20px;
    position: relative;
    z-index: 5;
    /* Ensure footer is below the grow-business section */
    margin-top: 50px;
    /* Adjust this to pull the footer up behind the grow-business section */
    /*padding-top: 150px;  Add padding to the top of the footer to account for the overlapping section */
    height: auto;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding-right: 20px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: orange;
}

.footer-column address,
.footer-column p {
    margin-bottom: 10px;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
}

.footer-column a:hover {
    color: orange;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: #fff;
    font-size: 0.9em;
}

footer {
    background: #1a237e;
    /* background-color: #0d0d57; */
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}