/* Custom styles for ContainerFlow Dubai-Russia Container Services website */

/* Base styles */
body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

section .container{
    max-width: 1200px;
    margin: 0 auto;
}

/* Smooth transitions */
a, button {
    transition: all 0.2s ease-in-out;
}

/* Custom hover effects for cards */
.bg-gray-50.rounded-lg:hover, 
.bg-white.rounded-lg:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    transition: all 0.3s ease;
}

/* Custom styling for form inputs */
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

/* Custom styling for buttons */
.bg-teal-600:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Custom styling for navigation */
nav a {
    position: relative;
    padding-bottom: 2px;
}

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #0d9488;
    left: 0;
    bottom: -2px;
    transition: width 0.3s;
}

nav a:hover:after {
    width: 100%;
}

/* Custom styling for section headings */
h2.text-3xl {
    position: relative;
}

h2.text-3xl.text-center:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #0d9488;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
}




/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    h2.text-3xl {
        font-size: 1.75rem;
    }
    
    h3.text-2xl {
        font-size: 1.5rem;
    }
}

/* Custom table styling */
table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 0.5rem;
    overflow: hidden;
}

th:first-child {
    border-top-left-radius: 0.5rem;
}

th:last-child {
    border-top-right-radius: 0.5rem;
}

tr:last-child td:first-child {
    border-bottom-left-radius: 0.5rem;
}

tr:last-child td:last-child {
    border-bottom-right-radius: 0.5rem;
}

/* Custom list styling */
ul.space-y-2 li {
    transition: transform 0.2s ease;
}

ul.space-y-2 li:hover {
    transform: translateX(5px);
}


    section .container {
        max-width: 1200px !important;
    }