/* ============================
   HEADER SECTION
============================ */
.header {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.header-container {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

/* LOGO */
.logo img {
    width: 200px;
    height: auto;
}

/* NAVIGATION */
.nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #112240;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav ul li a:hover {
    color: #0072ff;
}

/* BUTTON */
.header-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.header-btn:hover {
    background: linear-gradient(135deg, #005ce6, #00a8db);
    transform: translateY(-2px);
}


body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* HEADER */
.main-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 14px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo-box img {
    height: 80px;
}

/* NAVIGATION */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    padding: 6px 3px;
    transition: color 0.2s;
}

.main-nav ul li a:hover {
    color: #007bff;
}


/* DROPDOWN MENU (hidden by default) */
.dropdown {
    position: relative !important;
    display: inline-block !important;
}
.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;

    background: #fff !important;
    padding: 20px 30px !important;
    border-radius: 14px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;

    width: 350px !important;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;

    pointer-events: none;
    z-index: 99999 !important;

    display: block !important;
}
.dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
    pointer-events: auto !important;
}

.dropdown-menu li {
    list-style: none !important;
    margin-bottom: 15px !important;
    display: block !important;
}

.dropdown-menu li:last-child {
    margin-bottom: 0 !important;
}

.dropdown-menu a {
    text-decoration: none !important;
    color: #000 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
}

/* HEADER BUTTON */
.header-btn {
   background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
}

.header-btn:hover {
  background: #0056c7;
}

/* SMALL SCREEN ADJUSTMENTS */
@media (max-width: 900px) {
  .nav ul { gap: 15px; }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 10px;
  }
  .nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* For small screens, allow click to open (using .open class added by JS) */
  .nav ul {
    gap: 10px;
  }
  .Dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    box-shadow: none;
    border-radius: 6px;
    width: 100%;
    padding: 6px 0;
  }
  .Dropdown .Dropdown-menu {
    display: flex;
  }
}




/* BUTTON */
.header-button {
    background: #007bff;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    transition: .2s;
}

.header-button:hover {
    background: #005dcc;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .container {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}


/* ============================
   RESPONSIVE NAVIGATION
============================ */
@media (max-width: 900px) {
    .nav ul {
        display: none; /* hide for now (mobile menu can be added later) */
    }
}

/* ============================
   SERVICES HERO
============================ */
.services-hero {
    width: 100%;
    padding: 120px 0;
    background: #ffffff;
}

.services-container {
    width: 85%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* IMAGE BLOB SHAPE */
.services-image img {
    width: 500px;
    border-radius: 50% 40% 60% 30% / 40% 60% 30% 70%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* RIGHT CONTENT */
.services-content {
    flex: 1;
}

.services-content h2 {
    font-size: 40px;
    color: #112240;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-content p {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* BUTTON */
.services-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 30px;
    background: #000;
    color: #fff;
    border-radius: 35px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 3px solid #000;
    transition: 0.3s ease;
}

.services-btn span {
    background: #fff;
    color: #000;
    padding: 6px 10px;
    border-radius: 50%;
    font-size: 18px;
}

.services-btn:hover {
    background: #fff;
    color: #000;
}

/* ============================
   RESPONSIVE 
============================ */
@media (max-width: 900px) {
    .services-container {
        flex-direction: column;
        text-align: center;
    }

   /* IMAGE BLOB SHAPE - CLEAN, NO SHADOW / NO BORDER */
.service-image-wrapper {
    width: 600px;       /* Increase size */
    height: auto;
}

.service-image-wrapper img {
    width: 150%;
    height: auto;
    filter: none !important;        /* Removes shadow-like effects */
    box-shadow: none !important;    /* Removes drop shadow */
    border: none !important;        /* Removes white border */
    background: none !important;    /* Clears mask background */
    clip-path: none !important;     /* Removes weird blob shape */
    mask-image: none !important;    /* MOST IMPORTANT: removes mask */
    -webkit-mask-image: none !important;
}

}

.customer-services {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 20px;
    color: #444;
    margin-bottom: 50px;
}

.service-box {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 30px;
    justify-content: center;
}

.service-icon img {
    width: 120px;
    height: auto;
}

.service-content {
    max-width: 650px;
    text-align: left;
}

.service-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0052CC;    /* same blue as screenshot */
    margin-bottom: 18px;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

.industries {
    text-align: center;
    padding: 80px 20px;
}

.industries-subtitle {
    color: #4c5dff;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.industries-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.industries-text {
    color: #555;
    font-size: 18px;
    margin-bottom: 50px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.industry-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.08);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 35px rgba(0,0,0,0.12);
}

.industry-card img {
    width: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0px 0px 12px rgba(0, 150, 255, 0.4));
}

.industry-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #111;
    font-weight: 600;
}

.industry-card p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}


.main-footer {
    background: #0658c0;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-container {
    width: 90%;
    max-width: 1500px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    align-items: start;
}

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 15px;
}

.footer-text {
    max-width: 250px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #0658c0;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 18px;
}

.footer-gallery-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-gallery {
    width: 230px;
    border-radius: 6px;
    margin-top: 10px;
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    padding-top: 15px;
    color: #dcdcdc;
    border-top: 1px solid rgba(255,255,255,0.2);
}


.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 9999;
}

.wa-text {
    background: #fff;
    color: #000;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    font-weight: 500;
}

.wa-icon {
    position: relative;
}

.wa-icon img {
    width: 55px;
    height: 55px;
}

.wa-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: red;
    color: white;
    width: 20px;
    height: 20px;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}


