/* 
======================
    Global Styles
======================
*/
:root {
    --primary-color: #ff6b00;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #333333;
    --border-color: #e1e1e1;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* 
======================
    Buttons
======================
*/
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

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

.btn-primary:hover {
    background-color: #e05c00;
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #1a2530;
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* 
======================
    Header
======================
*/
header {
    background-color: white;
    box-shadow: var(--box-shadow);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 60px;
}

.contact-info {
    display: flex;
    align-items: center;
}

.phone-number {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--secondary-color);
    margin-right: 20px;
}

.phone-number i {
    color: var(--primary-color);
    margin-right: 8px;
}

.social-icons {
    display: flex;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: var(--secondary-color);
    margin-left: 10px;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-color);
}

/* 
======================
    Navigation
======================
*/
.main-nav {
    background-color: var(--secondary-color);
    padding: 0;
}

.nav-menu {
    display: flex;
    justify-content: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    display: block;
    color: white;
    padding: 15px 20px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu li a:hover,
.nav-menu li.active > a {
    background-color: var(--primary-color);
}

.nav-menu li.has-dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 8px;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background-color: white;
    box-shadow: var(--box-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
}

.nav-menu li:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    color: var(--secondary-color);
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
}

.dropdown li a:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

/* 
======================
    Hero Section
======================
*/
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/placeholder.svg?height=800&width=1600') no-repeat center center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 
======================
    Page Banner
======================
*/
.page-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/placeholder.svg?height=400&width=1600') no-repeat center center/cover;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 
======================
    Services Section
======================
*/
.services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 10px;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.service-card p {
    padding: 0 20px 20px;
    color: #666;
}

.service-card .btn {
    margin: 0 20px 20px;
}

/* 
======================
    Services Detailed
======================
*/
.services-detailed {
    padding: 80px 0;
}

.service-item {
    display: flex;
    margin-bottom: 80px;
    align-items: center;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    padding: 0 20px;
}

.service-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.service-content {
    flex: 1;
    padding: 0 20px;
}

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

.service-content p {
    margin-bottom: 20px;
    color: #666;
}

.service-features {
    margin-bottom: 25px;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--success-color);
    margin-right: 10px;
}

/* 
======================
    Gallery Preview
======================
*/
.gallery-preview {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* 
======================
    Gallery Section
======================
*/
.gallery-section {
    padding: 80px 0;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: #f5f5f5;
    color: var(--secondary-color);
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
}

.gallery-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.gallery-info p {
    font-size: 0.9rem;
}

/* 
======================
    Testimonials
======================
*/
.testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    padding: 20px;
}

.testimonial-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial-content::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 2rem;
    color: rgba(255, 107, 0, 0.1);
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

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

.client-info p {
    font-style: normal;
    color: #666;
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-controls button {
    background-color: white;
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    margin: 0 10px;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-controls button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* 
======================
    Clients Section
======================
*/
.clients {
    padding: 80px 0;
}

.client-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.client-logo {
    padding: 20px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* 
======================
    Map Section
======================
*/
.map-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* 
======================
    Contact Section
======================
*/
.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info-box,
.contact-form-box {
    flex: 1;
    min-width: 300px;
}

.contact-info-box {
    background-color: var(--secondary-color);
    color: white;
    padding: 40px;
    border-radius: 10px;
}

.contact-info-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info-box p {
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 30px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
    color: #ddd;
}

.social-connect h3 {
    margin-bottom: 15px;
}

.contact-info-box .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.contact-info-box .social-icons a:hover {
    background-color: var(--primary-color);
}

.contact-form-box {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.contact-form-box h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* 
======================
    Footer
======================
*/
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 60px;
}

.footer-column p {
    margin-bottom: 20px;
    color: #ddd;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-links a {
    color: #ddd;
    transition: var(--transition);
}

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

.contact-info li {
    display: flex;
    margin-bottom: 15px;
    color: #ddd;
}

.contact-info li i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.contact-info a {
    color: #ddd;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    color: #ddd;
}

.footer-bottom-links a {
    color: #ddd;
    margin-left: 20px;
}

/* 
======================
    Floating Actions
======================
*/
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 999;
}

.book-demo-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.book-demo-btn:hover {
    background-color: #e05c00;
    color: white;
}

.whatsapp-btn,
.call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.whatsapp-btn {
    background-color: #25d366;
    color: white;
}

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

.whatsapp-btn:hover,
.call-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* 
======================
    Who We Work For
======================
*/
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.client-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
    padding: 30px;
    transition: var(--transition);
}

.client-card:hover {
    transform: translateY(-10px);
}

.client-card img {
    max-width: 150px;
    margin: 0 auto 20px;
}

.client-card h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.client-card p {
    color: #666;
}

/* 
======================
    Corporate Gifting
======================
*/
.gifting-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gifting-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.gifting-card:hover {
    transform: translateY(-10px);
}

.gifting-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gifting-content {
    padding: 20px;
}

.gifting-content h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.gifting-content p {
    color: #666;
    margin-bottom: 15px;
}

.gifting-features {
    margin-bottom: 20px;
}

.gifting-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.gifting-features li i {
    color: var(--success-color);
    margin-right: 10px;
}

/* 
======================
    Service Pages
======================
*/
.service-page {
    padding: 80px 0;
}

.service-intro {
    margin-bottom: 50px;
}

.service-intro h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-intro p {
    color: #666;
    margin-bottom: 20px;
    max-width: 800px;
}

.service-benefits {
    background-color: #f9f9f9;
    padding: 50px 0;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

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

.benefit-card p {
    color: #666;
}

.service-gallery {
    margin-bottom: 50px;
}

.service-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.service-gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.service-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.service-gallery-item:hover img {
    transform: scale(1.1);
}

.service-cta {
    background-color: var(--secondary-color);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.service-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}