/* =====================================
   PROFESSIONAL PURPLE CORPORATE PALETTE
   ===================================== */
   :root {

    /* Brand Core */
    --primary-color: #4B2E83;       /* Deep Royal Purple */
    --primary-dark: #2E1A47;        /* Dark Purple */
    --primary-light: #7C5AC2;       /* Soft Accent Purple */
  
    /* Accent */
    --accent-color: #B497FF;        /* Elegant Highlight */
    --accent-soft: #E8E1FF;
  
    /* Neutrals */
    --text-dark: #1F1F1F;
    --text-muted: #5E5E6E;
    --background-light: #F6F4FA;
    --white: #FFFFFF;
  
    /* Effects */
    --shadow-soft: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-strong: rgba(0, 0, 0, 0.25);
  }
  
  /* ===================================== */
  /* GLOBAL */
  /* ===================================== */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
  }
  
  body {
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
  }
  
  /* ===================================== */
  /* HEADER */
  /* ===================================== */
  header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px var(--shadow-soft);
  }
  
  .container {
    width: 90%;
    margin: auto;
  }
  
  .header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
  }
  
  .brand img {
    height: 45px;
  }
  
  /* ===================================== */
  /* HERO SECTION */
  /* ===================================== */
  .hero {
    height: 90vh;
    background: linear-gradient(rgba(191, 191, 191, 0.756), rgba(209, 209, 209, 0.774)),
                url(images/hero.png) center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary-color);
  }
  
  .hero-box h2 {
    font-size: 48px;
    font-weight: 600;
  }
  
  .hero-box p {
    font-size: 22px;
    margin: 12px 0;
    color: var(--primary-dark);
  }
  
  /* ===================================== */
  /* BUTTONS */
  /* ===================================== */
  .btn {
    margin-top: 25px;
    padding: 14px 34px;
    border: none;
    background: var(--primary-light);
    color: var(--white);
    cursor: pointer;
    font-size: 16px;
    border-radius: 50px;
    transition: 0.3s ease;
    font-weight: 600;
  }
  
  .btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 12px 25px var(--shadow-strong);
  }
  
  /* ===================================== */
  /* SECTIONS */
  /* ===================================== */
  .section {
    padding: 90px 10%;
  }
  
  .light {
    background: var(--background-light);
  }
  
  .title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-dark);
  }
  
  /* ===================================== */
  /* ABOUT */
  /* ===================================== */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
  }
  
  .about-grid img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px var(--shadow-soft);
  }
  
  /* ===================================== */
  /* VISION & MISSION */
  /* ===================================== */
  .vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  
  .vm-card {
    background: var(--white);
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 10px 30px var(--shadow-soft);
    border-top: 4px solid var(--primary-light);
    transition: 0.3s ease;
  }
  
  .vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px var(--shadow-medium);
  }
  
  /* ===================================== */
  /* PRODUCTS */
  /* ===================================== */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
  }
  
  .product-card {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    transition: 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 8px 25px var(--shadow-soft);
  }
  
  .product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 18px;
  }
  
  .product-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-dark);
  }
  
  .product-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
  }
  
  .product-card ul {
    margin-top: auto;
    padding-left: 18px;
  }
  
  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px var(--shadow-medium);
  }
  
  /* ===================================== */
  /* COMMITMENT */
  /* ===================================== */
  .commitment {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-dark);
  }
  
  /* ===================================== */
  /* SOCIAL */
  /* ===================================== */
  .social a {
    font-size: 24px;
    margin: 0 12px;
    color: var(--primary-color);
    transition: 0.3s ease;
  }
  
  .social a:hover {
    color: var(--primary-light);
    transform: scale(1.2);
  }
  
  /* ===================================== */
  /* FOOTER */
  /* ===================================== */
  footer {
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 18px;
    font-size: 14px;
  }
  
  /* ===================================== */
  /* DROPDOWN MENU */
  /* ===================================== */
  .menu-wrapper {
    position: relative;
  }
  
  .menu-btn {
    font-size: 28px;
    color: var(--white);
    cursor: pointer;
  }
  
  .dropdown {
    position: absolute;
    right: 0;
    top: 45px;
    background: var(--white);
    border-radius: 12px;
    min-width: 180px;
    box-shadow: 0 15px 40px var(--shadow-medium);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s ease;
  }
  
  .dropdown a {
    display: block;
    padding: 14px 18px;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
  }
  
  .dropdown a:hover {
    background: var(--primary-light);
    color: var(--white);
  }
  
  .dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
/* =====================================
   PREMIUM CORPORATE FOOTER
   ===================================== */

   .footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--white);
    padding-top: 70px;
  }
  
  .footer-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 50px;
  }
  
  .footer-col h3,
  .footer-col h4 {
    margin-bottom: 18px;
    font-weight: 600;
    color: var(--accent-color);
  }
  
  .footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #dddddd;
    margin-bottom: 10px;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #dddddd;
    transition: 0.3s;
  }
  
  .footer-col ul li a {
    text-decoration: none;
    color: #dddddd;
    transition: 0.3s;
  }
  
  .footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
  }
  
  /* Social Icons */
  .footer-social {
    margin-top: 15px;
  }
  
  .footer-social a {
    display: inline-block;
    margin-right: 12px;
    font-size: 18px;
    color: var(--white);
    transition: 0.3s ease;
  }
  
  .footer-social a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
  }
  
  /* Bottom Bar */
  .footer-bottom {
    text-align: center;
    padding: 18px;
    background: var(--primary-dark);
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
/* =====================================
   PREMIUM GLOBAL PRESENCE SECTION
===================================== */

.premium-contact {
  background: var(--background-light);
}

/* Office Cards */
.office-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.office-card {
  background: var(--white);
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 15px 40px var(--shadow-soft);
  border-top: 4px solid var(--primary-light);
  transition: 0.3s ease;
}

.office-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px var(--shadow-medium);
}

.office-card h3 {
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.office-card p {
  margin-bottom: 8px;
  color: var(--text-muted);
}

/* Contact Form */
.contact-form-container {
  max-width: 800px;
  margin: auto;
  background: var(--white);
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 60px var(--shadow-soft);
}

.contact-form-container h3 {
  text-align: center;
  margin-bottom: 25px;
  color: var(--primary-dark);
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row input {
  flex: 1;
}

input, textarea {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

input:focus, textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

textarea {
  resize: none;
}
/* =====================================
   PREMIUM ABOUT SECTION
===================================== */

.premium-about {
  background: var(--white);
}

/* Layout */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}

/* Image Styling */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px var(--shadow-soft);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  box-shadow: 0 10px 25px var(--shadow-medium);
}

/* Content Styling */
.about-content h2 {
  font-size: 34px;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.about-line {
  width: 60px;
  height: 4px;
  background: var(--primary-light);
  margin-bottom: 25px;
  border-radius: 5px;
}

.about-content p {
  margin-bottom: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-ceo {
  margin-top: 25px;
}

.about-ceo span {
  display: block;
  margin-top: 5px;
  color: var(--primary-color);
  font-weight: 600;
}

/* Stats Section */
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.stat-box {
  background: var(--background-light);
  padding: 30px;
  text-align: center;
  border-radius: 16px;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px var(--shadow-soft);
}

.stat-box h3 {
  font-size: 24px;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 14px;
  color: var(--text-muted);
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px var(--shadow-medium);
}
/* =====================================
   PRODUCT DETAIL PAGE
===================================== */

.product-detail-section {
  background: var(--background-light);
}

.product-detail-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.product-detail-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px var(--shadow-soft);
}

.product-detail-content h2 {
  font-size: 32px;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.product-detail-content p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.product-detail-content ul {
  margin-bottom: 30px;
  padding-left: 20px;
}

.product-detail-content ul li {
  margin-bottom: 8px;
}
/* =====================================
   PREMIUM ENTERPRISE PRODUCTS SECTION
===================================== */

.premium-products {
  background: var(--background-light);
  padding: 100px 10%;
}

.products-header {
  text-align: center;
  margin-bottom: 70px;
}

.products-header h2 {
  font-size: 38px;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.products-header p {
  color: var(--text-muted);
  font-size: 16px;
}

/* GRID */
.premium-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
}

/* CARD */
.premium-product-card {
  background: var(--white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px var(--shadow-soft);
  transition: 0.4s ease;
}

.premium-product-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 35px 80px var(--shadow-medium);
}

/* IMAGE */
/* IMAGE CONTAINER */
.premium-product-image {
  position: relative;
  padding: 30px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
}

/* FULL IMAGE — NO CROPPING */
.premium-product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;   /* THIS FIXES CROPPING */
  transition: transform 0.4s ease;
}

/* SOFT BACKGROUND EFFECT */
.premium-product-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--accent-soft), transparent 70%);
  opacity: 0.6;
  z-index: 0;
}

/* Keep image above background */
.premium-product-image img {
  position: relative;
  z-index: 2;
}

/* Remove heavy dark overlay */
.image-overlay {
  display: none;
}

/* Hover zoom */
.premium-product-card:hover img {
  transform: scale(1.05);
}

/* CATEGORY LABEL — FIXED ABOVE IMAGE */
.category-label {
  position: absolute;
  top: 15px;
  left: 20px;
  z-index: 5;

  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  color: var(--white);
  padding: 7px 16px;
  font-size: 12px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;

  box-shadow: 0 8px 20px var(--shadow-medium);
  transition: 0.3s ease;
}

/* Slight hover lift with card */
.premium-product-card:hover .category-label {
  transform: translateY(-3px);
}

/* CONTENT */
.premium-product-content {
  padding: 35px;
}

.premium-product-content h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

/* TAGS */
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-tags span {
  background: var(--background-light);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 13px;
  color: var(--primary-dark);
  border: 1px solid #eee;
  transition: 0.3s;
}

.product-tags span:hover {
  background: var(--primary-light);
  color: var(--white);
}
/* RESPONSIVE */

@media(max-width:992px){
  .about-wrapper,
  .vm-grid,
  .product-detail-container{
    grid-template-columns: 1fr;
  }

  .form-row{
    flex-direction: column;
  }

  .hero-box h2{
    font-size:32px;
  }
}
.small-hero {
  height: 60vh;
}
/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {

  .header-wrap {
    padding: 14px 0;
  }

  .brand h2 {
    font-size: 16px;
  }

  .hero {
    height: 75vh;
    padding: 20px;
  }

  .hero-box h2 {
    font-size: 26px;
  }

  .hero-box p {
    font-size: 16px;
  }

  .section {
    padding: 60px 6%;
  }

  .premium-products {
    padding: 70px 6%;
  }

  .premium-product-image {
    height: 200px;
  }

  .footer-container {
    gap: 25px;
  }

}
.premium-product-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.btn {
  display: inline-block;
  text-decoration: none;
}
/* PREMIUM ABOUT SECTION */

.premium-about {
  background: #f9fbfd;
  padding: 100px 20px;
}

.about-container {
  max-width: 1200px;
  margin: auto;
}

.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
}

.about-line {
  width: 80px;
  height: 4px;
  background: #0077b6;
  margin: 15px auto 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

.about-highlight {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.about-highlight h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #0077b6;
}

.ceo-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.ceo-title {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.ceo-divider {
  height: 2px;
  width: 60px;
  background: #0077b6;
  margin: 15px 0 20px;
}

/* Stats */
.about-stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.stat-box {
  background: white;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.stat-box h3 {
  font-size: 26px;
  color: #0077b6;
  margin-bottom: 10px;
}

/* CEO MESSAGE SECTION */

.ceo-message-section {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  padding: 100px 20px;
  color: white;
}

.ceo-message-box {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.ceo-message-box h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.ceo-message-box p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.ceo-signature {
  margin-top: 30px;
  font-weight: 600;
  font-size: 18px;
}

.ceo-signature span {
  display: block;
  font-size: 14px;
  opacity: 0.8;
  margin-top: 5px;
}

/* Responsive */

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}