/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a3a5f;
    --secondary: #2c6a9a;
    --accent: #f47a20;
    --light: #f0f4f8;
    --dark: #0d1c2e;
    --gray: #5c6d7e;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #f9fbfd;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary);
}

.branding { 
    display: flex;
    flex-direction: column;
    align-items: center; /* aligns left */
}

.slogan {
  font-size: 0.95rem;
  color: var(--dark);
  margin-top: 2px;
  letter-spacing: 1px;
  font-weight: bold;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
}

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

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* width: 180px; */
    border-radius: 20px;
}

.btn:hover {
    background-color: #e06910;
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.section {
    padding: 80px 0;
    /* scroll-margin-top: 118px; */
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

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

/* ===== HEADER STYLES ===== */
header {
    background-color: rgba(223, 220, 220, 0.9);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    /* height: 13%; */
    top: 0;
    z-index: 1000;
    
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-left: 50px;
}

.header-img {
    display: flex;
    align-items: center;
    gap: 35px;
}
.header-img img {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 0%;
    z-index: 10;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent);
    margin-left: 13px;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li {
    margin-left: 50px;
    position: relative;
}


.dropdown-menu {
  position: absolute;
  top: 100%; 
  left: 0;
  background-color: rgba(223, 220, 220);
  display: flex;
  flex-direction: column;
  min-width: 160px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 20px;

  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 0s;
}

.dropdown-menu li {
  padding: 5px;
  white-space: nowrap;
  right: 20px;
}

.dropdown-menu li a {
  color: #333;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
}

.dropdown-menu li:hover {
  background-color: #f5f5f5;
  border-radius: 15px;
  width: 130px;
  text-align: center;
}

nav ul li a {
    color: var(--dark);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent);
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--accent);
}

nav ul li a:hover::after {
    width: 100%;
}

/* ===== HERO SECTION ===== */
#home {
    background: linear-gradient(rgba(35, 40, 45, 0.9), rgba(41, 48, 56, 0.8)), url("Images/logo2.jpg");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    max-width: 700px;
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== LABEL CATALOG ===== */
#labels {
    background-color: var(--light);
}

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

.label-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

.label-img {
    height: 200px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: 700;
}

.label-content {
    padding: 25px;
}

.label-content h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
    color: var(--primary);
}

/* ===== INDUSTRY SOLUTIONS ===== */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.industry-card {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 8px;
    padding: 40px 30px;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.1), rgba(0,0,0,0.2));
    z-index: -1;
}

.industry-card h3 {
    color: white;
    font-size: 1.8rem;
}

/* ===== Partners Section ===== */
#partners {
  background: var(--light);
  overflow: hidden;
}

/* this or only box */
.scroll-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.partners-container {
  display: flex;
  gap: 30px;
  width: max-content;
}

.partner {
  flex: 0 0 auto;
  width: 250px;
  height: auto;
  padding: 15px;
  object-fit: contain;
  border-radius: 80%;
}

/* ===== CONTACT SECTION ===== */
#contact {
    background: linear-gradient(to bottom right, var(--light), #e4ebf5);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

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

.contact-icon {
    background-color: var(--accent);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d8e0;
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(244, 122, 32, 0.2);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 50px 0 20px;
}

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

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

address a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

address a:hover {
    color: var(--accent);
}

.extra-labels {
    display: block;
    transition: var(--transition);
}

/* Whatsapp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 15px 0;
    }
    
    nav ul {
        margin-top: 15px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-content h2 {
        font-size: 2.3rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 5px 0;
    }
    
    .label-grid, .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}