* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Arial', sans-serif; }
body { background-color: #f4f6f8; color: #333; line-height: 1.6; }

/* Company Logo Banner Top */
header { 
  background: #ffffff; 
  padding: 25px 5% 20px; 
  text-align: center; 
  border-bottom: 2px solid #e1e8ed; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.05); 
  display: flex;
  flex-direction: column;
  align-items: center;
}
.brand-logo { 
  max-width: 280px; 
  height: auto; 
  margin-bottom: 10px; 
  display: block;
}
.brand-title { font-size: 32px; color: #00A3E0; font-weight: 800; letter-spacing: 0.5px; margin-bottom: 6px; }
.typewriter-container { 
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px; 
  color: #222222; 
  font-weight: 500; 
  letter-spacing: 0.5px; 
  height: 24px;
  overflow: hidden;
}
.cursor { 
  display: inline-block; 
  width: 2px; 
  height: 16px; 
  background-color: #222222; 
  margin-left: 2px; 
  animation: blink 0.8s infinite; 
  vertical-align: middle; 
  flex-shrink: 0;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Navigation Bar */
nav { background: #002B49; padding: 12px 5%; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; position: sticky; top: 0; z-index: 100; }
nav a, nav button, .dropdown-btn { background: none; border: none; color: #e0e6ed; font-weight: 600; font-size: 14px; cursor: pointer; padding: 6px 12px; border-radius: 4px; transition: background 0.3s, color 0.3s; text-decoration: none; display: inline-block; }
nav a:hover, nav a.active, nav button:hover, nav button.active, .dropdown:hover .dropdown-btn { color: #ffffff; background: #00A3E0; }

/* Navigation Dropdown Menu */
.dropdown { position: relative; display: inline-block; }
.dropdown-content { display: none; position: absolute; background-color: #002B49; min-width: 220px; box-shadow: 0px 8px 16px rgba(0,0,0,0.2); z-index: 101; border-radius: 0 0 4px 4px; border: 1px solid #00A3E0; }
.dropdown-content a { color: #e0e6ed; padding: 10px 16px; text-decoration: none; display: block; width: 100%; text-align: left; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.dropdown-content a:hover { background-color: #00A3E0; color: white; }

/* Keep hover working on desktop (screens wider than 768px) */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-content { display: block; }
}

/* Open dropdown state when toggled by click */
.dropdown.open .dropdown-content { display: block; }

/* Home Hero & Highlights Wrapper */
.home-only-section { display: block; }

/* Hero Banner */
.hero { background: linear-gradient(rgba(0,43,73,0.88), rgba(0,43,73,0.88)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab') center/cover; padding: 60px 5%; text-align: center; color: white; }
.hero h2 { font-size: 32px; margin-bottom: 12px; font-weight: 700; letter-spacing: 0.5px; }
.hero p { font-size: 16px; color: #d0e7f7; max-width: 850px; margin: 0 auto 20px; line-height: 1.6; }

/* Floating Left to Right Marquee Client Showcase Section */
.clients-section { background: #ffffff; padding: 40px 0; text-align: center; border-bottom: 1px solid #e1e8ed; overflow: hidden; position: relative; }
.clients-title { font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; color: #70859c; margin-bottom: 25px; padding: 0 5%; }

.marquee-container { display: flex; width: 100%; overflow: hidden; user-select: none; mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0)); -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0)); }
.marquee-content { display: flex; gap: 20px; shrink: 0; animation: scrollLeftToRight 25s linear infinite; padding-right: 20px; }
.marquee-container:hover .marquee-content { animation-play-state: paused; }

@keyframes scrollLeftToRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

.client-card { background: #f8fafc; border: 1px solid #e1e8ed; padding: 12px 28px; border-radius: 8px; font-weight: 700; font-size: 15px; color: #002B49; box-shadow: 0 2px 5px rgba(0,0,0,0.02); transition: all 0.3s ease; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.client-card:hover { transform: translateY(-3px); border-color: #00A3E0; color: #00A3E0; box-shadow: 0 6px 15px rgba(0,163,224,0.15); background: #ffffff; }

/* Impact Metrics Section */
.metrics-section { background: linear-gradient(135deg, #001B2E 0%, #002B49 100%); padding: 50px 5%; color: white; text-align: center; }
.metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; max-width: 1200px; margin: 0 auto; }
.metric-card { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 25px 15px; backdrop-filter: blur(5px); transition: transform 0.3s, border-color 0.3s; }
.metric-card:hover { transform: translateY(-5px); border-color: #00A3E0; background: rgba(255, 255, 255, 0.08); }
.metric-number { font-size: 38px; font-weight: 800; color: #00A3E0; margin-bottom: 5px; line-height: 1; }
.metric-label { font-size: 14px; font-weight: 600; color: #d0e7f7; letter-spacing: 0.5px; }

/* Buttons */
.btn-primary { background: #00A3E0; color: white; border: none; padding: 12px 24px; border-radius: 4px; font-weight: bold; cursor: pointer; font-size: 14px; text-decoration: none; display: inline-block; transition: background 0.3s; }
.btn-primary:hover { background: #0082b3; }

/* Page View Containers */
.page-section { display: block; max-width: 1200px; margin: 40px auto; padding: 0 5%; }
.section-title { text-align: center; font-size: 26px; color: #002B49; margin-bottom: 25px; position: relative; }
.section-title::after { content: ''; width: 60px; height: 3px; background: #00A3E0; display: block; margin: 8px auto 0; }

/* Content Cards & Tables */
.content-box { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); margin-bottom: 25px; }
.content-box p { font-size: 15px; color: #444; line-height: 1.8; margin-bottom: 15px; }

/* SEO Specific Styling on About Page */
.seo-keyword-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin: 25px 0; }
.seo-card { background: #f8fafc; border: 1px solid #e1e8ed; border-top: 4px solid #00A3E0; padding: 20px; border-radius: 8px; }
.seo-card h4 { color: #002B49; font-size: 17px; margin-bottom: 8px; }
.seo-card p { font-size: 14px; color: #555; margin-bottom: 10px; line-height: 1.6; }
.search-queries-tag { background: #e6f7ff; color: #0082b3; font-size: 12px; font-weight: 600; padding: 4px 8px; border-radius: 4px; display: inline-block; margin-top: 5px; }

/* Showcase Web Development Styling & Carousel Slider */
.showcase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; margin: 25px 0 35px; }
.showcase-card { background: #ffffff; border: 1px solid #e1e8ed; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.04); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.showcase-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,163,224,0.15); border-color: #00A3E0; }

.carousel-container { position: relative; width: 100%; height: 210px; overflow: hidden; background: #001B2E; border-bottom: 3px solid #00A3E0; }
.carousel-track { display: flex; width: 100%; height: 100%; transition: transform 0.4s ease-in-out; }
.carousel-slide { min-width: 100%; height: 100%; position: relative; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0, 43, 73, 0.65); color: white; border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: bold; transition: background 0.3s; z-index: 10; }
.carousel-btn:hover { background: #00A3E0; }
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 10; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.5); cursor: pointer; transition: background 0.3s, transform 0.3s; }
.carousel-dot.active { background: #00A3E0; transform: scale(1.25); }

.showcase-content { padding: 20px; }
.showcase-content h4 { color: #002B49; font-size: 18px; margin-bottom: 8px; }
.showcase-content p { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 12px; }

/* Job Openings Grid */
.jobs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.job-card { background: white; border: 1px solid #e1e8ed; border-radius: 6px; padding: 20px; box-shadow: 0 2px 4px rgba(0,0,0,0.04); }
.job-card h4 { color: #002B49; font-size: 18px; margin-bottom: 8px; }
.job-badge { background: #e6f7ff; color: #0082b3; font-size: 12px; font-weight: bold; padding: 4px 8px; border-radius: 4px; display: inline-block; margin-bottom: 12px; }
.job-details { font-size: 13px; color: #666; margin-bottom: 15px; }

/* Resume Writing Banner */
.resume-banner { background: linear-gradient(135deg, #002B49 0%, #004B76 100%); color: white; padding: 30px; border-radius: 8px; margin-top: 30px; }
.resume-banner h3 { color: #00A3E0; margin-bottom: 10px; font-size: 22px; }
.resume-banner ul { margin: 15px 0 20px 20px; font-size: 14px; }
.resume-banner li { margin-bottom: 6px; }

/* Service Cards Styling */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 25px; }
.service-card { background: white; padding: 25px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); border-left: 4px solid #00A3E0; }
.service-card h4 { color: #002B49; font-size: 18px; margin-bottom: 10px; }

/* Feature List Styling for Individual Pages */
.feature-list { margin-left: 20px; margin-bottom: 20px; }
.feature-list li { margin-bottom: 8px; font-size: 15px; color: #444; }

/* Process Automation Tables & Components Styling */
.automation-table-wrapper { width: 100%; overflow-x: auto; margin: 20px 0; }
.automation-table { width: 100%; border-collapse: collapse; text-align: left; background: #ffffff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.automation-table th { background: #002B49; color: #ffffff; padding: 14px; font-size: 14px; border: 1px solid #003a63; }
.automation-table td { padding: 14px; border-bottom: 1px solid #e1e8ed; font-size: 14px; color: #444; border-right: 1px solid #f0f4f8; }
.automation-table tr:nth-child(even) { background-color: #f8fafc; }
.automation-table tr:hover { background-color: #f0f7fc; }

/* Recruitment Section Styling */
.recruitment-hero { background: linear-gradient(135deg, #001B2E 0%, #002B49 100%); color: white; padding: 35px 30px; border-radius: 12px; margin-bottom: 30px; box-shadow: 0 8px 25px rgba(0,43,73,0.15); border-left: 6px solid #00A3E0; }
.recruitment-hero h3 { font-size: 26px; color: #00A3E0; margin-bottom: 10px; }
.recruitment-hero p { font-size: 15px; color: #d0e7f7; line-height: 1.7; }

.skills-section-title { font-size: 20px; color: #002B49; margin: 35px 0 18px; font-weight: 800; display: flex; align-items: center; gap: 10px; border-bottom: 2px solid #e1e8ed; padding-bottom: 8px; }
.recruitment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 20px; margin-bottom: 30px; }

.capability-card { background: #ffffff; border: 1px solid #e1e8ed; border-radius: 10px; padding: 22px; box-shadow: 0 4px 12px rgba(0,0,0,0.03); transition: all 0.3s ease; display: flex; flex-direction: column; justify-content: space-between; }
.capability-card:hover { transform: translateY(-5px); border-color: #00A3E0; box-shadow: 0 8px 20px rgba(0,163,224,0.12); }
.capability-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.capability-icon { width: 40px; height: 40px; background: #e6f7ff; color: #00A3E0; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: bold; flex-shrink: 0; }
.capability-title { font-size: 17px; font-weight: 700; color: #002B49; }

.tags-container { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.skill-tag { background: #f0f4f8; color: #002B49; font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 20px; border: 1px solid #d0dce5; transition: all 0.2s; }
.skill-tag:hover { background: #00A3E0; color: white; border-color: #00A3E0; }
.skill-tag.highlight { background: #e6f7ff; color: #0082b3; border-color: #b3e5ff; }

.hierarchy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-bottom: 30px; }
.hierarchy-card { background: #ffffff; border-top: 4px solid #002B49; border-radius: 8px; padding: 20px; box-shadow: 0 3px 10px rgba(0,0,0,0.04); text-align: center; }
.hierarchy-card.c-suite { border-top-color: #00A3E0; }
.hierarchy-card.mgmt { border-top-color: #004B76; }
.hierarchy-card.exec { border-top-color: #70859c; }
.hierarchy-card h5 { font-size: 16px; color: #002B49; margin-bottom: 8px; }
.hierarchy-card p { font-size: 13px; color: #555; margin: 0; }

.geo-banner { background: #f8fafc; border: 2px dashed #00A3E0; border-radius: 10px; padding: 22px; text-align: center; margin-bottom: 30px; }
.geo-banner h4 { color: #002B49; font-size: 18px; margin-bottom: 8px; }
.geo-banner p { font-size: 14px; color: #555; margin: 0; }

/* Floating WhatsApp Button */
.whatsapp-float { position: fixed; width: 55px; height: 55px; bottom: 25px; left: 25px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 2px 2px 8px rgba(0,0,0,0.25); z-index: 999; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: transform 0.3s ease; }
.whatsapp-float:hover { transform: scale(1.1); background-color: #128c7e; }

/* Auto 15-Second WhatsApp Popup Widget */
.wa-popup { position: fixed; bottom: 90px; left: 25px; width: 320px; background: #ffffff; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.2); z-index: 1001; display: none; overflow: hidden; border: 1px solid #e1e8ed; animation: popUpAnim 0.4s ease-out; }
@keyframes popUpAnim { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.wa-popup-header { background: #075e54; color: white; padding: 12px 15px; display: flex; align-items: center; justify-content: space-between; font-weight: bold; font-size: 14px; }
.wa-popup-header .close-wa { cursor: pointer; font-size: 18px; line-height: 1; }
.wa-popup-body { padding: 15px; background: #e5ddd5; }
.wa-msg-bubble { background: white; padding: 10px 12px; border-radius: 0 8px 8px 8px; font-size: 13px; color: #333; margin-bottom: 12px; box-shadow: 0 1px 2px rgba(0,0,0,0.1); font-weight: 600; }

.wa-option-btn { display: flex; align-items: center; width: 100%; background: #ffffff; color: #002B49; padding: 8px 12px; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 12px; margin-bottom: 6px; border: 1px solid #dcdcdc; transition: all 0.2s ease; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.wa-option-btn:hover { background: #25d366; color: #ffffff; border-color: #25d366; transform: translateX(3px); }
.wa-option-num { background: #002B49; color: white; border-radius: 50%; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: bold; margin-right: 8px; flex-shrink: 0; }
.wa-option-btn:hover .wa-option-num { background: white; color: #25d366; }

/* Modal Popups */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 43, 73, 0.75); z-index: 1000; justify-content: center; align-items: center; }
.modal-content { background: white; width: 90%; max-width: 500px; border-radius: 8px; padding: 25px; position: relative; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.close-btn { position: absolute; top: 12px; right: 18px; font-size: 24px; cursor: pointer; color: #888; }
.modal-content h3 { color: #002B49; margin-bottom: 5px; font-size: 20px; }
.modal-content p { color: #666; font-size: 13px; margin-bottom: 15px; }

/* Forms */
.form-group { margin-bottom: 12px; text-align: left; }
.form-group label { display: block; font-size: 12px; font-weight: bold; color: #002B49; margin-bottom: 4px; }
.form-group label span { color: #d9534f; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 9px; border: 1px solid #ccc; border-radius: 4px; font-size: 13px; font-family: inherit; }
.form-group textarea { resize: vertical; min-height: 80px; }

/* Footer Responsive Map Styling */
footer { background: #001B2E; color: #a0b2c6; padding: 40px 5% 20px; margin-top: 60px; font-size: 14px; }
.footer-content { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 25px; text-align: left; margin-bottom: 30px; }
.footer-section { flex: 1; min-width: 250px; }
.footer-section h5 { color: white; margin-bottom: 12px; font-size: 16px; }
.footer-section iframe { width: 100%; max-width: 100%; border-radius: 8px; }
.footer-bottom { border-top: 1px solid #003358; padding-top: 20px; text-align: center; color: #70859c; }