
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:Segoe UI, sans-serif;line-height:1.6;color:#333;background:#f9fbfd}
a{text-decoration:none;color:inherit}

.top-bar{background:#0f172a;color:#fff;padding:8px 5%;display:flex;justify-content:space-between;font-size:14px;flex-wrap:wrap}
.top-bar a{color:#fff;margin-left:12px}

.navbar{background:#fff;padding:15px 5%;display:flex;justify-content:space-between;align-items:center;
box-shadow:0 4px 20px rgba(0,0,0,0.05);position:sticky;top:0;z-index:1000}

.logo{font-size:22px;font-weight:bold;color:#0d6efd}
.nav-links{list-style:none;display:flex;align-items:center}
.nav-links li{position:relative}
.nav-links li a{padding:10px 15px;font-weight:500}
.nav-links li:hover>a{color:#0d6efd}

.dropdown{display:none;position:absolute;background:#fff;top:100%;left:0;min-width:220px;
box-shadow:0 8px 25px rgba(0,0,0,0.1);border-radius:6px}
.nav-links li:hover .dropdown{display:block}

.btn{background:#0d6efd;color:#fff;padding:10px 18px;border-radius:6px;display:inline-block}
.btn:hover{opacity:.9}

/* ================= HERO SECTION ================= */

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: white;
}

/* SLIDER */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* INDIVIDUAL SLIDE */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size:cover;  /* stretch to full */
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}



/* DARK OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0);

}

/* CONTENT */
.hero-content {
    position: absolute;
    top: 60%;
    left: 30%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 10px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn {
    padding: 12px 28px;
    background: #0a7cff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    transition: 0.3s ease;
}

.btn:hover {
    background: #005fd6;
}

/* ARROWS */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 12px 18px;
    font-size: 22px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 3;
    transition: 0.3s ease;
}

.arrow:hover {
    background: rgba(0,0,0,0.8);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .hero {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }
}




.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:30px}
.card{background:#fff;padding:30px;border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);transition:.3s}
.card:hover{transform:translateY(-8px)}

footer{background:#0f172a;color:#ddd;padding:60px 5%}
.footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:30px}
.footer-bottom{text-align:center;margin-top:30px;border-top:1px solid #1e293b;padding-top:15px;font-size:14px}

.menu-toggle{display:none;font-size:24px;cursor:pointer}

@media(max-width:768px){
.nav-links{display:none;flex-direction:column;background:#fff;position:absolute;right:0;top:70px;width:260px}
.nav-links.active{display:flex}
.menu-toggle{display:block}
}

/* WhatsApp Floating Button */
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

.whatsapp-button {
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    animation: bounce 2s infinite;
}

.whatsapp-button img {
    width: 25px;
    height: 25px;
    margin-right: 8px;
}

.whatsapp-text {
    font-size: 14px;
    font-weight: 600;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Popup Box */
.whatsapp-popup {
    display: none;
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    margin-bottom: 15px;
    overflow: hidden;
}

.whatsapp-header {
    background: #25D366;
    color: #fff;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-header span {
    cursor: pointer;
    font-size: 18px;
}

.whatsapp-body {
    padding: 15px;
    font-size: 14px;
    color: #333;
}

.whatsapp-footer {
    padding: 10px;
    text-align: center;
}

.whatsapp-chat-btn {
    background: #25D366;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.whatsapp-chat-btn:hover {
    background: #1ebe5d;
}

/* Mobile */
@media (max-width: 480px) {
    .whatsapp-text {
        display: none;
    }
}

.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.clients-logos img {
    height: 100px;        /* small professional size */
    width: auto;
    object-fit: contain;
    
    transition: 0.3s ease;
}

.clients-logos img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}
.client {
  text-align: center;
}

/* ===== COMPLETE PROFESSIONAL FOOTER ===== */

footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 60px 20px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-col {
    flex: 1;
    min-width: 280px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 15px;
}

footer h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 18px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #cbd5e1;
    background: #1e293b;
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #22c55e;
    color: #fff;
}

.certifications img {
    height: 60px;
    margin-right: 10px;
    margin-bottom: 10px;
    background: #fff;
    padding: 5px;
    border-radius: 6px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    padding: 10px 15px;
    border: none;
    background: #22c55e;
    color: white;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.newsletter-form button:hover {
    background: #16a34a;
}

.footer-map {
    margin: 40px auto 0;
    max-width: 400px;   /* Smaller width */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.footer-map iframe {
    width: 100%;
    height: 180px;   /* Smaller height */
    border: 0;
};


.footer-bottom {
    text-align: right;
    border-top: 1px solid #334155;
    margin-top: 30px;
    padding-top: 20px;
    font-size: 14px;
}


.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.hero-content {
  text-align: center;
  color: #fff;
  background: rgba(0,0,0,0.55);
  padding: 30px;
  border-radius: 10px;
}

.hero-content h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
}

/* Arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 28px;
  padding: 10px 15px;
  cursor: pointer;
}

.prev { left: 20px; }
.next { right: 20px; }

/* Dots */
.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.dots span {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
}

.dots span.active {
  opacity: 1;
}
/* Reviews Section */
.reviews-section {
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-subtitle {
    max-width: 700px;
    margin: auto;
    margin-bottom: 50px;
    color: #666;
    font-size: 16px;
}

/* Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

/* Review card */
.review-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: left;
}

.review-card p {
    font-style: italic;
    margin-bottom: 15px;
}

.review-card h4 {
    margin: 0;
    font-size: 16px;
}

.review-card span {
    font-size: 14px;
    color: #777;
}


.reviews-section {
    padding: 80px 20px;
    text-align: center;
    background: #f9f9f9;
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
}

/* Slider */
.reviews-slider {
    position: relative;
    max-width: 700px;
    margin: auto;
    overflow: hidden;
}

/* Each slide */
.review-slide {
    display: none;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.review-slide.active {
    display: block;
}

/* Client image */
.review-slide img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

/* Text */
.review-slide p {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.review-slide h4 {
    margin: 0;
    font-size: 16px;
}

/* Arrows */
.review-prev,
.review-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 20px;
}

.review-prev { left: -10px; }
.review-next { right: -10px; }






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

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f7fb;
    color: #333;
}

/* SECTION */
.contact-section {
    padding: 80px 20px;
}

.contact-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* LEFT SIDE FORM */
.form-box {
    padding: 50px;
}

.form-box h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #1e3c72;
}

.form-box p {
    margin-bottom: 30px;
    color: #666;
}

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

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s ease;
    background: #f9fafc;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: #1e3c72;
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(30,60,114,0.1);
}

textarea {
    resize: none;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    border: none;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30,60,114,0.25);
}

/* SUCCESS MESSAGE */
.success-message {
    display: none;
    background: #28a745;
    color: #fff;
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* RIGHT SIDE INFO */
.info-box {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-box h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h4 {
    font-size: 15px;
    color: #ffc107;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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





/*About*/
.about-page {
    font-family: 'Poppins', sans-serif;
}

/* HERO VIDEO */
.about-hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.about-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: relative;
    background: rgba(0,0,0,0.65);
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* ABOUT GRID */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 80px 10%;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    background: #f4f7fb;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
}

/* TIMELINE */
.timeline-section {
    padding: 80px 10%;
    background: #f9fafc;
    text-align: center;
}

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

/* TEAM */
.team-section {
    padding: 80px 10%;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.team-member img {
    width: 100%;
    border-radius: 10px;
}


/* CERTIFICATIONS */

.compliance-section {
    padding: 80px 10%;
    background: #f8fafc;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.compliance-section h2 {
    font-size: 36px;
    color: #1e3c72;
    margin-bottom: 15px;
}

.compliance-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.7;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.compliance-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.compliance-box img {
    width: 60px;
    margin-bottom: 15px;
}

.compliance-box h3 {
    font-size: 20px;
    color: #1e3c72;
    margin-bottom: 10px;
}

.compliance-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width: 992px){
    .compliance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .compliance-grid {
        grid-template-columns: 1fr;
    }
}




/* ================= ABOUT CARDS SECTION ================= */

.about-cards-section {
    padding: 80px 8%;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}

/* CONTAINER */
.about-cards-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 30px;
}

/* GENERAL CARD */
.about-card {
    flex: 1;
    height: 400px;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* VIDEO CARD */
.video-card {
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* GLASS TEXT CARD */
.text-card {
    padding: 35px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: #ffffff;
}

/* HEADER STYLING */
.text-header {
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00c6ff;
    font-weight: 600;
}

.text-card h2 {
    font-size: 26px;
    margin-top: 8px;
    margin-bottom: 15px;
}

/* TEXT */
.text-card p {
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #f1f1f1;
}

/* BUTTON */
.about-btn {
    margin-top: 12px;
    padding: 10px 22px;
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    display: inline-block;
    transition: 0.3s;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,114,255,0.4);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-cards-container {
        flex-direction: column;
    }

    .about-card {
        height: auto;
    }

    .video-card video {
        height: 250px;
    }
}

/* projects chartsONLY */

/* ===== STELAR PROJECTS SECTION ===== */
#stelar-projects-status {
    position: relative;
    padding: 100px 8%;
    background: url("images/projects-bg.jpg") center/cover no-repeat;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    color: #fff;
}

/* Dark Overlay */
#stelar-projects-status .stelar-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    top: 0;
    left: 0;
    z-index: 1;
}

/* Content */
#stelar-projects-status .stelar-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

#stelar-projects-status .stelar-title {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}

#stelar-projects-status .stelar-subtitle {
    margin-bottom: 60px;
    color: #ddd;
}

/* Grid */
#stelar-projects-status .stelar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Glass Cards */
#stelar-projects-status .stelar-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
}

#stelar-projects-status .stelar-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

/* Icons */
#stelar-projects-status .stelar-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #4CAF50;
}

/* Stats */
#stelar-projects-status .stelar-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

#stelar-projects-status .stelar-number {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #4CAF50;
}

#stelar-projects-status .stelar-number.progress {
    color: #ff9800;
}

#stelar-projects-status .stelar-label {
    font-size: 14px;
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    #stelar-projects-status {
        padding: 70px 5%;
    }

    #stelar-projects-status .stelar-title {
        font-size: 28px;
    }

    #stelar-projects-status .stelar-stats {
        flex-direction: column;
        gap: 15px;
    }
}


/* ================= ULTRA PREMIUM SECTION ================= */


/* ================= SIMPLE TITLE & TEXT SECTION ================= */
.simple-text-section {
  padding: 80px 8%;
  background-color: #f9f9f9; /* light neutral background */
}

.simple-text-container {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: #0072ff; /* blue color for title */
  margin-bottom: 20px;
  font-weight: 600;
}

.section-text {
  font-size: 18px;
  color: #000000; /* black text */
  line-height: 1.7;
}



/* ================= PREMIUM PROFESSIONAL EXPERTISE SECTION ================= */

/* ================= PROFESSIONAL EXPERTISE SECTION ================= */
.expertise-section {
  padding: 80px 8%;
  background-color: #f4f6f9;
}

.expertise-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.expertise-title {
  font-size: 36px;
  color: #0072ff; /* blue title */
  margin-bottom: 50px;
}

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

/* Card styles */
.expertise-card {
  padding: 25px 20px;
  border-radius: 15px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.expertise-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.expertise-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* Card Colors */
.blue-card { border-top: 4px solid #0072ff; }
.green-card { border-top: 4px solid #00c853; }
.red-card { border-top: 4px solid #ff4d4f; }

/* Hover effect */
.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .expertise-title { font-size: 28px; margin-bottom: 30px; }
}

/* ================= PREMIUM PROFESSIONAL EXPERTISE SECTION ================= */





/* ================= PREMIUM SERVICES SECTION ================= */
/* ================= STELARLIZAR SERVICES SECTION ================= */
.services-section {
  padding: 80px 8%;
  background-color: #f4f6f9;
}

.services-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.services-title {
  font-size: 36px;
  color: #080808da;
  margin-bottom: 50px;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Service Card */
.service-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card img {
  width: 100%;
  height: 180px; /* all images same size */
  object-fit: cover;
}

.service-card h3 {
  font-size: 20px;
  margin: 15px 0 10px;
  color: #0072ff;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  padding: 0 15px 20px;
  color: #333;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .services-title { font-size: 28px; margin-bottom: 30px; }
  .service-card img { height: 150px; }
}
/* ================= PREMIUM SERVICES SECTION ================= */







.services-section {
  padding: 80px 8%;
  background: #f4f6f9;
}

.services-container {
  max-width: 1400px;
  margin: auto;
  text-align: center;
}

.services-title {
  font-size: 36px;
  color: #0072ff;
  margin-bottom: 10px;
}

.services-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

/* Grid layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card base */
.service-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-decoration: none;
  color: #222;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Image on top */
.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Text box */
.service-info {
  padding: 20px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
}

.service-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* Color accents for headings */
.blue-card h3 { color: #0072ff; }
.green-card h3 { color: #00c853; }
.red-card h3 { color: #ff4d4f; }

.service-info p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Responsive */
@media(max-width:768px){
  .services-title{font-size:28px;}
  .services-subtitle{font-size:14px;}
  .service-card img{height:150px;}
}


/* subtitle */

.services-title {
  font-size: 30px;
  font-weight: 700;
  color: #000; /* Black title */
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

/* Blue underline accent */
.services-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 60px;   /* small underline */
  height: 4px;
  background: #0072ff; /* blue accent */
  border-radius: 3px;
}

.services-subtitle {
  color: #000;
  font-size: 20px;
}

/* subtitle */















.office-cleaning-section {
  padding: 90px 8%;
  background: #f4f6f9;
}

.office-container {
  max-width: 1300px;
  margin: auto;
}

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

.section-header h2 {
  font-size: 36px;
  color: #000;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 16px;
  color: #555;
  max-width: 800px;
  margin: auto;
}

/* Layout */
.office-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* LEFT TEXT */
.office-text {
  flex: 1;
}

.office-text h3 {
  font-size: 24px;
  color: #0072ff;
  margin-bottom: 20px;
}

.office-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
}

/* Feature Cards */
.office-features {
  display: grid;
  gap: 20px;
}

.feature-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.feature-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #000;
}

.feature-card p {
  font-size: 14px;
  color: #555;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* RIGHT IMAGE */
.office-image {
  flex: 1;
}

.office-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
  .office-content {
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 28px;
  }
}









.office-faq {
  padding: 60px 8%;
  background: #eef2f7;
}

.faq-container {
  max-width: 1000px;
  margin: auto;
}

.office-faq h3 {
  font-size: 28px;
  color: #0072ff;
  margin-bottom: 40px;
  text-align: center;
}

.faq-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.faq-item h4 {
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}







/* Portfolio Section CSS */
.portfolio-section {
  padding: 80px 20px;
  background: #f9f9f9;
  overflow: hidden; /* Prevent content spilling into other sections */
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
}

/* Counters */
.counters {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 40px;
  text-align: center;
  gap: 15px;
}

.counter {
  font-size: 28px;
  font-weight: 700;
  color: #1f77b4;
  margin-bottom: 5px;
}

/* Filter Buttons */
.portfolio-filters {
  text-align: center;
  margin-bottom: 30px;
}

.portfolio-filters button {
  background: #fff;
  border: 2px solid #1f77b4;
  color: #1f77b4;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

.portfolio-filters button.active,
.portfolio-filters button:hover {
  background: #1f77b4;
  color: #fff;
}

/* Grid Layout */
.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.portfolio-item {
  width: calc(33.333% - 20px);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s, box-shadow 0.4s;
  text-align: center;
}

.portfolio-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.portfolio-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s;
}

.portfolio-item h4 {
  margin: 10px 0;
}

/* Modal Styles */
.modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal img.modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.modal.show {
  opacity: 1;
  pointer-events: auto;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #ff0000;
}

/* Responsive */
@media (max-width: 1024px) {
  .portfolio-item {
    width: calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .portfolio-item {
    width: 100%;
  }

  .counters {
    flex-direction: column;
    gap: 10px;
  }
}





/* BLOG HERO */
.blog-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url('images/blog-hero.jpg') center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.blog-hero h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.blog-hero p {
  font-size: 18px;
}

/* BLOG SECTION */
.blog-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.blog-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
}

/* IMAGE SLIDER */
.blog-slider {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-slider img {
  position: absolute;
  width: 100%;
  height: 220px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.blog-slider img.active {
  opacity: 1;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #555;
}

.read-more {
  text-decoration: none;
  color: #1f77b4;
  font-weight: bold;
}

/* VIDEO SECTION */
.video-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.video-card video {
  width: 100%;
  border-radius: 10px;
}

.video-card h4 {
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}





.review-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.review-slide.active {
  display: block;
  opacity: 1;
}







.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;   /* Shows full image without cropping */
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* CLOSE BUTTON */
.close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 100000;
}

.close:hover {
  color: #ff4444;
}

.modal-content {
  transition: transform 0.3s ease, opacity 0.3s ease;
}










/* Portfolio Grid Images */
.portfolio-item {
  overflow: hidden;
}

.portfolio-img {
  width: 100%;
  height: 250px;        /* You can change to 220px or 280px */
  object-fit: cover;    /* Makes all images same size */
  display: block;
}





/* ===== CONTENT PROTECTION DANGER ALERT ===== */
.protection-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #dc3545;
    color: #fff;
    padding: 15px 20px;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    font-size: 14px;
}

.protection-alert.show {
    opacity: 1;
    transform: translateY(0);
}











/* FLOATING CALL BUTTON */

.call-button{
position:fixed;
bottom:100px;
right:20px;
background:#28a745;
color:white;
padding:14px 20px;
border-radius:50px;
font-size:16px;
text-decoration:none;
font-weight:bold;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
z-index:9999;
transition:0.3s;
}

.call-button:hover{
background:#1e7e34;
transform:scale(1.05);
}

/* MOBILE */

@media(max-width:768px){

.call-button{
font-size:14px;
padding:12px 16px;
}

}



.call-button{
animation:pulse 2s infinite;
}

@keyframes pulse{

0%{
box-shadow:0 0 0 0 rgba(40,167,69,0.7);
}

70%{
box-shadow:0 0 0 15px rgba(40,167,69,0);
}

100%{
box-shadow:0 0 0 0 rgba(40,167,69,0);
}

}










/* COOKIE POLICY PAGE */

.policy-container{
max-width:1000px;
margin:60px auto;
padding:40px;
background:#ffffff;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
line-height:1.8;
}

.policy-container h1{
font-size:32px;
margin-bottom:20px;
color:#1a3c6e;
}

.policy-container h2{
margin-top:30px;
font-size:22px;
color:#222;
}

.policy-container h3{
margin-top:20px;
font-size:18px;
}

.policy-container p{
margin-bottom:15px;
color:#555;
}

.policy-container ul{
margin:15px 0;
padding-left:20px;
}

.policy-container li{
margin-bottom:8px;
}

.policy-footer{
text-align:center;
padding:25px;
margin-top:40px;
font-size:14px;
color:#777;
border-top:1px solid #eee;
}



















/* -----------------------------
   Policy Pages (Privacy, Cookie, Terms)
   ----------------------------- */
.policy-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    line-height: 1.8;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
}

.policy-container h1 {
    color: #1a3c6e;
    font-size: 32px;
    margin-bottom: 20px;
}

.policy-container h2 {
    color: #222;
    font-size: 22px;
    margin-top: 30px;
}

.policy-container h3 {
    color: #444;
    font-size: 18px;
    margin-top: 20px;
}

.policy-container p,
.policy-container li {
    color: #555;
    margin-bottom: 15px;
}

.policy-container ul {
    padding-left: 20px;
}

.policy-footer {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: #777;
    border-top: 1px solid #eee;
    padding: 20px;
}

/* -----------------------------
   Download PDF Button
   ----------------------------- */
.download-button {
    display: inline-block;
    background: #1a3c6e;
    color: white;
    padding: 10px 20px;
    margin: 15px 0;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.download-button:hover {
    background: #14529c;
}

/* -----------------------------
   Responsive for Mobile
   ----------------------------- */
@media screen and (max-width: 768px) {
    .policy-container {
        padding: 25px;
        margin: 20px;
    }
    .policy-container h1 {
        font-size: 26px;
    }
    .policy-container h2 {
        font-size: 20px;
    }
    .policy-container h3 {
        font-size: 16px;
    }
    .download-button {
        padding: 8px 15px;
        font-size: 14px;
    }
}






/* ================================
404 PAGE STYLING
================================ */

.error-page{
display:flex;
justify-content:center;
align-items:center;
min-height:100vh;
background:#f4f6f9;
font-family:Arial, Helvetica, sans-serif;
text-align:center;
padding:20px;
}

.error-container{
max-width:800px;
background:#fff;
padding:40px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
animation:errorFade 1s ease;
}

.error-logo img{
width:120px;
margin-bottom:15px;
}

.error-code{
font-size:90px;
margin:0;
color:#1a3c6e;
}

.error-title{
color:#333;
margin-top:10px;
}

.error-text{
color:#666;
margin:20px 0;
line-height:1.6;
}

/* search */

.error-search{
margin:25px 0;
}

.error-search input{
padding:12px;
width:60%;
border:1px solid #ccc;
border-radius:5px;
}

.error-search button{
padding:12px 20px;
background:#1a3c6e;
color:white;
border:none;
border-radius:5px;
cursor:pointer;
}

/* buttons */

.error-buttons{
margin-top:20px;
}

.btn-home{
background:#1a3c6e;
color:white;
padding:12px 25px;
margin:8px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
display:inline-block;
}

.btn-home:hover{
background:#0f2c52;
}

.btn-contact{
background:#ff9900;
color:white;
padding:12px 25px;
margin:8px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
}

.btn-contact:hover{
background:#e08700;
}

/* services */

.services-section{
margin-top:35px;
}

.services-section h3{
margin-bottom:15px;
}

.service-links{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:10px;
}

.service-links a{
background:#eef3f9;
padding:10px 15px;
border-radius:5px;
text-decoration:none;
color:#1a3c6e;
font-weight:bold;
transition:0.3s;
}

.service-links a:hover{
background:#1a3c6e;
color:#fff;
}

/* help section */

.help-section{
margin-top:40px;
padding-top:20px;
border-top:1px solid #eee;
}

.help-buttons{
margin-top:15px;
}

.btn-call{
background:#444;
color:white;
padding:12px 20px;
border-radius:6px;
text-decoration:none;
margin:5px;
display:inline-block;
}

.btn-whatsapp{
background:#25D366;
color:white;
padding:12px 20px;
border-radius:6px;
text-decoration:none;
margin:5px;
display:inline-block;
}

/* animation */

@keyframes errorFade{
0%{opacity:0; transform:translateY(20px);}
100%{opacity:1; transform:translateY(0);}
}





/* Icon Links – inline, no boxes */
.icon-links {
  display: flex;
  gap: 12px;                /* space between links */
  font-family: Arial, sans-serif;
  align-items: center;
}

.icon-links a {
  display: flex;
  align-items: center;
  gap: 4px;                 /* space between icon and text */
  text-decoration: none;
  font-weight: bold;
  color: #ffffff;           /* default text color */
  font-size: 0.9rem;        /* slightly smaller text */
  transition: color 0.2s ease, transform 0.2s ease;
}

.icon-links a strong {
  font-size: 1em;           /* icon size */
  color: #FF7F00;           /* logo color */
  transition: transform 0.2s ease, color 0.2s ease;
}

.icon-links a:hover {
  color: #ff0000;           /* icon & text hover color */
  transform: translateY(-1px);
}

.icon-links a:hover strong {
  transform: scale(1.1);    /* subtle icon scale on hover */
}

/* Contact line – inline and clean */
.contact-line {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
}

.contact-line strong {
  font-size: 1.4em;           /* match icon size */
  color: #FF7F00;           /* logo color */
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  flex-wrap: wrap;
}

.footer-social a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-social a img {
  width: 32px;   /* icon size */
  height: 32px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-social a span {
  margin-top: 3px;
  font-size: 0.7rem;
  color: white;
  text-align: center;
  transition: color 0.3s ease;
}

.footer-social a:hover img {
  transform: scale(1.1);
}

.footer-social a:hover span {
  color: red;  /* logo color on hover */
}



























.pricing-hero{
text-align:center;
padding:80px 20px;
background:#0c2d48;
color:white;
}

.pricing-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}

.pricing-card{
background:white;
padding:25px;
border-radius:8px;
box-shadow:0 4px 15px rgba(0,0,0,0.1);
text-align:center;
}

.pricing-card h3{
margin-bottom:10px;
}

.price{
font-size:22px;
color:#0c7c59;
font-weight:bold;
}

.quote-section{
padding:60px 20px;
max-width:700px;
margin:auto;
}

.quote-section h2{
text-align:center;
margin-bottom:30px;
}

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

.form-group label{
display:block;
margin-bottom:5px;
}

.form-group input,
.form-group select,
.form-group textarea{
width:100%;
padding:10px;
border:1px solid #ccc;
border-radius:5px;
}

.submit-btn{
background:#0c7c59;
color:white;
border:none;
padding:12px 20px;
font-size:16px;
cursor:pointer;
border-radius:5px;
}

.submit-btn:hover{
background:#095f45;
}

.hidden{
display:none;
}

#formMessage{
margin-top:20px;
text-align:center;
font-weight:bold;
}
#map{
width:100%;
height:300px;
margin-top:20px;
border-radius:8px;
}

.quote-preview{
background:#f4f4f4;
padding:20px;
margin:20px 0;
border-radius:6px;
text-align:center;
}

.quote-preview h3{
margin-bottom:10px;
}

#pricePreview{
font-size:24px;
font-weight:bold;
color:#0c7c59;
}







/* PRICING PAGE */

.pricing-hero{
text-align:center;
padding:60px 20px;
background:#f8f8f8;
}

.quote-section{
max-width:900px;
margin:auto;
padding:40px 20px;
}

.form-group{
margin-bottom:20px;
display:flex;
flex-direction:column;
}

.form-group label{
font-weight:600;
margin-bottom:6px;
}

.form-group input,
.form-group select,
.form-group textarea{
width:100%;
padding:10px;
border:1px solid #ccc;
border-radius:6px;
font-size:16px;
}

.submit-btn{
background:#0a6cff;
color:white;
border:none;
padding:14px;
font-size:16px;
cursor:pointer;
border-radius:6px;
}

.submit-btn:hover{
background:#084fbf;
}

.quote-preview{
background:#f4f4f4;
padding:20px;
margin:25px 0;
border-radius:6px;
text-align:center;
}

#pricePreview{
font-size:26px;
font-weight:bold;
color:#0a6cff;
}

.hidden{
display:none;
}

#map{
width:100%;
height:350px;
margin-top:20px;
border-radius:6px;
overflow:hidden;
}






@media (max-width:768px){

.navbar{
flex-wrap:wrap;
padding:10px;
}

.navbar-brand{
display:flex;
align-items:center;
font-size:16px;
}

.navbar-brand img{
height:32px;
margin-right:6px;
}

.nav-links{
position:absolute;
top:70px;
left:0;
width:100%;
background:#fff;
flex-direction:column;
display:none;
}

.nav-links li{
text-align:center;
padding:10px;
border-bottom:1px solid #eee;
}

.nav-links.active{
display:flex;
}

.menu-toggle{
display:block;
font-size:26px;
cursor:pointer;
}

}





*{
box-sizing:border-box;
}

html,body{
overflow-x:hidden;
width:100%;
}




.footer-map iframe{
width:100%;
height:250px;
border:0;
}




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




@media (max-width:768px){

.icon-links{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:6px;
font-size:12px;
}

.icon-links a{
padding:4px 6px;
}

}