/* General Styles */
:root {
    --primary-color: #f6821e;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem 0;
    font-weight: 600;
}

p {
    margin: 0 0 1rem 0;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #d86b0e;
}

ul {
    list-style: none;
    padding: 0;
}

.container {
    margin: 0 auto;
    max-width: 1200px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

button {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background-color: var(--primary-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
    background-color: #d86b0e;
    transform: translateY(-2px);
}

button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(246, 130, 30, 0.5);
}

/* ===== Navbar ===== */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1050;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar:hover {
    background-color: #f8f9fa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.navbar .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar .navbar-brand img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.navbar .navbar-brand img:hover {
    transform: scale(1.03);
    filter: brightness(1.05);
}

.navbar .navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar .navbar-nav {
    display: flex;
    gap: 1rem;
}

.navbar .nav-link {
    font-weight: 500;
    color: #333;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

.navbar .nav-link.hover-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar .nav-link.hover-underline:hover::after {
    width: 100%;
    left: 0;
}

/* ===== Dropdown Menu ===== */
.navbar-nav .dropdown-menu {
    background-color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    display: block;
}

.navbar-nav .dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.navbar-nav .dropdown-item {
    font-weight: 500;
    color: #333;
    padding: 0.75rem 1.5rem;
    transition: background-color 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
    background-color: #f8f9fa;
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(45deg, #FFD700, #FFA07A, #FF69B4);
    background-size: 200% 200%;
    min-height: 75vh;
    display: flex;
    align-items: center;
    animation: gradientShift 10s ease infinite;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    padding: 100px 0;
    text-align: left;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    animation: shimmer 15s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.z-index-1 {
    z-index: 1;
}

.hero-section .display-4 {
    font-weight: 900;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section .lead {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-section .small a {
    color: #ffffff;
    font-weight: 700;
    transition: color 0.3s ease, border-bottom 0.3s ease, transform 0.3s ease;
    border-bottom: 2px solid transparent;
    transform: scale(1);
}

.hero-section .small a:hover {
    color: #ffd700;
    border-bottom: 2px solid #ff4545;
    transform: scale(1.1);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-section .btn-success {
    background-color: var(--success-color);
    border-color: var(--success-color);
    color: #ffffff;
    font-weight: 700;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.hero-section .btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
    transform: scale(1.05);
}

/* ===== About us section ===== */
.about-us-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.about-us-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.about-us-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.about-us-section p {
    font-size: 1rem;
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-us-section .bi-award-fill {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.about-us-section .btn-danger {
    background-color: var(--danger-color);
    border-color: var(--danger-color);
    color: #ffffff;
    font-weight: 700;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.about-us-section .btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
    transform: scale(1.05);
}

.about-us-section .img-fluid {
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease-in-out;
}

.about-us-section .img-fluid:hover {
    transform: scale(1.05);
}

/* ===== Services Section ===== */
.services-section {
    background-color: var(--light-color);
    padding: 3rem 0;
}

.services-section h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 700;
}

.services-section .card {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.services-section .card-img-top {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.services-section .card-title {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-section .card-text {
    font-size: 1rem;
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.services-section .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    font-weight: 700;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.services-section .btn-primary:hover {
    background-color: #d86b0e;
    border-color: #d86b0e;
    transform: scale(1.05);
}

/* ===== WhatsApp Button ===== */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animated {
    animation-duration: 0.3s;
    animation-fill-mode: both;
}

.fadeIn {
    animation-name: fadeIn;
}

/* ===== Contact Section ===== */
.contact-section {
    background-color: #f8f9fa;
}

.contact-section h2 {
    color: #333;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-info h3 {
    color: #f6821e;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info ul {
    padding-left: 0;
}

.contact-info li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: #f6821e;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.social-media a {
    color: #f6821e;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #d86b0e;
}

.contact-form .form-control {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(246, 130, 30, 0.25);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}
