/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css');

/* Variables */
:root {
  --primary: #1a365d;
  --primary-light: #2a4a7d;
  --primary-dark: #0a264d;
  --secondary: #e4a81f;
  --secondary-light: #f4b82f;
  --secondary-dark: #d4980f;
  --dark: #2e363a;
  --light: #f8f9fa;
  --gray: #6c757d;
  --text: #333;
  --text-light: #6c757d;
  --white: #ffffff;
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
  --shadow: 0 5px 15px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
}
.logo{
  position: absolute;
  left: 10px;
}
/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

/* Utility classes */
.min-vh-80 {
  min-height: 80vh;
}

.divider {
  height: 4px;
  width: 70px;
  background-color: var(--secondary);
  margin: 1rem 0;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.btn {
  border-radius: var(--border-radius);
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

.btn-outline-light {
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary);
}

.btn-link {
  color: var(--primary);
  text-decoration: none;
  padding: 0;
}

.btn-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Navbar */
/* Modern Navbar Styling */
#mainNav {
  padding: 1rem 0;
  transition: all 0.3s ease;
  background-color: transparent;
}

/* Scrolled state */
#mainNav.navbar-scrolled {
  background-color: white;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  padding: 0.7rem 0;
}

/* Logo styling */
.navbar-brand {
  padding: 0;
  margin-right: 2rem;
}

.logo-container {
  height: 50px;
  position: relative;
}

.logo-light, .logo-dark {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
}

.logo-light {
  opacity: 1;
}

.logo-dark {
  opacity: 0;
}

#mainNav.navbar-scrolled .logo-light {
  opacity: 0;
}

#mainNav.navbar-scrolled .logo-dark {
  opacity: 1;
}

/* Navbar toggler for mobile */
.navbar-toggler {
  border: none;
  background: transparent;
  width: 40px;
  height: 40px;
  padding: 0;
  position: relative;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: white;
  margin: 5px auto;
  transition: all 0.3s ease;
  border-radius: 2px;
}

#mainNav.navbar-scrolled .toggler-line {
  background-color: #1a365d;
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav items */
.navbar-nav {
  align-items: center;
}

.nav-item {
  position: relative;
  margin: 0 0.2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.8rem !important;
  position: relative;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

#mainNav.navbar-scrolled .nav-link {
  color: #1a365d !important;
}

.nav-indicator {
  position: absolute;
  left: 0.8rem;
  bottom: 0.3rem;
  height: 3px;
  width: 0;
  background-color: #e4a81f;
  border-radius: 3px;
  transition: all 0.3s ease;
  opacity: 0;
}

.nav-link:hover .nav-indicator,
.nav-item.active .nav-link .nav-indicator {
  width: calc(100% - 1.6rem);
  opacity: 1;
}

.nav-text {
  position: relative;
  z-index: 1;
}

/* Dropdown styling */
.dropdown-menu {
  padding: 0;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
  min-width: 600px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  display: block;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-inner {
  padding: 1.5rem;
}

.dropdown-header {
  padding: 0 0 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
}

.dropdown-header h6 {
  color: #1a365d;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.dropdown-header p {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: rgba(26, 54, 93, 0.05);
  transform: translateY(-3px);
}

.dropdown-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(26, 54, 93, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.2rem;
  color: #1a365d;
  transition: all 0.3s ease;
}

.dropdown-item:hover .dropdown-icon {
  background-color: #1a365d;
  color: white;
}

.dropdown-content h6 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: #1a365d;
}

.dropdown-content p {
  font-size: 0.8rem;
  color: #6c757d;
  margin-bottom: 0;
}

/* CTA button in navbar */
.nav-cta {
  margin-left: 0.5rem;
}

.nav-cta .btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  background: linear-gradient(45deg, #e4a81f, #f4c542);
  border: none;
  color: #1a365d;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(228, 168, 31, 0.3);
}

.nav-cta .btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.nav-cta .btn:hover i {
  transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  #mainNav {
    background-color: white;
    padding: 0.7rem 0;
  }
  
  .logo-light {
    opacity: 0;
  }
  
  .logo-dark {
    opacity: 1;
  }
  
  .toggler-line {
    background-color: #1a365d;
  }
  
  .navbar-collapse {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-top: 1rem;
    max-height: 80vh;
    overflow-y: auto;
  }
  
  .nav-link {
    color: #1a365d !important;
    padding: 0.8rem !important;
  }
  
  .dropdown-menu {
    min-width: 100%;
    position: static !important;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    margin-top: 0;
    padding: 0 0 0 1rem;
    border-left: 2px solid rgba(26, 54, 93, 0.1);
  }
  
  .dropdown-menu-inner {
    padding: 1rem 0;
  }
  
  .dropdown-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-cta {
    margin-top: 1rem;
    margin-left: 0;
  }
  
  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }
}



/* Hero Section */
/* Advanced Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  overflow: hidden;
  background-color: #f8f9fa;
}

/* Background elements */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0c1f35 0%, #1a365d 100%);
  opacity: 0.97;
}

/* Animated background shapes */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(228, 168, 31, 0.15), rgba(228, 168, 31, 0.05));
  animation: float 15s infinite ease-in-out;
}

.shape-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -80px;
  animation-delay: -5s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  bottom: 30%;
  right: 20%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(10px) rotate(-5deg);
  }
  75% {
    transform: translateY(-15px) rotate(3deg);
  }
}

/* Container styling */
.hero-container {
  position: relative;
  z-index: 1;
}

/* Content column */
.hero-content-col {
  position: relative;
  z-index: 2;
}

.hero-content {
  color: white;
  padding-right: 2rem;
}

/* Professional badge */
.hero-badge {
  display: inline-block;
  background: rgba(228, 168, 31, 0.2);
  border-left: 3px solid #e4a81f;
  padding: 0.5rem 1rem;
  border-radius: 0 4px 4px 0;
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: #e4a81f;
  transform: translateY(0);
  animation: fadeInUp 0.8s ease forwards;
}

/* Animated text reveal */
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  overflow: hidden;
  color: gold;
}

.text-reveal {
  display: block;
  transform: translateY(100%);
  opacity: 0;
  animation: revealText 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

@keyframes revealText {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 90%;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

/* CTA buttons */
.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}

.btn-hero {
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%) skewX(-15deg);
  transition: all 0.5s ease;
}

.btn-hero:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

.btn-primary.btn-hero {
  background: linear-gradient(45deg, #e4a81f, #f4c542);
  border: none;
  color: #1a365d;
  box-shadow: 0 5px 15px rgba(228, 168, 31, 0.3);
}

.btn-primary.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(228, 168, 31, 0.4);
}

.btn-outline.btn-hero {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-outline.btn-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Stats section */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1s forwards;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  right: -1.25rem;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #e4a81f;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Image column */
.hero-image-col {
  position: relative;
  z-index: 2;
}

.hero-image-container {
  position: relative;
  height: 100%;
  opacity: 0;
  animation: fadeIn 1s ease 0.5s forwards;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.5s ease;
}

.hero-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0);
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26, 54, 93,), rgba(26, 54, 93,));
}

/* Floating elements */
.floating-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  max-width: 280px;
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(26, 54, 93, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #1a365d;
}

.card-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: #1a365d;
}

.card-content p {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 0;
}

.floating-badge {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  /*animation: float2 6s infinite ease-in-out;
  animation-delay: 2s;*/
}

.floating-logo {
  width: 80%;
  height: auto;
}

@keyframes float2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  z-index: 2;
  animation: fadeInUp 0.8s ease 1.2s forwards;
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6));
  margin-bottom: 8px;
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% {
    height: 0;
    opacity: 0;
  }
  50% {
    height: 50px;
    opacity: 1;
  }
  100% {
    height: 50px;
    opacity: 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-image {
    height: 450px;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .hero-image {
    height: 400px;
  }
  .floating-card {
    display: none;
  }
  .scroll-indicator{
    display: none;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 80px 0 50px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
  }
  
  .stat-item:not(:last-child)::after {
    display: none;
  }
  
  .floating-card {
    display: none;
  }
  
  .floating-badge {
    right: 20px;
    top: 20px;
    width: 80px;
    height: 80px;
  }
  .scroll-indicator{
    display: none;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 70px 0 40px;
  }
  
  .hero-badge {
    font-size: 0.8rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-image {
    height: 350px;
  }
  
  .floating-card {
    display: none;
  }
  
  .card-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .floating-badge {
    width: 60px;
    height: 60px;
  }
  .scroll-indicator{
    display: none;
  }
  .logo{
  display: none;
}
}

/* About Section */
/* About Section Styling */
.about-section {
  position: relative;
  padding: 120px 0;
  background-color: #f8f9fa;
  overflow: hidden;
}

/* Background pattern elements */
.section-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.pattern-circle {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 30px solid rgba(26, 54, 93, 0.03);
}

.pattern-line {
  position: absolute;
  bottom: 50px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-left: 20px solid rgba(228, 168, 31, 0.05);
  transform: rotate(45deg);
}

/* Image column styling */
.about-image-col {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.about-image-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image-main img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.7s ease;
}

.about-image-wrapper:hover .about-image-main img {
  transform: scale(1.05);
}

.image-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26, 54, 93, 0), rgba(26, 54, 93, 0.7));
}

.about-image-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  background: white;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(228, 168, 31, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e4a81f;
  font-size: 1.2rem;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-text span:first-child {
  font-size: 0.8rem;
  color: #6c757d;
}

.badge-text span:last-child {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a365d;
}

.experience-counter {
  position: absolute;
  bottom: -20px;
  left: 30px;
  background: #1a365d;
  color: white;
  border-radius: 12px;
  padding: 15px 25px;
  box-shadow: 0 10px 30px rgba(26, 54, 93, 0.2);
  z-index: 1;
}

.counter-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
  background: linear-gradient(90deg, #e4a81f, #f4c542);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.counter-text {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Content column styling */
.about-content-col {
  display: flex;
  align-items: center;
}

.about-content {
  padding-left: 30px;
}

.section-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #e4a81f;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a365d;
  margin-bottom: 30px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #e4a81f;
  border-radius: 2px;
}

.section-title .highlight {
  position: relative;
  display: inline-block;
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(228, 168, 31, 0.2);
  z-index: -1;
}

.about-description {
  margin-top: 30px;
}

.about-description .lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #495057;
  margin-bottom: 30px;
}

/* Feature items */
.about-features {
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(26, 54, 93, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: #1a365d;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: #1a365d;
  color: white;
  transform: translateY(-3px);
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Services summary */
.about-services-summary {
  background: rgba(26, 54, 93, 0.02);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
}

.about-services-summary h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a365d;
  margin-bottom: 15px;
}

.services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-tag {
  display: inline-block;
  padding: 8px 15px;
  background: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #1a365d;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-tag:hover {
  background: #1a365d;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(26, 54, 93, 0.2);
}

/* CTA button */
.about-cta {
  margin-top: 30px;
}

.btn-outline-primary {
  border: 2px solid #1a365d;
  color: #1a365d;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: #1a365d;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(26, 54, 93, 0.2);
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
  .about-content {
    padding-left: 15px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .about-image-main img {
    height: 450px;
  }
}

@media (max-width: 991.98px) {
  .about-section {
    padding: 80px 0;
  }
  
  .about-content {
    padding-left: 0;
    margin-top: 60px;
  }
  
  .about-image-main img {
    height: 400px;
  }
}

@media (max-width: 767.98px) {
  .about-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .about-description .lead {
    font-size: 1rem;
  }
  
  .about-image-badge {
    right: 0;
  }
  
  .experience-counter {
    left: 20px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .feature-content h4 {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .about-image-main img {
    height: 350px;
  }
  
  .about-image-badge {
    top: 15px;
    right: 15px;
    padding: 10px;
  }
  
  .badge-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  
  .experience-counter {
    left: 15px;
    padding: 10px 20px;
  }
  
  .counter-number {
    font-size: 1.5rem;
  }
  
  .counter-text {
    font-size: 0.8rem;
  }
  
  .services-tags {
    gap: 8px;
  }
  
  .service-tag {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

/* Services Section */
/* Services Section Styling */
.services-section {
  position: relative;
  padding: 100px 0;
  background-color: white;
}

/* Section header */
.section-header {
  margin-bottom: 60px;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #e4a81f;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a365d;
  margin-bottom: 20px;
}

.section-title .highlight {
  position: relative;
  display: inline-block;
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(228, 168, 31, 0.2);
  z-index: -1;
}

.section-description {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* Service card */
.service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card-inner {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.service-card:hover .service-card-inner {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(26, 54, 93, 0.1);
}

/* Service icon */
.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: rgba(26, 54, 93, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
  color: #1a365d;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: #1a365d;
  color: white;
  transform: translateY(-5px) scale(1.05);
}

/* Service content */
.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.service-description {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 20px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Service features */
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.feature-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(26, 54, 93, 0.05);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #1a365d;
  transition: all 0.3s ease;
}

.service-card:hover .feature-tag {
  background: rgba(26, 54, 93, 0.1);
}

/* Service link */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a365d;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.service-link i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: #e4a81f;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Background icon */
.service-bg-icon {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 8rem;
  color: rgba(26, 54, 93, 0.03);
  z-index: 0;
  transition: all 0.5s ease;
}

.service-card:hover .service-bg-icon {
  transform: translateY(-10px) rotate(10deg);
  color: rgba(26, 54, 93, 0.05);
}

/* Services CTA */
.services-cta {
  background: linear-gradient(135deg, #1a365d, #2a4a7d);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 15px 40px rgba(26, 54, 93, 0.2);
}

.cta-content {
  color: white;
}

.cta-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.services-cta .btn {
  background: linear-gradient(45deg, #e4a81f, #f4c542);
  border: none;
  color: #1a365d;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.services-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(228, 168, 31, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 991.98px) {
  .services-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .services-cta {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-content {
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .services-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .service-card-inner {
    padding: 30px 20px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .service-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 575.98px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .services-cta {
    padding: 30px 20px;
  }
}
/* CTA Section Styling */
.cta-section {
  position: relative;
  padding: 100px 0;
  background-color: #f8f9fa;
  overflow: hidden;
}

/* CTA Wrapper */
.cta-wrapper {
  position: relative;
  background: linear-gradient(135deg, #1a365d, #2a4a7d);
  border-radius: 20px;
  padding: 60px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(26, 54, 93, 0.2);
}

/* Background elements */
.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cta-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -50px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: 10%;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  left: 20%;
  background: rgba(228, 168, 31, 0.05);
}

/* CTA Content */
.cta-content {
  position: relative;
  z-index: 1;
  color: white;
  padding-right: 30px;
}

.cta-badge {
  display: inline-block;
  background: rgba(228, 168, 31, 0.2);
  border-radius: 50px;
  padding: 8px 16px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e4a81f;
}

.cta-badge i {
  margin-right: 5px;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: gold;
}

.cta-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Feature items */
.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-icon {
  color: #e4a81f;
  font-size: 1.2rem;
}

.feature-text {
  font-size: 0.95rem;
  font-weight: 500;
}

/* CTA Action */
.cta-action {
  position: relative;
  z-index: 1;
}

.action-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.action-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 5px;
  text-align: center;
}

.action-subtitle {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 25px;
  text-align: center;
}

/* Action options */
.action-options {
  margin-bottom: 30px;
}

.btn-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(45deg, #e4a81f, #f4c542);
  border: none;
  color: #1a365d;
  box-shadow: 0 5px 15px rgba(228, 168, 31, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(228, 168, 31, 0.4);
}

.btn-outline-primary {
  background: transparent;
  border: 2px solid #1a365d;
  color: #1a365d;
}

.btn-outline-primary:hover {
  background: rgba(26, 54, 93, 0.05);
  transform: translateY(-3px);
}

.option-divider {
  position: relative;
  text-align: center;
  margin: 15px 0;
}

.option-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.option-divider span {
  position: relative;
  background: white;
  padding: 0 15px;
  font-size: 0.9rem;
  color: #6c757d;
}

/* Testimonial */
/* Testimonials Section Styling */
.testimonials-section {
  position: relative;
  padding: 100px 0;
  background-color: #f8f9fa;
  overflow: hidden;
}

/* Section header */
.section-header {
  margin-bottom: 60px;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #e4a81f;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a365d;
  margin-bottom: 20px;
}

.section-title .highlight {
  position: relative;
  display: inline-block;
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(228, 168, 31, 0.2);
  z-index: -1;
}

.section-description {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

/* Testimonials wrapper */
.testimonials-wrapper {
  position: relative;
  padding: 40px 0;
}

/* Background pattern */
.testimonials-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(26, 54, 93, 0.03) 2px, transparent 2px);
  background-size: 30px 30px;
}

/* Testimonials slider */
.testimonials-slider {
  position: relative;
  padding: 30px 0;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  padding: 15px;
}

/* Testimonial card */
.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Testimonial header */
.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #1a365d, #2a4a7d);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-placeholder {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.client-details {
  display: flex;
  flex-direction: column;
}

.client-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 5px;
}

.client-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 0;
}

.testimonial-rating {
  color: #e4a81f;
  font-size: 0.9rem;
}

/* Testimonial content */
.testimonial-content {
  position: relative;
  padding: 20px 0;
  flex-grow: 1;
}

.quote-icon {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2rem;
  color: rgba(26, 54, 93, 0.05);
  transform: translateY(-50%);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #495057;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* Testimonial footer */
.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.service-used {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(26, 54, 93, 0.05);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #1a365d;
}

.testimonial-date {
  font-size: 0.85rem;
  color: #6c757d;
}

/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.slider-pagination {
  display: flex;
  gap: 8px;
}

.slider-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(26, 54, 93, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-pagination-bullet-active {
  background: #1a365d;
  width: 30px;
  border-radius: 10px;
}

.slider-buttons {
  display: flex;
  gap: 15px;
}

.slider-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #1a365d;
  font-size: 1.2rem;
}

.slider-button:hover {
  background: #1a365d;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(26, 54, 93, 0.2);
}

/* Testimonials summary */
.testimonials-summary {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-item {
  text-align: center;
}

.summary-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a365d;
  margin-bottom: 10px;
  line-height: 1;
}

.summary-text {
  font-size: 1rem;
  color: #6c757d;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .swiper-slide {
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .swiper-slide {
    width: 33.333%;
  }
}

@media (max-width: 991.98px) {
  .testimonials-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .testimonials-summary {
    gap: 40px;
  }
  
  .summary-number {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .testimonials-summary {
    flex-direction: column;
    gap: 30px;
  }
  
  .summary-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  
  .summary-number {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .testimonial-rating {
    margin-left: 65px;
  }
  
  .testimonial-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
  .cta-title {
    font-size: 2.2rem;
  }
  
  .action-card {
    padding: 30px;
  }
}

@media (max-width: 991.98px) {
  .cta-section {
    padding: 80px 0;
  }
  
  .cta-wrapper {
    padding: 40px;
  }
  
  .cta-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .cta-features {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-wrapper {
    padding: 30px;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .action-card {
    padding: 25px;
  }
}

@media (max-width: 575.98px) {
  .cta-wrapper {
    padding: 25px;
  }
  
  .cta-badge {
    font-size: 0.8rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .feature-item {
    width: 100%;
  }
}
/* Testimonials */
.testimonial-content {
  position: relative;
  border-radius: var(--border-radius);
}

.testimonial-content:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--white);
}

.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev {
  left: -20px;
}

.carousel-control-next {
  right: -20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) grayscale(100%) brightness(200%);
}

/* Contact Section */
.contact-info .icon-box {
  width: 50px;
  height: 50px;
}

/* Footer */
/* Footer Styling */
.site-footer {
  position: relative;
  background: linear-gradient(135deg, #1a365d, #2a4a7d);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  overflow: hidden;
}

/* Footer shapes */
.footer-shape-1,
.footer-shape-2 {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  z-index: 0;
}

.footer-shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
}

.footer-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -100px;
}

/* Footer top section */
.footer-top {
  position: relative;
  padding: 80px 0 50px;
  z-index: 1;
}

/* Footer brand */
.footer-brand {
  margin-bottom: 30px;
}

.footer-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Footer contact */
.footer-contact h4 {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #e4a81f;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #e4a81f;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-details {
  flex-grow: 1;
}

.contact-details span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 5px;
}

.contact-details a,
.contact-details address {
  color: white;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 0;
  font-style: normal;
  transition: all 0.3s ease;
}

.contact-details a:hover {
  color: #e4a81f;
}

/* Footer links */
.footer-links h4,
.footer-services h4,
.footer-newsletter h4 {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-newsletter h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #e4a81f;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 12px;
}

.footer-links ul li a,
.footer-services ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links ul li a i,
.footer-services ul li a i {
  font-size: 0.8rem;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
  color: #e4a81f;
  padding-left: 5px;
}

.footer-links ul li a:hover i,
.footer-services ul li a:hover i {
  transform: translateX(3px);
}

/* Newsletter */
.footer-newsletter p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
  margin-bottom: 30px;
}

.newsletter-form .input-group {
  border-radius: 8px;
  overflow: hidden;
}

.newsletter-form .form-control {
  border: none;
  padding: 12px 15px;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 8px 0 0 8px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn {
  background: #e4a81f;
  border: none;
  color: #1a365d;
  font-weight: 600;
  padding: 0 20px;
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
  background: #f4c542;
}

/* Social links */
.social-links h5 {
  font-size: 1rem;
  color: white;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #e4a81f;
  color: #1a365d;
  transform: translateY(-5px);
}

/* Footer bottom */
.footer-bottom {
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  font-size: 0.9rem;
  z-index: 1;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
}

.copyright strong {
  color: white;
  font-weight: 600;
}

.credits {
  text-align: right;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #e4a81f;
}

.developer-credit {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.developer-credit a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.developer-credit a:hover {
  color: #e4a81f;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background: #e4a81f;
  color: #1a365d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  text-decoration: none;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #f4c542;
  transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .footer-top {
    padding: 60px 0 30px;
  }
  
  .footer-info,
  .footer-links,
  .footer-services,
  .footer-newsletter {
    margin-bottom: 40px;
  }
}

@media (max-width: 767.98px) {
  .credits {
    text-align: left;
    margin-top: 15px;
  }
  
  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 575.98px) {
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .back-to-top {
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Responsive */
@media (max-width: 1199.98px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .about-image-container, 
  .procjene-img, 
  .pokretna-img, 
  .pravna-img, 
  .racun-img, 
  .revizija-img, 
  .studije-img {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 6rem 0 3rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section h1 {
    font-size: 1.75rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .about-overlay h4 {
    font-size: 0.9rem;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease-out forwards;
}

/* Additional styles for specific elements */
.parallax-mobile {
  display: none;
}

@media (max-width: 768px) {
  .parallax {
    display: none;
  }
  
  .parallax-mobile {
    display: block;
    min-height: 400px;
    background: url("../img/bez.jpg");
    background-size: cover;
    background-position: center;
  }
}

/* Fix for horizontal overflow */
.container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow-x: hidden;
}

.container-pocetna {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Line dividers */
.line2 {
  width: 100px;
  height: 3px;
  background-color: var(--secondary);
  margin: 2rem auto;
}

/*procjena.php*/
/* Page Header Styling */
.page-header {
  position: relative;
  background: linear-gradient(135deg, #1a365d, #2a4a7d);
  padding: 80px 0;
  color: white;
  overflow: hidden;
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: gold;
}

.page-breadcrumb {
  display: flex;
  justify-content: center;
}

.breadcrumb {
  background: transparent;
  margin-bottom: 0;
  padding: 0;
}

.breadcrumb-item {
  font-size: 0.95rem;
  font-weight: 500;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #e4a81f;
}

.breadcrumb-item.active {
  color: #e4a81f;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.page-header-shape-1,
.page-header-shape-2 {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.page-header-shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: 10%;
}

.page-header-shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: 10%;
}

/* Service Overview Styling */
.service-overview {
  padding: 100px 0;
  background-color: white;
}

.section-badge {
  display: inline-block;
  background: rgba(228, 168, 31, 0.1);
  color: #e4a81f;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a365d;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-description {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 30px;
  line-height: 1.6;
}

.service-highlights {
  margin-top: 40px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: rgba(26, 54, 93, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: #e4a81f;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.highlight-text h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 8px;
}

.highlight-text p {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 0;
}

.service-overview-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 0;
  width: 130px;
  height: 130px;
  background: #e4a81f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(228, 168, 31, 0.3);
}

.badge-content {
  text-align: center;
  color: #1a365d;
}

.badge-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}

.badge-text {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}

.image-pattern {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(#e4a81f 2px, transparent 2px);
  background-size: 15px 15px;
  z-index: -1;
}

/* Service Details Styling */
.service-details {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.service-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 20px;
}

.service-content p {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-image-gallery {
  margin: 40px 0;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
}

.gallery-overlay h5 {
  margin-bottom: 0;
  font-weight: 600;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.property-types {
  margin-top: 30px;
}

.property-type-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.property-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.property-icon {
  width: 60px;
  height: 60px;
  background: rgba(26, 54, 93, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #1a365d;
  font-size: 1.5rem;
}

.property-type-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 15px;
}

.property-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.property-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #6c757d;
}

.property-list li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e4a81f;
}

/* Sidebar Styling */
.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.sidebar-widget h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 20px;
}

.sidebar-widget p {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 20px;
}

.contact-info {
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-item .icon {
  width: 40px;
  height: 40px;
  background: rgba(26, 54, 93, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #1a365d;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item .text h5 {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 5px;
}

.contact-item .text a {
  font-size: 1rem;
  font-weight: 600;
  color: #1a365d;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item .text a:hover {
  color: #e4a81f;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-primary {
  background: linear-gradient(45deg, #e4a81f, #f4c542);
  border: none;
  color: #1a365d;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(228, 168, 31, 0.3);
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 12px;
}

.services-list li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.services-list li a {
  display: flex;
  align-items: center;
  color: #1a365d;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.services-list li a i {
  margin-right: 10px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.services-list li a:hover {
  color: #e4a81f;
  padding-left: 5px;
}

.services-list li a:hover i {
  transform: translateX(3px);
}

.sidebar-testimonial {
  background: rgba(26, 54, 93, 0.02);
  border-radius: 8px;
  padding: 20px;
}

.testimonial-content {
  margin-bottom: 15px;
}

.rating {
  color: #e4a81f;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.testimonial-content p {
  font-size: 0.9rem;
  font-style: italic;
  color: #6c757d;
  margin-bottom: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a365d;
}

.author-location {
  font-size: 0.85rem;
  color: #6c757d;
}

/* Process Section Styling */
.process-section {
  padding: 100px 0;
  background-color: white;
}

.process-steps {
  margin-top: 60px;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 0 15px;
}

.step-number {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(26, 54, 93, 0.05);
  line-height: 1;
  margin-bottom: 20px;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(26, 54, 93, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #1a365d;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.process-step:hover .step-icon {
  background: #1a365d;
  color: white;
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(26, 54, 93, 0.2);
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 15px;
}

.step-description {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 0;
}

/* FAQ Section Styling */
.faq-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 8px !important;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a365d;
  background-color: white;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #1a365d;
  background-color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.1);
}

.accordion-button::after {
  background-size: 16px;
  transition: all 0.3s ease;
}

.accordion-body {
  padding: 20px 25px;
  font-size: 1rem;
  color: #6c757d;
  background-color: white;
}

/* CTA Section Styling */
.cta-section {
  padding: 80px 0;
  background-color: white;
}

.cta-wrapper {
  background: linear-gradient(135deg, #1a365d, #2a4a7d);
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(26, 54, 93, 0.2);
}

.cta-content {
  color: white;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
  .page-header {
    padding: 60px 0;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .service-overview,
  .service-details,
  .process-section,
  .faq-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .experience-badge {
    width: 100px;
    height: 100px;
  }
  
  .badge-number {
    font-size: 2rem;
  }
}

@media (max-width: 991.98px) {
  .page-header h1 {
    font-size: 2.2rem;
  }
  
  .service-overview-content {
    margin-bottom: 50px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-sidebar {
    margin-top: 50px;
    position: static;
  }
  
  .cta-wrapper {
    padding: 40px;
  }
  
  .cta-content {
    margin-bottom: 30px;
    text-align: center;
  }
  
  .cta-section .text-lg-end {
    text-align: center !important;
  }
}

@media (max-width: 767.98px) {
  .page-header {
    padding: 50px 0;
  }
  
  .page-header h1 {
    font-size: 1.8rem;
  }
  
  .service-overview,
  .service-details,
  .process-section,
  .faq-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .process-step {
    margin-bottom: 40px;
  }
  
  .cta-wrapper {
    padding: 30px;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 575.98px) {
  .page-header h1 {
    font-size: 1.6rem;
  }
  
  .section-badge {
    font-size: 0.8rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .highlight-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .highlight-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .property-type-card {
    padding: 20px;
  }
  
  .cta-wrapper {
    padding: 25px;
  }
}

/* Additional CSS for Procjena Pokretne Imovine page */

/* Methodology Cards */
.methodology-cards {
  margin-top: 30px;
}

.methodology-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  border-left: 4px solid #e4a81f;
}

.methodology-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(26, 54, 93, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #1a365d;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.methodology-card:hover .card-icon {
  background: #1a365d;
  color: white;
}

.methodology-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 10px;
}

.methodology-card p {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 0;
}

/* Service Overview Image */
.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(26, 54, 93, 0.2), transparent);
  border-radius: 0 0 16px 16px;
}

.overlay-content {
  display: flex;
  align-items: center;
}

.overlay-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-size: 1.2rem;
}

.overlay-text {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

.floating-badge {
  position: absolute;
  top: -20px;
  right: 30px;
  background: #e4a81f;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(228, 168, 31, 0.3);
  z-index: 1;
  width: 150px;
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #1a365d;
  font-size: 1.2rem;
}

.badge-text {
  display: flex;
  flex-direction: column;
  color: #1a365d;
}

.badge-text span {
  font-weight: 600;
  line-height: 1.2;
}

/* Info Box */
.info-box {
  display: flex;
  align-items: flex-start;
  background: rgba(26, 54, 93, 0.03);
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
  border-left: 4px solid #1a365d;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(26, 54, 93, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: #1a365d;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 10px;
}

.info-content p {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 0;
}

/* Property Categories */
.property-categories {
  margin-top: 30px;
}

.category-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  border-top: 4px solid #e4a81f;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.category-icon {
  width: 70px;
  height: 70px;
  background: rgba(26, 54, 93, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #1a365d;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  background: #1a365d;
  color: white;
  transform: rotateY(180deg);
}

.category-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 15px;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #6c757d;
}

.category-list li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e4a81f;
}

/* Case Study Widget */
.case-study-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.case-image {
  position: relative;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

.case-study-card:hover .case-image img {
  transform: scale(1.05);
}

.case-content {
  padding: 20px;
}

.case-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 10px;
}

.case-content p {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 15px;
}

.read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e4a81f;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.read-more i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #1a365d;
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Download Widget */
.download-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.download-list li {
  margin-bottom: 15px;
}

.download-list li:last-child {
  margin-bottom: 0;
}

.download-list li a {
  display: flex;
  align-items: center;
  background: rgba(26, 54, 93, 0.03);
  border-radius: 8px;
  padding: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.download-list li a:hover {
  background: rgba(26, 54, 93, 0.06);
}

.download-icon {
  width: 40px;
  height: 40px;
  background: rgba(228, 168, 31, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #e4a81f;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.download-text {
  flex-grow: 1;
}

.download-text h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a365d;
  margin-bottom: 5px;
}

.download-text span {
  font-size: 0.8rem;
  color: #6c757d;
}

.download-button {
  width: 30px;
  height: 30px;
  background: rgba(26, 54, 93, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a365d;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.download-list li a:hover .download-button {
  background: #1a365d;
  color: white;
}

/* Process Timeline */
.process-timeline {
  margin-top: 60px;
  position: relative;
}

.timeline-wrapper {
  position: relative;
  padding: 30px 0;
}

.timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(26, 54, 93, 0.1);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #e4a81f;
  border-radius: 50%;
  z-index: 1;
}

.timeline-content {
  width: 45%;
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 55%;
}

.timeline-icon {
  width: 60px;
  height: 60px;
  background: rgba(26, 54, 93, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #1a365d;
  font-size: 1.5rem;
}

.timeline-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 15px;
}

.timeline-content p {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 0;
}

/* Benefits Section */
.benefits-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.benefits-grid {
  margin-top: 50px;
}

.benefit-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: rgba(26, 54, 93, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #e4a81f;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background: #e4a81f;
  color: white;
}

.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 15px;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
  .timeline-content {
    width: 42%;
  }
  
  .timeline-item:nth-child(odd) .timeline-content {
    margin-right: 58%;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 58%;
  }
}

@media (max-width: 991.98px) {
  .timeline-wrapper::before {
    left: 30px;
  }
  
  .timeline-dot {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 80px;
    margin-right: 0;
  }
  
  .service-sidebar {
    margin-top: 50px;
  }
}

@media (max-width: 767.98px) {
  .methodology-card,
  .category-card,
  .benefit-card {
    margin-bottom: 20px;
  }
  
  .floating-badge {
    top: -15px;
    right: 20px;
    padding: 10px;
  }
  
  .badge-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    margin-right: 10px;
  }
  
  .badge-text span {
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .timeline-content {
    width: calc(100% - 60px);
    padding: 20px;
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
  }
  
  .timeline-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .timeline-content h3 {
    font-size: 1.1rem;
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .benefit-card h3 {
    font-size: 1.1rem;
  }
}

/*REFERENCE CSS*/
.gore-k
{
    margin-top: 100px;
}
.klijenti-header h2 
{
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}
.slika img 
{
    width: 300px;
    height: 300px;
}

.grid-klijenti
{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-left: 10px;
}
@media(max-width: 1024px)
{
    .grid-klijenti
    {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin-left: 10px;
    }
}
@media(max-width: 810px)
{
    .grid-klijenti
    {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-left: 10px;
    }
}
@media(max-width: 650px)
{
    .grid-klijenti
    {
        display: block;
        
    }
}
.paginacija
{
    margin: auto;
}
 