/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #57c5b6;
    --accent-color: #159895;
    --dark-color: #002b5b;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #777;
    --white: #fff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

html {
    scroll-behavior: smooth;
}

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

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

.section-padding {
    padding: 80px 0;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-small, .cta-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
    margin-top:15px;
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-small:hover {
    background-color: var(--dark-color);
}

.cta-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
}

.cta-btn:hover {
    background-color: var(--accent-color);
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo a {
    text-decoration: none;
    color: var(--dark-color);
}

.logo-text {
    color: var(--primary-color);
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.logo-tagline {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin: 0 10px;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
    background-color: rgba(26, 95, 122, 0.1);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: var(--transition);
}

.header-cta {
    margin-left: 20px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 90vh;
    margin-top: 70px;
    overflow: hidden;
}

.slides {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 43, 91, 0.6);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    width: 80%;
    max-width: 800px;
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 20;
    transform: translateY(-50%);
}

.slider-btn {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--white);
    transform: scale(1.2);
}

/* Services Overview */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(26, 95, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 2rem;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* About Home */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    color: var(--dark-color);
}

.about-features {
    margin: 25px 0;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.feature i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Products Showcase */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

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

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

.product-img {
    height: 200px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
}

/* Statistics */
.stats-section {
    background-color: var(--dark-color);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.stat-text {
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
    overflow: hidden;
    min-height: 250px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    position: relative;
}

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

.testimonial-content i {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
}

.client-info {
    display: flex;
    flex-direction: column;
}

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

.client-info p {
    color: var(--text-light);
    margin: 0;
    font-style: normal;
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.t-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.t-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Projects Home */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.project-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    height: 300px;
}

.project-img {
    position: relative;
    height: 100%;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 43, 91, 0.9), transparent);
    color: var(--white);
    padding: 30px 20px 20px;
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
}

.project-overlay h3 {
    margin-bottom: 5px;
    color: var(--white);
}

.project-overlay p {
    margin: 0;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 20px;
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f9f9f9;
}

.faq-answer p {
    padding: 20px 0;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(0, 43, 91, 0.8), rgba(0, 43, 91, 0.8)), url('images/waterproofing-workers.jpg') center/cover no-repeat;
    padding: 120px 0 80px;
    margin-top: 70px;
    color: white;
    text-align: center;
}

.page-banner h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Mission & Vision */
.mission-vision {
    margin-top: 30px;
}

.mv-item {
    margin-bottom: 30px;
}

.mv-item h3 {
    display: flex;
    align-items: center;
    color: var(--primary-color);
}

.mv-item i {
    margin-right: 10px;
    color: var(--secondary-color);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

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

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

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(26, 95, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 2rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-img {
    height: 250px;
    overflow: hidden;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-img img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    margin-bottom: 5px;
}

.member-info p {
    margin-bottom: 10px;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.contact-info-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(26, 95, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(26, 95, 122, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

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

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* Services Page Styles */
.service-detail {
    margin-top: 50px;
}

.service-detail-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.service-process {
    margin-top: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

/* Products Page Styles */
.product-categories {
    margin-top: 50px;
}

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

.category-btn {
    padding: 10px 25px;
    background-color: #f1f1f1;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.product-specs {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    margin-left:25px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.specs-table th, .specs-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.specs-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

/* Projects Page Styles */
.projects-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.project-filter-btn {
    padding: 10px 25px;
    background-color: #f1f1f1;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

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

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-detail {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.project-detail-img {
    height: 250px;
    overflow: hidden;
}

.project-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-detail:hover .project-detail-img img {
    transform: scale(1.05);
}

.project-detail-info {
    padding: 25px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.project-tag {
    background-color: rgba(26, 95, 122, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
}

/* Footer */
.footer-top {
    background-color: var(--dark-color);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-logo h2 {
    color: var(--white);
    margin-bottom: 5px;
}

.footer-logo p {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-about {
    margin-bottom: 25px;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.footer-bottom {
    background-color: #001a36;
    padding: 20px 0;
    text-align: center;
    color: #ccc;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom i {
    color: #ff6b6b;
    margin: 0 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .slide-content h2 {
        font-size: 2.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 10px 0;
    }
    
    .header-cta {
        display: none;
    }
    
    .slide-content h2 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .hero-slider {
        height: 70vh;
    }
    
    .slider-controls {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Floating Button Styles */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-link:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-link i {
    font-size: 36px;
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: white;
    color: #333;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

.whatsapp-link:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: -1;
}

/* WhatsApp Chat Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 120px;
    right: 30px;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 999;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.whatsapp-widget.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.whatsapp-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-avatar {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
    font-size: 20px;
}

.whatsapp-info h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.whatsapp-info p {
    margin: 3px 0 0;
    font-size: 12px;
    opacity: 0.9;
}

.whatsapp-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-left: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.whatsapp-close:hover {
    opacity: 1;
}

.whatsapp-body {
    padding: 15px;
    max-height: 300px;
    overflow-y: auto;
}

.whatsapp-message {
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 12px;
    position: relative;
}

.whatsapp-received {
    background: #f0f0f0;
    margin-right: 30px;
}

.whatsapp-time {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 5px;
    text-align: right;
}

.whatsapp-footer {
    padding: 15px;
    border-top: 1px solid #eee;
}

.whatsapp-action-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #25D366;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.whatsapp-action-btn:hover {
    background: #128C7E;
    color: white;
}

.whatsapp-action-btn i {
    margin-right: 8px;
    font-size: 18px;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-link {
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-link i {
        font-size: 30px;
    }
    
    .whatsapp-widget {
        width: 280px;
        right: 20px;
        bottom: 100px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-link {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-link i {
        font-size: 28px;
    }
    
    .whatsapp-widget {
        width: 260px;
        right: 15px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .services-grid, .products-grid, .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .page-banner {
        padding: 100px 0 60px;
    }
    
    .service-detail-item {
        padding: 25px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BANK ACCOUNT FLOATING BUTTON STYLES
   ============================================ */

/* Floating Button */
.bank-float-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    animation: bankFloat 3s ease-in-out infinite;
}

.bank-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 12px 20px;
    background: linear-gradient(135deg, #1a5f7a, #002b5b);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(26, 95, 122, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bank-btn:hover {
    background: linear-gradient(135deg, #002b5b, #001a36);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 95, 122, 0.6);
}

.bank-btn:active {
    transform: translateY(-1px);
}

.bank-btn i {
    font-size: 20px;
    margin-right: 8px;
}

.bank-btn-text {
    white-space: nowrap;
}

.bank-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: bankPulse 2s infinite;
    z-index: -1;
}

/* Bank Popup Overlay */
.bank-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.bank-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Bank Popup */
.bank-popup {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bank-popup-overlay.active .bank-popup {
    transform: translateY(0) scale(1);
}

/* Popup Header */
.bank-popup-header {
    background: linear-gradient(135deg, #1a5f7a, #159895);
    color: white;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bank-popup-header h3 {
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bank-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bank-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Popup Content */
.bank-popup-content {
    padding: 25px;
}

/* Company Info */
.bank-company-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.bank-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a5f7a, #57c5b6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.bank-company-info h4 {
    margin: 0;
    color: #002b5b;
    font-size: 1.3rem;
}

.bank-company-info p {
    margin: 5px 0 0;
    color: #666;
    font-size: 0.9rem;
}

/* Bank Details */
.bank-details {
    margin-bottom: 25px;
}

.bank-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #57c5b6;
    transition: transform 0.3s;
}

.bank-detail-item:hover {
    transform: translateX(5px);
    background: #f0f8ff;
}

.bank-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a5f7a;
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.bank-label {
    display: block;
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.bank-value {
    display: block;
    font-family: 'Montserrat', monospace;
    font-weight: 600;
    color: #002b5b;
    font-size: 16px;
    word-break: break-all;
}

.copy-btn {
    margin-top: 8px;
    padding: 6px 12px;
    background: rgba(26, 95, 122, 0.1);
    border: 1px solid rgba(26, 95, 122, 0.3);
    color: #1a5f7a;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.copy-btn:hover {
    background: #1a5f7a;
    color: white;
    border-color: #1a5f7a;
}

.copy-btn.copied {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

/* Bank Logo Container */
.bank-logo-container {
    text-align: center;
    padding: 20px;
    margin: 20px 0;
    background: linear-gradient(to right, #f8f9fa, #e9f7f7);
    border-radius: 12px;
    border: 2px dashed #57c5b6;
}

.bank-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 10px;
}

.bank-brand i {
    color: #FFD700;
}

.bank-note {
    color: #666;
    font-size: 14px;
    margin: 0;
    font-style: italic;
}

/* Bank Notes */
.bank-notes {
    background: #fff9e6;
    border-left: 4px solid #FFD700;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.bank-notes h5 {
    margin: 0 0 10px;
    color: #d4a017;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bank-notes ul {
    margin: 0;
    padding-left: 20px;
    color: #666;
}

.bank-notes li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Bank Actions */
.bank-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 25px;
}

.bank-action-btn {
    padding: 12px 15px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.bank-action-btn:hover {
    background: #1a5f7a;
    color: white;
    border-color: #1a5f7a;
    transform: translateY(-2px);
}

.print-btn:hover {
    background: #4CAF50;
    border-color: #4CAF50;
}

.download-btn:hover {
    background: #2196F3;
    border-color: #2196F3;
}

.call-btn {
    text-decoration: none;
    text-align: center;
}

.call-btn:hover {
    background: #25D366;
    border-color: #25D366;
}

/* Popup Footer */
.bank-popup-footer {
    padding: 15px 25px;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.bank-popup-footer p {
    margin: 0;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1002;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast-notification.active {
    transform: translateY(0);
    opacity: 1;
}

.toast-notification i {
    font-size: 20px;
}

.toast-text {
    font-weight: 600;
    font-size: 15px;
}

/* Animations */
@keyframes bankFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bankPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .bank-float-btn {
        bottom: 100px;
        left: 20px;
    }
    
    .bank-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .bank-btn i {
        font-size: 18px;
        margin-right: 6px;
    }
    
    .bank-popup {
        width: 95%;
        max-height: 85vh;
    }
    
    .bank-popup-header h3 {
        font-size: 1.3rem;
    }
    
    .bank-actions {
        grid-template-columns: 1fr;
    }
    
    .toast-notification {
        bottom: 20px;
        right: 20px;
        left: 20px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .bank-float-btn {
        bottom: 90px;
        left: 15px;
    }
    
    .bank-btn-text {
        display: none;
    }
    
    .bank-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
    
    .bank-btn i {
        margin-right: 0;
        font-size: 20px;
    }
    
    .bank-popup-content {
        padding: 20px;
    }
    
    .bank-company-info {
        flex-direction: column;
        text-align: center;
    }
    
    .bank-detail-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .bank-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .bank-brand {
        font-size: 20px;
    }
}

/* Print Styles */
@media print {
    .bank-float-btn,
    .bank-popup-overlay:not(.active),
    .toast-notification {
        display: none !important;
    }
    
    .bank-popup-overlay.active {
        position: static;
        background: none;
        display: block;
    }
    
    .bank-popup {
        box-shadow: none;
        max-width: 100%;
        max-height: none;
    }
    
    .bank-close-btn,
    .copy-btn,
    .bank-actions {
        display: none !important;
    }
}

/* Accessibility */
.bank-btn:focus,
.bank-close-btn:focus,
.copy-btn:focus,
.bank-action-btn:focus {
    outline: 3px solid rgba(26, 95, 122, 0.5);
    outline-offset: 2px;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .bank-popup {
        background: #1e1e1e;
        color: #f0f0f0;
    }
    
    .bank-detail-item {
        background: #2d2d2d;
    }
    
    .bank-value {
        color: #f0f0f0;
    }
    
    .bank-notes {
        background: #2d2d2d;
    }
    
    .bank-popup-footer {
        background: #2d2d2d;
    }
    
    .bank-action-btn {
        background: #2d2d2d;
        color: #f0f0f0;
        border-color: #444;
    }
}

/* Alternative Positions */

/* Top Right Corner */
.bank-float-btn.top-right {
    top: 30px;
    right: 30px;
    bottom: auto;
    left: auto;
}

/* Bottom Center */
.bank-float-btn.bottom-center {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

/* Side Panel Style */
.bank-float-btn.side-panel {
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 0 10px 10px 0;
}

/* Cooking Policies */
.cookie-policy {
            max-width: 800px;
            margin: 100px auto 50px;
            padding: 40px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .cookie-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .cookie-category {
            padding: 20px;
            border-radius: 10px;
            border: 2px solid #eee;
        }
        
        .cookie-category.essential {
            border-color: #25D366;
            background: rgba(37, 211, 102, 0.05);
        }
        
        .cookie-category.analytics {
            border-color: #1a5f7a;
            background: rgba(26, 95, 122, 0.05);
        }
        
        .cookie-category.marketing {
            border-color: #FFD700;
            background: rgba(255, 215, 0, 0.05);
        }
        
        .cookie-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 15px;
        }
        
        .toggle-switch {
            position: relative;
            width: 60px;
            height: 30px;
        }
        
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 34px;
        }
        
        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .toggle-slider {
            background-color: #1a5f7a;
        }
        
        input:checked + .toggle-slider:before {
            transform: translateX(30px);
        }
        
        .cookie-actions {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cookie-btn {
            padding: 12px 30px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .accept-all {
            background: #1a5f7a;
            color: white;
        }
        
        .save-preferences {
            background: #57c5b6;
            color: white;
        }
        
        .reject-all {
            background: #f8f9fa;
            color: #333;
            border: 2px solid #ddd;
        }
        
        .cookie-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }