/* =========================
   GLOBAL FONT
========================= */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Layout fix */
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Main content stretch */
main {
    flex: 1;
}
 
/* =========================
   HEADER SECTION
========================= */
.logo-img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  border-radius: 50%;
  background: transparent; /* remove white/dark bg */
 
}

/* Remove extra space */
.navbar-brand {
  margin-left:20px;
  padding: 0 !important;
  line-height: 0.5;
  display: flex;
  align-items: center;
  gap: 0px; /* 🔥 BEST control */
  font-size: 18px;
}

.navbar-nav {
margin-right: 20px;
}

/* Navbar height control */
.navbar {
  padding-top: 0px;
  padding-bottom: 0px;
}

/* =========================
   HERO SLIDER
========================= */

/* Remove navbar gap */
header, .navbar {
    margin: 0;
    padding: 0;
}

/* HERO */
.hero {
    margin: 0;
    padding: 0;
}

/* Slide container */
.hero-slide {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #000;
}

/* Image */
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* COMMON CONTENT (IMPORTANT FIX) */
.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
}

/* CENTER */
/* RIGHT ALIGN TEXT */
.hero-center{
  position: absolute;
  top: 30%;
  left: 20%;              /* right side spacing */
  transform: translateY(-50%);
  text-align: left;
  width: 400px;  
}

/* RIGHT */
.hero-right {
    right: 0%;
    text-align: left;
    width: 700px;
}

/* LEFT */
.hero-left {
    left: 5%;
    text-align: left;
    width: 600px;
}

/* TEXT */
.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
}

.hero-content p {
    font-size: 20px;
    margin-top: 10px;
}

.typewriter{
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #fff;
  width: 0;
  animation: typing 3s steps(30,end) forwards, blink 0.7s infinite;
}

@keyframes typing{
  from{ width:0 }
  to{ width:100% }
}

@keyframes blink{
  50%{ border-color: transparent }
}
/* =========================
   SECTION SPACING
========================= */
.section {
    padding: 80px 0;
}

/* =========================
   SERVICE CARDS
========================= */
.card-custom {
    border: none;
    border-radius: 15px;
    transition: 0.3s;
}

.card-custom:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.icon {
    font-size: 40px;
    color: #0d6efd;
}

/* =========================
   SOFTWARE BOX
========================= */
.highlight-box {
    background: linear-gradient(135deg, #198754, #00c851);
    color: white;
    padding: 50px;
    border-radius: 20px;
}

/* =========================
   WHATSAPP BUTTON
========================= */
.whatsapp-btn {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background: #25D366;
    color: #fff;
    padding: 14px 16px;
    border-radius: 50%;
    font-size: 22px;
    z-index: 999;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

    .hero-slide {
        height: 25vh; /* better mobile scaling */
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }
}

/* =========================
   SERVICE SECTION
========================= */
/* Section */
.services-section {
    background: #f8f9fa;
}

/* Card */
.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
}

/* Hover */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Image */
.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Body */
.service-body {
    padding:20px;
}

/* Title */
.service-body h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Text */
.service-body p {
    font-size: 14px;
    color: #6c757d;
}

/* Button */
.service-body .btn {
    margin-top: 10px;
    font-size: 14px;
    padding: 8px 16px;
}



.service-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-body {
    padding: 15px;
}

.service-body h5 {
    font-size: 16px;
    font-weight: 600;
}

.service-body p {
    font-size: 13px;
    color: #6c757d;
}

.service-body .btn {
    padding: 5px 14px;
    font-size: 13px;
}

/*---------CTA--------*/
.cta-box {
    background: linear-gradient(135deg, #0d6efd, #198754);
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

/* subtle glass overlay */
.cta-box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.08);
    transform: rotate(25deg);
}

/* text above overlay */
.cta-box * {
    position: relative;
    z-index: 1;
}

/* button hover */
.cta-box .btn:hover {
    background: #fff;
    color: #0d6efd;
}


/* =========================
   WHY CHOOSE SECTION
========================= */
/* Section background */
.why-section {
  background: linear-gradient(180deg, #ffffff, #f8f9fa);
}

/* LEFT MAIN CARD */
.why-main-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
  height: 100%;
  border-left: 4px solid #0d6efd;
}

.why-main-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* LIST */
.why-list {
  list-style: none;
  padding: 0;
}

.why-list li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1;
}

.why-list i {
  color: #0d6efd;
  margin-right: 8px;
}

/* RIGHT CARDS */
.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid rgba(0,0,0,0.05);
  height: 100%;
}

.why-card i {
  font-size: 28px;
  color: #0d6efd;
  margin-bottom: 10px;
}

.why-card h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.why-card p {
  font-size: 13px;
  color: #6c757d;
}

/* Hover */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Buttons */
.btn {
  min-width: 160px;
  border-radius: 30px;
  font-weight: 500;
}

.btn:hover {
  transform: translateY(-2px);
}

/* =========================
        PORTFOLIO
========================= */

/* Section */
.portfolio-section {
  background: #f8f9fa;
}

/* Card */
.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

/* Image */
.portfolio-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
}

/* Overlay */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s;
  text-align: center;
  padding: 20px;
}

/* Hover Effects */
.portfolio-card:hover img {
  transform: scale(1.1);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

/* Text */
.portfolio-overlay h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.portfolio-overlay p {
  font-size: 14px;
  margin-bottom: 10px;
}

/* Button */
.portfolio-overlay .btn {
  font-size: 13px;
  padding: 6px 14px;
}

/* =====================================
        ABOUT US, CONTACT FORM
======================================== */

/* REMOVE ALL SIDE GAP */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* FORCE FULL WIDTH */
.container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100%;
}

/* REMOVE BOOTSTRAP ROW GAP ISSUE */
.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* SECTION */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d6efd, #001f3f);
}

/* LEFT CARD */
.contact-info {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 15px;
  color: #fff;
  backdrop-filter: blur(10px);
  height: 100%;
}

/* INFO BOX */
.info-box {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.info-box i {
  width: 35px;
  height: 35px;
  background: #fff;
  color: #0d6efd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

/* FORM */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* INPUT */
.contact-form .form-control {
  border-radius: 8px;
  padding: 12px;
}

/* BUTTON */
.contact-form .btn {
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}

.contact-form .btn:hover {
  transform: translateY(-2px);
}
.contact-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 80px 0;
  background: linear-gradient(135deg, #0d6efd, #001f3f);
}

footer {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 0 !important;
}

