:root {
  --color-primary: #006596;
  --color-secondary: #0c8baf;
  --color-accent: #0e548b;
  --color-light: #f4feff;
}

html,
body {
  overflow-x: hidden;
  margin: 0px;
  padding: 0px;
}



html {
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
.noto {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}



.hero-bg,
.cta {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
}

.buiss-gold {
  color: var(--color-primary);
}

/* Cards icons  */
.all-icons img {
  width: 80px;
  height: 80px;
  object-fit: cover; 
  border: 4px solid #0d6395;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}


.all-icons img:hover {
  padding: 4px;
  border: 4px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(to right, silver, #be1f2e) border-box;
  filter: brightness(1.1);
}


/* Border-right  */
.custom-grid>.feature-card {
  border-right: 2px solid #0d78a363;
}

.custom-grid>.feature-card:nth-child(4) {
  border-right: none;
}


.features-section {
  background-color: var(--color-light);
}

/* Feature Cards */
.feature-card {
  transition: all 0.3s ease;
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Smooth transitions for interactive elements */
a,
button,
.transition-all {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Optimize images to not cause layout shifts */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Custom container for better content width management */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Footer specific styles */
.bg-customBlue {
  background-color: #badbe6;
}

.bg-customLightBlue {
  background-color: #eaf4f7;
}

.text-customDarkText {
  color: #3d3d3d;
}

.text-customButtonText {
  color: #007da6;
}

.hover\:text-customLinkHover:hover {
  color: #ffffff;
}

.hover\:text-customButtonText:hover {
  color: #007da6;
}

/* Lazy loading for images */
img.lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img.lazy.loaded {
  opacity: 1;
}