@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;600&display=swap');

:root {
  --primary: #003366;
  /* Deep Corporate Blue */
  --secondary: #0055A4;
  /* Brighter Blue */
  --accent: #FCA311;
  /* Golden/Orange accent */
  --text-dark: #333333;
  --text-light: #777777;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --transition: 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary);
}

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

ul {
  list-style: none;
}

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

.section {
  padding: 100px 0;
}

.section-bg {
  background-color: var(--bg-light);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent);
}

.section-title p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 20px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: var(--bg-white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
}

.header.scrolled .logo,
.header.scrolled .nav-links a,
.header.scrolled .mobile-menu-btn {
  color: var(--primary);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  position: relative;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover::before,
.nav-links a.active::before {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent) !important;
}

.mobile-menu-btn {
  display: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 35px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 1px;
}

.btn-primary {
  background-color: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent);
}

.btn-secondary {
  background-color: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

/* Hero Pages & Backgrounds */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.5s ease-in-out, transform 10s ease-out;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 51, 102, 0.9) 0%, rgba(0, 51, 102, 0.4) 100%);
}

.page-hero {
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 51, 102, 0.8);
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.page-hero-content {
  text-align: center;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.page-hero-content h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

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

.hero-btns {
  display: flex;
  gap: 20px;
}

/* Services Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.service-card {
  background: var(--bg-white);
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  transition: var(--transition);
  text-align: center;
  border-bottom: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  border-bottom: 4px solid var(--accent);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
}

/* About Section */
.about-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-img {
  flex: 1;
  position: relative;
}

.about-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-img::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background-color: var(--accent);
  z-index: -1;
  border-radius: 8px;
}

.about-img::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(var(--primary) 2px, transparent 2px);
  background-size: 15px 15px;
  z-index: -1;
}

.about-text {
  flex: 1;
}

.about-text h4 {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  color: var(--primary);
}

.about-features i {
  color: var(--accent);
  font-size: 1.2rem;
}

/* Products Cards */
.product-card {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.product-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.1);
}

.product-img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 51, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-img .overlay {
  opacity: 1;
}

.product-img .overlay i {
  color: #fff;
  font-size: 2rem;
  background: var(--accent);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(20px);
  transition: var(--transition);
}

.product-card:hover .product-img .overlay i {
  transform: translateY(0);
}

.product-info {
  padding: 30px;
  text-align: center;
}

.product-info h3 {
  margin-bottom: 10px;
}

.product-info p {
  color: var(--text-light);
}

/* Contact Info */
.contact-container {
  display: flex;
  gap: 50px;
}

.contact-info,
.contact-form-container {
  flex: 1;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.info-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.info-box h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.info-box p {
  color: var(--text-light);
}

.contact-form-container {
  background: var(--bg-white);
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

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

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

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

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

/* Footer */
.footer {
  background-color: var(--primary);
  color: #fff;
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col h3 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
}

.social-links a:hover {
  background: var(--accent);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a::before {
  content: '\f105';
  font-family: 'FontAwesome';
  color: var(--accent);
}

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

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-list i {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 5px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

/* -----------------------------
   GLOBAL UTILITY CLASSES (Replaces Inline Styles)
   ----------------------------- */
.text-accent {
  color: var(--accent) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.text-white {
  color: #fff !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.font-bold {
  font-weight: 700 !important;
}

.font-extrabold {
  font-weight: 800 !important;
}

.font-sm {
  font-size: 0.9rem !important;
}

.font-lg {
  font-size: 1.2rem !important;
}

.font-xl {
  font-size: 2.4rem !important;
}

.font-xxl {
  font-size: 3.5rem !important;
}

.mb-1 {
  margin-bottom: 10px !important;
}

.mb-2 {
  margin-bottom: 20px !important;
}

.mb-3 {
  margin-bottom: 30px !important;
}

.mt-1 {
  margin-top: 10px !important;
}

.mt-2 {
  margin-top: 20px !important;
}

.mt-3 {
  margin-top: 30px !important;
}

.mt-6 {
  margin-top: 60px !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-2 {
  padding-bottom: 40px !important;
}

.text-center {
  text-align: center !important;
}

.w-100 {
  width: 100% !important;
}

.col-span-2 {
  grid-column: span 2;
}

.col-span-1 {
  grid-column: span 1;
}

.grid-2-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-textarea-lg {
  height: 120px !important;
}

.btn-submit {
  width: 100%;
  font-size: 1.1rem;
  padding: 18px;
  font-weight: 800;
  letter-spacing: 1px;
}

.delay-50 {
  transition-delay: 50ms;
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-150 {
  transition-delay: 150ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.read-more-link {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* Footer Link Customization */
.footer-logo {
  margin-bottom: 20px;
  color: #fff;
}

.footer-social-box {
  margin-top: 20px;
}

.footer-copy-box {
  text-align: center;
}

/* -----------------------------
   EXTRACTED INLINE CLASSES 
   ----------------------------- */
.cta-band {
  background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.9)), url('https://images.unsplash.com/photo-1559297434-fae8a1916a79?q=80&w=2070&auto=format&fit=crop');
  background-position: center;
  background-size: cover;
  text-align: center;
  padding: 120px 0;
}

.cta-band h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.cta-band p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.8);
}

.stats-band {
  background: var(--primary);
  color: #fff;
  padding: 60px 0;
}

.stats-flex {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
  gap: 30px;
}

.floating-cards {
  margin-top: -120px;
  position: relative;
  z-index: 10;
}

/* Image Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.gallery-item {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

/* Animations Target */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s all ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {

  .about-flex,
  .contact-container {
    flex-direction: column;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-wrapper {
    position: relative;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    gap: 12px;
    margin: 0;
  }

  .logo > span {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    font-size: 1.4rem !important;
    line-height: 1 !important;
  }
  
  .logo .text-logo-mixed {
    font-size: 0.65rem !important;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-top: 4px;
    text-transform: uppercase;
  }

  .brand-logo-icon {
    height: 50px !important;
    width: 50px !important;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    padding: 80px 30px;
    transition: var(--transition);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  }

  .nav-links.nav-active {
    left: 0;
  }

  .mobile-menu-btn {
    display: block;
    z-index: 1001;
    position: relative;
    right: 0;
    top: auto;
    transform: none;
  }

  .header.scrolled .mobile-menu-btn.active {
    color: #fff;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
  }
}

/* =========================================
   ABOUT PAGE SPECIFIC EXTRACTED STYLES
   ========================================= */
.about-hero-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-features-list {
  margin-top: 25px;
}

.about-img-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-strategic-img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-vision-box {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  flex: 1.2;
}

.mission-vision-title {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 2px solid var(--bg-light);
  padding-bottom: 15px;
}

.mission-vision-icon {
  color: var(--accent);
  font-size: 1.8rem;
}

.checklist {
  list-style: none;
  padding-left: 5px;
}

.checklist-item {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.checklist-icon {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 4px;
}

.checklist-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.5;
}

.business-service-card {
  padding: 30px 20px;
}

.business-service-icon {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
}

.business-service-title {
  font-size: 1.2rem;
}

.business-service-desc {
  font-size: 0.95rem;
}

.about-cta-section {
  background-position: center;
  background-size: cover;
  text-align: center;
  padding: 120px 0;
}

.about-cta-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.about-cta-text {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.8);
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.1rem;
}

/* =========================================
   EXTRACTED FROM REMAINING PAGES
   ========================================= */
/* Hero Backgrounds */
/* Index Page Stats */
.stats-counter {
  font-size: 3.5rem;
  color: var(--accent);
  margin-bottom: 5px;
}

.stats-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Contact Page Styles */
.hero-title-lg {
  font-size: 3.5rem;
}

.contact-info-card {
  padding: 40px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.contact-icon-box {
  width: 70px;
  height: 70px;
  font-size: 1.8rem;
  background: rgba(0, 51, 102, 0.05);
  color: var(--accent);
}

.contact-icon-box-alt {
  width: 70px;
  height: 70px;
  font-size: 1.8rem;
  background: rgba(252, 163, 17, 0.1);
  color: var(--accent);
}

.contact-card-title {
  font-size: 1.3rem;
}

.contact-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

.fw-600-light {
  color: var(--text-light);
  font-weight: 600;
}

.contact-form-section {
  padding: 80px 0 120px;
}

.contact-map-wrapper {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  height: 100%;
}

.contact-map-iframe {
  border: 0;
  margin-bottom: -5px;
}

.contact-form-container-alt {
  background: var(--bg-white);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
  flex: 1.2;
}

.contact-subtitle {
  color: var(--accent);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-title {
  font-size: 2.4rem;
  margin-bottom: 30px;
  color: var(--primary);
  line-height: 1.2;
}

.btn-whatsapp {
  width: 100%;
  margin-top: 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #25D366;
  border: 1px solid #25D366;
  color: #fff;
  font-weight: 600;
  padding: 18px;
  border-radius: 4px;
  transition: 0.3s;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-whatsapp:hover {
  background: #1ebc59;
}

.whatsapp-icon-lg {
  font-size: 1.5rem;
}

.ml-1 {
  margin-left: 10px;
}

/* Product Page Styles */
.btn-small {
  font-size: 0.8rem;
  padding: 10px 20px;
}
/* Brand Logo Styling */
.brand-logo-icon {
  height: 70px; /* Increased height significantly */
  width: auto;
  max-width: 250px;
  object-fit: contain;
  border-radius: 4px;
}

/* Make sure footer logo aligns well */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
}

/* Logo Text - Green and Blue Mix */
.text-logo-mixed {
  background: linear-gradient(90deg, #0055A4 0%, #00C853 100%); /* Blue to Bright Green gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #00A896; /* Solid Blue/Green (Teal) Fallback */
}

/* =========================================
   ATTRACTIVE CONTACT BUTTONS
   ========================================= */
.attractive-buttons-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.super-btn {
  width: 100%;
  font-size: 1.15rem;
  padding: 20px;
  font-weight: 800;
  letter-spacing: 1.5px;
  border-radius: 12px; /* Soft rounding */
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px; /* Spacing between icon and text */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
}

/* Stylish Gmail Button: Vibrant Red/Pink Gradient */
.super-btn-gmail {
  background: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(255, 65, 108, 0.35);
}

.super-btn-gmail:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 65, 108, 0.55);
}

/* Stylish WhatsApp Button: Vibrant Green Gradient */
.super-btn-whatsapp {
  background: linear-gradient(135deg, #11998E 0%, #38EF7D 100%);
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(56, 239, 125, 0.35);
}

.super-btn-whatsapp:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(56, 239, 125, 0.55);
}

/* Shiny Reflection Effect on Hover */
.super-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: 0.7s ease-in-out;
  z-index: -1;
}

.super-btn:hover::before {
  left: 150%;
}
