/* ========== BASE STYLES ========== */
:root {
  --primary: #0F4C81;  /* Deep blue - trust/professionalism */
  --secondary: #E37222; /* Orange - energy/creativity */
  --accent: #66B9BF;   /* Teal - freshness */
  --dark: #2E2E2E;
  --light: #F9F9F9;
  --white: #FFFFFF;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  --shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  --section-padding: 100px 0;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--light);
}

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

section {
  padding: var(--section-padding);
  position: relative;
}
back-to-top
img {
  max-width: 100%;
  height: auto;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
  font-size: 1.1rem;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(227, 114, 34, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* ========== NAVIGATION ========== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 0;
  z-index: 1000;
  transition: var(--transition);
}

.main-nav.scrolled {
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

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

.logo img {
  height: 40px;
  transition: var(--transition);
}

.logo {
  height: 100px !important;
}

.main-nav.scrolled .logo img {
  height: 35px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.main-nav.scrolled .nav-links a {
  color: var(--dark);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle i {
  font-size: 1.8rem;
  color: var(--white);
  transition: var(--transition);
}

.main-nav.scrolled .menu-toggle i {
  color: var(--dark);
}

/* ========== HERO SECTION ========== */
.hero {
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(15, 76, 129, 0.249), rgba(15, 76, 129, 0.237)), 
              url('../img/hero.jpg') no-repeat center center/cover;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(transparent, var(--light));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  margin-bottom: 1.5rem;
  animation-delay: 0.3s;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  animation-delay: 0.5s;
}

.hero-scroll {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll a {
  color: var(--white);
  font-size: 1.5rem;
}

/* ========== ABOUT SECTION ========== */
.about-section {
  background: var(--white);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateY(-10deg);
  transition: var(--transition);
}

.about-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.about-image img {
  display: block;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--light);
  border-radius: 10px;
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: #666;
  font-weight: 500;
}

/* ========== PROPERTIES SECTION ========== */
.properties-section {
  background: var(--light);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.property-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.property-card img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.property-card:hover img {
  transform: scale(1.05);
}

.property-info {
  padding: 25px;
}

.property-features {
  display: flex;
  list-style: none;
  margin: 15px 0 20px;
}

.property-features li {
  margin-right: 20px;
  color: #666;
  font-size: 0.9rem;
}

.property-features i {
  color: var(--secondary);
  margin-right: 5px;
}

/* ========== SERVICES SECTION ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: var(--secondary);
}

.service-card i {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover i {
  transform: scale(1.1);
}

.service-card h3 {
  margin-bottom: 1rem;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
  background: linear-gradient(rgba(15, 76, 129, 0.9), rgba(15, 76, 129, 0.9)), 
              url('../images/testimonial-bg.jpg') no-repeat center center/cover;
  color: var(--white);
  text-align: center;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 10px;
  margin: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.rating {
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.client-info h4 {
  color: var(--white);
  margin-bottom: 0.3rem;
}

.client-info p {
  font-style: normal;
  opacity: 0.8;
  font-size: 0.9rem;
}

/* ========== CONTACT SECTION ========== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  margin-bottom: 2rem;
}

.contact-details {
  list-style: none;
  margin-bottom: 2rem;
}

.contact-details li {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
}

.contact-details i {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-right: 15px;
  margin-top: 3px;
}

.contact-details a {
  color: var(--dark);
  text-decoration: none;
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--secondary);
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--light);
  color: var(--dark);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-3px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(227, 114, 34, 0.2);
}

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

/* ========== FOOTER ========== */
.main-footer {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 1.5rem;
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-legal {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-legal ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 1rem;
}

.footer-legal li {
  margin: 0 15px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--white);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* ========== UTILITY CLASSES ========== */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}

.animate.animated {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 992px) {
  :root {
    --section-padding: 80px 0;
  }
  
  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .nav-links a {
    color: var(--dark) !important;
    font-size: 1.2rem;
  }
  
  .hero {
    min-height: 700px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .properties-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .btn {
    padding: 12px 24px;
  }
}









:root {
    --primary: #0F4C81;
    --primary-light: rgba(15, 76, 129, 0.1);
    --secondary: #E37222;
    --dark: #2E2E2E;
    --light: #F9F9F9;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    padding-top: 72px;
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(15, 76, 129, 0.5),transparent, transparent,  rgba(15, 76, 129, 0.2)), url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}
.hero-caption {
    padding: 15px;
   }
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(transparent, var(--light));
    z-index: 1;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Navbar */
.navbar {
    transition: var(--transition);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 2rem);
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 100px;
    text-align: center;
    z-index: 1;
}

/* Icon Box */
.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 76, 129, 0.7);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    padding: 1.5rem;
    transform: translateY(20px);
    transition: var(--transition);
    display: none;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

/* Testimonial Slider */
.testimonial-slider {
    position: relative;
}

.testimonial-item {
    opacity: 0.7;
    transition: var(--transition);
    margin: 0 15px;
}

.testimonial-item.slick-center {
    opacity: 1;
    transform: scale(1.05);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 99;
    display: none;
    height: 55px !important;
    width: 55px !important;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Utility Classes */
.rounded-3 {
    border-radius: 0.75rem !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    body {
        padding-top: 66px;
    }
    
    .hero-section {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 120px;
        background-attachment: scroll;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
}





    /* Gallery Collage Styles */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

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

/* Collage Size Classes */
.collage-tall {
    height: 500px;
}

.collage-medium {
    height: 300px;
}

.collage-small {
    height: 250px;
}

.collage-wide {
    height: 350px;
}

.collage-extra-wide {
    height: 400px;
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 76, 129, 0.7);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    padding: 1rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

/* Hover Effects */
.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .collage-tall {
        height: 400px;
    }
    .collage-medium {
        height: 250px;
    }
    .collage-small {
        height: 200px;
    }
    .collage-wide {
        height: 300px;
    }
    .collage-extra-wide {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .collage-tall,
    .collage-medium,
    .collage-small,
    .collage-wide,
    .collage-extra-wide {
        height: 300px;
    }
}




/* Experience Banner Styles */
.experience-banner {
    position: relative;
    overflow: hidden;
}

.experience-banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(transparent, var(--light));
    z-index: 1;
}

.experience-badge {
    box-shadow: 0 0 15px rgba(15, 76, 129, 0.5);
    animation: pulse 2s infinite;
}

.stat-item {
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(15, 76, 129, 0.3) !important;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(15, 76, 129, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(15, 76, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(15, 76, 129, 0); }
}

/* Our Clients Section Styles */
.client-logo-container {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.client-logo {
    max-height: 60px;
    width: auto;
    max-width: 100%;
    /* filter: grayscale(0%); */
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    /* filter: grayscale(100%); */
}

.client-logo-container:hover .client-logo {
    
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .client-logo-container {
        height: 100px;
    }
    .client-logo {
        max-height: 50px;
    }
}




/* Testimonial Section Styling */
#testimonials {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.testimonial-rating {
    display: flex;
    align-items: center;
}

.testimonial-rating .stars {
    color: #FFD700;
    letter-spacing: 2px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author .avatar {
    flex-shrink: 0;
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    object-fit: cover;
}

.brand-logo img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .brand-logo img {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .testimonial-card {
        margin-bottom: 30px;
    }
}

.brand-logo{
  display: none;
}

.avatar {
    margin-right: 15px;
    display: none;
}



/* About Section Styling */
#about {
    position: relative;
    overflow: hidden;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 120px;
    text-align: center;
    z-index: 1;
}

.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.bg-primary-soft {
    background-color: rgba(15, 76, 129, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .experience-badge {
        width: 100px;
        padding: 1rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}