
@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateY(20px); 
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    animation: fadeInSlide 1s ease-in-out forwards;
}

.map-offices .offices-locations .location-infos-content {
   
    height: 50px !important;}
	.map-offices .offices-locations .location-infos-content h5 {
   
    font-size: 20px !important;}
.attachment-thumbnail{ padding:10px !important;}
/* Navbar Style */
nav {
    background-color: #324F71;
}

nav .navbar-brand,
nav .nav-link {
    color: white;
}

nav .nav-link:hover {
    color: #FFD700;
}
.titlebar:after {background: none !important;}
.titlebar .title {
    font-size: 3.714em;
    line-height: 1.265em;
    color: #324f71; !important;
    font-weight: bold;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60vh; /* Reduced height */
    background: linear-gradient(to right, #2C3E50, #324F71);
    color: white;
    overflow: hidden;
    border-radius: 10px;
    margin: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	height: 66vh !important;
	    max-width: 98%!important;
}

.hero-content {
    flex: 1;
    padding: 40px;
    text-align: left;
    animation: fadeInLeft 1.2s ease-in-out;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #E0E0E0;
}

.hero-content .btn-primary {
    display: inline-block;
    background: #ffffff;
    color: #324F71;
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.hero-content .btn-primary:hover {
    background: #E6C200;
    transform: scale(1.05);
}

.hero-image {
    flex: 1;
    background: url('/new_images/product_hero_image.jpg.crdownload') no-repeat center center/cover;
    height: 100%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    filter: brightness(0.85);
    animation: fadeInRight 1.2s ease-in-out;
}

/* Animations */
@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);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        height: auto;
        text-align: center;
        
    }

    .hero-content {
        padding: 30px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-image {
        height: 300px;
        border-radius: 0;
    }
    .hero-content .btn-primary {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}



/* Info Cards */
.info-cards {
    margin: 50px 0;
}

.info-card {
    display: flex;
    align-items: stretch;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card.reverse {
    flex-direction: row-reverse;
}

.info-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 250px;
}

.info-content {
    flex: 1;
    background: #f9fafc;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: bold;
    color: #2C3E50;
}

.info-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.info-content ul {
    list-style-type: none;
    padding: 0;
}

.info-content ul li {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #444;
    position: relative;
    padding-left: 20px;
}

.info-content ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #4CA1AF;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-card {
        flex-direction: column;
    }

    .info-card.reverse {
        flex-direction: column;
    }

    .info-content {
        padding: 30px;
    }

    .info-content h3 {
        font-size: 1.5rem;
    }
}

/* Tabs Section */
.tabs-buttons {
    display: flex;
    flex-wrap: nowrap; /* Allow wrapping of items */
    overflow-x: auto;  /* Enable scrolling if buttons exceed width */
    justify-content: center;
    margin: 30px 0;
    padding: 0 10px;
    scrollbar-width: thin;
    margin-bottom: 20px;
}

/* Buttons */
.tabs-buttons button {
    flex: 0 0 auto;
    background-color: #324F71;
    min-width: 120px; /* Minimum width */
    color: white;
    padding: 12px 3px;
    margin: 0 8px; /* Spacing between buttons */
    border-radius: 25px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-size: 1rem;
}

/* Button hover effect */
.tabs-buttons button:hover {
    background-color: #6e98c9;
    color: white;
}

/* Custom scrollbar */
.tabs-buttons::-webkit-scrollbar {
    height: 6px;
}

.tabs-buttons::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 10px;
}

.tabs-buttons::-webkit-scrollbar-track {
    background-color: #f0f0f0;
}

/* Media query for larger screens */
@media (min-width: 1024px) {
    .tabs-buttons {
        flex-wrap: wrap;  /* Allow wrapping of buttons when screen is wide */
        overflow-x: visible;  /* Disable horizontal scrolling */
    }

    .tabs-buttons button {
        flex: 1 0 auto;  /* Allow buttons to resize and fit in available space */
        min-width: auto;  /* Remove fixed min-width */
    }
}


/* Tab Content */
.tab-pane {
  /*  display: none;*/
}

.tab-pane.active {
    display: block;
}

.tab-content {
    margin-top: 20px;
}

/* Styled Table */
.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    
}

.styled-table thead {
    background-color: #324F71;
    color: #ffffff;
}

.styled-table thead th {
    padding: 12px;
    text-align: center;
    font-weight: bold;
    white-space: nowrap;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}
.styled-table td:nth-child(5) {
    white-space: nowrap;
}
.styled-table td:nth-child(3) {
    white-space: nowrap;
}

.styled-table tbody tr:hover {
    background-color: #e8f4fd;
    cursor: pointer;
}

.styled-table tbody td {
    padding: 12px;
    color: #333333;
    text-align: center;
}

.styled-table tbody td:first-child {
    font-weight: bold;
    color: #324F71;
}


.styled-table tfoot td {
    background-color: #324F71;
    color: white;
    font-weight: bold;
    padding: 10px;
    text-align: center;
}

/* Adjust Description Box for Long Data */
.styled-table td {
    word-wrap: break-word;
    white-space: normal;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .tabs-buttons {
        justify-content: flex-start;
        padding-left: 10px;
        margin: 20px 0;
    }
    .tabs-buttons button {
        min-width: 90px; /* Smaller buttons on mobile */
    }
    .styled-table {
        width: 100%;
        display: block; /* Make the table block-level */
        max-height: 400px; /* Set a max height for scrolling */
        overflow-y: auto; /* Allow vertical scrolling */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
    }

    .styled-table th, .styled-table td {
        padding: 12px;
        text-align: center;
        white-space: nowrap;
    }

    /* Optional: Adjust header row for mobile */
    .styled-table thead {
        background-color: #324F71;
        color: white;
    }

    .styled-table tbody tr {
        border-bottom: 1px solid #dddddd;
    }

    .styled-table tbody tr:nth-of-type(even) {
        background-color: #f3f3f3;
    }

    .styled-table tbody tr:hover {
        background-color: #e8f4fd;
        cursor: pointer;
    }

    .styled-table td {
        color: #333;
        text-align: center;
    }

    /* Adjust the download button for mobile */
    .download-btn-container {
        text-align: center;
        margin-top: 20px;
    }

    .btn-download {
        display: inline-block;
        padding: 12px 25px;
        background-color: #324F71;
        color: white;
        border-radius: 25px;
        font-size: 1rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-download:hover {
        background-color: #6e98c9;
    }
}

/* Ensure the container centers its content */
.download-btn-container {
    display: flex;            
    justify-content: center;  
    align-items: center;      
    margin-top: 20px;         
}

/* Styling for the Download button */
.btn-download {
    display: inline-flex;
    align-items: center;
    background-color: #324F71;
    color: white;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: medium;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-align: center;
}

.btn-download i {
    margin-left: 8px;
   
}

/* Hover effect */
.btn-download:hover {
    background-color: #6e98c9;
    text-decoration: none;
}

/* Button style on mobile */
@media screen and (max-width: 768px) {
    .btn-download {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}



/* Section Header Styles */
.section-header {
    margin-bottom: 30px;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3e50;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 1300px;
    margin: 0 auto;
}

/* Table Styles */
.table-container {
    margin-top: 40px;
    background-color: white;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 12px 20px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.table th {
    background-color: #324f71;
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.table td {
    font-size: 1rem;
}

.table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table-container .table-responsive {
    overflow-x: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
        max-width: 100%;
    }

    .table th, .table td {
        padding: 10px;
    }

    .table-container {
        padding: 20px;
    }
    .table th {
       
      
        font-size: 0.7rem;
        
    }
}
footer {
    background-color: #324F71;
    color: white;
    padding: 20px;
    text-align: center;
}

footer iframe {
    width: 100%;
    height: 300px;
    border: none;
}