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

:root {
  --primary-blue: #1e3781;
  --secondary-blue: #32bee2;
  --accent-color: #954992;
  --logo-gradient: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--accent-color) 100%);
  --logo-gradient-horizontal: linear-gradient(90deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--accent-color) 100%);
  --text-dark: #111827;
  --text-muted: #4b5563;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Typography & Layout Utility Classes */
.text-muted { color: var(--text-muted) !important; }
.section-padding { padding: 120px 0; }
@media (max-width: 768px) { .section-padding { padding: 80px 0; } }

.section-title { margin-bottom: 60px; }
.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
}
.section-title p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* Buttons */
.btn-primary-custom {
  background: var(--logo-gradient);
  color: white;
  border: 1px solid transparent;
  padding: 12px 30px;
  border-radius: 4px; /* Sophisticated minimal radius */
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.btn-primary-custom:hover {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 4px 15px rgba(149, 73, 146, 0.2);
}

.btn-outline-custom {
  background: transparent;
  color: white;
  border: 1px solid white;
  padding: 12px 30px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-outline-custom:hover {
  background: white;
  color: var(--text-dark);
}

.btn-outline-dark-custom {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
  padding: 12px 30px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-outline-dark-custom:hover {
  background: var(--text-dark);
  color: white;
}

/* Top Bar */
.top-bar {
  background: var(--logo-gradient-horizontal);
  color: white;
  padding: 8px 0;
  font-size: 0.85rem;
  font-family: 'Poppins', sans-serif;
}
.top-bar a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}
.top-bar a:hover {
  opacity: 0.8;
}
.top-bar .social-links a {
  margin-left: 15px;
  margin-right: 0;
}

/* Navbar */
.navbar {
  transition: all 0.4s ease;
  padding: 0.8rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
  z-index: 1000;
}
.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark) !important;
  margin: 0 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--logo-gradient-horizontal);
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

/* Navbar Transparent state (Home Page) */
.navbar.navbar-transparent {
  background: transparent;
  box-shadow: none;
  padding: 1.5rem 0;
}
.navbar.navbar-transparent .nav-link {
  color: white !important;
}
.navbar.navbar-transparent.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
  padding: 0.8rem 0;
}
.navbar.navbar-transparent.scrolled .nav-link {
  color: var(--text-dark) !important;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  background: url('../images/hero-bg.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(17, 24, 39, 0.8) 0%, rgba(17, 24, 39, 0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero h1 {
  font-size: 4.5rem;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero p {
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* Wave Divider */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}
.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}
.custom-shape-divider-bottom .shape-fill {
    fill: #f9fafb;
}

/* Section Subheadings (Gulf Own Style) */
.section-subheading {
  font-family: 'Poppins', sans-serif;
  color: var(--secondary-blue);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

/* Page Header */
.page-header {
  padding: 80px 0 60px;
  background: var(--bg-light);
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.page-header h1 {
  font-size: 3.5rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
}
.page-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Services / Features Cards (Gulf Own Style) */
.service-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.02);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(30, 55, 129, 0.1);
}
.service-card .icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(50, 190, 226, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-blue);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
.service-card:hover .icon-wrapper {
  background: var(--primary-blue);
  color: white;
}

/* Process Steps (Timeline Design) */
.process-list {
  counter-reset: process-counter;
  list-style: none;
  padding: 0;
  position: relative;
}
.process-list::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 10px;
  bottom: 20px;
  width: 2px;
  background: rgba(30, 55, 129, 0.1);
}
.process-list-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 40px;
}
.process-list-item:last-child {
  margin-bottom: 0;
}
.process-list-item::before {
  counter-increment: process-counter;
  content: "0" counter(process-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: white;
  border: 2px solid var(--secondary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  z-index: 2;
  box-shadow: 0 4px 10px rgba(50, 190, 226, 0.2);
}
.process-list-item h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  padding-top: 6px;
}

/* Stats (Minimal Text) */
.stat-minimal {
  text-align: left;
  border-left: 1px solid rgba(0,0,0,0.1);
  padding-left: 20px;
}
.stat-minimal h3 {
  font-size: 3rem;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-minimal p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* Testimonials Editorial */
.testimonial-editorial {
  padding: 40px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.testimonial-editorial:last-child {
  border-bottom: none;
}
.testimonial-editorial h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 30px;
}
.testimonial-author {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--primary-blue);
}
.testimonial-author span {
  color: var(--text-muted);
  font-weight: 400;
}

/* Contact / Form */
.contact-form .form-control, 
.contact-form .form-select {
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  border-radius: 0;
  padding: 15px 0;
  font-size: 1rem;
  background: transparent;
  font-family: 'Poppins', sans-serif;
}
.contact-form .form-control:focus, 
.contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--primary-blue);
}
.contact-form label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--text-muted);
}

.contact-details-list {
  list-style: none;
  padding: 0;
}
.contact-details-list li {
  margin-bottom: 30px;
}
.contact-details-list h5 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

/* Footer */
footer {
  background: var(--text-dark);
  color: #9ca3af;
  padding: 80px 0 30px;
  font-size: 0.9rem;
}
.footer-brand img {
  opacity: 0.9;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 15px;
}
.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: white;
}
.social-links a {
  color: white;
  margin-right: 20px;
  font-size: 1.2rem;
  transition: opacity 0.3s ease;
}
.social-links a:hover {
  opacity: 0.7;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .hero h1 { font-size: 3rem; }
  .navbar { background: white; padding: 0.8rem 0; }
  .navbar-brand, .nav-link { color: var(--text-dark) !important; }
  .navbar-toggler { border: none; }
  .navbar-collapse {
    background: white;
    padding: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 15px;
  }
  .nav-link { margin: 10px 0; }
}

/* Mobile Optimization Overrides */
@media (max-width: 768px) {
  /* Typography */
  .hero h1 { font-size: 2.5rem !important; }
  .page-header h1 { font-size: 2.2rem !important; }
  h2 { font-size: 1.8rem !important; line-height: 1.3 !important; }
  h3 { font-size: 1.5rem !important; }
  
  /* Hero Buttons Stacking */
  .hero .btn { 
    display: block; 
    width: 100%; 
    margin-bottom: 15px; 
    margin-right: 0 !important; 
  }
  
  /* Spacing */
  .section-padding { padding: 60px 0 !important; }
  
  .stat-minimal { 
    text-align: center; 
    border-left: none; 
    border-bottom: 1px solid rgba(0,0,0,0.1); 
    padding-bottom: 20px; 
    padding-left: 0; 
  }
  .stat-minimal:last-child { border-bottom: none; }
  
  /* Footer */
  footer { text-align: center; }
  .footer-links { margin-bottom: 30px; }
  .social-links { margin-bottom: 30px; }
}

@media (max-width: 991px) {
  .navbar-toggler { border: none !important; padding: 0 !important; }
  .navbar-toggler:focus { box-shadow: none !important; outline: none !important; }
  .navbar-collapse {
    background: white;
    padding: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 15px;
    text-align: center;
  }
  .btn-outline-custom { background: var(--primary-blue); color: white !important; border: none; }
}

/* ---------------------------------------------------
   Gulf Own Layout Specific Classes
   --------------------------------------------------- */

.text-accent { color: var(--secondary-blue); font-style: italic; }

/* ---------------------------------------------------
   Vector & UX Layout Classes
   --------------------------------------------------- */

/* Massive Vector Icons */
.icon-massive {
  font-size: 5rem;
  background: var(--logo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

/* Vector Feature Box (Replaces curved images) */
.vector-feature-box {
  background: rgba(30, 55, 129, 0.03);
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
  border: 1px dashed rgba(30, 55, 129, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.vector-feature-box i {
  font-size: 8rem;
  opacity: 0.8;
  background: var(--logo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Vector Cards (Replaces image overlays) */
.vector-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.02);
  transition: all 0.3s ease;
  height: 100%;
}
.vector-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(30, 55, 129, 0.08);
}
.vector-card .icon-wrapper-large {
  width: 80px;
  height: 80px;
  background: rgba(50, 190, 226, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary-blue);
  font-size: 2rem;
  transition: all 0.3s ease;
}
.vector-card:hover .icon-wrapper-large {
  background: var(--primary-blue);
  color: white;
}

/* Minimal Circle Mask */
.circle-vector-mask {
  border-radius: 50%;
  width: 250px;
  height: 250px;
  background: rgba(50, 190, 226, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 2px dashed rgba(30, 55, 129, 0.1);
}
.circle-vector-mask i {
  font-size: 6rem;
  background: var(--logo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Icon Card */
.icon-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.02);
}
.icon-card i {
  font-size: 2.5rem;
  background: var(--logo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

/* Contact Box Footer */
.contact-footer-box {
  background: var(--text-dark);
  color: white;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.contact-footer-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: var(--logo-gradient-horizontal);
}

/* ---------------------------------------------------
   Mobile Responsiveness & UX Polish
   --------------------------------------------------- */

@media (max-width: 991px) {
  .hero {
    min-height: 80vh;
    padding-top: 150px;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem !important;
  }
  .section-padding {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .top-bar {
    display: none;
  }
  .navbar-brand img {
    height: 80px !important;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .icon-massive {
    font-size: 3.5rem;
  }
  .vector-feature-box {
    padding: 40px 20px;
    margin-bottom: 30px;
  }
  .vector-feature-box i {
    font-size: 5rem;
  }
  .circle-vector-mask {
    width: 180px;
    height: 180px;
  }
  .circle-vector-mask i {
    font-size: 4rem;
  }
  .vector-card {
    padding: 30px 20px;
  }
  .contact-footer-box {
    margin-top: 40px;
    padding: 30px 20px;
  }
  .section-subheading {
    font-size: 0.8rem;
  }
  h2 {
    font-size: 1.6rem !important;
  }
  .fs-5 {
    font-size: 1rem !important;
  }
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  .row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
  .circle-vector-mask {
    width: 150px;
    height: 150px;
    max-width: 100%;
  }
  .circle-vector-mask i {
    font-size: 3rem;
  }
  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
    height: auto;
    min-height: 100vh;
  }
}

/* ---------------------------------------------------
   Premium Animations, Interactive Effects & Image Hover
   --------------------------------------------------- */

:root {
  --highlight-gold: #f39c12;
  --glow-shadow: rgba(30, 55, 129, 0.15);
  --gradient-gold: linear-gradient(135deg, #f39c12, #f1c40f);
  --gradient-premium: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

/* Premium Image Containers with Shimmer/Zoom & Continuous Floating */
.premium-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 4px solid #ffffff;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  animation: float-slow 8s ease-in-out infinite alternate;
}
.premium-image-container::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  z-index: 2;
}
.premium-image-container:hover {
  animation-play-state: paused;
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(30, 55, 129, 0.22);
  border-color: var(--secondary-blue);
}
.premium-image-container:hover::before {
  animation: shine-sweep 1.2s;
}
.premium-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.premium-image-container:hover .premium-image {
  transform: scale(1.08);
}

@keyframes float-slow {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

@keyframes shine-sweep {
  100% { left: 125%; }
}

/* Interactive Glowing Lift on Cards */
.vector-card, .icon-card, .service-card, .service-item-minimal {
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
  position: relative;
  z-index: 1;
}
.vector-card:hover, .icon-card:hover, .service-card:hover, .service-item-minimal:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 40px rgba(50, 190, 226, 0.15) !important;
  border-color: var(--secondary-blue) !important;
}
.vector-card::after, .icon-card::after, .service-card::after, .service-item-minimal::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border-radius: inherit;
  box-shadow: 0 0 25px rgba(50, 190, 226, 0.3);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.vector-card:hover::after, .icon-card:hover::after, .service-card:hover::after, .service-item-minimal:hover::after {
  opacity: 1;
}

/* Stats Counter Section CSS */
.stats-counter-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #111b3d 50%, var(--accent-color) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.stats-counter-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(149, 73, 146, 0.25) 0%, transparent 50%);
  pointer-events: none;
}
.counter-box {
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}
.counter-box:hover {
  transform: translateY(-5px);
}
.counter-number {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #ffffff, var(--secondary-blue), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 10px;
}
.counter-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
.counter-icon {
  font-size: 2.5rem;
  background: var(--logo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  display: block;
  animation: pulse-glow 2s infinite alternate;
}

@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.08); opacity: 1; text-shadow: 0 0 15px rgba(149, 73, 146, 0.4); }
}

/* Sleek Hover Underline on Menu Links */
.navbar .nav-link {
  position: relative;
  padding-bottom: 5px;
}
.navbar .nav-link::after {
  height: 2px !important;
  background-color: var(--secondary-blue) !important;
}

/* Buttons micro-animation */
.btn-primary-custom, .btn-outline-custom, .btn-outline-dark-custom {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary-custom::before, .btn-outline-custom::before, .btn-outline-dark-custom::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; width: 0; height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}
.btn-primary-custom:hover::before, .btn-outline-custom:hover::before, .btn-outline-dark-custom:hover::before {
  width: 300%;
  height: 300%;
}

/* Service Image Cards System */
.service-image-card {
  background: var(--logo-gradient);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.service-image-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--accent-color) 100%);
  z-index: 10;
}

.service-image-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(30, 55, 129, 0.15) !important;
  border-color: var(--accent-color);
}

.service-card-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-card-img-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  z-index: 2;
  transition: none;
}

.service-image-card:hover .service-card-img-wrapper::before {
  animation: shine-sweep 1.2s;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-image-card:hover .service-card-img {
  transform: scale(1.08);
}

.service-card-icon-badge {
  position: absolute;
  bottom: -22px;
  right: 20px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--accent-color) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(30, 55, 129, 0.2);
  z-index: 3;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-image-card:hover .service-card-icon-badge {
  transform: translateY(-5px) rotate(360deg);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  transition: color 0.3s ease;
}

.service-image-card:hover .service-card-title {
  color: var(--secondary-blue);
}

.service-card-text {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  color: rgba(255, 255, 255, 0.85) !important;
}

.service-card-link {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  transition: color 0.3s ease;
}

.service-card-link:hover {
  color: var(--secondary-blue);
}

.transition-arrow {
  transition: transform 0.3s ease;
}

.service-card-link:hover .transition-arrow {
  transform: translateX(5px);
}

